diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachineScaleSetVMsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachineScaleSetVMsOperations.cs index fb7b7eb2e7d5..a498ec179cdd 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachineScaleSetVMsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachineScaleSetVMsOperations.cs @@ -394,6 +394,33 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// Task PerformMaintenanceWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// The operation to simulate the eviction of spot virtual machine in a + /// VM scale set. The eviction will occur within 30 minutes of calling + /// the API + /// + /// + /// 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. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task SimulateEvictionWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Run command on a virtual machine in a VM scale set. /// /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachinesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachinesOperations.cs index 3cc4bd4b3214..918d35544a14 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachinesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachinesOperations.cs @@ -532,7 +532,8 @@ public partial interface IVirtualMachinesOperations /// Task PerformMaintenanceWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The operation to simulate the eviction of spot virtual machine + /// The operation to simulate the eviction of spot virtual machine. The + /// eviction will occur within 30 minutes of calling the API /// /// /// The name of the resource group. diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/AutomaticRepairsPolicy.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/AutomaticRepairsPolicy.cs index 4c271d8ba3b7..bb24e531ad19 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/AutomaticRepairsPolicy.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/AutomaticRepairsPolicy.cs @@ -38,7 +38,8 @@ public AutomaticRepairsPolicy() /// 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 - /// 30 minutes (PT30M), which is also the default value. + /// 30 minutes (PT30M), which is also the default value. The maximum + /// allowed grace period is 90 minutes (PT90M). public AutomaticRepairsPolicy(bool? enabled = default(bool?), string gracePeriod = default(string)) { Enabled = enabled; @@ -64,7 +65,8 @@ public AutomaticRepairsPolicy() /// 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 30 minutes - /// (PT30M), which is also the default value. + /// (PT30M), which is also the default value. The maximum allowed grace + /// period is 90 minutes (PT90M). /// [JsonProperty(PropertyName = "gracePeriod")] public string GracePeriod { get; set; } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DiffDiskSettings.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DiffDiskSettings.cs index 2b3ffa1c3434..8655f8dc7d78 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DiffDiskSettings.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DiffDiskSettings.cs @@ -34,11 +34,17 @@ public DiffDiskSettings() /// Specifies the ephemeral disk settings for /// operating system disk. Possible values include: 'Local' /// Specifies the ephemeral disk placement for - /// operating system disk. This property is used to specify Cache disk - /// or Resource disk for ephemeral OS disk provisioning. By default if - /// customer does not specify this placement property in the request, - /// the Ephemeral OS disk will be provisioned using Cache disk. - /// Possible values include: 'CacheDisk', 'ResourceDisk' + /// operating system disk.<br><br> Possible values are: + /// <br><br> **CacheDisk** <br><br> + /// **ResourceDisk** <br><br> Default: **CacheDisk** if one + /// is configured for the VM size otherwise **ResourceDisk** is + /// used.<br><br> Refer to VM size documentation for + /// Windows VM at + /// https://docs.microsoft.com/en-us/azure/virtual-machines/windows/sizes + /// and Linux VM at + /// https://docs.microsoft.com/en-us/azure/virtual-machines/linux/sizes + /// to check which VM sizes exposes a cache disk. Possible values + /// include: 'CacheDisk', 'ResourceDisk' public DiffDiskSettings(string option = default(string), string placement = default(string)) { Option = option; @@ -60,11 +66,18 @@ public DiffDiskSettings() /// /// Gets or sets specifies the ephemeral disk placement for operating - /// system disk. This property is used to specify Cache disk or - /// Resource disk for ephemeral OS disk provisioning. By default if - /// customer does not specify this placement property in the request, - /// the Ephemeral OS disk will be provisioned using Cache disk. - /// Possible values include: 'CacheDisk', 'ResourceDisk' + /// system disk.&lt;br&gt;&lt;br&gt; Possible values + /// are: &lt;br&gt;&lt;br&gt; **CacheDisk** + /// &lt;br&gt;&lt;br&gt; **ResourceDisk** + /// &lt;br&gt;&lt;br&gt; Default: **CacheDisk** if one + /// is configured for the VM size otherwise **ResourceDisk** is + /// used.&lt;br&gt;&lt;br&gt; Refer to VM size + /// documentation for Windows VM at + /// https://docs.microsoft.com/en-us/azure/virtual-machines/windows/sizes + /// and Linux VM at + /// https://docs.microsoft.com/en-us/azure/virtual-machines/linux/sizes + /// to check which VM sizes exposes a cache disk. Possible values + /// include: 'CacheDisk', 'ResourceDisk' /// [JsonProperty(PropertyName = "placement")] public string Placement { get; set; } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryApplicationVersionPublishingProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryApplicationVersionPublishingProfile.cs index 722dd0409dfe..3705c404cf17 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryApplicationVersionPublishingProfile.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryApplicationVersionPublishingProfile.cs @@ -51,7 +51,8 @@ public GalleryApplicationVersionPublishingProfile() /// purposes. This property is updatable. /// Specifies the storage account type /// to be used to store the image. This property is not updatable. - /// Possible values include: 'Standard_LRS', 'Standard_ZRS' + /// Possible values include: 'Standard_LRS', 'Standard_ZRS', + /// 'Premium_LRS' /// Optional. May be used to help process /// this file. The type of file contained in the source, e.g. zip, /// json, etc. diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryArtifactPublishingProfileBase.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryArtifactPublishingProfileBase.cs index 34815cef6ac2..1b6b478f2b6b 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryArtifactPublishingProfileBase.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryArtifactPublishingProfileBase.cs @@ -50,7 +50,8 @@ public GalleryArtifactPublishingProfileBase() /// purposes. This property is updatable. /// Specifies the storage account type /// to be used to store the image. This property is not updatable. - /// Possible values include: 'Standard_LRS', 'Standard_ZRS' + /// Possible values include: 'Standard_LRS', 'Standard_ZRS', + /// 'Premium_LRS' public GalleryArtifactPublishingProfileBase(IList targetRegions = default(IList), int? replicaCount = default(int?), bool? excludeFromLatest = default(bool?), System.DateTime? publishedDate = default(System.DateTime?), System.DateTime? endOfLifeDate = default(System.DateTime?), string storageAccountType = default(string)) { TargetRegions = targetRegions; @@ -108,7 +109,7 @@ public GalleryArtifactPublishingProfileBase() /// /// Gets or sets specifies the storage account type to be used to store /// the image. This property is not updatable. Possible values include: - /// 'Standard_LRS', 'Standard_ZRS' + /// 'Standard_LRS', 'Standard_ZRS', 'Premium_LRS' /// [JsonProperty(PropertyName = "storageAccountType")] public string StorageAccountType { get; set; } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageVersionPublishingProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageVersionPublishingProfile.cs index 5108bed906f8..6881266310aa 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageVersionPublishingProfile.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageVersionPublishingProfile.cs @@ -49,7 +49,8 @@ public GalleryImageVersionPublishingProfile() /// purposes. This property is updatable. /// Specifies the storage account type /// to be used to store the image. This property is not updatable. - /// Possible values include: 'Standard_LRS', 'Standard_ZRS' + /// Possible values include: 'Standard_LRS', 'Standard_ZRS', + /// 'Premium_LRS' public GalleryImageVersionPublishingProfile(IList targetRegions = default(IList), int? replicaCount = default(int?), bool? excludeFromLatest = default(bool?), System.DateTime? publishedDate = default(System.DateTime?), System.DateTime? endOfLifeDate = default(System.DateTime?), string storageAccountType = default(string)) : base(targetRegions, replicaCount, excludeFromLatest, publishedDate, endOfLifeDate, storageAccountType) { diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ImageReference.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ImageReference.cs index f6246db9ac78..3face5d033e6 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ImageReference.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ImageReference.cs @@ -18,7 +18,8 @@ namespace Microsoft.Azure.Management.Compute.Models /// 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. + /// used in other creation operations. NOTE: Image reference publisher and + /// offer can only be set when you create the scale set. /// public partial class ImageReference : SubResource { diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/OSDisk.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/OSDisk.cs index 039cfddffdf1..feac57710d59 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/OSDisk.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/OSDisk.cs @@ -60,8 +60,8 @@ public OSDisk() /// Specifies the caching requirements. /// <br><br> Possible values are: <br><br> /// **None** <br><br> **ReadOnly** <br><br> - /// **ReadWrite** <br><br> Default: **None for Standard - /// storage. ReadOnly for Premium storage**. Possible values include: + /// **ReadWrite** <br><br> Default: **None** for Standard + /// storage. **ReadOnly** for Premium storage. Possible values include: /// 'None', 'ReadOnly', 'ReadWrite' /// Specifies whether /// writeAccelerator should be enabled or disabled on the disk. @@ -140,8 +140,8 @@ public OSDisk() /// &lt;br&gt;&lt;br&gt; **None** /// &lt;br&gt;&lt;br&gt; **ReadOnly** /// &lt;br&gt;&lt;br&gt; **ReadWrite** - /// &lt;br&gt;&lt;br&gt; Default: **None for Standard - /// storage. ReadOnly for Premium storage**. Possible values include: + /// &lt;br&gt;&lt;br&gt; Default: **None** for Standard + /// storage. **ReadOnly** for Premium storage. Possible values include: /// 'None', 'ReadOnly', 'ReadWrite' /// [JsonProperty(PropertyName = "caching")] diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/Sku.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/Sku.cs index a6b110eaa4fc..3a3bbc4c45bd 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/Sku.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/Sku.cs @@ -14,7 +14,9 @@ namespace Microsoft.Azure.Management.Compute.Models using System.Linq; /// - /// Describes a virtual machine scale set sku. + /// 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. /// public partial class Sku { diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/StorageAccountType.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/StorageAccountType.cs index 7bb338ee5e2a..ec564c0010b6 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/StorageAccountType.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/StorageAccountType.cs @@ -18,5 +18,6 @@ public static class StorageAccountType { public const string StandardLRS = "Standard_LRS"; public const string StandardZRS = "Standard_ZRS"; + public const string PremiumLRS = "Premium_LRS"; } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/TargetRegion.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/TargetRegion.cs index 7a08d07bdef4..beb83ddf8a43 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/TargetRegion.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/TargetRegion.cs @@ -36,7 +36,8 @@ public TargetRegion() /// updatable. /// Specifies the storage account type /// to be used to store the image. This property is not updatable. - /// Possible values include: 'Standard_LRS', 'Standard_ZRS' + /// Possible values include: 'Standard_LRS', 'Standard_ZRS', + /// 'Premium_LRS' public TargetRegion(string name, int? regionalReplicaCount = default(int?), string storageAccountType = default(string), EncryptionImages encryption = default(EncryptionImages)) { Name = name; @@ -67,7 +68,7 @@ public TargetRegion() /// /// Gets or sets specifies the storage account type to be used to store /// the image. This property is not updatable. Possible values include: - /// 'Standard_LRS', 'Standard_ZRS' + /// 'Standard_LRS', 'Standard_ZRS', 'Premium_LRS' /// [JsonProperty(PropertyName = "storageAccountType")] public string StorageAccountType { get; set; } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineScaleSet.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineScaleSet.cs index e5ddfe824110..0d9ab0719c1e 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineScaleSet.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineScaleSet.cs @@ -64,8 +64,10 @@ public VirtualMachineScaleSet() /// Specifies the ID which uniquely identifies a /// Virtual Machine Scale Set. /// When true this limits the scale - /// set to a single placement group, of max size 100 virtual - /// machines. + /// 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. /// Whether to force strictly even Virtual /// Machine distribution cross x-zones in case there is zone /// outage. @@ -85,7 +87,9 @@ public VirtualMachineScaleSet() /// Virtual Machine Scale Set is scaled-in. /// The identity of the virtual machine scale /// set, if configured. - /// The virtual machine scale set zones. + /// The virtual machine scale set zones. NOTE: + /// Availability zones can only be set when you create the scale + /// set public VirtualMachineScaleSet(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), Sku sku = default(Sku), Plan plan = default(Plan), UpgradePolicy upgradePolicy = default(UpgradePolicy), AutomaticRepairsPolicy automaticRepairsPolicy = default(AutomaticRepairsPolicy), VirtualMachineScaleSetVMProfile virtualMachineProfile = default(VirtualMachineScaleSetVMProfile), string provisioningState = default(string), bool? overprovision = default(bool?), bool? doNotRunExtensionsOnOverprovisionedVMs = default(bool?), string uniqueId = default(string), bool? singlePlacementGroup = default(bool?), bool? zoneBalance = default(bool?), int? platformFaultDomainCount = default(int?), SubResource proximityPlacementGroup = default(SubResource), AdditionalCapabilities additionalCapabilities = default(AdditionalCapabilities), ScaleInPolicy scaleInPolicy = default(ScaleInPolicy), VirtualMachineScaleSetIdentity identity = default(VirtualMachineScaleSetIdentity), IList zones = default(IList)) : base(location, id, name, type, tags) { @@ -181,7 +185,9 @@ public VirtualMachineScaleSet() /// /// Gets or sets when true this limits the scale set to a single - /// placement group, of max size 100 virtual machines. + /// 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. /// [JsonProperty(PropertyName = "properties.singlePlacementGroup")] public bool? SinglePlacementGroup { get; set; } @@ -234,7 +240,8 @@ public VirtualMachineScaleSet() public VirtualMachineScaleSetIdentity Identity { get; set; } /// - /// Gets or sets the virtual machine scale set zones. + /// Gets or sets the virtual machine scale set zones. NOTE: + /// Availability zones can only be set when you create the scale set /// [JsonProperty(PropertyName = "zones")] public IList Zones { get; set; } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineScaleSetUpdate.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineScaleSetUpdate.cs index d319eac6b704..c03a3715a377 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineScaleSetUpdate.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineScaleSetUpdate.cs @@ -53,8 +53,10 @@ public VirtualMachineScaleSetUpdate() /// hence ensure that the extensions do not run on the extra /// overprovisioned VMs. /// When true this limits the scale - /// set to a single placement group, of max size 100 virtual - /// machines. + /// 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. /// Specifies additional /// capabilities enabled or disabled on the Virtual Machines in the /// Virtual Machine Scale Set. For instance: whether the Virtual @@ -141,7 +143,9 @@ public VirtualMachineScaleSetUpdate() /// /// Gets or sets when true this limits the scale set to a single - /// placement group, of max size 100 virtual machines. + /// 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. /// [JsonProperty(PropertyName = "properties.singlePlacementGroup")] public bool? SinglePlacementGroup { get; set; } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineScaleSetUpdateIPConfiguration.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineScaleSetUpdateIPConfiguration.cs index ecccbed129dd..05a7a7829ec5 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineScaleSetUpdateIPConfiguration.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineScaleSetUpdateIPConfiguration.cs @@ -19,7 +19,9 @@ namespace Microsoft.Azure.Management.Compute.Models /// /// Describes a virtual machine scale set network profile's IP - /// configuration. + /// 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 /// [Rest.Serialization.JsonTransformation] public partial class VirtualMachineScaleSetUpdateIPConfiguration : SubResource diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMsOperations.cs index d52ae8771138..ea5d69f48967 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMsOperations.cs @@ -952,6 +952,189 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } + /// + /// The operation to simulate the eviction of spot virtual machine in a VM + /// scale set. The eviction will occur within 30 minutes of calling the API + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the VM scale set. + /// + /// + /// The instance ID 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 SimulateEvictionWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, 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 (instanceId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "instanceId"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2019-12-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("vmScaleSetName", vmScaleSetName); + tracingParameters.Add("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("{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 (_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 != 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; + } + /// /// Run command on a virtual machine in a VM scale set. /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMsOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMsOperationsExtensions.cs index b227b0e52d79..3ed5d9a567a8 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMsOperationsExtensions.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMsOperationsExtensions.cs @@ -651,6 +651,51 @@ public static void PerformMaintenance(this IVirtualMachineScaleSetVMsOperations (await operations.PerformMaintenanceWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, null, cancellationToken).ConfigureAwait(false)).Dispose(); } + /// + /// The operation to simulate the eviction of spot virtual machine in a VM + /// scale set. The eviction will occur within 30 minutes of calling the API + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the VM scale set. + /// + /// + /// The instance ID of the virtual machine. + /// + public static void SimulateEviction(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId) + { + operations.SimulateEvictionAsync(resourceGroupName, vmScaleSetName, instanceId).GetAwaiter().GetResult(); + } + + /// + /// The operation to simulate the eviction of spot virtual machine in a VM + /// scale set. The eviction will occur within 30 minutes of calling the API + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the VM scale set. + /// + /// + /// The instance ID of the virtual machine. + /// + /// + /// The cancellation token. + /// + public static async Task SimulateEvictionAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.SimulateEvictionWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// /// Run command on a virtual machine in a VM scale set. /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperations.cs index 8bae841c73cf..d48c0772cbb4 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperations.cs @@ -1701,7 +1701,8 @@ internal VirtualMachinesOperations(ComputeManagementClient client) } /// - /// The operation to simulate the eviction of spot virtual machine + /// The operation to simulate the eviction of spot virtual machine. The + /// eviction will occur within 30 minutes of calling the API /// /// /// The name of the resource group. @@ -1757,7 +1758,7 @@ internal VirtualMachinesOperations(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/virtualMachines/{vmName}/SimulateEviction").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("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{vmName}", System.Uri.EscapeDataString(vmName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperationsExtensions.cs index 336a9881129d..135a7d0f643e 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperationsExtensions.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperationsExtensions.cs @@ -859,7 +859,8 @@ public static void PerformMaintenance(this IVirtualMachinesOperations operations } /// - /// The operation to simulate the eviction of spot virtual machine + /// The operation to simulate the eviction of spot virtual machine. The + /// eviction will occur within 30 minutes of calling the API /// /// /// The operations group for this extension method. @@ -876,7 +877,8 @@ public static void SimulateEviction(this IVirtualMachinesOperations operations, } /// - /// The operation to simulate the eviction of spot virtual machine + /// The operation to simulate the eviction of spot virtual machine. The + /// eviction will occur within 30 minutes of calling the API /// /// /// The operations group for this extension method. diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Microsoft.Azure.Management.Compute.csproj b/sdk/compute/Microsoft.Azure.Management.Compute/src/Microsoft.Azure.Management.Compute.csproj index fd9ebc0d92ae..c70d3ec5ea12 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Microsoft.Azure.Management.Compute.csproj +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Microsoft.Azure.Management.Compute.csproj @@ -6,12 +6,12 @@ Microsoft.Azure.Management.Compute Provides developers with libraries for the updated compute platform under Azure Resource manager to deploy virtual machine, virtual machine extensions and availability set management capabilities. Launch, restart, scale, capture and manage VMs, VM Extensions and more. Note: This client library is for Virtual Machines under Azure Resource Manager. - 35.1.0.0 + 35.2.0.0 Microsoft.Azure.Management.Compute management;virtual machine;compute; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Properties/AssemblyInfo.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Properties/AssemblyInfo.cs index 35f9c0aeaa27..1420f6da0b28 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Properties/AssemblyInfo.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Properties/AssemblyInfo.cs @@ -7,12 +7,12 @@ [assembly: AssemblyTitle("Microsoft Azure Compute Management Library")] [assembly: AssemblyDescription("Provides management functionality for Microsoft Azure Compute Resources.")] -[assembly: AssemblyVersion("35.0.0.0")] -[assembly: AssemblyFileVersion("35.1.0.0")] +[assembly: AssemblyVersion("35.2.0.0")] +[assembly: AssemblyFileVersion("35.2.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Microsoft Azure .NET SDK")] [assembly: AssemblyCopyright("Copyright (c) Microsoft Corporation")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] -[assembly: NeutralResourcesLanguage("en")] +[assembly: NeutralResourcesLanguage("en")] \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/VMOperationalTests.cs b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/VMOperationalTests.cs index e6804ef8bd8b..dbfc6aa5d315 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/VMOperationalTests.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/VMOperationalTests.cs @@ -91,7 +91,8 @@ public void TestVMOperations() m_CrpClient.VirtualMachines.Redeploy(rg1Name, vm1.Name); m_CrpClient.VirtualMachines.Restart(rg1Name, vm1.Name); - var runCommandImput = new RunCommandInput() { + var runCommandImput = new RunCommandInput() + { CommandId = "RunPowerShellScript", Script = new List() { "param(", @@ -363,5 +364,60 @@ public void TestVMOperations_PerformMaintenance() Assert.True(passed); } } + + /// + /// Covers following Operations: + /// Create RG + /// Create Storage Account + /// Create Network Resources + /// Create VM + /// Call SimulateEviction on that VM + /// Delete RG + /// + [Fact] + public void TestVMOperations_SimulateEviction() + { + using (MockContext context = MockContext.Start(this.GetType())) + { + EnsureClientsInitialized(context); + + ImageReference imageRef = GetPlatformVMImage(useWindowsImage: true); + + // Create resource group + string rg1Name = TestUtilities.GenerateName(TestPrefix) + 1; + string asName = TestUtilities.GenerateName("as"); + string storageAccountName = TestUtilities.GenerateName(TestPrefix); + VirtualMachine inputVM1; + + bool passed = false; + try + { + // Create Storage Account, so that both the VMs can share it + var storageAccountOutput = CreateStorageAccount(rg1Name, storageAccountName); + + VirtualMachine vm1 = CreateVM(rg1Name, + asName, + storageAccountOutput.Name, + imageRef, + out inputVM1, + (virtualMachine) => + { + virtualMachine.Priority = VirtualMachinePriorityTypes.Spot; + virtualMachine.AvailabilitySet = null; + virtualMachine.BillingProfile = new BillingProfile { MaxPrice = -1 }; + }, + vmSize: VirtualMachineSizeTypes.StandardA1); + m_CrpClient.VirtualMachines.SimulateEviction(rg1Name, vm1.Name); + passed = true; + } + finally + { + // Cleanup the created resources. But don't wait since it takes too long, and it's not the purpose + // of the test to cover deletion. CSM does persistent retrying over all RG resources. + var deleteRg1Response = m_ResourcesClient.ResourceGroups.BeginDeleteWithHttpMessagesAsync(rg1Name); + } + Assert.True(passed); + } + } } -} +} \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/VMTestBase.cs b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/VMTestBase.cs index cde04ecbc38e..dc554a2362b3 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/VMTestBase.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/VMTestBase.cs @@ -298,11 +298,12 @@ protected VirtualMachine CreateVM( Assert.True(createOrUpdateResponse.Location == inputVM.Location.ToLower().Replace(" ", "") || createOrUpdateResponse.Location.ToLower() == inputVM.Location.ToLower()); - if (zones == null) + bool hasUserDefinedAvSet = zones == null && !(VirtualMachinePriorityTypes.Spot.Equals(inputVM.Priority) || VirtualMachinePriorityTypes.Low.Equals(inputVM.Priority)); + if (hasUserDefinedAvSet) { Assert.True(createOrUpdateResponse.AvailabilitySet.Id.ToLowerInvariant() == asetId.ToLowerInvariant()); } - else + else if (zones != null) { Assert.True(createOrUpdateResponse.Zones.Count == 1); Assert.True(createOrUpdateResponse.Zones.FirstOrDefault() == zones.FirstOrDefault()); @@ -310,7 +311,7 @@ protected VirtualMachine CreateVM( // The intent here is to validate that the GET response is as expected. var getResponse = m_CrpClient.VirtualMachines.Get(rgName, inputVM.Name); - ValidateVM(inputVM, getResponse, expectedVMReferenceId, hasManagedDisks, writeAcceleratorEnabled: writeAcceleratorEnabled, hasDiffDisks: hasDiffDisks, hasUserDefinedAS: zones == null, expectedPpgReferenceId: ppgId); + ValidateVM(inputVM, getResponse, expectedVMReferenceId, hasManagedDisks, writeAcceleratorEnabled: writeAcceleratorEnabled, hasDiffDisks: hasDiffDisks, hasUserDefinedAS: hasUserDefinedAvSet, expectedPpgReferenceId: ppgId); return getResponse; } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/VMOperationalTests/TestVMOperations_SimulateEviction.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/VMOperationalTests/TestVMOperations_SimulateEviction.json new file mode 100644 index 000000000000..b9da36b1a4a3 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/VMOperationalTests/TestVMOperations_SimulateEviction.json @@ -0,0 +1,1969 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1d3d8b5e-aef4-4992-8d78-e6b229bc775e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28516.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19037.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/36.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9fc414ea-410e-4600-9f7c-71bc36416f3f_132159169030685629" + ], + "x-ms-request-id": [ + "8bd37b45-7ade-4185-aa6b-bdb6b86573c7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "f8a1e4e4-4b78-4b9c-a2bf-5b4c4c2d8ef2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200415T095746Z:f8a1e4e4-4b78-4b9c-a2bf-5b4c4c2d8ef2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Apr 2020 09:57:46 GMT" + ], + "Content-Length": [ + "321" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.127.20180315\",\r\n \"id\": \"/Subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20180315\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestar67151?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjY3MTUxP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"crptestar67151\": \"2020-04-15 09:57:46Z\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d67b765-5929-43e1-aacc-e4489f16a31d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28516.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19037.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "100" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "17992664-1519-4f49-b957-a31cf9485647" + ], + "x-ms-correlation-request-id": [ + "17992664-1519-4f49-b957-a31cf9485647" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200415T095750Z:17992664-1519-4f49-b957-a31cf9485647" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Apr 2020 09:57:50 GMT" + ], + "Content-Length": [ + "237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151\",\r\n \"name\": \"crptestar67151\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"crptestar67151\": \"2020-04-15 09:57:46Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestar67151?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjY3MTUxP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"crptestar67151\": \"2020-04-15 09:58:24Z\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8c734895-c338-46b7-95e4-9fea1a5227d2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28516.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19037.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "100" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "ff170621-0ad8-416e-b63c-a9142e21a526" + ], + "x-ms-correlation-request-id": [ + "ff170621-0ad8-416e-b63c-a9142e21a526" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200415T095826Z:ff170621-0ad8-416e-b63c-a9142e21a526" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Apr 2020 09:58:25 GMT" + ], + "Content-Length": [ + "237" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151\",\r\n \"name\": \"crptestar67151\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"crptestar67151\": \"2020-04-15 09:58:24Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Storage/storageAccounts/crptestar5078?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3MTUxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvY3JwdGVzdGFyNTA3OD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c74e1a2a-83c2-4c0d-ad5b-bbcf7da20f3c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28516.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19037.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "95" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/c37564d1-9d87-4dc1-90b9-6aead5f78d69?monitor=true&api-version=2015-06-15" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "c37564d1-9d87-4dc1-90b9-6aead5f78d69" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "d6082ad1-bbdf-4014-a40e-47af2d12b451" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200415T095756Z:d6082ad1-bbdf-4014-a40e-47af2d12b451" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Apr 2020 09:57:56 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/c37564d1-9d87-4dc1-90b9-6aead5f78d69?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYzM3NTY0ZDEtOWQ4Ny00ZGMxLTkwYjktNmFlYWQ1Zjc4ZDY5P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28516.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19037.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b5a45332-2872-4b97-9965-03e375b642e4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "091e5052-05e9-49ef-9186-d94ee9a6eb51" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200415T095814Z:091e5052-05e9-49ef-9186-d94ee9a6eb51" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Apr 2020 09:58:13 GMT" + ], + "Content-Length": [ + "95" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3MTUxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2570309d-7710-46a1-908f-d12e4841b364" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28516.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19037.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bec9be4a-d776-4ef9-8703-1670f5ec0c78" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "0c2df722-6904-4e93-a584-672ef96c126f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200415T095824Z:0c2df722-6904-4e93-a584-672ef96c126f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Apr 2020 09:58:23 GMT" + ], + "Content-Length": [ + "753" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Storage/storageAccounts/crptestar5078\",\r\n \"name\": \"crptestar5078\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-15T09:57:55.603803Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crptestar5078.blob.core.windows.net/\",\r\n \"queue\": \"https://crptestar5078.queue.core.windows.net/\",\r\n \"table\": \"https://crptestar5078.table.core.windows.net/\",\r\n \"file\": \"https://crptestar5078.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Storage/storageAccounts/crptestar5078?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3MTUxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvY3JwdGVzdGFyNTA3OD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6afb7359-3d46-439a-80df-6d64519bf547" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28516.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19037.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "be2e2e4a-ae04-497b-8ca6-03d1a7f68993" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "495c417f-30e1-484e-ac25-58e8270c8a28" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200415T095824Z:495c417f-30e1-484e-ac25-58e8270c8a28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Apr 2020 09:58:23 GMT" + ], + "Content-Length": [ + "741" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Storage/storageAccounts/crptestar5078\",\r\n \"name\": \"crptestar5078\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-15T09:57:55.603803Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crptestar5078.blob.core.windows.net/\",\r\n \"queue\": \"https://crptestar5078.queue.core.windows.net/\",\r\n \"table\": \"https://crptestar5078.table.core.windows.net/\",\r\n \"file\": \"https://crptestar5078.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Network/publicIPAddresses/pip6534?api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3MTUxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTM0P2FwaS12ZXJzaW9uPTIwMTgtMDctMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn7812\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "053a007c-2c12-4722-96fb-bbde08583072" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28516.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19037.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.3.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "207" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "967f4344-7bcb-4057-b6d9-f0826e20dcb0" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/967f4344-7bcb-4057-b6d9-f0826e20dcb0?api-version=2018-07-01" + ], + "x-ms-correlation-request-id": [ + "071d3a39-a442-4737-87ec-1dae15816dfa" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "5cac22e7-77f7-4289-9394-899cdac7cea5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200415T095834Z:071d3a39-a442-4737-87ec-1dae15816dfa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Apr 2020 09:58:33 GMT" + ], + "Content-Length": [ + "770" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pip6534\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Network/publicIPAddresses/pip6534\",\r\n \"etag\": \"W/\\\"0f674269-3223-457e-a3d4-4c50aeb747bb\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"f236ef5c-7071-416d-909b-074026bcb060\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn7812\",\r\n \"fqdn\": \"dn7812.southeastasia.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/967f4344-7bcb-4057-b6d9-f0826e20dcb0?api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk2N2Y0MzQ0LTdiY2ItNDA1Ny1iNmQ5LWYwODI2ZTIwZGNiMD9hcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28516.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19037.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "848cd581-7473-468f-98f8-bf2245fcb3cf" + ], + "x-ms-correlation-request-id": [ + "13507491-6db8-47dd-af86-4ca670342ef5" + ], + "x-ms-arm-service-request-id": [ + "afa874ed-cf5f-443a-9662-ed65b2624131" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200415T095836Z:13507491-6db8-47dd-af86-4ca670342ef5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Apr 2020 09:58:36 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Network/publicIPAddresses/pip6534?api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3MTUxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTM0P2FwaS12ZXJzaW9uPTIwMTgtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28516.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19037.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"4a452ee0-360a-4ae1-9247-a0b6435aa0ad\"" + ], + "x-ms-request-id": [ + "9b9bee14-c844-4c16-9772-c4ac6ead4960" + ], + "x-ms-correlation-request-id": [ + "cf5fcdfd-c2ea-427d-935b-1f110ea1028e" + ], + "x-ms-arm-service-request-id": [ + "65c376ea-c00e-45a9-8307-f6783ab6d220" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200415T095836Z:cf5fcdfd-c2ea-427d-935b-1f110ea1028e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Apr 2020 09:58:36 GMT" + ], + "Content-Length": [ + "771" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pip6534\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Network/publicIPAddresses/pip6534\",\r\n \"etag\": \"W/\\\"4a452ee0-360a-4ae1-9247-a0b6435aa0ad\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f236ef5c-7071-416d-909b-074026bcb060\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn7812\",\r\n \"fqdn\": \"dn7812.southeastasia.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Network/publicIPAddresses/pip6534?api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3MTUxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTM0P2FwaS12ZXJzaW9uPTIwMTgtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e5da7a4d-f9a8-4b2f-822d-752bc553072a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28516.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19037.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"4a452ee0-360a-4ae1-9247-a0b6435aa0ad\"" + ], + "x-ms-request-id": [ + "b5382e0f-bf62-49ae-8a4f-e5cf03eff0ea" + ], + "x-ms-correlation-request-id": [ + "01a19d28-4c9b-4ef3-b451-5caed0e523ad" + ], + "x-ms-arm-service-request-id": [ + "34c3c117-b316-41e8-bc30-fcc66798b771" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200415T095836Z:01a19d28-4c9b-4ef3-b451-5caed0e523ad" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Apr 2020 09:58:36 GMT" + ], + "Content-Length": [ + "771" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pip6534\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Network/publicIPAddresses/pip6534\",\r\n \"etag\": \"W/\\\"4a452ee0-360a-4ae1-9247-a0b6435aa0ad\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f236ef5c-7071-416d-909b-074026bcb060\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn7812\",\r\n \"fqdn\": \"dn7812.southeastasia.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Network/virtualNetworks/vn9061?api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3MTUxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm45MDYxP2FwaS12ZXJzaW9uPTIwMTgtMDctMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"sn2968\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ee7bdff7-ba8e-4436-ac7b-779843c5f143" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28516.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19037.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.3.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "402" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "ffdb8ede-3faa-4e53-ab0f-fcd09983f266" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/ffdb8ede-3faa-4e53-ab0f-fcd09983f266?api-version=2018-07-01" + ], + "x-ms-correlation-request-id": [ + "ab5d7d57-62a8-40a1-94e3-fc2e954cb75d" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "16595b99-25ed-457c-81e9-1a6e1dd8849e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200415T095839Z:ab5d7d57-62a8-40a1-94e3-fc2e954cb75d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Apr 2020 09:58:39 GMT" + ], + "Content-Length": [ + "1242" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vn9061\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Network/virtualNetworks/vn9061\",\r\n \"etag\": \"W/\\\"9fb00abe-6ef7-4ed3-959c-10a16615a127\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"f2e67e3f-122b-4927-b787-7d41e1c1cff1\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn2968\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Network/virtualNetworks/vn9061/subnets/sn2968\",\r\n \"etag\": \"W/\\\"9fb00abe-6ef7-4ed3-959c-10a16615a127\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/ffdb8ede-3faa-4e53-ab0f-fcd09983f266?api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2ZmZGI4ZWRlLTNmYWEtNGU1My1hYjBmLWZjZDA5OTgzZjI2Nj9hcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28516.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19037.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f80b7b78-e6a8-4df6-98b7-331d2da944ed" + ], + "x-ms-correlation-request-id": [ + "96505578-0b39-448d-8ee8-b9febf7d2822" + ], + "x-ms-arm-service-request-id": [ + "10e46f63-1d82-468b-84ae-13bf50eebe6d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200415T095842Z:96505578-0b39-448d-8ee8-b9febf7d2822" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Apr 2020 09:58:42 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Network/virtualNetworks/vn9061?api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3MTUxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm45MDYxP2FwaS12ZXJzaW9uPTIwMTgtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28516.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19037.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"e2c7eb5e-2002-4ff7-9deb-a23584cd1015\"" + ], + "x-ms-request-id": [ + "4d2ddc54-1a50-4700-97a9-d1010093f16b" + ], + "x-ms-correlation-request-id": [ + "19ba7fc6-8586-4a77-941f-5f0b018ce9e4" + ], + "x-ms-arm-service-request-id": [ + "019f5125-dc93-405b-9b88-520635a18791" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200415T095843Z:19ba7fc6-8586-4a77-941f-5f0b018ce9e4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Apr 2020 09:58:43 GMT" + ], + "Content-Length": [ + "1244" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vn9061\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Network/virtualNetworks/vn9061\",\r\n \"etag\": \"W/\\\"e2c7eb5e-2002-4ff7-9deb-a23584cd1015\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f2e67e3f-122b-4927-b787-7d41e1c1cff1\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn2968\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Network/virtualNetworks/vn9061/subnets/sn2968\",\r\n \"etag\": \"W/\\\"e2c7eb5e-2002-4ff7-9deb-a23584cd1015\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Network/virtualNetworks/vn9061/subnets/sn2968?api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3MTUxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm45MDYxL3N1Ym5ldHMvc24yOTY4P2FwaS12ZXJzaW9uPTIwMTgtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c9e0de2c-9913-40a4-9e81-9d3ce11d7540" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28516.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19037.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"e2c7eb5e-2002-4ff7-9deb-a23584cd1015\"" + ], + "x-ms-request-id": [ + "f2cafa04-3266-42d4-8b3f-a5a3db80181c" + ], + "x-ms-correlation-request-id": [ + "c99d4cf8-91c7-4737-9eee-2fb6910f7db4" + ], + "x-ms-arm-service-request-id": [ + "18fffb77-6ef1-4c84-b66e-1e9a12a02c65" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200415T095843Z:c99d4cf8-91c7-4737-9eee-2fb6910f7db4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Apr 2020 09:58:43 GMT" + ], + "Content-Length": [ + "421" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"sn2968\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Network/virtualNetworks/vn9061/subnets/sn2968\",\r\n \"etag\": \"W/\\\"e2c7eb5e-2002-4ff7-9deb-a23584cd1015\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Network/networkInterfaces/nic7152?api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3MTUxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3MTUyP2FwaS12ZXJzaW9uPTIwMTgtMDctMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn2968\",\r\n \"etag\": \"W/\\\"e2c7eb5e-2002-4ff7-9deb-a23584cd1015\\\"\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Network/virtualNetworks/vn9061/subnets/sn2968\"\r\n }\r\n },\r\n \"name\": \"ip8250\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3642de50-49ba-4641-859f-20c3f4c5f380" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28516.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19037.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.3.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "708" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ded70c2b-338e-4e5a-904b-6c52f0405572" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/ded70c2b-338e-4e5a-904b-6c52f0405572?api-version=2018-07-01" + ], + "x-ms-correlation-request-id": [ + "1592c92c-1443-42eb-9cdd-59105506dbf7" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "052b7f7d-2e20-448f-826f-f17db632f145" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200415T095846Z:1592c92c-1443-42eb-9cdd-59105506dbf7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Apr 2020 09:58:45 GMT" + ], + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic7152\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Network/networkInterfaces/nic7152\",\r\n \"etag\": \"W/\\\"51ed0bd0-3c24-4be9-896b-6c1842c5971c\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9e7fa30c-da2b-4a89-a8cd-bd4b2664f88a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip8250\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Network/networkInterfaces/nic7152/ipConfigurations/ip8250\",\r\n \"etag\": \"W/\\\"51ed0bd0-3c24-4be9-896b-6c1842c5971c\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Network/virtualNetworks/vn9061/subnets/sn2968\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"h35on2rlcitutn2hpva4dqop4b.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Network/networkInterfaces/nic7152?api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3MTUxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3MTUyP2FwaS12ZXJzaW9uPTIwMTgtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28516.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19037.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"51ed0bd0-3c24-4be9-896b-6c1842c5971c\"" + ], + "x-ms-request-id": [ + "151effae-19c6-46ea-ae6a-0018386db58d" + ], + "x-ms-correlation-request-id": [ + "b1f10004-3564-4746-bc3d-c4a9d1bbf923" + ], + "x-ms-arm-service-request-id": [ + "03036150-5045-4038-9a3d-3a46c78b6084" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200415T095846Z:b1f10004-3564-4746-bc3d-c4a9d1bbf923" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Apr 2020 09:58:46 GMT" + ], + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic7152\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Network/networkInterfaces/nic7152\",\r\n \"etag\": \"W/\\\"51ed0bd0-3c24-4be9-896b-6c1842c5971c\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9e7fa30c-da2b-4a89-a8cd-bd4b2664f88a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip8250\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Network/networkInterfaces/nic7152/ipConfigurations/ip8250\",\r\n \"etag\": \"W/\\\"51ed0bd0-3c24-4be9-896b-6c1842c5971c\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Network/virtualNetworks/vn9061/subnets/sn2968\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"h35on2rlcitutn2hpva4dqop4b.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Network/networkInterfaces/nic7152?api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3MTUxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3MTUyP2FwaS12ZXJzaW9uPTIwMTgtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d0a30b60-6eea-461b-9849-f44059ed3a97" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28516.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19037.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.3.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"51ed0bd0-3c24-4be9-896b-6c1842c5971c\"" + ], + "x-ms-request-id": [ + "826f002b-f282-4f3f-8b80-daf4d707d2bf" + ], + "x-ms-correlation-request-id": [ + "f42d9012-400f-4031-8544-db0829dce112" + ], + "x-ms-arm-service-request-id": [ + "915de0c3-e6a7-4ed2-b7bb-ce21ff694e84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200415T095846Z:f42d9012-400f-4031-8544-db0829dce112" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Apr 2020 09:58:46 GMT" + ], + "Content-Length": [ + "1576" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic7152\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Network/networkInterfaces/nic7152\",\r\n \"etag\": \"W/\\\"51ed0bd0-3c24-4be9-896b-6c1842c5971c\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9e7fa30c-da2b-4a89-a8cd-bd4b2664f88a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip8250\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Network/networkInterfaces/nic7152/ipConfigurations/ip8250\",\r\n \"etag\": \"W/\\\"51ed0bd0-3c24-4be9-896b-6c1842c5971c\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Network/virtualNetworks/vn9061/subnets/sn2968\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"h35on2rlcitutn2hpva4dqop4b.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Compute/availabilitySets/as3086?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3MTUxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9hdmFpbGFiaWxpdHlTZXRzL2FzMzA4Nj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"sku\": {\r\n \"name\": \"Classic\"\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e98f09f1-0761-42bd-a232-6ba30c19f7f4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28516.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19037.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/36.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "229" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutVM3Min;542,Microsoft.Compute/PutVM30Min;2712" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2a5e9d84-5460-4a92-890e-2a45c9457c0b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "d126593e-c5a5-4fa7-8ad2-dce73a4c5bb0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200415T095854Z:d126593e-c5a5-4fa7-8ad2-dce73a4c5bb0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Apr 2020 09:58:54 GMT" + ], + "Content-Length": [ + "445" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"as3086\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Compute/availabilitySets/as3086\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"sku\": {\r\n \"name\": \"Classic\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Compute/virtualMachines/vm9852?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3MTUxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm05ODUyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A1\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20180315\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://crptestar5078.blob.core.windows.net/crptestar4365/oscrptestar9402.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"[PLACEHOLDEr1]\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Network/networkInterfaces/nic7152\"\r\n }\r\n ]\r\n },\r\n \"priority\": \"Spot\",\r\n \"billingProfile\": {\r\n \"maxPrice\": -1.0\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2b2245ff-a363-4129-9a2f-684d1991529c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28516.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19037.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/36.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1118" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/e593ba02-d7ca-4194-8aa7-369b05393fde?api-version=2019-12-01" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutVM3Min;541,Microsoft.Compute/PutVM30Min;2711" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e593ba02-d7ca-4194-8aa7-369b05393fde" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "d778c3f1-4aca-4a7d-81c3-a6c13a959bc8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200415T095859Z:d778c3f1-4aca-4a7d-81c3-a6c13a959bc8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Apr 2020 09:58:59 GMT" + ], + "Content-Length": [ + "1684" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vm9852\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Compute/virtualMachines/vm9852\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"02fe4873-6d40-4b74-9686-5b3e9ccaf304\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A1\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20180315\",\r\n \"exactVersion\": \"4.127.20180315\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://crptestar5078.blob.core.windows.net/crptestar4365/oscrptestar9402.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Network/networkInterfaces/nic7152\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"priority\": \"Spot\",\r\n \"evictionPolicy\": \"Deallocate\",\r\n \"billingProfile\": {\r\n \"maxPrice\": -1.0\r\n }\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/e593ba02-d7ca-4194-8aa7-369b05393fde?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U1OTNiYTAyLWQ3Y2EtNDE5NC04YWE3LTM2OWIwNTM5M2ZkZT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28516.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19037.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/36.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "50" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29957" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6c340aff-7d90-43c7-a857-74e0bbd77898" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "e58f7b13-038c-470e-8783-68649f7a42e7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200415T095909Z:e58f7b13-038c-470e-8783-68649f7a42e7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Apr 2020 09:59:09 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-04-15T02:58:58.3891186-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e593ba02-d7ca-4194-8aa7-369b05393fde\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/e593ba02-d7ca-4194-8aa7-369b05393fde?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U1OTNiYTAyLWQ3Y2EtNDE5NC04YWE3LTM2OWIwNTM5M2ZkZT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28516.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19037.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/36.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29961" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4553653a-bc70-431a-a288-40cb39a64d47" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "c09a3960-d595-4a3c-a0b8-4aeb9aab8129" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200415T100000Z:c09a3960-d595-4a3c-a0b8-4aeb9aab8129" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Apr 2020 09:59:59 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-04-15T02:58:58.3891186-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e593ba02-d7ca-4194-8aa7-369b05393fde\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/e593ba02-d7ca-4194-8aa7-369b05393fde?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U1OTNiYTAyLWQ3Y2EtNDE5NC04YWE3LTM2OWIwNTM5M2ZkZT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28516.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19037.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/36.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29960" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2f67d3f6-5ca2-4087-8536-b9d9d61e3438" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "a60ee811-011c-46bb-9c67-64edd96b3a20" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200415T100050Z:a60ee811-011c-46bb-9c67-64edd96b3a20" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Apr 2020 10:00:50 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-04-15T02:58:58.3891186-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e593ba02-d7ca-4194-8aa7-369b05393fde\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/e593ba02-d7ca-4194-8aa7-369b05393fde?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U1OTNiYTAyLWQ3Y2EtNDE5NC04YWE3LTM2OWIwNTM5M2ZkZT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28516.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19037.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/36.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29957" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c9dcd0c0-8485-424a-8fed-b2250695fdef" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "470326cc-131f-4a9f-ac89-25269652d2a6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200415T100141Z:470326cc-131f-4a9f-ac89-25269652d2a6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Apr 2020 10:01:40 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-04-15T02:58:58.3891186-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e593ba02-d7ca-4194-8aa7-369b05393fde\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/southeastasia/operations/e593ba02-d7ca-4194-8aa7-369b05393fde?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U1OTNiYTAyLWQ3Y2EtNDE5NC04YWE3LTM2OWIwNTM5M2ZkZT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28516.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19037.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/36.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29954" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "edb33524-1bfd-4d47-ba20-168a614183ee" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "6d2111e2-0c43-4491-bdd8-492a53e207ff" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200415T100231Z:6d2111e2-0c43-4491-bdd8-492a53e207ff" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Apr 2020 10:02:30 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-04-15T02:58:58.3891186-07:00\",\r\n \"endTime\": \"2020-04-15T03:02:02.0622032-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e593ba02-d7ca-4194-8aa7-369b05393fde\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Compute/virtualMachines/vm9852?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3MTUxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm05ODUyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28516.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19037.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/36.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31983" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c12f0ae5-072b-4cbc-8e2a-a7146b6f5204" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "d45e39b2-7af0-4f52-8529-9b8ed7df5899" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200415T100232Z:d45e39b2-7af0-4f52-8529-9b8ed7df5899" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Apr 2020 10:02:32 GMT" + ], + "Content-Length": [ + "1713" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vm9852\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Compute/virtualMachines/vm9852\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"02fe4873-6d40-4b74-9686-5b3e9ccaf304\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A1\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20180315\",\r\n \"exactVersion\": \"4.127.20180315\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://crptestar5078.blob.core.windows.net/crptestar4365/oscrptestar9402.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Network/networkInterfaces/nic7152\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": \"Spot\",\r\n \"evictionPolicy\": \"Deallocate\",\r\n \"billingProfile\": {\r\n \"maxPrice\": -1.0\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Compute/virtualMachines/vm9852?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3MTUxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm05ODUyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb63dc2a-469d-47b1-a956-10d778266f68" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28516.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19037.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/36.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31982" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fb418b23-52d9-4402-b085-3d62fdab3cdb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "d0d6f598-d5fa-4a82-8e97-873fc16daa51" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200415T100232Z:d0d6f598-d5fa-4a82-8e97-873fc16daa51" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Apr 2020 10:02:32 GMT" + ], + "Content-Length": [ + "1713" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vm9852\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Compute/virtualMachines/vm9852\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"02fe4873-6d40-4b74-9686-5b3e9ccaf304\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A1\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20180315\",\r\n \"exactVersion\": \"4.127.20180315\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://crptestar5078.blob.core.windows.net/crptestar4365/oscrptestar9402.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Network/networkInterfaces/nic7152\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"priority\": \"Spot\",\r\n \"evictionPolicy\": \"Deallocate\",\r\n \"billingProfile\": {\r\n \"maxPrice\": -1.0\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar67151/providers/Microsoft.Compute/virtualMachines/vm9852/SimulateEviction?api-version=2019-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3MTUxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm05ODUyL1NpbXVsYXRlRXZpY3Rpb24/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ddd783d6-d50e-4aac-9b62-a2a5bc482d9d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28516.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19037.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/36.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "422c21d1-87db-4c00-bb1d-5711a8dbc733" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "2f34aeb5-1605-4ed0-8264-291573ab0942" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200415T100232Z:2f34aeb5-1605-4ed0-8264-291573ab0942" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Apr 2020 10:02:32 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourcegroups/crptestar67151?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjY3MTUxP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c81b8db5-c543-4f14-b633-0d0805c6424a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28516.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19037.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI2NzE1MS1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "1d4ebd0c-f885-428d-8055-90d79a8e8e64" + ], + "x-ms-correlation-request-id": [ + "1d4ebd0c-f885-428d-8055-90d79a8e8e64" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20200415T100237Z:1d4ebd0c-f885-428d-8055-90d79a8e8e64" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 15 Apr 2020 10:02:37 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + } + ], + "Names": { + "TestVMOperations_SimulateEviction": [ + "crptestar6715", + "as3086", + "crptestar5078" + ], + "CreatePublicIP": [ + "pip6534", + "dn7812" + ], + "CreateVNET": [ + "vn9061", + "sn2968" + ], + "CreateNIC": [ + "nic7152", + "ip8250" + ], + "CreateDefaultVMInput": [ + "crptestar4365", + "crptestar1365", + "crptestar9402", + "vm9852", + "Microsoft.Compute/virtualMachines8080" + ] + }, + "Variables": { + "SubscriptionId": "24fb23e3-6ba3-41f0-9b6e-e41131d5d61e" + } +} \ No newline at end of file