From 81fd3371b376173cab8a3695b5270fac906602bc Mon Sep 17 00:00:00 2001 From: Hyonho Lee Date: Tue, 23 Jul 2019 19:57:13 -0700 Subject: [PATCH] Adding dedicated host APIs and update of Gallery APIs (#7005) --- .../mgmtmetadata/compute_resource-manager.txt | 14 + .../src/Generated/ComputeManagementClient.cs | 12 + .../DedicatedHostGroupsOperations.cs | 1576 +++++ ...DedicatedHostGroupsOperationsExtensions.cs | 344 + .../src/Generated/DedicatedHostsOperations.cs | 1356 ++++ .../DedicatedHostsOperationsExtensions.cs | 455 ++ .../src/Generated/GalleriesOperations.cs | 10 +- .../GalleryImageVersionsOperations.cs | 8 +- .../src/Generated/GalleryImagesOperations.cs | 8 +- .../src/Generated/IComputeManagementClient.cs | 10 + .../IDedicatedHostGroupsOperations.cs | 225 + .../Generated/IDedicatedHostsOperations.cs | 284 + .../src/Generated/Models/DedicatedHost.cs | 181 + .../Models/DedicatedHostAllocatableVM.cs | 64 + .../Models/DedicatedHostAvailableCapacity.cs | 59 + .../Generated/Models/DedicatedHostGroup.cs | 111 + .../Models/DedicatedHostGroupUpdate.cs | 103 + .../Models/DedicatedHostInstanceView.cs | 72 + .../Models/DedicatedHostLicenseTypes.cs | 66 + .../Generated/Models/DedicatedHostUpdate.cs | 161 + .../GalleryArtifactPublishingProfileBase.cs | 36 +- .../Generated/Models/GalleryArtifactSource.cs | 67 - ...act.cs => GalleryArtifactVersionSource.cs} | 20 +- .../Generated/Models/GalleryDataDiskImage.cs | 32 +- .../src/Generated/Models/GalleryDiskImage.cs | 25 +- .../src/Generated/Models/GalleryImage.cs | 26 +- .../Generated/Models/GalleryImageVersion.cs | 12 +- .../GalleryImageVersionPublishingProfile.cs | 14 +- .../GalleryImageVersionStorageProfile.cs | 43 +- .../Generated/Models/GalleryOSDiskImage.cs | 14 +- .../src/Generated/Models/VirtualMachine.cs | 15 +- .../Generated/Models/VirtualMachineUpdate.cs | 15 +- .../SdkInfo_ComputeManagementClient.cs | 19 +- .../Microsoft.Azure.Management.Compute.csproj | 4 +- .../src/Properties/AssemblyInfo.cs | 4 +- ...soft.Azure.Management.Compute.Tests.csproj | 4 +- .../tests/ScenarioTests/DedicatedHostTests.cs | 133 + .../tests/ScenarioTests/GalleryTests.cs | 21 +- .../tests/ScenarioTests/VMTestBase.cs | 36 + .../TestDedicatedHostOperations.json | 1359 ++++ .../GalleryImageVersion_CRUD_Tests.json | 5776 ++++++++--------- .../GalleryImage_CRUD_Tests.json | 1144 ++-- .../Gallery_CRUD_Tests.json | 1176 ++-- 43 files changed, 10866 insertions(+), 4248 deletions(-) create mode 100644 eng/mgmt/mgmtmetadata/compute_resource-manager.txt create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DedicatedHostGroupsOperations.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DedicatedHostGroupsOperationsExtensions.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DedicatedHostsOperations.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DedicatedHostsOperationsExtensions.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IDedicatedHostGroupsOperations.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IDedicatedHostsOperations.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHost.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostAllocatableVM.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostAvailableCapacity.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostGroup.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostGroupUpdate.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostInstanceView.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostLicenseTypes.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostUpdate.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryArtifactSource.cs rename sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/{ManagedArtifact.cs => GalleryArtifactVersionSource.cs} (67%) create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/DedicatedHostTests.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/Compute.Tests.DedicatedHostTests/TestDedicatedHostOperations.json diff --git a/eng/mgmt/mgmtmetadata/compute_resource-manager.txt b/eng/mgmt/mgmtmetadata/compute_resource-manager.txt new file mode 100644 index 0000000000000..560c440bddbea --- /dev/null +++ b/eng/mgmt/mgmtmetadata/compute_resource-manager.txt @@ -0,0 +1,14 @@ +Installing AutoRest version: latest +AutoRest installed successfully. +Commencing code generation +Generating CSharp code +Executing AutoRest command +cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/compute/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=E:\hylee-sdk\july2\sdk +2019-07-18 00:16:54 UTC +Azure-rest-api-specs repository information +GitHub fork: Azure +Branch: master +Commit: 6b6a445819212313e466b2f77f8b3e6d4f9d18fb +AutoRest information +Requested version: latest +Bootstrapper version: autorest@2.0.4283 diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ComputeManagementClient.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ComputeManagementClient.cs index 00286b4a0c50f..5c83ac2949602 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ComputeManagementClient.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ComputeManagementClient.cs @@ -86,6 +86,16 @@ public partial class ComputeManagementClient : ServiceClient public virtual IProximityPlacementGroupsOperations ProximityPlacementGroups { get; private set; } + /// + /// Gets the IDedicatedHostGroupsOperations. + /// + public virtual IDedicatedHostGroupsOperations DedicatedHostGroups { get; private set; } + + /// + /// Gets the IDedicatedHostsOperations. + /// + public virtual IDedicatedHostsOperations DedicatedHosts { get; private set; } + /// /// Gets the IVirtualMachineExtensionImagesOperations. /// @@ -430,6 +440,8 @@ private void Initialize() Operations = new Operations(this); AvailabilitySets = new AvailabilitySetsOperations(this); ProximityPlacementGroups = new ProximityPlacementGroupsOperations(this); + DedicatedHostGroups = new DedicatedHostGroupsOperations(this); + DedicatedHosts = new DedicatedHostsOperations(this); VirtualMachineExtensionImages = new VirtualMachineExtensionImagesOperations(this); VirtualMachineExtensions = new VirtualMachineExtensionsOperations(this); VirtualMachineImages = new VirtualMachineImagesOperations(this); diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DedicatedHostGroupsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DedicatedHostGroupsOperations.cs new file mode 100644 index 0000000000000..e7bb78aad720c --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DedicatedHostGroupsOperations.cs @@ -0,0 +1,1576 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// DedicatedHostGroupsOperations operations. + /// + internal partial class DedicatedHostGroupsOperations : IServiceOperations, IDedicatedHostGroupsOperations + { + /// + /// Initializes a new instance of the DedicatedHostGroupsOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal DedicatedHostGroupsOperations(ComputeManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the ComputeManagementClient + /// + public ComputeManagementClient Client { get; private set; } + + /// + /// Create or update a dedicated host group. For details of Dedicated Host and + /// Dedicated Host Groups please see [Dedicated Host Documentation] + /// (https://go.microsoft.com/fwlink/?linkid=2082596) + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// Parameters supplied to the Create Dedicated Host Group. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, DedicatedHostGroup parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (hostGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "hostGroupName"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2019-03-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("hostGroupName", hostGroupName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups/{hostGroupName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{hostGroupName}", System.Uri.EscapeDataString(hostGroupName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 201) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Update an dedicated host group. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// Parameters supplied to the Update Dedicated Host Group operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, DedicatedHostGroupUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (hostGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "hostGroupName"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2019-03-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("hostGroupName", hostGroupName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Update", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups/{hostGroupName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{hostGroupName}", System.Uri.EscapeDataString(hostGroupName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PATCH"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Delete a dedicated host group. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// 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 DeleteWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (hostGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "hostGroupName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2019-03-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("hostGroupName", hostGroupName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups/{hostGroupName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{hostGroupName}", System.Uri.EscapeDataString(hostGroupName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 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; + } + + /// + /// Retrieves information about a dedicated host group. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (hostGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "hostGroupName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2019-03-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("hostGroupName", hostGroupName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups/{hostGroupName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{hostGroupName}", System.Uri.EscapeDataString(hostGroupName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Lists all of the dedicated host groups in the specified resource group. Use + /// the nextLink property in the response to get the next page of dedicated + /// host groups. + /// + /// + /// The name of the resource group. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2019-03-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Lists all of the dedicated host groups in the subscription. Use the + /// nextLink property in the response to get the next page of dedicated host + /// groups. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListBySubscriptionWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2019-03-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListBySubscription", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/hostGroups").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Lists all of the dedicated host groups in the specified resource group. Use + /// the nextLink property in the response to get the next page of dedicated + /// host groups. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroupNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Lists all of the dedicated host groups in the subscription. Use the + /// nextLink property in the response to get the next page of dedicated host + /// groups. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListBySubscriptionNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListBySubscriptionNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DedicatedHostGroupsOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DedicatedHostGroupsOperationsExtensions.cs new file mode 100644 index 0000000000000..c3cee8c431e50 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DedicatedHostGroupsOperationsExtensions.cs @@ -0,0 +1,344 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for DedicatedHostGroupsOperations. + /// + public static partial class DedicatedHostGroupsOperationsExtensions + { + /// + /// Create or update a dedicated host group. For details of Dedicated Host and + /// Dedicated Host Groups please see [Dedicated Host Documentation] + /// (https://go.microsoft.com/fwlink/?linkid=2082596) + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// Parameters supplied to the Create Dedicated Host Group. + /// + public static DedicatedHostGroup CreateOrUpdate(this IDedicatedHostGroupsOperations operations, string resourceGroupName, string hostGroupName, DedicatedHostGroup parameters) + { + return operations.CreateOrUpdateAsync(resourceGroupName, hostGroupName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Create or update a dedicated host group. For details of Dedicated Host and + /// Dedicated Host Groups please see [Dedicated Host Documentation] + /// (https://go.microsoft.com/fwlink/?linkid=2082596) + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// Parameters supplied to the Create Dedicated Host Group. + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateAsync(this IDedicatedHostGroupsOperations operations, string resourceGroupName, string hostGroupName, DedicatedHostGroup parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, hostGroupName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Update an dedicated host group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// Parameters supplied to the Update Dedicated Host Group operation. + /// + public static DedicatedHostGroup Update(this IDedicatedHostGroupsOperations operations, string resourceGroupName, string hostGroupName, DedicatedHostGroupUpdate parameters) + { + return operations.UpdateAsync(resourceGroupName, hostGroupName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Update an dedicated host group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// Parameters supplied to the Update Dedicated Host Group operation. + /// + /// + /// The cancellation token. + /// + public static async Task UpdateAsync(this IDedicatedHostGroupsOperations operations, string resourceGroupName, string hostGroupName, DedicatedHostGroupUpdate parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, hostGroupName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Delete a dedicated host group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + public static void Delete(this IDedicatedHostGroupsOperations operations, string resourceGroupName, string hostGroupName) + { + operations.DeleteAsync(resourceGroupName, hostGroupName).GetAwaiter().GetResult(); + } + + /// + /// Delete a dedicated host group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this IDedicatedHostGroupsOperations operations, string resourceGroupName, string hostGroupName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, hostGroupName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Retrieves information about a dedicated host group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + public static DedicatedHostGroup Get(this IDedicatedHostGroupsOperations operations, string resourceGroupName, string hostGroupName) + { + return operations.GetAsync(resourceGroupName, hostGroupName).GetAwaiter().GetResult(); + } + + /// + /// Retrieves information about a dedicated host group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IDedicatedHostGroupsOperations operations, string resourceGroupName, string hostGroupName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, hostGroupName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Lists all of the dedicated host groups in the specified resource group. Use + /// the nextLink property in the response to get the next page of dedicated + /// host groups. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + public static IPage ListByResourceGroup(this IDedicatedHostGroupsOperations operations, string resourceGroupName) + { + return operations.ListByResourceGroupAsync(resourceGroupName).GetAwaiter().GetResult(); + } + + /// + /// Lists all of the dedicated host groups in the specified resource group. Use + /// the nextLink property in the response to get the next page of dedicated + /// host groups. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByResourceGroupAsync(this IDedicatedHostGroupsOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Lists all of the dedicated host groups in the subscription. Use the + /// nextLink property in the response to get the next page of dedicated host + /// groups. + /// + /// + /// The operations group for this extension method. + /// + public static IPage ListBySubscription(this IDedicatedHostGroupsOperations operations) + { + return operations.ListBySubscriptionAsync().GetAwaiter().GetResult(); + } + + /// + /// Lists all of the dedicated host groups in the subscription. Use the + /// nextLink property in the response to get the next page of dedicated host + /// groups. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The cancellation token. + /// + public static async Task> ListBySubscriptionAsync(this IDedicatedHostGroupsOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListBySubscriptionWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Lists all of the dedicated host groups in the specified resource group. Use + /// the nextLink property in the response to get the next page of dedicated + /// host groups. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListByResourceGroupNext(this IDedicatedHostGroupsOperations operations, string nextPageLink) + { + return operations.ListByResourceGroupNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Lists all of the dedicated host groups in the specified resource group. Use + /// the nextLink property in the response to get the next page of dedicated + /// host groups. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByResourceGroupNextAsync(this IDedicatedHostGroupsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByResourceGroupNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Lists all of the dedicated host groups in the subscription. Use the + /// nextLink property in the response to get the next page of dedicated host + /// groups. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListBySubscriptionNext(this IDedicatedHostGroupsOperations operations, string nextPageLink) + { + return operations.ListBySubscriptionNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Lists all of the dedicated host groups in the subscription. Use the + /// nextLink property in the response to get the next page of dedicated host + /// groups. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListBySubscriptionNextAsync(this IDedicatedHostGroupsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListBySubscriptionNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DedicatedHostsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DedicatedHostsOperations.cs new file mode 100644 index 0000000000000..770981ee76147 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DedicatedHostsOperations.cs @@ -0,0 +1,1356 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// DedicatedHostsOperations operations. + /// + internal partial class DedicatedHostsOperations : IServiceOperations, IDedicatedHostsOperations + { + /// + /// Initializes a new instance of the DedicatedHostsOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal DedicatedHostsOperations(ComputeManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the ComputeManagementClient + /// + public ComputeManagementClient Client { get; private set; } + + /// + /// Create or update a dedicated host . + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The name of the dedicated host . + /// + /// + /// Parameters supplied to the Create Dedicated Host. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, DedicatedHost parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, hostGroupName, hostName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Update an dedicated host . + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The name of the dedicated host . + /// + /// + /// Parameters supplied to the Update Dedicated Host operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, DedicatedHostUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, hostGroupName, hostName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Delete a dedicated host. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The name of the dedicated host. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, hostGroupName, hostName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Retrieves information about a dedicated host. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The name of the dedicated host. + /// + /// + /// The expand expression to apply on the operation. Possible values include: + /// 'instanceView' + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, InstanceViewTypes? expand = default(InstanceViewTypes?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (hostGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "hostGroupName"); + } + if (hostName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "hostName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2019-03-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("hostGroupName", hostGroupName); + tracingParameters.Add("hostName", hostName); + tracingParameters.Add("expand", expand); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups/{hostGroupName}/hosts/{hostName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{hostGroupName}", System.Uri.EscapeDataString(hostGroupName)); + _url = _url.Replace("{hostName}", System.Uri.EscapeDataString(hostName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(expand, Client.SerializationSettings).Trim('"')))); + } + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Lists all of the dedicated hosts in the specified dedicated host group. Use + /// the nextLink property in the response to get the next page of dedicated + /// hosts. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListByHostGroupWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (hostGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "hostGroupName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2019-03-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("hostGroupName", hostGroupName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByHostGroup", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups/{hostGroupName}/hosts").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{hostGroupName}", System.Uri.EscapeDataString(hostGroupName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Create or update a dedicated host . + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The name of the dedicated host . + /// + /// + /// Parameters supplied to the Create Dedicated Host. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, DedicatedHost parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (hostGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "hostGroupName"); + } + if (hostName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "hostName"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2019-03-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("hostGroupName", hostGroupName); + tracingParameters.Add("hostName", hostName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups/{hostGroupName}/hosts/{hostName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{hostGroupName}", System.Uri.EscapeDataString(hostGroupName)); + _url = _url.Replace("{hostName}", System.Uri.EscapeDataString(hostName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 201) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Update an dedicated host . + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The name of the dedicated host . + /// + /// + /// Parameters supplied to the Update Dedicated Host operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, DedicatedHostUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (hostGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "hostGroupName"); + } + if (hostName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "hostName"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2019-03-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("hostGroupName", hostGroupName); + tracingParameters.Add("hostName", hostName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups/{hostGroupName}/hosts/{hostName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{hostGroupName}", System.Uri.EscapeDataString(hostGroupName)); + _url = _url.Replace("{hostName}", System.Uri.EscapeDataString(hostName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PATCH"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Delete a dedicated host. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The name of the dedicated host. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (hostGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "hostGroupName"); + } + if (hostName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "hostName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2019-03-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("hostGroupName", hostGroupName); + tracingParameters.Add("hostName", hostName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups/{hostGroupName}/hosts/{hostName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{hostGroupName}", System.Uri.EscapeDataString(hostGroupName)); + _url = _url.Replace("{hostName}", System.Uri.EscapeDataString(hostName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202 && (int)_statusCode != 204) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Lists all of the dedicated hosts in the specified dedicated host group. Use + /// the nextLink property in the response to get the next page of dedicated + /// hosts. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListByHostGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByHostGroupNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DedicatedHostsOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DedicatedHostsOperationsExtensions.cs new file mode 100644 index 0000000000000..4401399249d61 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DedicatedHostsOperationsExtensions.cs @@ -0,0 +1,455 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for DedicatedHostsOperations. + /// + public static partial class DedicatedHostsOperationsExtensions + { + /// + /// Create or update a dedicated host . + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The name of the dedicated host . + /// + /// + /// Parameters supplied to the Create Dedicated Host. + /// + public static DedicatedHost CreateOrUpdate(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName, DedicatedHost parameters) + { + return operations.CreateOrUpdateAsync(resourceGroupName, hostGroupName, hostName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Create or update a dedicated host . + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The name of the dedicated host . + /// + /// + /// Parameters supplied to the Create Dedicated Host. + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateAsync(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName, DedicatedHost parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, hostGroupName, hostName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Update an dedicated host . + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The name of the dedicated host . + /// + /// + /// Parameters supplied to the Update Dedicated Host operation. + /// + public static DedicatedHost Update(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName, DedicatedHostUpdate parameters) + { + return operations.UpdateAsync(resourceGroupName, hostGroupName, hostName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Update an dedicated host . + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The name of the dedicated host . + /// + /// + /// Parameters supplied to the Update Dedicated Host operation. + /// + /// + /// The cancellation token. + /// + public static async Task UpdateAsync(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName, DedicatedHostUpdate parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, hostGroupName, hostName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Delete a dedicated host. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The name of the dedicated host. + /// + public static void Delete(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName) + { + operations.DeleteAsync(resourceGroupName, hostGroupName, hostName).GetAwaiter().GetResult(); + } + + /// + /// Delete a dedicated host. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The name of the dedicated host. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, hostGroupName, hostName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Retrieves information about a dedicated host. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The name of the dedicated host. + /// + /// + /// The expand expression to apply on the operation. Possible values include: + /// 'instanceView' + /// + public static DedicatedHost Get(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName, InstanceViewTypes? expand = default(InstanceViewTypes?)) + { + return operations.GetAsync(resourceGroupName, hostGroupName, hostName, expand).GetAwaiter().GetResult(); + } + + /// + /// Retrieves information about a dedicated host. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The name of the dedicated host. + /// + /// + /// The expand expression to apply on the operation. Possible values include: + /// 'instanceView' + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName, InstanceViewTypes? expand = default(InstanceViewTypes?), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, hostGroupName, hostName, expand, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Lists all of the dedicated hosts in the specified dedicated host group. Use + /// the nextLink property in the response to get the next page of dedicated + /// hosts. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + public static IPage ListByHostGroup(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName) + { + return operations.ListByHostGroupAsync(resourceGroupName, hostGroupName).GetAwaiter().GetResult(); + } + + /// + /// Lists all of the dedicated hosts in the specified dedicated host group. Use + /// the nextLink property in the response to get the next page of dedicated + /// hosts. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByHostGroupAsync(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByHostGroupWithHttpMessagesAsync(resourceGroupName, hostGroupName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Create or update a dedicated host . + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The name of the dedicated host . + /// + /// + /// Parameters supplied to the Create Dedicated Host. + /// + public static DedicatedHost BeginCreateOrUpdate(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName, DedicatedHost parameters) + { + return operations.BeginCreateOrUpdateAsync(resourceGroupName, hostGroupName, hostName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Create or update a dedicated host . + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The name of the dedicated host . + /// + /// + /// Parameters supplied to the Create Dedicated Host. + /// + /// + /// The cancellation token. + /// + public static async Task BeginCreateOrUpdateAsync(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName, DedicatedHost parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, hostGroupName, hostName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Update an dedicated host . + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The name of the dedicated host . + /// + /// + /// Parameters supplied to the Update Dedicated Host operation. + /// + public static DedicatedHost BeginUpdate(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName, DedicatedHostUpdate parameters) + { + return operations.BeginUpdateAsync(resourceGroupName, hostGroupName, hostName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Update an dedicated host . + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The name of the dedicated host . + /// + /// + /// Parameters supplied to the Update Dedicated Host operation. + /// + /// + /// The cancellation token. + /// + public static async Task BeginUpdateAsync(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName, DedicatedHostUpdate parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginUpdateWithHttpMessagesAsync(resourceGroupName, hostGroupName, hostName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Delete a dedicated host. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The name of the dedicated host. + /// + public static void BeginDelete(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName) + { + operations.BeginDeleteAsync(resourceGroupName, hostGroupName, hostName).GetAwaiter().GetResult(); + } + + /// + /// Delete a dedicated host. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The name of the dedicated host. + /// + /// + /// The cancellation token. + /// + public static async Task BeginDeleteAsync(this IDedicatedHostsOperations operations, string resourceGroupName, string hostGroupName, string hostName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, hostGroupName, hostName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Lists all of the dedicated hosts in the specified dedicated host group. Use + /// the nextLink property in the response to get the next page of dedicated + /// hosts. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListByHostGroupNext(this IDedicatedHostsOperations operations, string nextPageLink) + { + return operations.ListByHostGroupNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Lists all of the dedicated hosts in the specified dedicated host group. Use + /// the nextLink property in the response to get the next page of dedicated + /// hosts. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByHostGroupNextAsync(this IDedicatedHostsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByHostGroupNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleriesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleriesOperations.cs index 9d3bca62d1fb7..ffec8f305a692 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleriesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleriesOperations.cs @@ -121,7 +121,7 @@ internal GalleriesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); } - string apiVersion = "2019-03-01"; + string apiVersion = "2019-07-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -330,7 +330,7 @@ internal GalleriesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - string apiVersion = "2019-03-01"; + string apiVersion = "2019-07-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -508,7 +508,7 @@ internal GalleriesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2019-03-01"; + string apiVersion = "2019-07-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -711,7 +711,7 @@ internal GalleriesOperations(ComputeManagementClient client) { gallery.Validate(); } - string apiVersion = "2019-03-01"; + string apiVersion = "2019-07-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -945,7 +945,7 @@ internal GalleriesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); } - string apiVersion = "2019-03-01"; + string apiVersion = "2019-07-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImageVersionsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImageVersionsOperations.cs index ba1a471334644..df8171faaddd3 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImageVersionsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImageVersionsOperations.cs @@ -149,7 +149,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageVersionName"); } - string apiVersion = "2019-03-01"; + string apiVersion = "2019-07-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -389,7 +389,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageName"); } - string apiVersion = "2019-03-01"; + string apiVersion = "2019-07-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -615,7 +615,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) { galleryImageVersion.Validate(); } - string apiVersion = "2019-03-01"; + string apiVersion = "2019-07-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -868,7 +868,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageVersionName"); } - string apiVersion = "2019-03-01"; + string apiVersion = "2019-07-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImagesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImagesOperations.cs index 3a1b279861563..55d4b70af50ae 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImagesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImagesOperations.cs @@ -133,7 +133,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageName"); } - string apiVersion = "2019-03-01"; + string apiVersion = "2019-07-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -356,7 +356,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); } - string apiVersion = "2019-03-01"; + string apiVersion = "2019-07-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -571,7 +571,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) { galleryImage.Validate(); } - string apiVersion = "2019-03-01"; + string apiVersion = "2019-07-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -815,7 +815,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageName"); } - string apiVersion = "2019-03-01"; + string apiVersion = "2019-07-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IComputeManagementClient.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IComputeManagementClient.cs index 393489305f2de..efef68e012ced 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IComputeManagementClient.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IComputeManagementClient.cs @@ -81,6 +81,16 @@ public partial interface IComputeManagementClient : System.IDisposable /// IProximityPlacementGroupsOperations ProximityPlacementGroups { get; } + /// + /// Gets the IDedicatedHostGroupsOperations. + /// + IDedicatedHostGroupsOperations DedicatedHostGroups { get; } + + /// + /// Gets the IDedicatedHostsOperations. + /// + IDedicatedHostsOperations DedicatedHosts { get; } + /// /// Gets the IVirtualMachineExtensionImagesOperations. /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IDedicatedHostGroupsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IDedicatedHostGroupsOperations.cs new file mode 100644 index 0000000000000..90d1ac4ea8897 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IDedicatedHostGroupsOperations.cs @@ -0,0 +1,225 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// DedicatedHostGroupsOperations operations. + /// + public partial interface IDedicatedHostGroupsOperations + { + /// + /// Create or update a dedicated host group. For details of Dedicated + /// Host and Dedicated Host Groups please see [Dedicated Host + /// Documentation] (https://go.microsoft.com/fwlink/?linkid=2082596) + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// Parameters supplied to the Create Dedicated Host Group. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, DedicatedHostGroup parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Update an dedicated host group. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// Parameters supplied to the Update Dedicated Host Group operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, DedicatedHostGroupUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Delete a dedicated host group. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Retrieves information about a dedicated host group. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Lists all of the dedicated host groups in the specified resource + /// group. Use the nextLink property in the response to get the next + /// page of dedicated host groups. + /// + /// + /// The name of the resource group. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Lists all of the dedicated host groups in the subscription. Use the + /// nextLink property in the response to get the next page of dedicated + /// host groups. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListBySubscriptionWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Lists all of the dedicated host groups in the specified resource + /// group. Use the nextLink property in the response to get the next + /// page of dedicated host groups. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Lists all of the dedicated host groups in the subscription. Use the + /// nextLink property in the response to get the next page of dedicated + /// host groups. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListBySubscriptionNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IDedicatedHostsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IDedicatedHostsOperations.cs new file mode 100644 index 0000000000000..abee8ad931350 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IDedicatedHostsOperations.cs @@ -0,0 +1,284 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// DedicatedHostsOperations operations. + /// + public partial interface IDedicatedHostsOperations + { + /// + /// Create or update a dedicated host . + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The name of the dedicated host . + /// + /// + /// Parameters supplied to the Create Dedicated Host. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, DedicatedHost parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Update an dedicated host . + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The name of the dedicated host . + /// + /// + /// Parameters supplied to the Update Dedicated Host operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, DedicatedHostUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Delete a dedicated host. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The name of the dedicated host. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Retrieves information about a dedicated host. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The name of the dedicated host. + /// + /// + /// The expand expression to apply on the operation. Possible values + /// include: 'instanceView' + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, InstanceViewTypes? expand = default(InstanceViewTypes?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Lists all of the dedicated hosts in the specified dedicated host + /// group. Use the nextLink property in the response to get the next + /// page of dedicated hosts. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListByHostGroupWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Create or update a dedicated host . + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The name of the dedicated host . + /// + /// + /// Parameters supplied to the Create Dedicated Host. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, DedicatedHost parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Update an dedicated host . + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The name of the dedicated host . + /// + /// + /// Parameters supplied to the Update Dedicated Host operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, DedicatedHostUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Delete a dedicated host. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the dedicated host group. + /// + /// + /// The name of the dedicated host. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string hostGroupName, string hostName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Lists all of the dedicated hosts in the specified dedicated host + /// group. Use the nextLink property in the response to get the next + /// page of dedicated hosts. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListByHostGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHost.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHost.cs new file mode 100644 index 0000000000000..26a73584615c9 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHost.cs @@ -0,0 +1,181 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Specifies information about the Dedicated host. + /// + [Rest.Serialization.JsonTransformation] + public partial class DedicatedHost : Resource + { + /// + /// Initializes a new instance of the DedicatedHost class. + /// + public DedicatedHost() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the DedicatedHost class. + /// + /// Resource location + /// SKU of the dedicated host for Hardware Generation + /// and VM family. Only name is required to be set. List + /// Microsoft.Compute SKUs for a list of possible values. + /// Resource Id + /// Resource name + /// Resource type + /// Resource tags + /// Fault domain of the dedicated + /// host within a dedicated host group. + /// Specifies whether the dedicated + /// host should be replaced automatically in case of a failure. The + /// value is defaulted to 'true' when not provided. + /// A unique id generated and assigned to the + /// dedicated host by the platform. <br><br> Does not + /// change throughout the lifetime of the host. + /// A list of references to all virtual + /// machines in the Dedicated Host. + /// Specifies the software license type that + /// will be applied to the VMs deployed on the dedicated host. + /// <br><br> Possible values are: <br><br> + /// **None** <br><br> **Windows_Server_Hybrid** + /// <br><br> **Windows_Server_Perpetual** + /// <br><br> Default: **None**. Possible values include: + /// 'None', 'Windows_Server_Hybrid', 'Windows_Server_Perpetual' + /// The date when the host was first + /// provisioned. + /// The provisioning state, which only + /// appears in the response. + /// The dedicated host instance + /// view. + public DedicatedHost(string location, Sku sku, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), int? platformFaultDomain = default(int?), bool? autoReplaceOnFailure = default(bool?), string hostId = default(string), IList virtualMachines = default(IList), DedicatedHostLicenseTypes? licenseType = default(DedicatedHostLicenseTypes?), System.DateTime? provisioningTime = default(System.DateTime?), string provisioningState = default(string), DedicatedHostInstanceView instanceView = default(DedicatedHostInstanceView)) + : base(location, id, name, type, tags) + { + PlatformFaultDomain = platformFaultDomain; + AutoReplaceOnFailure = autoReplaceOnFailure; + HostId = hostId; + VirtualMachines = virtualMachines; + LicenseType = licenseType; + ProvisioningTime = provisioningTime; + ProvisioningState = provisioningState; + InstanceView = instanceView; + Sku = sku; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets fault domain of the dedicated host within a dedicated + /// host group. + /// + [JsonProperty(PropertyName = "properties.platformFaultDomain")] + public int? PlatformFaultDomain { get; set; } + + /// + /// Gets or sets specifies whether the dedicated host should be + /// replaced automatically in case of a failure. The value is defaulted + /// to 'true' when not provided. + /// + [JsonProperty(PropertyName = "properties.autoReplaceOnFailure")] + public bool? AutoReplaceOnFailure { get; set; } + + /// + /// Gets a unique id generated and assigned to the dedicated host by + /// the platform. &lt;br&gt;&lt;br&gt; Does not change + /// throughout the lifetime of the host. + /// + [JsonProperty(PropertyName = "properties.hostId")] + public string HostId { get; private set; } + + /// + /// Gets a list of references to all virtual machines in the Dedicated + /// Host. + /// + [JsonProperty(PropertyName = "properties.virtualMachines")] + public IList VirtualMachines { get; private set; } + + /// + /// Gets or sets specifies the software license type that will be + /// applied to the VMs deployed on the dedicated host. + /// &lt;br&gt;&lt;br&gt; Possible values are: + /// &lt;br&gt;&lt;br&gt; **None** + /// &lt;br&gt;&lt;br&gt; **Windows_Server_Hybrid** + /// &lt;br&gt;&lt;br&gt; **Windows_Server_Perpetual** + /// &lt;br&gt;&lt;br&gt; Default: **None**. Possible + /// values include: 'None', 'Windows_Server_Hybrid', + /// 'Windows_Server_Perpetual' + /// + [JsonProperty(PropertyName = "properties.licenseType")] + public DedicatedHostLicenseTypes? LicenseType { get; set; } + + /// + /// Gets the date when the host was first provisioned. + /// + [JsonProperty(PropertyName = "properties.provisioningTime")] + public System.DateTime? ProvisioningTime { get; private set; } + + /// + /// Gets the provisioning state, which only appears in the response. + /// + [JsonProperty(PropertyName = "properties.provisioningState")] + public string ProvisioningState { get; private set; } + + /// + /// Gets the dedicated host instance view. + /// + [JsonProperty(PropertyName = "properties.instanceView")] + public DedicatedHostInstanceView InstanceView { get; private set; } + + /// + /// Gets or sets SKU of the dedicated host for Hardware Generation and + /// VM family. Only name is required to be set. List Microsoft.Compute + /// SKUs for a list of possible values. + /// + [JsonProperty(PropertyName = "sku")] + public Sku Sku { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + if (Sku == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Sku"); + } + if (PlatformFaultDomain > 2) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "PlatformFaultDomain", 2); + } + if (PlatformFaultDomain < 0) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "PlatformFaultDomain", 0); + } + } + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostAllocatableVM.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostAllocatableVM.cs new file mode 100644 index 0000000000000..f0fc416b07525 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostAllocatableVM.cs @@ -0,0 +1,64 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Represents the dedicated host unutilized capacity in terms of a + /// specific VM size. + /// + public partial class DedicatedHostAllocatableVM + { + /// + /// Initializes a new instance of the DedicatedHostAllocatableVM class. + /// + public DedicatedHostAllocatableVM() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the DedicatedHostAllocatableVM class. + /// + /// VM size in terms of which the unutilized + /// capacity is represented. + /// Maximum number of VMs of size vmSize that can + /// fit in the dedicated host's remaining capacity. + public DedicatedHostAllocatableVM(string vmSize = default(string), double? count = default(double?)) + { + VmSize = vmSize; + Count = count; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets VM size in terms of which the unutilized capacity is + /// represented. + /// + [JsonProperty(PropertyName = "vmSize")] + public string VmSize { get; set; } + + /// + /// Gets or sets maximum number of VMs of size vmSize that can fit in + /// the dedicated host's remaining capacity. + /// + [JsonProperty(PropertyName = "count")] + public double? Count { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostAvailableCapacity.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostAvailableCapacity.cs new file mode 100644 index 0000000000000..feb77504562d9 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostAvailableCapacity.cs @@ -0,0 +1,59 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Dedicated host unutilized capacity. + /// + public partial class DedicatedHostAvailableCapacity + { + /// + /// Initializes a new instance of the DedicatedHostAvailableCapacity + /// class. + /// + public DedicatedHostAvailableCapacity() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the DedicatedHostAvailableCapacity + /// class. + /// + /// The unutilized capacity of the + /// dedicated host represented in terms of each VM size that is allowed + /// to be deployed to the dedicated host. + public DedicatedHostAvailableCapacity(IList allocatableVMs = default(IList)) + { + AllocatableVMs = allocatableVMs; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the unutilized capacity of the dedicated host + /// represented in terms of each VM size that is allowed to be deployed + /// to the dedicated host. + /// + [JsonProperty(PropertyName = "allocatableVMs")] + public IList AllocatableVMs { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostGroup.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostGroup.cs new file mode 100644 index 0000000000000..6957ea29c92c5 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostGroup.cs @@ -0,0 +1,111 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Specifies information about the dedicated host group that the dedicated + /// hosts should be assigned to. <br><br> Currently, a + /// dedicated host can only be added to a dedicated host group at creation + /// time. An existing dedicated host cannot be added to another dedicated + /// host group. + /// + [Rest.Serialization.JsonTransformation] + public partial class DedicatedHostGroup : Resource + { + /// + /// Initializes a new instance of the DedicatedHostGroup class. + /// + public DedicatedHostGroup() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the DedicatedHostGroup class. + /// + /// Resource location + /// Number of fault domains that + /// the host group can span. + /// Resource Id + /// Resource name + /// Resource type + /// Resource tags + /// A list of references to all dedicated hosts in + /// the dedicated host group. + /// Availability Zone to use for this host group � + /// only single zone is supported. The zone can be assigned only during + /// creation. If not provided, the group supports all zones in the + /// region. If provided, enforces each host in the group to be in the + /// same zone. + public DedicatedHostGroup(string location, int platformFaultDomainCount, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), IList hosts = default(IList), IList zones = default(IList)) + : base(location, id, name, type, tags) + { + PlatformFaultDomainCount = platformFaultDomainCount; + Hosts = hosts; + Zones = zones; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets number of fault domains that the host group can span. + /// + [JsonProperty(PropertyName = "properties.platformFaultDomainCount")] + public int PlatformFaultDomainCount { get; set; } + + /// + /// Gets a list of references to all dedicated hosts in the dedicated + /// host group. + /// + [JsonProperty(PropertyName = "properties.hosts")] + public IList Hosts { get; private set; } + + /// + /// Gets or sets availability Zone to use for this host group � only + /// single zone is supported. The zone can be assigned only during + /// creation. If not provided, the group supports all zones in the + /// region. If provided, enforces each host in the group to be in the + /// same zone. + /// + [JsonProperty(PropertyName = "zones")] + public IList Zones { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + if (PlatformFaultDomainCount > 3) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "PlatformFaultDomainCount", 3); + } + if (PlatformFaultDomainCount < 1) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "PlatformFaultDomainCount", 1); + } + } + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostGroupUpdate.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostGroupUpdate.cs new file mode 100644 index 0000000000000..46800c5fea9f8 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostGroupUpdate.cs @@ -0,0 +1,103 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Specifies information about the dedicated host group that the dedicated + /// host should be assigned to. Only tags may be updated. + /// + [Rest.Serialization.JsonTransformation] + public partial class DedicatedHostGroupUpdate : UpdateResource + { + /// + /// Initializes a new instance of the DedicatedHostGroupUpdate class. + /// + public DedicatedHostGroupUpdate() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the DedicatedHostGroupUpdate class. + /// + /// Number of fault domains that + /// the host group can span. + /// Resource tags + /// A list of references to all dedicated hosts in + /// the dedicated host group. + /// Availability Zone to use for this host group � + /// only single zone is supported. The zone can be assigned only during + /// creation. If not provided, the group supports all zones in the + /// region. If provided, enforces each host in the group to be in the + /// same zone. + public DedicatedHostGroupUpdate(int platformFaultDomainCount, IDictionary tags = default(IDictionary), IList hosts = default(IList), IList zones = default(IList)) + : base(tags) + { + PlatformFaultDomainCount = platformFaultDomainCount; + Hosts = hosts; + Zones = zones; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets number of fault domains that the host group can span. + /// + [JsonProperty(PropertyName = "properties.platformFaultDomainCount")] + public int PlatformFaultDomainCount { get; set; } + + /// + /// Gets a list of references to all dedicated hosts in the dedicated + /// host group. + /// + [JsonProperty(PropertyName = "properties.hosts")] + public IList Hosts { get; private set; } + + /// + /// Gets or sets availability Zone to use for this host group � only + /// single zone is supported. The zone can be assigned only during + /// creation. If not provided, the group supports all zones in the + /// region. If provided, enforces each host in the group to be in the + /// same zone. + /// + [JsonProperty(PropertyName = "zones")] + public IList Zones { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (PlatformFaultDomainCount > 3) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "PlatformFaultDomainCount", 3); + } + if (PlatformFaultDomainCount < 1) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "PlatformFaultDomainCount", 1); + } + } + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostInstanceView.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostInstanceView.cs new file mode 100644 index 0000000000000..6e25d0364b64a --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostInstanceView.cs @@ -0,0 +1,72 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// The instance view of a dedicated host. + /// + public partial class DedicatedHostInstanceView + { + /// + /// Initializes a new instance of the DedicatedHostInstanceView class. + /// + public DedicatedHostInstanceView() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the DedicatedHostInstanceView class. + /// + /// Specifies the unique id of the dedicated + /// physical machine on which the dedicated host resides. + /// Unutilized capacity of the + /// dedicated host. + /// The resource status information. + public DedicatedHostInstanceView(string assetId = default(string), DedicatedHostAvailableCapacity availableCapacity = default(DedicatedHostAvailableCapacity), IList statuses = default(IList)) + { + AssetId = assetId; + AvailableCapacity = availableCapacity; + Statuses = statuses; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets specifies the unique id of the dedicated physical machine on + /// which the dedicated host resides. + /// + [JsonProperty(PropertyName = "assetId")] + public string AssetId { get; private set; } + + /// + /// Gets or sets unutilized capacity of the dedicated host. + /// + [JsonProperty(PropertyName = "availableCapacity")] + public DedicatedHostAvailableCapacity AvailableCapacity { get; set; } + + /// + /// Gets or sets the resource status information. + /// + [JsonProperty(PropertyName = "statuses")] + public IList Statuses { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostLicenseTypes.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostLicenseTypes.cs new file mode 100644 index 0000000000000..408c2b449d335 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostLicenseTypes.cs @@ -0,0 +1,66 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for DedicatedHostLicenseTypes. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum DedicatedHostLicenseTypes + { + [EnumMember(Value = "None")] + None, + [EnumMember(Value = "Windows_Server_Hybrid")] + WindowsServerHybrid, + [EnumMember(Value = "Windows_Server_Perpetual")] + WindowsServerPerpetual + } + internal static class DedicatedHostLicenseTypesEnumExtension + { + internal static string ToSerializedValue(this DedicatedHostLicenseTypes? value) + { + return value == null ? null : ((DedicatedHostLicenseTypes)value).ToSerializedValue(); + } + + internal static string ToSerializedValue(this DedicatedHostLicenseTypes value) + { + switch( value ) + { + case DedicatedHostLicenseTypes.None: + return "None"; + case DedicatedHostLicenseTypes.WindowsServerHybrid: + return "Windows_Server_Hybrid"; + case DedicatedHostLicenseTypes.WindowsServerPerpetual: + return "Windows_Server_Perpetual"; + } + return null; + } + + internal static DedicatedHostLicenseTypes? ParseDedicatedHostLicenseTypes(this string value) + { + switch( value ) + { + case "None": + return DedicatedHostLicenseTypes.None; + case "Windows_Server_Hybrid": + return DedicatedHostLicenseTypes.WindowsServerHybrid; + case "Windows_Server_Perpetual": + return DedicatedHostLicenseTypes.WindowsServerPerpetual; + } + return null; + } + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostUpdate.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostUpdate.cs new file mode 100644 index 0000000000000..99a1a24361c2c --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DedicatedHostUpdate.cs @@ -0,0 +1,161 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Specifies information about the dedicated host. Only tags, + /// autoReplaceOnFailure and licenseType may be updated. + /// + [Rest.Serialization.JsonTransformation] + public partial class DedicatedHostUpdate : UpdateResource + { + /// + /// Initializes a new instance of the DedicatedHostUpdate class. + /// + public DedicatedHostUpdate() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the DedicatedHostUpdate class. + /// + /// Resource tags + /// Fault domain of the dedicated + /// host within a dedicated host group. + /// Specifies whether the dedicated + /// host should be replaced automatically in case of a failure. The + /// value is defaulted to 'true' when not provided. + /// A unique id generated and assigned to the + /// dedicated host by the platform. <br><br> Does not + /// change throughout the lifetime of the host. + /// A list of references to all virtual + /// machines in the Dedicated Host. + /// Specifies the software license type that + /// will be applied to the VMs deployed on the dedicated host. + /// <br><br> Possible values are: <br><br> + /// **None** <br><br> **Windows_Server_Hybrid** + /// <br><br> **Windows_Server_Perpetual** + /// <br><br> Default: **None**. Possible values include: + /// 'None', 'Windows_Server_Hybrid', 'Windows_Server_Perpetual' + /// The date when the host was first + /// provisioned. + /// The provisioning state, which only + /// appears in the response. + /// The dedicated host instance + /// view. + public DedicatedHostUpdate(IDictionary tags = default(IDictionary), int? platformFaultDomain = default(int?), bool? autoReplaceOnFailure = default(bool?), string hostId = default(string), IList virtualMachines = default(IList), DedicatedHostLicenseTypes? licenseType = default(DedicatedHostLicenseTypes?), System.DateTime? provisioningTime = default(System.DateTime?), string provisioningState = default(string), DedicatedHostInstanceView instanceView = default(DedicatedHostInstanceView)) + : base(tags) + { + PlatformFaultDomain = platformFaultDomain; + AutoReplaceOnFailure = autoReplaceOnFailure; + HostId = hostId; + VirtualMachines = virtualMachines; + LicenseType = licenseType; + ProvisioningTime = provisioningTime; + ProvisioningState = provisioningState; + InstanceView = instanceView; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets fault domain of the dedicated host within a dedicated + /// host group. + /// + [JsonProperty(PropertyName = "properties.platformFaultDomain")] + public int? PlatformFaultDomain { get; set; } + + /// + /// Gets or sets specifies whether the dedicated host should be + /// replaced automatically in case of a failure. The value is defaulted + /// to 'true' when not provided. + /// + [JsonProperty(PropertyName = "properties.autoReplaceOnFailure")] + public bool? AutoReplaceOnFailure { get; set; } + + /// + /// Gets a unique id generated and assigned to the dedicated host by + /// the platform. &lt;br&gt;&lt;br&gt; Does not change + /// throughout the lifetime of the host. + /// + [JsonProperty(PropertyName = "properties.hostId")] + public string HostId { get; private set; } + + /// + /// Gets a list of references to all virtual machines in the Dedicated + /// Host. + /// + [JsonProperty(PropertyName = "properties.virtualMachines")] + public IList VirtualMachines { get; private set; } + + /// + /// Gets or sets specifies the software license type that will be + /// applied to the VMs deployed on the dedicated host. + /// &lt;br&gt;&lt;br&gt; Possible values are: + /// &lt;br&gt;&lt;br&gt; **None** + /// &lt;br&gt;&lt;br&gt; **Windows_Server_Hybrid** + /// &lt;br&gt;&lt;br&gt; **Windows_Server_Perpetual** + /// &lt;br&gt;&lt;br&gt; Default: **None**. Possible + /// values include: 'None', 'Windows_Server_Hybrid', + /// 'Windows_Server_Perpetual' + /// + [JsonProperty(PropertyName = "properties.licenseType")] + public DedicatedHostLicenseTypes? LicenseType { get; set; } + + /// + /// Gets the date when the host was first provisioned. + /// + [JsonProperty(PropertyName = "properties.provisioningTime")] + public System.DateTime? ProvisioningTime { get; private set; } + + /// + /// Gets the provisioning state, which only appears in the response. + /// + [JsonProperty(PropertyName = "properties.provisioningState")] + public string ProvisioningState { get; private set; } + + /// + /// Gets the dedicated host instance view. + /// + [JsonProperty(PropertyName = "properties.instanceView")] + public DedicatedHostInstanceView InstanceView { get; private set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (PlatformFaultDomain > 2) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "PlatformFaultDomain", 2); + } + if (PlatformFaultDomain < 0) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "PlatformFaultDomain", 0); + } + } + } +} 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 fd259663234ca..0b003fb77b808 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 @@ -10,7 +10,6 @@ namespace Microsoft.Azure.Management.Compute.Models { - using Microsoft.Rest; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -37,10 +36,9 @@ public GalleryArtifactPublishingProfileBase() /// The target regions where the Image /// Version is going to be replicated to. This property is /// updatable. - public GalleryArtifactPublishingProfileBase(GalleryArtifactSource source, IList targetRegions = default(IList)) + public GalleryArtifactPublishingProfileBase(IList targetRegions = default(IList)) { TargetRegions = targetRegions; - Source = source; CustomInit(); } @@ -56,37 +54,5 @@ public GalleryArtifactPublishingProfileBase() [JsonProperty(PropertyName = "targetRegions")] public IList TargetRegions { get; set; } - /// - /// - [JsonProperty(PropertyName = "source")] - public GalleryArtifactSource Source { get; set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (Source == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "Source"); - } - if (TargetRegions != null) - { - foreach (var element in TargetRegions) - { - if (element != null) - { - element.Validate(); - } - } - } - if (Source != null) - { - Source.Validate(); - } - } } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryArtifactSource.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryArtifactSource.cs deleted file mode 100644 index 1419a0c08ed01..0000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryArtifactSource.cs +++ /dev/null @@ -1,67 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Microsoft.Rest; - using Newtonsoft.Json; - using System.Linq; - - /// - /// The source image from which the Image Version is going to be created. - /// - public partial class GalleryArtifactSource - { - /// - /// Initializes a new instance of the GalleryArtifactSource class. - /// - public GalleryArtifactSource() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the GalleryArtifactSource class. - /// - public GalleryArtifactSource(ManagedArtifact managedImage) - { - ManagedImage = managedImage; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// - [JsonProperty(PropertyName = "managedImage")] - public ManagedArtifact ManagedImage { get; set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (ManagedImage == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "ManagedImage"); - } - if (ManagedImage != null) - { - ManagedImage.Validate(); - } - } - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ManagedArtifact.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryArtifactVersionSource.cs similarity index 67% rename from sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ManagedArtifact.cs rename to sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryArtifactVersionSource.cs index 07cc6d49434b8..80b408b3cdaf7 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ManagedArtifact.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryArtifactVersionSource.cs @@ -15,23 +15,26 @@ namespace Microsoft.Azure.Management.Compute.Models using System.Linq; /// - /// The managed artifact. + /// The gallery artifact version source. /// - public partial class ManagedArtifact + public partial class GalleryArtifactVersionSource { /// - /// Initializes a new instance of the ManagedArtifact class. + /// Initializes a new instance of the GalleryArtifactVersionSource + /// class. /// - public ManagedArtifact() + public GalleryArtifactVersionSource() { CustomInit(); } /// - /// Initializes a new instance of the ManagedArtifact class. + /// Initializes a new instance of the GalleryArtifactVersionSource + /// class. /// - /// The managed artifact id. - public ManagedArtifact(string id) + /// The id of the gallery artifact version source. Can + /// specify a disk uri, snapshot uri, or user image. + public GalleryArtifactVersionSource(string id) { Id = id; CustomInit(); @@ -43,7 +46,8 @@ public ManagedArtifact(string id) partial void CustomInit(); /// - /// Gets or sets the managed artifact id. + /// Gets or sets the id of the gallery artifact version source. Can + /// specify a disk uri, snapshot uri, or user image. /// [JsonProperty(PropertyName = "id")] public string Id { get; set; } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryDataDiskImage.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryDataDiskImage.cs index d2ee0adb9cfdc..c6d9372125f81 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryDataDiskImage.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryDataDiskImage.cs @@ -29,17 +29,17 @@ public GalleryDataDiskImage() /// /// Initializes a new instance of the GalleryDataDiskImage class. /// + /// This property specifies the logical unit number + /// of the data disk. This value is used to identify data disks within + /// the Virtual Machine and therefore must be unique for each data disk + /// attached to the Virtual Machine. /// This property indicates the size of the VHD /// to be created. /// The host caching of the disk. Valid /// values are 'None', 'ReadOnly', and 'ReadWrite'. Possible values /// include: 'None', 'ReadOnly', 'ReadWrite' - /// This property specifies the logical unit number - /// of the data disk. This value is used to identify data disks within - /// the Virtual Machine and therefore must be unique for each data disk - /// attached to the Virtual Machine. - public GalleryDataDiskImage(int? sizeInGB = default(int?), HostCaching? hostCaching = default(HostCaching?), int? lun = default(int?)) - : base(sizeInGB, hostCaching) + public GalleryDataDiskImage(int lun, int? sizeInGB = default(int?), HostCaching? hostCaching = default(HostCaching?), GalleryArtifactVersionSource source = default(GalleryArtifactVersionSource)) + : base(sizeInGB, hostCaching, source) { Lun = lun; CustomInit(); @@ -51,13 +51,23 @@ public GalleryDataDiskImage() partial void CustomInit(); /// - /// Gets this property specifies the logical unit number of the data - /// disk. This value is used to identify data disks within the Virtual - /// Machine and therefore must be unique for each data disk attached to - /// the Virtual Machine. + /// Gets or sets this property specifies the logical unit number of the + /// data disk. This value is used to identify data disks within the + /// Virtual Machine and therefore must be unique for each data disk + /// attached to the Virtual Machine. /// [JsonProperty(PropertyName = "lun")] - public int? Lun { get; private set; } + public int Lun { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + } } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryDiskImage.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryDiskImage.cs index d811b0cb46b75..5043c4324bddf 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryDiskImage.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryDiskImage.cs @@ -34,10 +34,11 @@ public GalleryDiskImage() /// The host caching of the disk. Valid /// values are 'None', 'ReadOnly', and 'ReadWrite'. Possible values /// include: 'None', 'ReadOnly', 'ReadWrite' - public GalleryDiskImage(int? sizeInGB = default(int?), HostCaching? hostCaching = default(HostCaching?)) + public GalleryDiskImage(int? sizeInGB = default(int?), HostCaching? hostCaching = default(HostCaching?), GalleryArtifactVersionSource source = default(GalleryArtifactVersionSource)) { SizeInGB = sizeInGB; HostCaching = hostCaching; + Source = source; CustomInit(); } @@ -53,12 +54,30 @@ public GalleryDiskImage() public int? SizeInGB { get; private set; } /// - /// Gets the host caching of the disk. Valid values are 'None', + /// Gets or sets the host caching of the disk. Valid values are 'None', /// 'ReadOnly', and 'ReadWrite'. Possible values include: 'None', /// 'ReadOnly', 'ReadWrite' /// [JsonProperty(PropertyName = "hostCaching")] - public HostCaching? HostCaching { get; private set; } + public HostCaching? HostCaching { get; set; } + /// + /// + [JsonProperty(PropertyName = "source")] + public GalleryArtifactVersionSource Source { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Source != null) + { + Source.Validate(); + } + } } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImage.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImage.cs index 9ef29e0bd328f..276cb3aeaae56 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImage.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImage.cs @@ -41,9 +41,10 @@ public GalleryImage() /// managed image. <br><br> Possible values are: /// <br><br> **Windows** <br><br> **Linux**. /// Possible values include: 'Windows', 'Linux' - /// The allowed values for OS State are - /// 'Generalized'. Possible values include: 'Generalized', - /// 'Specialized' + /// This property allows the user to specify + /// whether the virtual machines created under this image are + /// 'Generalized' or 'Specialized'. Possible values include: + /// 'Generalized', 'Specialized' /// Resource Id /// Resource name /// Resource type @@ -55,12 +56,15 @@ public GalleryImage() /// The privacy statement /// uri. /// The release note uri. + /// The hypervisor generation of the + /// Virtual Machine. Applicable to OS disks only. Possible values + /// include: 'V1', 'V2' /// The end of life date of the gallery /// Image Definition. This property can be used for decommissioning /// purposes. This property is updatable. /// The current state of the gallery /// Image Definition. - public GalleryImage(string location, OperatingSystemTypes osType, OperatingSystemStateTypes osState, GalleryImageIdentifier identifier, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string description = default(string), string eula = default(string), string privacyStatementUri = default(string), string releaseNoteUri = default(string), System.DateTime? endOfLifeDate = default(System.DateTime?), RecommendedMachineConfiguration recommended = default(RecommendedMachineConfiguration), Disallowed disallowed = default(Disallowed), ImagePurchasePlan purchasePlan = default(ImagePurchasePlan), string provisioningState = default(string)) + public GalleryImage(string location, OperatingSystemTypes osType, OperatingSystemStateTypes osState, GalleryImageIdentifier identifier, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string description = default(string), string eula = default(string), string privacyStatementUri = default(string), string releaseNoteUri = default(string), string hyperVGeneration = default(string), System.DateTime? endOfLifeDate = default(System.DateTime?), RecommendedMachineConfiguration recommended = default(RecommendedMachineConfiguration), Disallowed disallowed = default(Disallowed), ImagePurchasePlan purchasePlan = default(ImagePurchasePlan), string provisioningState = default(string)) : base(location, id, name, type, tags) { Description = description; @@ -69,6 +73,7 @@ public GalleryImage() ReleaseNoteUri = releaseNoteUri; OsType = osType; OsState = osState; + HyperVGeneration = hyperVGeneration; EndOfLifeDate = endOfLifeDate; Identifier = identifier; Recommended = recommended; @@ -120,12 +125,21 @@ public GalleryImage() public OperatingSystemTypes OsType { get; set; } /// - /// Gets or sets the allowed values for OS State are 'Generalized'. - /// Possible values include: 'Generalized', 'Specialized' + /// Gets or sets this property allows the user to specify whether the + /// virtual machines created under this image are 'Generalized' or + /// 'Specialized'. Possible values include: 'Generalized', + /// 'Specialized' /// [JsonProperty(PropertyName = "properties.osState")] public OperatingSystemStateTypes OsState { get; set; } + /// + /// Gets or sets the hypervisor generation of the Virtual Machine. + /// Applicable to OS disks only. Possible values include: 'V1', 'V2' + /// + [JsonProperty(PropertyName = "properties.hyperVGeneration")] + public string HyperVGeneration { get; set; } + /// /// Gets or sets the end of life date of the gallery Image Definition. /// This property can be used for decommissioning purposes. This diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageVersion.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageVersion.cs index 9cf91afa4f231..70e567c7836da 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageVersion.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageVersion.cs @@ -42,7 +42,7 @@ public GalleryImageVersion() /// Resource tags /// The current state of the gallery /// Image Version. - public GalleryImageVersion(string location, GalleryImageVersionPublishingProfile publishingProfile, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string provisioningState = default(string), GalleryImageVersionStorageProfile storageProfile = default(GalleryImageVersionStorageProfile), ReplicationStatus replicationStatus = default(ReplicationStatus)) + public GalleryImageVersion(string location, GalleryImageVersionStorageProfile storageProfile, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), GalleryImageVersionPublishingProfile publishingProfile = default(GalleryImageVersionPublishingProfile), string provisioningState = default(string), ReplicationStatus replicationStatus = default(ReplicationStatus)) : base(location, id, name, type, tags) { PublishingProfile = publishingProfile; @@ -76,7 +76,7 @@ public GalleryImageVersion() /// /// [JsonProperty(PropertyName = "properties.storageProfile")] - public GalleryImageVersionStorageProfile StorageProfile { get; private set; } + public GalleryImageVersionStorageProfile StorageProfile { get; set; } /// /// @@ -92,13 +92,13 @@ public GalleryImageVersion() public override void Validate() { base.Validate(); - if (PublishingProfile == null) + if (StorageProfile == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "PublishingProfile"); + throw new ValidationException(ValidationRules.CannotBeNull, "StorageProfile"); } - if (PublishingProfile != null) + if (StorageProfile != null) { - PublishingProfile.Validate(); + StorageProfile.Validate(); } } } 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 4fd577dc36da0..bf5aa7b1efb92 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 @@ -51,8 +51,8 @@ public GalleryImageVersionPublishingProfile() /// Specifies the storage account type /// to be used to store the image. This property is not updatable. /// Possible values include: 'Standard_LRS', 'Standard_ZRS' - public GalleryImageVersionPublishingProfile(GalleryArtifactSource source, 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(source, targetRegions) + 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 = replicaCount; ExcludeFromLatest = excludeFromLatest; @@ -106,15 +106,5 @@ public GalleryImageVersionPublishingProfile() [JsonProperty(PropertyName = "storageAccountType")] public string StorageAccountType { get; set; } - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public override void Validate() - { - base.Validate(); - } } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageVersionStorageProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageVersionStorageProfile.cs index 380c4d67de2d6..5a488ccb4f46e 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageVersionStorageProfile.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageVersionStorageProfile.cs @@ -16,7 +16,7 @@ namespace Microsoft.Azure.Management.Compute.Models using System.Linq; /// - /// This is the storage profile of a gallery Image Version. + /// This is the storage profile of a Gallery Image Version. /// public partial class GalleryImageVersionStorageProfile { @@ -34,8 +34,9 @@ public GalleryImageVersionStorageProfile() /// class. /// /// A list of data disk images. - public GalleryImageVersionStorageProfile(GalleryOSDiskImage osDiskImage = default(GalleryOSDiskImage), IList dataDiskImages = default(IList)) + public GalleryImageVersionStorageProfile(GalleryArtifactVersionSource source = default(GalleryArtifactVersionSource), GalleryOSDiskImage osDiskImage = default(GalleryOSDiskImage), IList dataDiskImages = default(IList)) { + Source = source; OsDiskImage = osDiskImage; DataDiskImages = dataDiskImages; CustomInit(); @@ -46,16 +47,48 @@ public GalleryImageVersionStorageProfile() /// partial void CustomInit(); + /// + /// + [JsonProperty(PropertyName = "source")] + public GalleryArtifactVersionSource Source { get; set; } + /// /// [JsonProperty(PropertyName = "osDiskImage")] - public GalleryOSDiskImage OsDiskImage { get; private set; } + public GalleryOSDiskImage OsDiskImage { get; set; } /// - /// Gets a list of data disk images. + /// Gets or sets a list of data disk images. /// [JsonProperty(PropertyName = "dataDiskImages")] - public IList DataDiskImages { get; private set; } + public IList DataDiskImages { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Source != null) + { + Source.Validate(); + } + if (OsDiskImage != null) + { + OsDiskImage.Validate(); + } + if (DataDiskImages != null) + { + foreach (var element in DataDiskImages) + { + if (element != null) + { + element.Validate(); + } + } + } + } } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryOSDiskImage.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryOSDiskImage.cs index 2a6cc9f81a97a..5514f0241e05f 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryOSDiskImage.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryOSDiskImage.cs @@ -33,8 +33,8 @@ public GalleryOSDiskImage() /// The host caching of the disk. Valid /// values are 'None', 'ReadOnly', and 'ReadWrite'. Possible values /// include: 'None', 'ReadOnly', 'ReadWrite' - public GalleryOSDiskImage(int? sizeInGB = default(int?), HostCaching? hostCaching = default(HostCaching?)) - : base(sizeInGB, hostCaching) + public GalleryOSDiskImage(int? sizeInGB = default(int?), HostCaching? hostCaching = default(HostCaching?), GalleryArtifactVersionSource source = default(GalleryArtifactVersionSource)) + : base(sizeInGB, hostCaching, source) { CustomInit(); } @@ -44,5 +44,15 @@ public GalleryOSDiskImage() /// partial void CustomInit(); + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + } } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachine.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachine.cs index 851477f35b4d5..e4c03c9a52a58 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachine.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachine.cs @@ -76,6 +76,9 @@ public VirtualMachine() /// the proximity placement group that the virtual machine should be /// assigned to. <br><br>Minimum api-version: /// 2018-04-01. + /// Specifies information about the dedicated host + /// that the virtual machine resides in. <br><br>Minimum + /// api-version: 2018-10-01. /// The provisioning state, which only /// appears in the response. /// The virtual machine instance @@ -99,7 +102,7 @@ public VirtualMachine() /// The identity of the virtual machine, if /// configured. /// The virtual machine zones. - public VirtualMachine(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), Plan plan = default(Plan), HardwareProfile hardwareProfile = default(HardwareProfile), StorageProfile storageProfile = default(StorageProfile), AdditionalCapabilities additionalCapabilities = default(AdditionalCapabilities), OSProfile osProfile = default(OSProfile), NetworkProfile networkProfile = default(NetworkProfile), DiagnosticsProfile diagnosticsProfile = default(DiagnosticsProfile), SubResource availabilitySet = default(SubResource), SubResource proximityPlacementGroup = default(SubResource), string provisioningState = default(string), VirtualMachineInstanceView instanceView = default(VirtualMachineInstanceView), string licenseType = default(string), string vmId = default(string), IList resources = default(IList), VirtualMachineIdentity identity = default(VirtualMachineIdentity), IList zones = default(IList)) + public VirtualMachine(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), Plan plan = default(Plan), HardwareProfile hardwareProfile = default(HardwareProfile), StorageProfile storageProfile = default(StorageProfile), AdditionalCapabilities additionalCapabilities = default(AdditionalCapabilities), OSProfile osProfile = default(OSProfile), NetworkProfile networkProfile = default(NetworkProfile), DiagnosticsProfile diagnosticsProfile = default(DiagnosticsProfile), SubResource availabilitySet = default(SubResource), SubResource proximityPlacementGroup = default(SubResource), SubResource host = default(SubResource), string provisioningState = default(string), VirtualMachineInstanceView instanceView = default(VirtualMachineInstanceView), string licenseType = default(string), string vmId = default(string), IList resources = default(IList), VirtualMachineIdentity identity = default(VirtualMachineIdentity), IList zones = default(IList)) : base(location, id, name, type, tags) { Plan = plan; @@ -111,6 +114,7 @@ public VirtualMachine() DiagnosticsProfile = diagnosticsProfile; AvailabilitySet = availabilitySet; ProximityPlacementGroup = proximityPlacementGroup; + Host = host; ProvisioningState = provisioningState; InstanceView = instanceView; LicenseType = licenseType; @@ -208,6 +212,15 @@ public VirtualMachine() [JsonProperty(PropertyName = "properties.proximityPlacementGroup")] public SubResource ProximityPlacementGroup { get; set; } + /// + /// Gets or sets specifies information about the dedicated host that + /// the virtual machine resides in. + /// &lt;br&gt;&lt;br&gt;Minimum api-version: + /// 2018-10-01. + /// + [JsonProperty(PropertyName = "properties.host")] + public SubResource Host { get; set; } + /// /// Gets the provisioning state, which only appears in the response. /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineUpdate.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineUpdate.cs index f2298eea32d80..329014b3d5b3c 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineUpdate.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineUpdate.cs @@ -72,6 +72,9 @@ public VirtualMachineUpdate() /// the proximity placement group that the virtual machine should be /// assigned to. <br><br>Minimum api-version: /// 2018-04-01. + /// Specifies information about the dedicated host + /// that the virtual machine resides in. <br><br>Minimum + /// api-version: 2018-10-01. /// The provisioning state, which only /// appears in the response. /// The virtual machine instance @@ -93,7 +96,7 @@ public VirtualMachineUpdate() /// The identity of the virtual machine, if /// configured. /// The virtual machine zones. - public VirtualMachineUpdate(IDictionary tags = default(IDictionary), Plan plan = default(Plan), HardwareProfile hardwareProfile = default(HardwareProfile), StorageProfile storageProfile = default(StorageProfile), AdditionalCapabilities additionalCapabilities = default(AdditionalCapabilities), OSProfile osProfile = default(OSProfile), NetworkProfile networkProfile = default(NetworkProfile), DiagnosticsProfile diagnosticsProfile = default(DiagnosticsProfile), SubResource availabilitySet = default(SubResource), SubResource proximityPlacementGroup = default(SubResource), string provisioningState = default(string), VirtualMachineInstanceView instanceView = default(VirtualMachineInstanceView), string licenseType = default(string), string vmId = default(string), VirtualMachineIdentity identity = default(VirtualMachineIdentity), IList zones = default(IList)) + public VirtualMachineUpdate(IDictionary tags = default(IDictionary), Plan plan = default(Plan), HardwareProfile hardwareProfile = default(HardwareProfile), StorageProfile storageProfile = default(StorageProfile), AdditionalCapabilities additionalCapabilities = default(AdditionalCapabilities), OSProfile osProfile = default(OSProfile), NetworkProfile networkProfile = default(NetworkProfile), DiagnosticsProfile diagnosticsProfile = default(DiagnosticsProfile), SubResource availabilitySet = default(SubResource), SubResource proximityPlacementGroup = default(SubResource), SubResource host = default(SubResource), string provisioningState = default(string), VirtualMachineInstanceView instanceView = default(VirtualMachineInstanceView), string licenseType = default(string), string vmId = default(string), VirtualMachineIdentity identity = default(VirtualMachineIdentity), IList zones = default(IList)) : base(tags) { Plan = plan; @@ -105,6 +108,7 @@ public VirtualMachineUpdate() DiagnosticsProfile = diagnosticsProfile; AvailabilitySet = availabilitySet; ProximityPlacementGroup = proximityPlacementGroup; + Host = host; ProvisioningState = provisioningState; InstanceView = instanceView; LicenseType = licenseType; @@ -201,6 +205,15 @@ public VirtualMachineUpdate() [JsonProperty(PropertyName = "properties.proximityPlacementGroup")] public SubResource ProximityPlacementGroup { get; set; } + /// + /// Gets or sets specifies information about the dedicated host that + /// the virtual machine resides in. + /// &lt;br&gt;&lt;br&gt;Minimum api-version: + /// 2018-10-01. + /// + [JsonProperty(PropertyName = "properties.host")] + public SubResource Host { get; set; } + /// /// Gets the provisioning state, which only appears in the response. /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SdkInfo_ComputeManagementClient.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SdkInfo_ComputeManagementClient.cs index 59285c0f7a3c1..c053c7e8c782f 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SdkInfo_ComputeManagementClient.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SdkInfo_ComputeManagementClient.cs @@ -20,10 +20,12 @@ public static IEnumerable> ApiInfo_ComputeManageme return new Tuple[] { new Tuple("Compute", "AvailabilitySets", "2019-03-01"), + new Tuple("Compute", "DedicatedHostGroups", "2019-03-01"), + new Tuple("Compute", "DedicatedHosts", "2019-03-01"), new Tuple("Compute", "Disks", "2018-09-30"), - new Tuple("Compute", "Galleries", "2019-03-01"), - new Tuple("Compute", "GalleryImageVersions", "2019-03-01"), - new Tuple("Compute", "GalleryImages", "2019-03-01"), + new Tuple("Compute", "Galleries", "2019-07-01"), + new Tuple("Compute", "GalleryImageVersions", "2019-07-01"), + new Tuple("Compute", "GalleryImages", "2019-07-01"), new Tuple("Compute", "Images", "2019-03-01"), new Tuple("Compute", "LogAnalytics", "2019-03-01"), new Tuple("Compute", "Operations", "2019-03-01"), @@ -45,5 +47,16 @@ public static IEnumerable> ApiInfo_ComputeManageme }.AsEnumerable(); } } + // BEGIN: Code Generation Metadata Section + public static readonly String AutoRestVersion = "latest"; + public static readonly String AutoRestBootStrapperVersion = "autorest@2.0.4283"; + public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/compute/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=E:\\hylee-sdk\\july2\\sdk"; + public static readonly String GithubForkName = "Azure"; + public static readonly String GithubBranchName = "master"; + public static readonly String GithubCommidId = "6b6a445819212313e466b2f77f8b3e6d4f9d18fb"; + public static readonly String CodeGenerationErrors = ""; + public static readonly String GithubRepoName = "azure-rest-api-specs"; + // END: Code Generation Metadata Section } } + 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 8af0eb8282488..eaa17c7aeae42 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. - 27.1.0 + 28.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 6121db40e4c70..1aeea81bd1b2e 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Properties/AssemblyInfo.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Properties/AssemblyInfo.cs @@ -7,8 +7,8 @@ [assembly: AssemblyTitle("Microsoft Azure Compute Management Library")] [assembly: AssemblyDescription("Provides management functionality for Microsoft Azure Compute Resources.")] -[assembly: AssemblyVersion("27.0.0.0")] -[assembly: AssemblyFileVersion("27.1.0.0")] +[assembly: AssemblyVersion("28.0.0.0")] +[assembly: AssemblyFileVersion("28.0.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Microsoft Azure .NET SDK")] diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/Microsoft.Azure.Management.Compute.Tests.csproj b/sdk/compute/Microsoft.Azure.Management.Compute/tests/Microsoft.Azure.Management.Compute.Tests.csproj index eb008d3141579..739139a891b3a 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/Microsoft.Azure.Management.Compute.Tests.csproj +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/Microsoft.Azure.Management.Compute.Tests.csproj @@ -7,8 +7,8 @@ 1.0.0-preview - true - true + false + false diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/DedicatedHostTests.cs b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/DedicatedHostTests.cs new file mode 100644 index 0000000000000..c144588221b15 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/DedicatedHostTests.cs @@ -0,0 +1,133 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System.Linq; +using System.Threading.Tasks; +using Xunit; +using Microsoft.Azure.Management.Compute; +using Microsoft.Azure.Management.Compute.Models; +using Microsoft.Azure.Management.ResourceManager; +using Microsoft.Azure.Management.ResourceManager.Models; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using System; +using System.Collections.Generic; +using System.Text.RegularExpressions; + +namespace Compute.Tests +{ + public class DedicatedHostTests : VMTestBase + { + [Fact] + public void TestDedicatedHostOperations() + { + string originalTestLocation = Environment.GetEnvironmentVariable("AZURE_VM_TEST_LOCATION"); + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + Environment.SetEnvironmentVariable("AZURE_VM_TEST_LOCATION", "eastus2"); + EnsureClientsInitialized(context); + + string baseRGName = ComputeManagementTestUtilities.GenerateName(TestPrefix); + string rgName = baseRGName + "DH"; + string dhgName = "DHG-1"; + string dhName = "DH-1"; + + try + { + // Create a dedicated host group, then get the dedicated host group and validate that they match + DedicatedHostGroup createdDHG = CreateDedicatedHostGroup(rgName, dhgName); + DedicatedHostGroup returnedDHG = m_CrpClient.DedicatedHostGroups.Get(rgName, dhgName); + ValidateDedicatedHostGroup(createdDHG, returnedDHG); + + // Update existing dedicated host group + DedicatedHostGroupUpdate updateDHGInput = new DedicatedHostGroupUpdate() + { + Tags = new Dictionary() { { "testKey", "testValue" } } + }; + createdDHG.Tags = updateDHGInput.Tags; + returnedDHG = m_CrpClient.DedicatedHostGroups.Update(rgName, dhgName, updateDHGInput); + ValidateDedicatedHostGroup(createdDHG, returnedDHG); + + //List DedicatedHostGroups by subscription and by resourceGroup + var listDHGsResponse = m_CrpClient.DedicatedHostGroups.ListByResourceGroup(rgName); + Assert.Single(listDHGsResponse); + ValidateDedicatedHostGroup(createdDHG, listDHGsResponse.First()); + listDHGsResponse = m_CrpClient.DedicatedHostGroups.ListBySubscription(); + + //There might be multiple dedicated host groups in the subscription, we only care about the one that we created. + returnedDHG = listDHGsResponse.First(dhg => dhg.Id == createdDHG.Id); + Assert.NotNull(returnedDHG); + ValidateDedicatedHostGroup(createdDHG, returnedDHG); + + //Create DedicatedHost within the DedicatedHostGroup and validate + var createdDH = CreateDedicatedHost(rgName, dhgName, dhName); + var returnedDH = m_CrpClient.DedicatedHosts.Get(rgName, dhgName, dhName); + ValidateDedicatedHost(createdDH, returnedDH); + + //List DedicatedHosts + var listDHsResponse = m_CrpClient.DedicatedHosts.ListByHostGroup(rgName, dhgName); + Assert.Single(listDHsResponse); + ValidateDedicatedHost(createdDH, listDHsResponse.First()); + + //Delete DedicatedHosts and DedicatedHostGroups + m_CrpClient.DedicatedHosts.Delete(rgName, dhgName, dhName); + m_CrpClient.DedicatedHostGroups.Delete(rgName, dhgName); + + } + finally + { + m_ResourcesClient.ResourceGroups.Delete(rgName); + Environment.SetEnvironmentVariable("AZURE_VM_TEST_LOCATION", originalTestLocation); + } + } + } + + private void ValidateDedicatedHostGroup(DedicatedHostGroup expectedDHG, DedicatedHostGroup actualDHG) + { + if (expectedDHG == null) + { + Assert.Null(actualDHG); + } + else + { + Assert.NotNull(actualDHG); + if (expectedDHG.Hosts == null) + { + Assert.Null(actualDHG.Hosts); + } + else + { + Assert.NotNull(actualDHG); + Assert.True(actualDHG.Hosts.SequenceEqual(expectedDHG.Hosts)); + } + Assert.Equal(expectedDHG.Location, actualDHG.Location); + Assert.Equal(expectedDHG.Name, actualDHG.Name); + } + + } + + private void ValidateDedicatedHost(DedicatedHost expectedDH, DedicatedHost actualDH) + { + if (expectedDH == null) + { + Assert.Null(actualDH); + } + else + { + Assert.NotNull(actualDH); + if (expectedDH.VirtualMachines == null) + { + Assert.Null(actualDH.VirtualMachines); + } + else + { + Assert.NotNull(actualDH); + Assert.True(actualDH.VirtualMachines.SequenceEqual(expectedDH.VirtualMachines)); + } + Assert.Equal(expectedDH.Location, actualDH.Location); + Assert.Equal(expectedDH.Name, actualDH.Name); + Assert.Equal(expectedDH.HostId, actualDH.HostId); + } + } + + } +} \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/GalleryTests.cs b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/GalleryTests.cs index 295ad6d63ed82..db62b8d27ec0d 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/GalleryTests.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/GalleryTests.cs @@ -5,6 +5,7 @@ using System.Collections.Generic; using System.Diagnostics; using System.Linq; +using System.Threading; using Microsoft.Azure.Management.Compute; using Microsoft.Azure.Management.Compute.Models; using Microsoft.Azure.Management.ResourceManager; @@ -55,6 +56,7 @@ public void Gallery_CRUD_Tests() string galleryName2 = galleryName + "New"; m_ResourcesClient.ResourceGroups.CreateOrUpdate(rgName2, new ResourceGroup { Location = galleryHomeLocation }); Trace.TraceInformation("Created the resource group: " + rgName2); + Thread.Sleep(1000); m_CrpClient.Galleries.CreateOrUpdate(rgName2, galleryName2, galleryIn); Trace.TraceInformation(string.Format("Created the gallery: {0} in resource group: {1}", galleryName2, rgName2)); IPage listGalleriesInRgResult = m_CrpClient.Galleries.ListByResourceGroup(rgName); @@ -254,6 +256,7 @@ private void ValidateGalleryImage(GalleryImage imageIn, GalleryImage imageOut) Assert.Equal(imageIn.Location, imageOut.Location); Assert.Equal(imageIn.OsState, imageOut.OsState); Assert.Equal(imageIn.OsType, imageOut.OsType); + Assert.Equal(imageIn.HyperVGeneration, imageOut.HyperVGeneration); if (!string.IsNullOrEmpty(imageIn.Description)) { Assert.Equal(imageIn.Description, imageOut.Description); @@ -274,7 +277,7 @@ private void ValidateGalleryImageVersion(GalleryImageVersion imageVersionIn, } Assert.Equal(imageVersionIn.Location, imageVersionOut.Location); - Assert.False(string.IsNullOrEmpty(imageVersionOut.PublishingProfile.Source.ManagedImage.Id), + Assert.False(string.IsNullOrEmpty(imageVersionOut.StorageProfile.Source.Id), "imageVersionOut.PublishingProfile.Source.ManagedImage.Id is null or empty."); Assert.NotNull(imageVersionOut.PublishingProfile.EndOfLifeDate); Assert.NotNull(imageVersionOut.PublishingProfile.PublishedDate); @@ -302,8 +305,9 @@ private GalleryImage GetTestInputGalleryImage() }, Location = galleryHomeLocation, OsState = OperatingSystemStateTypes.Generalized, - OsType = OperatingSystemTypes.Linux, - Description = "This is the gallery image description." + OsType = OperatingSystemTypes.Windows, + Description = "This is the gallery image description.", + HyperVGeneration = null }; } @@ -314,16 +318,19 @@ private GalleryImageVersion GetTestInputGalleryImageVersion(string sourceImageId Location = galleryHomeLocation, PublishingProfile = new GalleryImageVersionPublishingProfile { - Source = new GalleryArtifactSource - { - ManagedImage = new ManagedArtifact { Id = sourceImageId } - }, ReplicaCount = 1, StorageAccountType = StorageAccountType.StandardLRS, TargetRegions = new List { new TargetRegion { Name = galleryHomeLocation, RegionalReplicaCount = 1, StorageAccountType = StorageAccountType.StandardLRS } }, EndOfLifeDate = DateTime.Today.AddDays(10).Date + }, + StorageProfile = new GalleryImageVersionStorageProfile + { + Source = new GalleryArtifactVersionSource + { + Id = sourceImageId + } } }; } 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 cf4ead554bcb5..d211195013257 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/VMTestBase.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/VMTestBase.cs @@ -888,6 +888,42 @@ protected VirtualMachine CreateDefaultVMInput(string rgName, string storageAccou return vm; } + protected DedicatedHostGroup CreateDedicatedHostGroup( string rgName, string dedicatedHostGroupName) + { + m_ResourcesClient.ResourceGroups.CreateOrUpdate( + rgName, + new ResourceGroup + { + Location = m_location, + Tags = new Dictionary() { { rgName, DateTime.UtcNow.ToString("u") } } + }); + + DedicatedHostGroup dedicatedHostGroup = new DedicatedHostGroup() + { + Location = m_location, + Zones = new List { "1" }, + PlatformFaultDomainCount = 1 + }; + return m_CrpClient.DedicatedHostGroups.CreateOrUpdate(rgName, dedicatedHostGroupName, dedicatedHostGroup); + } + + protected DedicatedHost CreateDedicatedHost(string rgName, string dedicatedHostGroupName, string dedicatedHostName) + { + //Check if DedicatedHostGroup already exist and if does not exist, create one. + DedicatedHostGroup existingDHG = m_CrpClient.DedicatedHostGroups.Get(rgName, dedicatedHostGroupName); + if (existingDHG == null) + { + existingDHG = CreateDedicatedHostGroup(rgName, dedicatedHostGroupName); + } + return m_CrpClient.DedicatedHosts.CreateOrUpdate(rgName, dedicatedHostGroupName, dedicatedHostName, + new DedicatedHost() + { + Location = m_location, + Tags = new Dictionary() { { rgName, DateTime.UtcNow.ToString("u") } }, + Sku = new CM.Sku() { Name = "ESv3-Type1" } + }); + } + protected void ValidateVM(VirtualMachine vm, VirtualMachine vmOut, string expectedVMReferenceId, bool hasManagedDisks = false, bool hasUserDefinedAS = true, bool? writeAcceleratorEnabled = null, bool hasDiffDisks = false, string expectedLocation = null, string expectedPpgReferenceId = null) { diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/Compute.Tests.DedicatedHostTests/TestDedicatedHostOperations.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/Compute.Tests.DedicatedHostTests/TestDedicatedHostOperations.json new file mode 100644 index 0000000000000..ae9e0532d63a4 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/Compute.Tests.DedicatedHostTests/TestDedicatedHostOperations.json @@ -0,0 +1,1359 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourcegroups/crptestar5995DH?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjU5OTVESD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar5995DH\": \"2019-03-21 23:32:18Z\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "95" + ], + "x-ms-client-request-id": [ + "e3fdbf60-639c-4bc2-b433-4f70d2eb7d22" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.3362.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17763", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/crptestar5995DH\",\r\n \"name\": \"crptestar5995DH\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar5995DH\": \"2019-03-21 23:32:18Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "234" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "682e6388-54d6-46d5-8c88-7f14a71df7e4" + ], + "x-ms-correlation-request-id": [ + "682e6388-54d6-46d5-8c88-7f14a71df7e4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190321T233220Z:682e6388-54d6-46d5-8c88-7f14a71df7e4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 21 Mar 2019 23:32:19 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/crptestar5995DH/providers/Microsoft.Compute/hostGroups/DHG-1?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjU5OTVESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcy9ESEctMT9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "58" + ], + "x-ms-client-request-id": [ + "5ccf1c6b-6fb4-40a9-986a-be0c8e925209" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.3362.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17763", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3019.0" + ] + }, + "ResponseBody": "{\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"location\": \"eastus2\",\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/CRPTESTAR5995DH/providers/Microsoft.Compute/hostGroups/DHG-1\",\r\n \"name\": \"DHG-1\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "218" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutDeleteDedicatedHost3Min;119,Microsoft.Compute/PutDeleteDedicatedHost30Min;599" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6b6940a1-2566-4103-965c-d87d7bfe5d96" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "c93663ce-5b06-4fbe-8aea-815f4903cfa9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190321T233222Z:c93663ce-5b06-4fbe-8aea-815f4903cfa9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 21 Mar 2019 23:32:21 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/crptestar5995DH/providers/Microsoft.Compute/hostGroups/DHG-1?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjU5OTVESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcy9ESEctMT9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c9a81f53-f2a6-43c8-a402-d17ce81ad093" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.3362.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17763", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3019.0" + ] + }, + "ResponseBody": "{\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"location\": \"eastus2\",\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/CRPTESTAR5995DH/providers/Microsoft.Compute/hostGroups/DHG-1\",\r\n \"name\": \"DHG-1\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "218" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetDedicatedHost30Min;999" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "30bf32c7-a39f-43b7-a0b4-3ae898d38e41" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "20ca8f81-d941-472c-b6ca-d52962ea0ea6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190321T233222Z:20ca8f81-d941-472c-b6ca-d52962ea0ea6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 21 Mar 2019 23:32:21 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/crptestar5995DH/providers/Microsoft.Compute/hostGroups/DHG-1?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjU5OTVESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcy9ESEctMT9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6d5ea50e-0e42-485d-8096-ffd126020d69" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.3362.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17763", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3019.0" + ] + }, + "ResponseBody": "{\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"testKey\": \"testValue\"\r\n },\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/CRPTESTAR5995DH/providers/Microsoft.Compute/hostGroups/DHG-1\",\r\n \"name\": \"DHG-1\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "265" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetDedicatedHost30Min;997" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ba55c37b-ffca-4955-bb74-c00db4dca650" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "9ed42c6b-8dbb-48e9-b54b-1717ebccdf0f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190321T233223Z:9ed42c6b-8dbb-48e9-b54b-1717ebccdf0f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 21 Mar 2019 23:32:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/crptestar5995DH/providers/Microsoft.Compute/hostGroups/DHG-1?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjU5OTVESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcy9ESEctMT9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"tags\": {\r\n \"testKey\": \"testValue\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "50" + ], + "x-ms-client-request-id": [ + "04ea58f8-a02f-42b5-a330-8b0a38201ac4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.3362.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17763", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3019.0" + ] + }, + "ResponseBody": "{\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"testKey\": \"testValue\"\r\n },\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/CRPTESTAR5995DH/providers/Microsoft.Compute/hostGroups/DHG-1\",\r\n \"name\": \"DHG-1\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "265" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutDeleteDedicatedHost3Min;118,Microsoft.Compute/PutDeleteDedicatedHost30Min;598" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "40695521-44fe-4aae-a588-eb5f978d73e3" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "2e51fd07-ccdf-4ffc-9046-a67608a80b0c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190321T233223Z:2e51fd07-ccdf-4ffc-9046-a67608a80b0c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 21 Mar 2019 23:32:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/crptestar5995DH/providers/Microsoft.Compute/hostGroups?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjU5OTVESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcz9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6f3c8983-c04c-410b-ae44-5f1069862a93" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.3362.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17763", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3019.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"testKey\": \"testValue\"\r\n },\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/CRPTESTAR5995DH/providers/Microsoft.Compute/hostGroups/DHG-1\",\r\n \"name\": \"DHG-1\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "334" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetDedicatedHost3Min;199" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c54c6a11-ed7d-4ed4-a861-8b98b8253ec9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "a2d802e2-5cdd-4ce3-9d94-53464341cb6f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190321T233223Z:a2d802e2-5cdd-4ce3-9d94-53464341cb6f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 21 Mar 2019 23:32:22 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/hostGroups?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9ob3N0R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d0a34703-b42c-43de-b74a-3a7568a1b0e1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.3362.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17763", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3019.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"testKey\": \"testValue\"\r\n },\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/CRPTESTAR2950DH/providers/Microsoft.Compute/hostGroups/DHG-1\",\r\n \"name\": \"DHG-1\"\r\n },\r\n {\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"testKey\": \"testValue\"\r\n },\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/CRPTESTAR5995DH/providers/Microsoft.Compute/hostGroups/DHG-1\",\r\n \"name\": \"DHG-1\"\r\n },\r\n {\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"testKey\": \"testValue\"\r\n },\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/CRPTESTAR7996DH/providers/Microsoft.Compute/hostGroups/DHG-1\",\r\n \"name\": \"DHG-1\"\r\n },\r\n {\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/CRPTESTDHRG/providers/Microsoft.Compute/hostGroups/myDHG\",\r\n \"name\": \"myDHG\"\r\n },\r\n {\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/CRPTESTLONGLIVED/providers/Microsoft.Compute/hostGroups/DHG-1\",\r\n \"name\": \"DHG-1\"\r\n },\r\n {\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"DedicatedHostScenarioTests.CreateSingleDedicatedHostGroup\": \"08-Dec-2018 00:40:33\",\r\n \"e57d4d0e-ae07-4abd-b4b7-8ab4b1015ae9\": \"08-Dec-2018 00:40:33\",\r\n \"tagname5v2\": \"taggzoybpqxs\",\r\n \"tagnamew1g\": \"tagehecbcdzw\"\r\n },\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/CRPTESTRGBMSVLWOR33N17/providers/Microsoft.Compute/hostGroups/crptestny8yrlib\",\r\n \"name\": \"crptestny8yrlib\"\r\n },\r\n {\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"DedicatedHostScenarioTests.CreateSingleDedicatedHostGroup\": \"08-Dec-2018 01:39:06\",\r\n \"6c98174a-2f34-4c8c-b5b2-7bff8be750a6\": \"08-Dec-2018 01:39:06\",\r\n \"tagname0r0\": \"tagvbcysjkfj\",\r\n \"tagname7ii\": \"tagdismayvak\",\r\n \"tagname0b3\": \"tagvkzronpik\"\r\n },\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/CRPTESTRGTKFSE7UH66K4/providers/Microsoft.Compute/hostGroups/crptesto573gu9h\",\r\n \"name\": \"crptesto573gu9h\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1909" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "c9fc30b2-ca9c-4f24-ae5a-3ed3f7c66cd4", + "484e2ad1-7c54-4238-99cb-be7d23e866da" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "a1f1f4c7-56d3-414e-8a52-c38904d46a82" + ], + "x-ms-correlation-request-id": [ + "a1f1f4c7-56d3-414e-8a52-c38904d46a82" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190321T233223Z:a1f1f4c7-56d3-414e-8a52-c38904d46a82" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 21 Mar 2019 23:32:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/crptestar5995DH/providers/Microsoft.Compute/hostGroups/DHG-1/hosts/DH-1?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjU5OTVESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcy9ESEctMS9ob3N0cy9ESC0xP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"ESv3-Type1\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar5995DH\": \"2019-03-21 23:32:23Z\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "139" + ], + "x-ms-client-request-id": [ + "59bbd5d6-108d-4d3c-a37f-2d64e7ab6097" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.3362.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17763", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3019.0" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"ESv3-Type1\"\r\n },\r\n \"properties\": {\r\n \"hostId\": \"62a7f45c-b80f-4006-b754-5b6e6ee3c184\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar5995DH\": \"2019-03-21 23:32:23Z\"\r\n },\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/crptestar5995DH/providers/Microsoft.Compute/hostGroups/DHG-1/hosts/DH-1\",\r\n \"name\": \"DH-1\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "388" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/eastus2/operations/857d12bc-da62-4891-834b-7450d257b2b9?api-version=2019-03-01" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutDeleteDedicatedHost3Min;117,Microsoft.Compute/PutDeleteDedicatedHost30Min;597" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "857d12bc-da62-4891-834b-7450d257b2b9" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "15e17df5-7152-40e1-a82b-98f2afa5d0f2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190321T233224Z:15e17df5-7152-40e1-a82b-98f2afa5d0f2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 21 Mar 2019 23:32:24 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/eastus2/operations/857d12bc-da62-4891-834b-7450d257b2b9?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzg1N2QxMmJjLWRhNjItNDg5MS04MzRiLTc0NTBkMjU3YjJiOT9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.3362.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17763", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3019.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-03-21T16:32:24.4488486-07:00\",\r\n \"endTime\": \"2019-03-21T16:32:25.8863868-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"857d12bc-da62-4891-834b-7450d257b2b9\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "37884f7c-b959-43d2-807e-edf9a06178e5" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "310cb2ec-26b1-4d4d-99f1-30ffd412bae9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190321T233255Z:310cb2ec-26b1-4d4d-99f1-30ffd412bae9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 21 Mar 2019 23:32:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/crptestar5995DH/providers/Microsoft.Compute/hostGroups/DHG-1/hosts/DH-1?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjU5OTVESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcy9ESEctMS9ob3N0cy9ESC0xP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.3362.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17763", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3019.0" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"ESv3-Type1\"\r\n },\r\n \"properties\": {\r\n \"hostId\": \"62a7f45c-b80f-4006-b754-5b6e6ee3c184\",\r\n \"virtualMachines\": [],\r\n \"provisioningTime\": \"2019-03-21T16:32:25.870722-07:00\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar5995DH\": \"2019-03-21 23:32:23Z\"\r\n },\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/crptestar5995DH/providers/Microsoft.Compute/hostGroups/DHG-1/hosts/DH-1\",\r\n \"name\": \"DH-1\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "477" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetDedicatedHost3Min;197,Microsoft.Compute/GetDedicatedHost30Min;996" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5e7de48b-6088-4115-9e11-35b9e64992d7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "a2eda68b-213d-4099-924d-95691b6104b7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190321T233255Z:a2eda68b-213d-4099-924d-95691b6104b7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 21 Mar 2019 23:32:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/crptestar5995DH/providers/Microsoft.Compute/hostGroups/DHG-1/hosts/DH-1?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjU5OTVESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcy9ESEctMS9ob3N0cy9ESC0xP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "02c07218-2d14-4919-a36a-03ee21fb7813" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.3362.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17763", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3019.0" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"ESv3-Type1\"\r\n },\r\n \"properties\": {\r\n \"hostId\": \"62a7f45c-b80f-4006-b754-5b6e6ee3c184\",\r\n \"virtualMachines\": [],\r\n \"provisioningTime\": \"2019-03-21T16:32:25.870722-07:00\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar5995DH\": \"2019-03-21 23:32:23Z\"\r\n },\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/crptestar5995DH/providers/Microsoft.Compute/hostGroups/DHG-1/hosts/DH-1\",\r\n \"name\": \"DH-1\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "477" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetDedicatedHost3Min;196,Microsoft.Compute/GetDedicatedHost30Min;995" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3e5b7ee3-1064-431e-9091-d3530cc55fad" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "88024ba7-0cf4-4afb-9fd7-6f7b9e3db341" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190321T233255Z:88024ba7-0cf4-4afb-9fd7-6f7b9e3db341" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 21 Mar 2019 23:32:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/crptestar5995DH/providers/Microsoft.Compute/hostGroups/DHG-1/hosts?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjU5OTVESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcy9ESEctMS9ob3N0cz9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "238c18d9-14c6-4759-9eb8-4acbf82ac32e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.3362.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17763", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3019.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"ESv3-Type1\"\r\n },\r\n \"properties\": {\r\n \"hostId\": \"62a7f45c-b80f-4006-b754-5b6e6ee3c184\",\r\n \"virtualMachines\": [],\r\n \"provisioningTime\": \"2019-03-21T16:32:25.870722-07:00\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar5995DH\": \"2019-03-21 23:32:23Z\"\r\n },\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/CRPTESTAR5995DH/providers/Microsoft.Compute/hostGroups/DHG-1/hosts/DH-1\",\r\n \"name\": \"DH-1\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "566" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetDedicatedHost3Min;195,Microsoft.Compute/GetDedicatedHost30Min;994" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7a8c0049-8c70-4746-a1e9-9407fa70ff7e" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "7c408833-0308-42eb-aa0f-a8ca9af25f7a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190321T233255Z:7c408833-0308-42eb-aa0f-a8ca9af25f7a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 21 Mar 2019 23:32:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/crptestar5995DH/providers/Microsoft.Compute/hostGroups/DHG-1/hosts/DH-1?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjU5OTVESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcy9ESEctMS9ob3N0cy9ESC0xP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b244888b-58ad-4578-839e-3e95c9bb39b2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.3362.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17763", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3019.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/eastus2/operations/93ccd1d3-15c2-487d-92b2-9b96191f8f06?api-version=2019-03-01" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutDeleteDedicatedHost3Min;116,Microsoft.Compute/PutDeleteDedicatedHost30Min;596" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "93ccd1d3-15c2-487d-92b2-9b96191f8f06" + ], + "Cache-Control": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/eastus2/operations/93ccd1d3-15c2-487d-92b2-9b96191f8f06?monitor=true&api-version=2019-03-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "5cc588f6-9c1a-4701-87ee-f4ace25f7816" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190321T233255Z:5cc588f6-9c1a-4701-87ee-f4ace25f7816" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 21 Mar 2019 23:32:54 GMT" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/eastus2/operations/93ccd1d3-15c2-487d-92b2-9b96191f8f06?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzkzY2NkMWQzLTE1YzItNDg3ZC05MmIyLTliOTYxOTFmOGYwNj9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.3362.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17763", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3019.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-03-21T16:32:55.6217484-07:00\",\r\n \"endTime\": \"2019-03-21T16:32:55.6842451-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"93ccd1d3-15c2-487d-92b2-9b96191f8f06\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29997" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b96d2a2b-716f-45f0-acc7-e628b8a777d7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "88da7733-06a5-4f2c-9f86-42c11c8fd9f5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190321T233325Z:88da7733-06a5-4f2c-9f86-42c11c8fd9f5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 21 Mar 2019 23:33:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/eastus2/operations/93ccd1d3-15c2-487d-92b2-9b96191f8f06?monitor=true&api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzkzY2NkMWQzLTE1YzItNDg3ZC05MmIyLTliOTYxOTFmOGYwNj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.3362.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17763", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3019.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29996" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "36680e55-dcff-4719-811d-853a1f9d05ec" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "c7134250-0710-49be-a8af-9ae08f5b6380" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190321T233326Z:c7134250-0710-49be-a8af-9ae08f5b6380" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 21 Mar 2019 23:33:25 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/crptestar5995DH/providers/Microsoft.Compute/hostGroups/DHG-1?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjU5OTVESC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaG9zdEdyb3Vwcy9ESEctMT9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e22223a-641f-41df-ac25-1a743b2257aa" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.3362.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17763", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3019.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutDeleteDedicatedHost3Min;115,Microsoft.Compute/PutDeleteDedicatedHost30Min;595" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7154832a-5240-4afc-a9ff-c267f9d476e7" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "faf86fb0-fb50-4465-a130-07b7f222f524" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190321T233327Z:faf86fb0-fb50-4465-a130-07b7f222f524" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 21 Mar 2019 23:33:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourcegroups/crptestar5995DH?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjU5OTVESD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dc8899ab-f70b-4bdb-b537-5d20f400c44b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.3362.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17763", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "eb3412f6-cc87-4720-97ca-4055165644c1" + ], + "x-ms-correlation-request-id": [ + "eb3412f6-cc87-4720-97ca-4055165644c1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190321T233330Z:eb3412f6-cc87-4720-97ca-4055165644c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 21 Mar 2019 23:33:29 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI1OTk1REgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI1OTk1REgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkkxT1RrMVJFZ3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.3362.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17763", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "a3c3e090-6268-4367-97d3-4fe1d1c891db" + ], + "x-ms-correlation-request-id": [ + "a3c3e090-6268-4367-97d3-4fe1d1c891db" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190321T233345Z:a3c3e090-6268-4367-97d3-4fe1d1c891db" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 21 Mar 2019 23:33:44 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI1OTk1REgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI1OTk1REgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkkxT1RrMVJFZ3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.3362.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17763", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "55328265-bd5d-4cce-b541-8564a58875bc" + ], + "x-ms-correlation-request-id": [ + "55328265-bd5d-4cce-b541-8564a58875bc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190321T233400Z:55328265-bd5d-4cce-b541-8564a58875bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 21 Mar 2019 23:33:59 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI1OTk1REgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI1OTk1REgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkkxT1RrMVJFZ3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.3362.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17763", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "efda6200-7cba-480f-87c9-3bc861b6d856" + ], + "x-ms-correlation-request-id": [ + "efda6200-7cba-480f-87c9-3bc861b6d856" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190321T233415Z:efda6200-7cba-480f-87c9-3bc861b6d856" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 21 Mar 2019 23:34:14 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI1OTk1REgtRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkkxT1RrMVJFZ3RSVUZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaVpXRnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.7.3362.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.17763", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "cfdbe3f8-98b5-45a1-86fe-dfad11677427" + ], + "x-ms-correlation-request-id": [ + "cfdbe3f8-98b5-45a1-86fe-dfad11677427" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190321T233415Z:cfdbe3f8-98b5-45a1-86fe-dfad11677427" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 21 Mar 2019 23:34:14 GMT" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "TestDedicatedHostOperations": [ + "crptestar5995" + ] + }, + "Variables": { + "SubscriptionId": "5393f919-a68a-43d0-9063-4b2bda6bffdf" + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/Compute.Tests.GalleryTests/GalleryImageVersion_CRUD_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/Compute.Tests.GalleryTests/GalleryImageVersion_CRUD_Tests.json index d7865de23d157..acd208884020e 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/Compute.Tests.GalleryTests/GalleryImageVersion_CRUD_Tests.json +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/Compute.Tests.GalleryTests/GalleryImageVersion_CRUD_Tests.json @@ -1,107 +1,103 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/eastus2euap/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMTItUjItRGF0YWNlbnRlci92ZXJzaW9ucz8kdG9wPTEmYXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvcHVibGlzaGVycy9NaWNyb3NvZnRXaW5kb3dzU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvV2luZG93c1NlcnZlci9za3VzLzIwMTItUjItRGF0YWNlbnRlci92ZXJzaW9ucz8kdG9wPTEmYXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "adcdc90d-5f89-4238-b1b0-066f99f0e1d3" + "4d22c9cf-2193-43d9-8a14-1ee9c2902116" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"4.127.20180315\",\r\n \"id\": \"/Subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20180315\"\r\n }\r\n]", "ResponseHeaders": { - "Content-Length": [ - "317" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:46:50 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "3707be56-376d-4281-af6f-306af28cbf16_131927569259264700" + "3707be56-376d-4281-af6f-306af28cbf16_132031518176482500" ], "x-ms-request-id": [ - "1b03079b-a0a3-41d6-9c78-65376d7de589" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "db33db70-8bf6-429f-9d5a-842f9cf5228f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "406e783c-899f-4dc1-81ac-299495947d6d" + "ec45a0e3-103d-4bbf-b00c-1a643962eb44" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T000134Z:406e783c-899f-4dc1-81ac-299495947d6d" + "WESTUS2:20190718T214650Z:ec45a0e3-103d-4bbf-b00c-1a643962eb44" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:01:34 GMT" + "Content-Length": [ + "317" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "[\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"4.127.20180315\",\r\n \"id\": \"/Subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/Providers/Microsoft.Compute/Locations/EastUS2EUAP/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20180315\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourcegroups/galleryPsTestRg920?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg4802?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ4MDI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"galleryPsTestRg920\": \"2019-04-11 00:01:35Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"galleryPsTestRg4802\": \"2019-07-18 21:46:50Z\"\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "102" - ], "x-ms-client-request-id": [ - "d3aff650-3ff2-456b-bbc4-e501fb001405" + "302d6d14-27f4-4fa1-b659-05469f843089" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920\",\r\n \"name\": \"galleryPsTestRg920\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"galleryPsTestRg920\": \"2019-04-11 00:01:35Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "247" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "103" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 18 Jul 2019 21:46:57 GMT" ], "Pragma": [ "no-cache" @@ -110,13 +106,13 @@ "1199" ], "x-ms-request-id": [ - "df1e5af3-1462-452a-8265-0706ff6a68ab" + "b8e9ef44-f3cb-4453-9d91-691cd86edfe2" ], "x-ms-correlation-request-id": [ - "df1e5af3-1462-452a-8265-0706ff6a68ab" + "b8e9ef44-f3cb-4453-9d91-691cd86edfe2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T000136Z:df1e5af3-1462-452a-8265-0706ff6a68ab" + "WESTUS2:20190718T214658Z:b8e9ef44-f3cb-4453-9d91-691cd86edfe2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -124,65 +120,65 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" + "Content-Length": [ + "250" ], - "Date": [ - "Thu, 11 Apr 2019 00:01:36 GMT" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802\",\r\n \"name\": \"galleryPsTestRg4802\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"galleryPsTestRg4802\": \"2019-07-18 21:46:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourcegroups/galleryPsTestRg920?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg4802?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ4MDI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"galleryPsTestRg920\": \"2019-04-11 00:02:05Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"galleryPsTestRg4802\": \"2019-07-18 21:47:27Z\"\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "102" - ], "x-ms-client-request-id": [ - "fb923259-62b4-4f42-8075-466b3c8c8d58" + "d6db4f67-36a5-4900-85d0-6546ec91396c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920\",\r\n \"name\": \"galleryPsTestRg920\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"galleryPsTestRg920\": \"2019-04-11 00:02:05Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "247" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "103" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 18 Jul 2019 21:47:30 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "3c6d919b-1921-4d99-9d44-c2987c8c91c4" + "46247355-c43c-453f-a3c9-58eab7db63fe" ], "x-ms-correlation-request-id": [ - "3c6d919b-1921-4d99-9d44-c2987c8c91c4" + "46247355-c43c-453f-a3c9-58eab7db63fe" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T000206Z:3c6d919b-1921-4d99-9d44-c2987c8c91c4" + "WESTUS2:20190718T214731Z:46247355-c43c-453f-a3c9-58eab7db63fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -190,59 +186,65 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" + "Content-Length": [ + "250" ], - "Date": [ - "Thu, 11 Apr 2019 00:02:05 GMT" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802\",\r\n \"name\": \"galleryPsTestRg4802\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"galleryPsTestRg4802\": \"2019-07-18 21:47:27Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Storage/storageAccounts/saforgallery1778?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3NhZm9yZ2FsbGVyeTE3Nzg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Storage/storageAccounts/saforgallery8591?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnk4NTkxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "93" - ], "x-ms-client-request-id": [ - "5158d312-63d3-4d24-8e2d-5ec10f425a96" + "ffc9b42b-5c72-4dff-9e24-51a8e7c712b6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "93" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Content-Type": [ - "text/plain; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:46:59 GMT" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Storage/locations/eastus2euap/asyncoperations/637d239f-bcaf-423a-ab03-f639553295eb?monitor=true&api-version=2015-06-15" + ], "Retry-After": [ "17" ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "70d6adbc-a425-436d-bc1f-d0e2c42f6aeb" + "637d239f-bcaf-423a-ab03-f639553295eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -251,58 +253,55 @@ "1199" ], "x-ms-correlation-request-id": [ - "4cc44b65-c8a9-4421-9562-12ab229befbb" + "753686fc-bfdb-4ddf-b5d3-a2164bbafe49" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T000138Z:4cc44b65-c8a9-4421-9562-12ab229befbb" + "WESTUS2:20190718T214700Z:753686fc-bfdb-4ddf-b5d3-a2164bbafe49" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 11 Apr 2019 00:01:38 GMT" + "Content-Length": [ + "0" ], - "Location": [ - "https://management.azure.com/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Storage/locations/eastus2euap/asyncoperations/70d6adbc-a425-436d-bc1f-d0e2c42f6aeb?monitor=true&api-version=2015-06-15" + "Content-Type": [ + "text/plain; charset=utf-8" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Storage/locations/eastus2euap/asyncoperations/70d6adbc-a425-436d-bc1f-d0e2c42f6aeb?monitor=true&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvYXN5bmNvcGVyYXRpb25zLzcwZDZhZGJjLWE0MjUtNDM2ZC1iYzFmLWQwZTJjNDJmNmFlYj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Storage/locations/eastus2euap/asyncoperations/637d239f-bcaf-423a-ab03-f639553295eb?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvYXN5bmNvcGVyYXRpb25zLzYzN2QyMzlmLWJjYWYtNDIzYS1hYjAzLWY2Mzk1NTMyOTVlYj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ] }, - "ResponseBody": "{\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "93" - ], - "Content-Type": [ - "application/json" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:47:16 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "593c33f1-ae44-4acc-ac70-860f31afaaea" + "f2dce7cd-0f75-4a83-94b4-432212806807" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -311,61 +310,61 @@ "11999" ], "x-ms-correlation-request-id": [ - "9dfbebf0-0ffe-404d-88ba-eeb5cb76fa73" + "65f377b9-1ffc-41d2-a139-f11ecc1430e9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T000155Z:9dfbebf0-0ffe-404d-88ba-eeb5cb76fa73" + "WESTUS2:20190718T214717Z:65f377b9-1ffc-41d2-a139-f11ecc1430e9" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" + "Content-Length": [ + "93" ], - "Date": [ - "Thu, 11 Apr 2019 00:01:55 GMT" + "Content-Type": [ + "application/json" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "105663aa-7b26-4fcb-82e7-c62d77a21293" + "710cba5c-a8a2-4d16-8f64-78f7893e116a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Storage/storageAccounts/saforgallery1778\",\r\n \"name\": \"saforgallery1778\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-04-11T00:01:37.9837687Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery1778.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery1778.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery1778.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery1778.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centraluseuap\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "776" - ], - "Content-Type": [ - "application/json" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:47:27 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "34133b61-71dc-410d-99f9-98f6982acc79" + "90f96a6c-1680-4035-ba91-2c18ebe0af43" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -374,61 +373,61 @@ "11998" ], "x-ms-correlation-request-id": [ - "91a564ed-2b3a-42f3-8a43-0984e5a01cd4" + "b1cd78fc-e128-4f1b-b3ee-4aa308c589f1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T000205Z:91a564ed-2b3a-42f3-8a43-0984e5a01cd4" + "WESTUS2:20190718T214727Z:b1cd78fc-e128-4f1b-b3ee-4aa308c589f1" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" + "Content-Length": [ + "777" ], - "Date": [ - "Thu, 11 Apr 2019 00:02:05 GMT" + "Content-Type": [ + "application/json" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Storage/storageAccounts/saforgallery8591\",\r\n \"name\": \"saforgallery8591\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-18T21:46:59.6387468Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery8591.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery8591.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery8591.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery8591.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centraluseuap\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Storage/storageAccounts/saforgallery1778?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyMC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3NhZm9yZ2FsbGVyeTE3Nzg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Storage/storageAccounts/saforgallery8591?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnk4NTkxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e39986cf-b940-4454-929d-396a0b5ca7e4" + "485d0c34-6f9c-481c-acde-109c2f0725d1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Storage/storageAccounts/saforgallery1778\",\r\n \"name\": \"saforgallery1778\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-04-11T00:01:37.9837687Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery1778.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery1778.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery1778.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery1778.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centraluseuap\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "764" - ], - "Content-Type": [ - "application/json" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:47:27 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "12377a32-f41f-42cf-9cd5-a87f6ab6f9a7" + "f2b4331a-cc0e-4d40-8285-25f8c62f83b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -437,61 +436,58 @@ "11997" ], "x-ms-correlation-request-id": [ - "bf7bbe5b-0ad0-44d8-8be5-a36d999186cb" + "26f6e031-8378-4fcf-a07f-4c39a7844df8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T000205Z:bf7bbe5b-0ad0-44d8-8be5-a36d999186cb" + "WESTUS2:20190718T214727Z:26f6e031-8378-4fcf-a07f-4c39a7844df8" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" + "Content-Length": [ + "765" ], - "Date": [ - "Thu, 11 Apr 2019 00:02:05 GMT" + "Content-Type": [ + "application/json" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Storage/storageAccounts/saforgallery8591\",\r\n \"name\": \"saforgallery8591\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-07-18T21:46:59.6387468Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery8591.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery8591.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery8591.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery8591.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centraluseuap\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Network/publicIPAddresses/pip9966?api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk2Nj9hcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Network/publicIPAddresses/pip9137?api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDkxMzc/YXBpLXZlcnNpb249MjAxOC0wNy0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5475\"\r\n }\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn7116\"\r\n }\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "205" - ], "x-ms-client-request-id": [ - "a4201815-85db-4104-86b6-7ac4fff55a20" + "cfb9978e-851d-4edf-b21f-9c3d71107192" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.3.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"pip9966\",\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Network/publicIPAddresses/pip9966\",\r\n \"etag\": \"W/\\\"f903da7e-89d1-491f-b0df-5823bd1033d9\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"620a8c79-72c1-4820-8233-8adffcc6bd66\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5475\",\r\n \"fqdn\": \"dn5475.eastus2euap.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 \"tier\": \"Regional\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "795" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "205" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 18 Jul 2019 21:47:32 GMT" ], "Pragma": [ "no-cache" @@ -499,261 +495,273 @@ "Retry-After": [ "1" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "cf2c42fb-3102-41df-9b49-7c6308ec2a75" + "919074a8-68f6-42cb-bd7e-0997ec046cf8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Network/locations/eastus2euap/operations/cf2c42fb-3102-41df-9b49-7c6308ec2a75?api-version=2018-07-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Network/locations/eastus2euap/operations/919074a8-68f6-42cb-bd7e-0997ec046cf8?api-version=2018-07-01" ], "x-ms-correlation-request-id": [ - "e4728f59-4396-44be-a154-db9c919c51ea" + "b05457e5-507b-4ad3-a839-63128e77bd1b" + ], + "x-ms-arm-service-request-id": [ + "4c723a4b-d498-4023-9458-d043c34822ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T000208Z:e4728f59-4396-44be-a154-db9c919c51ea" + "WESTUS2:20190718T214733Z:b05457e5-507b-4ad3-a839-63128e77bd1b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:02:08 GMT" + "Content-Length": [ + "796" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"pip9137\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Network/publicIPAddresses/pip9137\",\r\n \"etag\": \"W/\\\"1a872c54-b59d-40ff-8b5f-b6fbd8d2ea73\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"56a3c5a7-9b65-45af-b900-a0de540c2c59\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn7116\",\r\n \"fqdn\": \"dn7116.eastus2euap.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 \"tier\": \"Regional\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Network/locations/eastus2euap/operations/cf2c42fb-3102-41df-9b49-7c6308ec2a75?api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy9jZjJjNDJmYi0zMTAyLTQxZGYtOWI0OS03YzYzMDhlYzJhNzU/YXBpLXZlcnNpb249MjAxOC0wNy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Network/locations/eastus2euap/operations/919074a8-68f6-42cb-bd7e-0997ec046cf8?api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy85MTkwNzRhOC02OGY2LTQyY2ItYmQ3ZS0wOTk3ZWMwNDZjZjg/YXBpLXZlcnNpb249MjAxOC0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.3.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "29" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:47:34 GMT" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "02c258e5-110c-4879-bbe7-105e7396e1b9" - ], - "x-ms-correlation-request-id": [ - "0ced1cae-c4fb-4b10-9bea-eb6a22c7cf88" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ + "35864cb9-faf9-476d-a0f7-d7511f74a295" + ], + "x-ms-correlation-request-id": [ + "d71cad7e-ec7f-47e2-a834-64e0431dc0a6" + ], + "x-ms-arm-service-request-id": [ + "013585e9-96d3-474a-a5fc-01105194dd5c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T000219Z:0ced1cae-c4fb-4b10-9bea-eb6a22c7cf88" + "WESTUS2:20190718T214735Z:d71cad7e-ec7f-47e2-a834-64e0431dc0a6" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:02:18 GMT" + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Network/publicIPAddresses/pip9966?api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk2Nj9hcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Network/publicIPAddresses/pip9137?api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDkxMzc/YXBpLXZlcnNpb249MjAxOC0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.3.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pip9966\",\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Network/publicIPAddresses/pip9966\",\r\n \"etag\": \"W/\\\"6eb2d564-0bb6-44d2-92fd-dc1869a2b4bf\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"620a8c79-72c1-4820-8233-8adffcc6bd66\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5475\",\r\n \"fqdn\": \"dn5475.eastus2euap.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 \"tier\": \"Regional\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "796" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:47:34 GMT" ], "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"39390900-27cd-4bc3-afd2-87431afb295f\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "8dd25317-be6b-4cd6-8bf6-0fe8ec69ec5f" + "5e95c6d0-f54a-442a-8e3c-550074a93055" ], "x-ms-correlation-request-id": [ - "9047f12e-471f-4a3b-9ba9-17b1c1a57478" + "e8ceb5d2-56d9-44e4-b7b6-01fb10db32e5" + ], + "x-ms-arm-service-request-id": [ + "fe91dfc5-102d-4237-9f14-df570284f7e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "ETag": [ - "W/\"6eb2d564-0bb6-44d2-92fd-dc1869a2b4bf\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T000219Z:9047f12e-471f-4a3b-9ba9-17b1c1a57478" + "WESTUS2:20190718T214735Z:e8ceb5d2-56d9-44e4-b7b6-01fb10db32e5" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:02:18 GMT" + "Content-Length": [ + "797" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"pip9137\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Network/publicIPAddresses/pip9137\",\r\n \"etag\": \"W/\\\"39390900-27cd-4bc3-afd2-87431afb295f\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"56a3c5a7-9b65-45af-b900-a0de540c2c59\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn7116\",\r\n \"fqdn\": \"dn7116.eastus2euap.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 \"tier\": \"Regional\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Network/publicIPAddresses/pip9966?api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk2Nj9hcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Network/publicIPAddresses/pip9137?api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDkxMzc/YXBpLXZlcnNpb249MjAxOC0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eecdce44-e109-4cb0-8883-be9cea2e5600" + "a0165ae0-67f7-4804-b70d-7ba61e9d1e76" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.3.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"pip9966\",\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Network/publicIPAddresses/pip9966\",\r\n \"etag\": \"W/\\\"6eb2d564-0bb6-44d2-92fd-dc1869a2b4bf\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"620a8c79-72c1-4820-8233-8adffcc6bd66\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5475\",\r\n \"fqdn\": \"dn5475.eastus2euap.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 \"tier\": \"Regional\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "796" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:47:34 GMT" ], "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"39390900-27cd-4bc3-afd2-87431afb295f\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "2e621547-467a-4799-b42e-efd005782eb6" + "0bed1b56-703d-4045-a00b-a2fd56317179" ], "x-ms-correlation-request-id": [ - "dc7dfd97-fcea-46d1-a983-4777f318e50c" + "95f87f6f-775b-40fd-93c0-c1f20445f11d" + ], + "x-ms-arm-service-request-id": [ + "ce576c1f-8e1b-4cdb-bbc8-bb7158dd7eec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "ETag": [ - "W/\"6eb2d564-0bb6-44d2-92fd-dc1869a2b4bf\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T000219Z:dc7dfd97-fcea-46d1-a983-4777f318e50c" + "WESTUS2:20190718T214735Z:95f87f6f-775b-40fd-93c0-c1f20445f11d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:02:18 GMT" + "Content-Length": [ + "797" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"pip9137\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Network/publicIPAddresses/pip9137\",\r\n \"etag\": \"W/\\\"39390900-27cd-4bc3-afd2-87431afb295f\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"56a3c5a7-9b65-45af-b900-a0de540c2c59\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn7116\",\r\n \"fqdn\": \"dn7116.eastus2euap.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 \"tier\": \"Regional\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Network/virtualNetworks/vn8974?api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODk3ND9hcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Network/virtualNetworks/vn1994?api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE5OTQ/YXBpLXZlcnNpb249MjAxOC0wNy0wMQ==", "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\": \"sn3142\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2euap\"\r\n}", + "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\": \"sn5799\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2euap\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "400" - ], "x-ms-client-request-id": [ - "a29bfa53-3719-4e58-937d-9f43cadd7644" + "6513d725-1165-4029-8c78-d6d64b971c3d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.3.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"vn8974\",\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Network/virtualNetworks/vn8974\",\r\n \"etag\": \"W/\\\"4c88c6ef-8901-45fb-9b8f-727407289b4e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"29251c87-6eac-414a-83ec-07345309cd36\",\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\": \"sn3142\",\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Network/virtualNetworks/vn8974/subnets/sn3142\",\r\n \"etag\": \"W/\\\"4c88c6ef-8901-45fb-9b8f-727407289b4e\\\"\",\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}", - "ResponseHeaders": { - "Content-Length": [ - "1248" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "400" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 18 Jul 2019 21:47:36 GMT" ], "Pragma": [ "no-cache" @@ -761,466 +769,491 @@ "Retry-After": [ "3" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "0be7c597-1b97-4f17-86fc-a446c7a271af" + "0ed77a2a-90fa-473c-bf0e-fe0523c739f6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Network/locations/eastus2euap/operations/0be7c597-1b97-4f17-86fc-a446c7a271af?api-version=2018-07-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Network/locations/eastus2euap/operations/0ed77a2a-90fa-473c-bf0e-fe0523c739f6?api-version=2018-07-01" ], "x-ms-correlation-request-id": [ - "740700b5-e921-4b45-9f0d-9c5ec5ba5634" + "b23928a8-49a9-41e0-9f3c-6ecfa19381b6" + ], + "x-ms-arm-service-request-id": [ + "b7cd760b-7f19-4a4c-b7e3-2b9cae25f446" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T000220Z:740700b5-e921-4b45-9f0d-9c5ec5ba5634" + "WESTUS2:20190718T214736Z:b23928a8-49a9-41e0-9f3c-6ecfa19381b6" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:02:19 GMT" + "Content-Length": [ + "1250" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"vn1994\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Network/virtualNetworks/vn1994\",\r\n \"etag\": \"W/\\\"d2662171-e280-49fe-948a-44a3f1de0db7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"f62e4d1c-f70e-4398-8813-ecbcad4c42b9\",\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\": \"sn5799\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Network/virtualNetworks/vn1994/subnets/sn5799\",\r\n \"etag\": \"W/\\\"d2662171-e280-49fe-948a-44a3f1de0db7\\\"\",\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/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Network/locations/eastus2euap/operations/0be7c597-1b97-4f17-86fc-a446c7a271af?api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8wYmU3YzU5Ny0xYjk3LTRmMTctODZmYy1hNDQ2YzdhMjcxYWY/YXBpLXZlcnNpb249MjAxOC0wNy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Network/locations/eastus2euap/operations/0ed77a2a-90fa-473c-bf0e-fe0523c739f6?api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvb3BlcmF0aW9ucy8wZWQ3N2EyYS05MGZhLTQ3M2MtYmYwZS1mZTA1MjNjNzM5ZjY/YXBpLXZlcnNpb249MjAxOC0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.3.0.0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "29" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:47:39 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "cc4e3d5c-6486-44c0-9c03-025548662ed0" + "100d5e59-5448-47f2-9be4-90e7a7d2f724" ], "x-ms-correlation-request-id": [ - "b9c031bc-d92a-477e-85c4-0a07fed1b941" + "caade8cf-1f66-434c-9253-09617f69bb99" + ], + "x-ms-arm-service-request-id": [ + "f4b68e22-52f6-40ec-a22b-500137940da6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T000230Z:b9c031bc-d92a-477e-85c4-0a07fed1b941" + "WESTUS2:20190718T214740Z:caade8cf-1f66-434c-9253-09617f69bb99" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:02:29 GMT" + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Network/virtualNetworks/vn8974?api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODk3ND9hcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Network/virtualNetworks/vn1994?api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE5OTQ/YXBpLXZlcnNpb249MjAxOC0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.3.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vn8974\",\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Network/virtualNetworks/vn8974\",\r\n \"etag\": \"W/\\\"f6e3786c-2c9b-46f4-a81d-a3541f275aab\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"29251c87-6eac-414a-83ec-07345309cd36\",\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\": \"sn3142\",\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Network/virtualNetworks/vn8974/subnets/sn3142\",\r\n \"etag\": \"W/\\\"f6e3786c-2c9b-46f4-a81d-a3541f275aab\\\"\",\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}", "ResponseHeaders": { - "Content-Length": [ - "1250" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:47:39 GMT" ], "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"0cfe8db8-df3c-4621-97da-c7ef1bfd7075\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "104678ec-8082-41c8-ba5e-fff7771e8e49" + "e962469a-8215-4d9d-9a88-67fdd6104114" ], "x-ms-correlation-request-id": [ - "022672d3-2545-4452-9249-e5fda7248b64" + "33655bea-5cb7-4776-a001-5ebf27fd3083" + ], + "x-ms-arm-service-request-id": [ + "f39616ce-89bd-4559-9ee3-786896c231f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "ETag": [ - "W/\"f6e3786c-2c9b-46f4-a81d-a3541f275aab\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T000230Z:022672d3-2545-4452-9249-e5fda7248b64" + "WESTUS2:20190718T214740Z:33655bea-5cb7-4776-a001-5ebf27fd3083" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:02:29 GMT" + "Content-Length": [ + "1252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"vn1994\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Network/virtualNetworks/vn1994\",\r\n \"etag\": \"W/\\\"0cfe8db8-df3c-4621-97da-c7ef1bfd7075\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f62e4d1c-f70e-4398-8813-ecbcad4c42b9\",\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\": \"sn5799\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Network/virtualNetworks/vn1994/subnets/sn5799\",\r\n \"etag\": \"W/\\\"0cfe8db8-df3c-4621-97da-c7ef1bfd7075\\\"\",\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/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Network/virtualNetworks/vn8974/subnets/sn3142?api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODk3NC9zdWJuZXRzL3NuMzE0Mj9hcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Network/virtualNetworks/vn1994/subnets/sn5799?api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE5OTQvc3VibmV0cy9zbjU3OTk/YXBpLXZlcnNpb249MjAxOC0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9eba9dc8-cdbc-497d-98d1-d30ee4edb0de" + "98ea1c20-9e09-4584-875c-7701f6aa6007" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.3.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"sn3142\",\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Network/virtualNetworks/vn8974/subnets/sn3142\",\r\n \"etag\": \"W/\\\"f6e3786c-2c9b-46f4-a81d-a3541f275aab\\\"\",\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}", "ResponseHeaders": { - "Content-Length": [ - "425" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:47:39 GMT" ], "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"0cfe8db8-df3c-4621-97da-c7ef1bfd7075\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "6ec07549-8dbb-4515-81a7-75275c902fed" + "52280137-2c77-4cb5-8ecb-fa03452fc4f8" ], "x-ms-correlation-request-id": [ - "b7de2f48-b5f0-47b4-afb2-0ecfc0dc9adc" + "663673c1-d3c7-4608-b71b-7fc1746c45a9" + ], + "x-ms-arm-service-request-id": [ + "027d46df-84df-4b46-8d7b-e089ef7110ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "ETag": [ - "W/\"f6e3786c-2c9b-46f4-a81d-a3541f275aab\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T000230Z:b7de2f48-b5f0-47b4-afb2-0ecfc0dc9adc" + "WESTUS2:20190718T214740Z:663673c1-d3c7-4608-b71b-7fc1746c45a9" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:02:29 GMT" + "Content-Length": [ + "426" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"sn5799\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Network/virtualNetworks/vn1994/subnets/sn5799\",\r\n \"etag\": \"W/\\\"0cfe8db8-df3c-4621-97da-c7ef1bfd7075\\\"\",\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/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Network/networkInterfaces/nic9966?api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljOTk2Nj9hcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Network/networkInterfaces/nic7304?api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzczMDQ/YXBpLXZlcnNpb249MjAxOC0wNy0wMQ==", "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\": \"sn3142\",\r\n \"etag\": \"W/\\\"f6e3786c-2c9b-46f4-a81d-a3541f275aab\\\"\",\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Network/virtualNetworks/vn8974/subnets/sn3142\"\r\n }\r\n },\r\n \"name\": \"ip3650\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "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\": \"sn5799\",\r\n \"etag\": \"W/\\\"0cfe8db8-df3c-4621-97da-c7ef1bfd7075\\\"\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Network/virtualNetworks/vn1994/subnets/sn5799\"\r\n }\r\n },\r\n \"name\": \"ip2904\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "710" - ], "x-ms-client-request-id": [ - "da80f790-cf8c-413c-9e7f-b2aed6569e1e" + "4c67b9ba-cd7e-4dc1-873b-59f9c86684a8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.3.0.0" - ] - }, - "ResponseBody": "{\r\n \"name\": \"nic9966\",\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Network/networkInterfaces/nic9966\",\r\n \"etag\": \"W/\\\"5c72e805-c1d2-4bc6-aeed-c6b838e8eea5\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3254cfb0-7ed0-4332-8b81-45f292d53a18\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3650\",\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Network/networkInterfaces/nic9966/ipConfigurations/ip3650\",\r\n \"etag\": \"W/\\\"5c72e805-c1d2-4bc6-aeed-c6b838e8eea5\\\"\",\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/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Network/virtualNetworks/vn8974/subnets/sn3142\"\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\": \"q2ockknmnzfeda5ma20fgcongg.cbnx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1588" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "711" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 18 Jul 2019 21:47:41 GMT" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "b67c22aa-2b13-42e2-b2da-999eabc70815" - ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "acb54dbd-46ac-4abf-8253-c388f911cacd" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Network/locations/eastus2euap/operations/b67c22aa-2b13-42e2-b2da-999eabc70815?api-version=2018-07-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Network/locations/eastus2euap/operations/acb54dbd-46ac-4abf-8253-c388f911cacd?api-version=2018-07-01" ], "x-ms-correlation-request-id": [ - "d51a8a71-d888-4edb-9446-51fdf675b040" + "71bcfa07-3903-4bb7-9450-a4022bbfc693" + ], + "x-ms-arm-service-request-id": [ + "6dc7d114-12d0-4695-bc78-383bc9b288c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T000231Z:d51a8a71-d888-4edb-9446-51fdf675b040" + "WESTUS2:20190718T214741Z:71bcfa07-3903-4bb7-9450-a4022bbfc693" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:02:30 GMT" + "Content-Length": [ + "1591" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"nic7304\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Network/networkInterfaces/nic7304\",\r\n \"etag\": \"W/\\\"e030ccf8-609b-4c91-969b-1a3a92b77cf1\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a4f52f39-8f41-4ca6-825a-3a5a8dc6bdf7\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip2904\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Network/networkInterfaces/nic7304/ipConfigurations/ip2904\",\r\n \"etag\": \"W/\\\"e030ccf8-609b-4c91-969b-1a3a92b77cf1\\\"\",\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/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Network/virtualNetworks/vn1994/subnets/sn5799\"\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\": \"drgs33qo44mehcat3s4k0tccxb.cbnx.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/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Network/networkInterfaces/nic9966?api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljOTk2Nj9hcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Network/networkInterfaces/nic7304?api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzczMDQ/YXBpLXZlcnNpb249MjAxOC0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.3.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic9966\",\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Network/networkInterfaces/nic9966\",\r\n \"etag\": \"W/\\\"5c72e805-c1d2-4bc6-aeed-c6b838e8eea5\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3254cfb0-7ed0-4332-8b81-45f292d53a18\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3650\",\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Network/networkInterfaces/nic9966/ipConfigurations/ip3650\",\r\n \"etag\": \"W/\\\"5c72e805-c1d2-4bc6-aeed-c6b838e8eea5\\\"\",\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/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Network/virtualNetworks/vn8974/subnets/sn3142\"\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\": \"q2ockknmnzfeda5ma20fgcongg.cbnx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1588" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:47:41 GMT" ], "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"e030ccf8-609b-4c91-969b-1a3a92b77cf1\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "dc87300a-5853-447b-9bfc-bf4055a39501" + "3be68f91-919a-4793-9081-b8ad5cce7220" ], "x-ms-correlation-request-id": [ - "545aab7c-3fe2-4e55-b632-5fbce929f037" + "5642d02b-6b97-4a07-8b57-067616a7bf9e" + ], + "x-ms-arm-service-request-id": [ + "4768867f-e64c-4ab6-9ed9-52d59a3f245f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "ETag": [ - "W/\"5c72e805-c1d2-4bc6-aeed-c6b838e8eea5\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T000231Z:545aab7c-3fe2-4e55-b632-5fbce929f037" + "WESTUS2:20190718T214741Z:5642d02b-6b97-4a07-8b57-067616a7bf9e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:02:31 GMT" + "Content-Length": [ + "1591" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"nic7304\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Network/networkInterfaces/nic7304\",\r\n \"etag\": \"W/\\\"e030ccf8-609b-4c91-969b-1a3a92b77cf1\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a4f52f39-8f41-4ca6-825a-3a5a8dc6bdf7\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip2904\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Network/networkInterfaces/nic7304/ipConfigurations/ip2904\",\r\n \"etag\": \"W/\\\"e030ccf8-609b-4c91-969b-1a3a92b77cf1\\\"\",\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/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Network/virtualNetworks/vn1994/subnets/sn5799\"\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\": \"drgs33qo44mehcat3s4k0tccxb.cbnx.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/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Network/networkInterfaces/nic9966?api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljOTk2Nj9hcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Network/networkInterfaces/nic7304?api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzczMDQ/YXBpLXZlcnNpb249MjAxOC0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ba65a9fc-6731-4fa3-8e0a-786a6d86256f" + "106ea810-d1cd-4a20-b89f-21db0df671be" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.3.0.0" ] }, - "ResponseBody": "{\r\n \"name\": \"nic9966\",\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Network/networkInterfaces/nic9966\",\r\n \"etag\": \"W/\\\"5c72e805-c1d2-4bc6-aeed-c6b838e8eea5\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3254cfb0-7ed0-4332-8b81-45f292d53a18\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3650\",\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Network/networkInterfaces/nic9966/ipConfigurations/ip3650\",\r\n \"etag\": \"W/\\\"5c72e805-c1d2-4bc6-aeed-c6b838e8eea5\\\"\",\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/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Network/virtualNetworks/vn8974/subnets/sn3142\"\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\": \"q2ockknmnzfeda5ma20fgcongg.cbnx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1588" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:47:41 GMT" ], "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"e030ccf8-609b-4c91-969b-1a3a92b77cf1\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-request-id": [ - "cfb516b1-96e5-4423-9f21-75b488a614cc" + "0bea8e4c-15aa-4bfa-bc6d-959cd5a24550" ], "x-ms-correlation-request-id": [ - "d12ce0b8-08bb-4d06-b542-8f78dc53966f" + "266da186-d5aa-4888-ada6-6cfa54ccc949" + ], + "x-ms-arm-service-request-id": [ + "0c22fecf-8f47-4498-b58d-827d975b94f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" - ], - "ETag": [ - "W/\"5c72e805-c1d2-4bc6-aeed-c6b838e8eea5\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T000232Z:d12ce0b8-08bb-4d06-b542-8f78dc53966f" + "WESTUS2:20190718T214741Z:266da186-d5aa-4888-ada6-6cfa54ccc949" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:02:31 GMT" + "Content-Length": [ + "1591" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"nic7304\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Network/networkInterfaces/nic7304\",\r\n \"etag\": \"W/\\\"e030ccf8-609b-4c91-969b-1a3a92b77cf1\\\"\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a4f52f39-8f41-4ca6-825a-3a5a8dc6bdf7\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip2904\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Network/networkInterfaces/nic7304/ipConfigurations/ip2904\",\r\n \"etag\": \"W/\\\"e030ccf8-609b-4c91-969b-1a3a92b77cf1\\\"\",\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/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Network/virtualNetworks/vn1994/subnets/sn5799\"\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\": \"drgs33qo44mehcat3s4k0tccxb.cbnx.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/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/availabilitySets/asforgallery3292?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXZhaWxhYmlsaXR5U2V0cy9hc2ZvcmdhbGxlcnkzMjkyP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/availabilitySets/asforgallery4644?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXNmb3JnYWxsZXJ5NDY0ND9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", "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\": \"eastus2euap\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "227" - ], "x-ms-client-request-id": [ - "3db4b343-e92d-4235-ab7a-c66fc124d4b3" + "061f0e52-c4fc-4101-9f19-2322acf0c14d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/availabilitySets/asforgallery3292\",\r\n \"name\": \"asforgallery3292\",\r\n \"sku\": {\r\n \"name\": \"Classic\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "467" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "227" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 18 Jul 2019 21:47:42 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199" ], @@ -1228,68 +1261,64 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "49a22363-4204-41fe-9403-e84a1e109840" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "3ff9cabd-a462-4d9c-a78d-e8815d26f924" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "07a6e461-ba4a-4c1d-921b-7a2dc8964611" + "d08b177a-9510-4cd6-9a2a-19ed3adb69cb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T000233Z:07a6e461-ba4a-4c1d-921b-7a2dc8964611" + "WESTUS2:20190718T214743Z:d08b177a-9510-4cd6-9a2a-19ed3adb69cb" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:02:33 GMT" + "Content-Length": [ + "468" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"asforgallery4644\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/availabilitySets/asforgallery4644\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"eastus2euap\",\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/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/virtualMachines/vm2925?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtMjkyNT9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/virtualMachines/vm9919?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTk5MTk/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\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://saforgallery1778.blob.core.windows.net/crptestar5688/oscrptestar8422.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/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Network/networkInterfaces/nic9966\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/availabilitySets/asforgallery3292\"\r\n }\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\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://saforgallery8591.blob.core.windows.net/crptestar1353/oscrptestar6393.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/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Network/networkInterfaces/nic7304\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/availabilitySets/asforgallery4644\"\r\n }\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1238" - ], "x-ms-client-request-id": [ - "237d4024-67be-4f23-8093-337cf5f0fab7" + "4d506187-bf46-4e75-af75-63606d4d7737" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"f9925d1d-0fe7-468a-a15f-222e5c9bc32e\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY3292\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\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 \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://saforgallery1778.blob.core.windows.net/crptestar5688/oscrptestar8422.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/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Network/networkInterfaces/nic9966\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/virtualMachines/vm2925\",\r\n \"name\": \"vm2925\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1728" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "1240" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 18 Jul 2019 21:47:44 GMT" ], "Pragma": [ "no-cache" @@ -1297,8 +1326,12 @@ "Retry-After": [ "10" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/57e50d06-2349-4fa6-9bd8-bf6c02255b12?api-version=2019-03-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/93ed6d98-1cb7-432d-a7e3-2260fda423b3?api-version=2019-03-01" ], "Azure-AsyncNotification": [ "Enabled" @@ -1310,56 +1343,52 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "57e50d06-2349-4fa6-9bd8-bf6c02255b12" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "93ed6d98-1cb7-432d-a7e3-2260fda423b3" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "c9175317-65d4-4882-bdca-b126d1c444d4" + "d3a4d996-e40e-4d39-aacc-4259a2dda5bc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T000235Z:c9175317-65d4-4882-bdca-b126d1c444d4" + "WESTUS2:20190718T214744Z:d3a4d996-e40e-4d39-aacc-4259a2dda5bc" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:02:34 GMT" + "Content-Length": [ + "1731" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"vm9919\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/virtualMachines/vm9919\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"2004147b-bdae-4d52-beef-8a3dce09e25f\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY4644\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\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 \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://saforgallery8591.blob.core.windows.net/crptestar1353/oscrptestar6393.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/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Network/networkInterfaces/nic7304\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/57e50d06-2349-4fa6-9bd8-bf6c02255b12?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvb3BlcmF0aW9ucy81N2U1MGQwNi0yMzQ5LTRmYTYtOWJkOC1iZjZjMDIyNTViMTI/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/93ed6d98-1cb7-432d-a7e3-2260fda423b3?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvb3BlcmF0aW9ucy85M2VkNmQ5OC0xY2I3LTQzMmQtYTdlMy0yMjYwZmRhNDIzYjM/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:02:34.6505526-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"57e50d06-2349-4fa6-9bd8-bf6c02255b12\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:47:54 GMT" ], "Pragma": [ "no-cache" @@ -1367,6 +1396,10 @@ "Retry-After": [ "70" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999" ], @@ -1374,60 +1407,60 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a2832bec-ee44-4b61-8ece-311ccc5c342d" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "f968e87a-b6e2-4f8a-aa70-e92755ae01bd" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "7f7f56ff-2152-4201-876c-33c847d666d8" + "26765ee9-6453-4747-8a25-1f9a85d70743" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T000245Z:7f7f56ff-2152-4201-876c-33c847d666d8" + "WESTUS2:20190718T214754Z:26765ee9-6453-4747-8a25-1f9a85d70743" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:02:45 GMT" + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:47:43.9774505-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"93ed6d98-1cb7-432d-a7e3-2260fda423b3\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/57e50d06-2349-4fa6-9bd8-bf6c02255b12?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvb3BlcmF0aW9ucy81N2U1MGQwNi0yMzQ5LTRmYTYtOWJkOC1iZjZjMDIyNTViMTI/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/93ed6d98-1cb7-432d-a7e3-2260fda423b3?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvb3BlcmF0aW9ucy85M2VkNmQ5OC0xY2I3LTQzMmQtYTdlMy0yMjYwZmRhNDIzYjM/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:02:34.6505526-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"57e50d06-2349-4fa6-9bd8-bf6c02255b12\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:49:04 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998" ], @@ -1435,60 +1468,60 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "66d0dd0f-34c3-4a77-8a65-4e178d641e7d" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "4de589c4-c9c8-4ce5-9950-a5ce0ad8e9c5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-correlation-request-id": [ - "04c86e30-9256-4687-90c8-9484b22f52d3" + "bf2c1e24-6195-4ef0-983a-3e01148d9278" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T000355Z:04c86e30-9256-4687-90c8-9484b22f52d3" + "WESTUS2:20190718T214905Z:bf2c1e24-6195-4ef0-983a-3e01148d9278" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:03:54 GMT" + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:47:43.9774505-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"93ed6d98-1cb7-432d-a7e3-2260fda423b3\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/57e50d06-2349-4fa6-9bd8-bf6c02255b12?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvb3BlcmF0aW9ucy81N2U1MGQwNi0yMzQ5LTRmYTYtOWJkOC1iZjZjMDIyNTViMTI/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/93ed6d98-1cb7-432d-a7e3-2260fda423b3?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvb3BlcmF0aW9ucy85M2VkNmQ5OC0xY2I3LTQzMmQtYTdlMy0yMjYwZmRhNDIzYjM/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:02:34.6505526-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"57e50d06-2349-4fa6-9bd8-bf6c02255b12\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:50:15 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29995" ], @@ -1496,60 +1529,60 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1d51115a-a09f-41be-b92e-b23df4db5d35" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "3cb8d6ff-ddc1-41b5-bc2a-2e09fe7ccf9d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11999" ], "x-ms-correlation-request-id": [ - "55a394ff-462a-4328-a775-4b1ebc9ed5f2" + "6dc08b40-ee83-4878-97c9-ab20f9756d4d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T000505Z:55a394ff-462a-4328-a775-4b1ebc9ed5f2" + "WESTUS2:20190718T215015Z:6dc08b40-ee83-4878-97c9-ab20f9756d4d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:05:05 GMT" - ] - }, - "StatusCode": 200 - }, + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:47:43.9774505-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"93ed6d98-1cb7-432d-a7e3-2260fda423b3\"\r\n}", + "StatusCode": 200 + }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/57e50d06-2349-4fa6-9bd8-bf6c02255b12?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvb3BlcmF0aW9ucy81N2U1MGQwNi0yMzQ5LTRmYTYtOWJkOC1iZjZjMDIyNTViMTI/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/93ed6d98-1cb7-432d-a7e3-2260fda423b3?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvb3BlcmF0aW9ucy85M2VkNmQ5OC0xY2I3LTQzMmQtYTdlMy0yMjYwZmRhNDIzYjM/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:02:34.6505526-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"57e50d06-2349-4fa6-9bd8-bf6c02255b12\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:51:26 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29989" ], @@ -1557,324 +1590,385 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b23b160b-c151-4e24-8c2e-dd139c84a1de" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "51e2b549-1ff2-41f0-a2b7-74b5e51570fb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11999" ], "x-ms-correlation-request-id": [ - "5b919a8b-ed50-4ed5-831b-ff04e97d16f6" + "04fc2c2a-8ec6-45fe-95c4-3e63af25e9bf" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T000615Z:5b919a8b-ed50-4ed5-831b-ff04e97d16f6" + "WESTUS2:20190718T215126Z:04fc2c2a-8ec6-45fe-95c4-3e63af25e9bf" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:06:15 GMT" + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:47:43.9774505-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"93ed6d98-1cb7-432d-a7e3-2260fda423b3\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/57e50d06-2349-4fa6-9bd8-bf6c02255b12?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvb3BlcmF0aW9ucy81N2U1MGQwNi0yMzQ5LTRmYTYtOWJkOC1iZjZjMDIyNTViMTI/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/93ed6d98-1cb7-432d-a7e3-2260fda423b3?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvb3BlcmF0aW9ucy85M2VkNmQ5OC0xY2I3LTQzMmQtYTdlMy0yMjYwZmRhNDIzYjM/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:02:34.6505526-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"57e50d06-2349-4fa6-9bd8-bf6c02255b12\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:52:36 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29984" + "Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29984" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b145c5f3-8728-43ea-a893-471c06d6ca6c" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "a728516a-5c1a-41af-88fa-ab7a15314c79" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11999" ], "x-ms-correlation-request-id": [ - "6fdcf70e-1269-4075-a2b7-23f5be643796" + "2f922740-aa27-4775-b2fc-0a9a0d44fe00" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T000725Z:6fdcf70e-1269-4075-a2b7-23f5be643796" + "WESTUS2:20190718T215236Z:2f922740-aa27-4775-b2fc-0a9a0d44fe00" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:07:25 GMT" + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:47:43.9774505-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"93ed6d98-1cb7-432d-a7e3-2260fda423b3\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/57e50d06-2349-4fa6-9bd8-bf6c02255b12?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvb3BlcmF0aW9ucy81N2U1MGQwNi0yMzQ5LTRmYTYtOWJkOC1iZjZjMDIyNTViMTI/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/93ed6d98-1cb7-432d-a7e3-2260fda423b3?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvb3BlcmF0aW9ucy85M2VkNmQ5OC0xY2I3LTQzMmQtYTdlMy0yMjYwZmRhNDIzYjM/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:02:34.6505526-07:00\",\r\n \"endTime\": \"2019-04-10T17:07:41.0427125-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"57e50d06-2349-4fa6-9bd8-bf6c02255b12\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "184" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:53:47 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29981" + "Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29979" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "226a31b5-aa99-4ecc-b5c4-c20a41e2d3f3" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "572bc160-55c2-4561-bcea-6712529b9623" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11998" ], "x-ms-correlation-request-id": [ - "f69d9c9b-9fc3-4dfa-a77d-9f511d1c4c46" + "0b3234ee-9104-4e95-ad2e-4426ea924a7f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T000836Z:f69d9c9b-9fc3-4dfa-a77d-9f511d1c4c46" + "WESTUS2:20190718T215347Z:0b3234ee-9104-4e95-ad2e-4426ea924a7f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:08:35 GMT" + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:47:43.9774505-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"93ed6d98-1cb7-432d-a7e3-2260fda423b3\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/virtualMachines/vm2925?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtMjkyNT9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/93ed6d98-1cb7-432d-a7e3-2260fda423b3?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvb3BlcmF0aW9ucy85M2VkNmQ5OC0xY2I3LTQzMmQtYTdlMy0yMjYwZmRhNDIzYjM/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"f9925d1d-0fe7-468a-a15f-222e5c9bc32e\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY3292\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\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 \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://saforgallery1778.blob.core.windows.net/crptestar5688/oscrptestar8422.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/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Network/networkInterfaces/nic9966\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/virtualMachines/vm2925\",\r\n \"name\": \"vm2925\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1757" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:54:57 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31995" + "Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29973" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2c514715-805b-48eb-86fe-021ddae4efc8" + "0dd5e83d-fe16-47ea-bf78-8d77f29ebfbc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "4850a5be-1882-4195-addb-5beeaf26200f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190718T215458Z:4850a5be-1882-4195-addb-5beeaf26200f" ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:47:43.9774505-07:00\",\r\n \"endTime\": \"2019-07-18T14:54:37.7947356-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"93ed6d98-1cb7-432d-a7e3-2260fda423b3\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/virtualMachines/vm9919?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTk5MTk/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Thu, 18 Jul 2019 21:54:58 GMT" + ], + "Pragma": [ + "no-cache" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31998" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fd9f5d19-50c0-4bcd-bd34-b0fb86d4739e" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11998" ], "x-ms-correlation-request-id": [ - "ca3458ce-598c-4175-8290-a5f4c7fd6c15" + "251c34ec-e5a9-4f08-9bbc-fe94518048e5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T000836Z:ca3458ce-598c-4175-8290-a5f4c7fd6c15" + "WESTUS2:20190718T215458Z:251c34ec-e5a9-4f08-9bbc-fe94518048e5" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:08:35 GMT" + "Content-Length": [ + "1760" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"vm9919\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/virtualMachines/vm9919\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"2004147b-bdae-4d52-beef-8a3dce09e25f\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY4644\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\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 \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://saforgallery8591.blob.core.windows.net/crptestar1353/oscrptestar6393.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/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Network/networkInterfaces/nic7304\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/virtualMachines/vm2925?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtMjkyNT9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/virtualMachines/vm9919?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTk5MTk/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea4b06d1-798f-445e-be85-2ea042b1de67" + "89fcfb44-7bdd-4b12-845c-bc1295a89c1e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"f9925d1d-0fe7-468a-a15f-222e5c9bc32e\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY3292\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\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 \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://saforgallery1778.blob.core.windows.net/crptestar5688/oscrptestar8422.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/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Network/networkInterfaces/nic9966\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/virtualMachines/vm2925\",\r\n \"name\": \"vm2925\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1757" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:54:58 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31994" + "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31997" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3e9bd4f9-0cfe-42c6-8e6b-2af199585a21" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "86c8b614-51f5-43c2-a162-1f7dc0c27ddf" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11997" ], "x-ms-correlation-request-id": [ - "91c0a9ef-d6ee-4c78-b28b-3fe79a25318e" + "aacdd91f-0424-4e80-9f98-9a8631a0391d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T000836Z:91c0a9ef-d6ee-4c78-b28b-3fe79a25318e" + "WESTUS2:20190718T215458Z:aacdd91f-0424-4e80-9f98-9a8631a0391d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:08:35 GMT" + "Content-Length": [ + "1760" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"vm9919\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/virtualMachines/vm9919\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"2004147b-bdae-4d52-beef-8a3dce09e25f\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY4644\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\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 \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://saforgallery8591.blob.core.windows.net/crptestar1353/oscrptestar6393.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/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Network/networkInterfaces/nic7304\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/images/psTestSourceImage6341?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaW1hZ2VzL3BzVGVzdFNvdXJjZUltYWdlNjM0MT9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/images/psTestSourceImage9040?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTkwNDA/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"blobUri\": \"https://saforgallery1778.blob.core.windows.net/crptestar5688/oscrptestar8422.vhd\"\r\n },\r\n \"zoneResilient\": true\r\n },\r\n \"hyperVGeneration\": 1\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"blobUri\": \"https://saforgallery8591.blob.core.windows.net/crptestar1353/oscrptestar6393.vhd\"\r\n },\r\n \"zoneResilient\": true\r\n },\r\n \"hyperVGeneration\": \"V1\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "400" - ], "x-ms-client-request-id": [ - "a83faf00-0d7d-4c51-bf35-b8a06fa6526e" + "1f7a93de-d14a-4d28-bf64-b6a130ed9205" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"blobUri\": \"https://saforgallery1778.blob.core.windows.net/crptestar5688/oscrptestar8422.vhd\",\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [],\r\n \"zoneResilient\": true\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"hyperVGeneration\": \"V1\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/images/psTestSourceImage6341\",\r\n \"name\": \"psTestSourceImage6341\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "770" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "403" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 18 Jul 2019 21:55:04 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/ff0c6901-a00c-47e9-891c-b3dd75d8b312?api-version=2019-03-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/79d5b0e1-87f4-4636-928b-b4777f8cda03?api-version=2019-03-01" ], "Azure-AsyncNotification": [ "Enabled" @@ -1886,3400 +1980,3284 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ff0c6901-a00c-47e9-891c-b3dd75d8b312" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "79d5b0e1-87f4-4636-928b-b4777f8cda03" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "3370fd5f-1b71-41d6-bffa-ccf14b236e68" + "2877fcbe-a17c-41ef-84b5-a13ecde03319" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T000843Z:3370fd5f-1b71-41d6-bffa-ccf14b236e68" + "WESTUS2:20190718T215504Z:2877fcbe-a17c-41ef-84b5-a13ecde03319" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:08:42 GMT" + "Content-Length": [ + "771" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"psTestSourceImage9040\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/images/psTestSourceImage9040\",\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"blobUri\": \"https://saforgallery8591.blob.core.windows.net/crptestar1353/oscrptestar6393.vhd\",\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [],\r\n \"zoneResilient\": true\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"hyperVGeneration\": \"V1\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/ff0c6901-a00c-47e9-891c-b3dd75d8b312?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvb3BlcmF0aW9ucy9mZjBjNjkwMS1hMDBjLTQ3ZTktODkxYy1iM2RkNzVkOGIzMTI/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/79d5b0e1-87f4-4636-928b-b4777f8cda03?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvb3BlcmF0aW9ucy83OWQ1YjBlMS04N2Y0LTQ2MzYtOTI4Yi1iNDc3N2Y4Y2RhMDM/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:08:37.7316923-07:00\",\r\n \"endTime\": \"2019-04-10T17:08:48.1379896-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ff0c6901-a00c-47e9-891c-b3dd75d8b312\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "184" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:55:34 GMT" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29979" - ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29971" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fe4116a5-f292-4229-9dca-ef991c26dd0f" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "b80939f4-cb12-4b19-a025-1d94e2f5a01e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11996" ], "x-ms-correlation-request-id": [ - "2aabd530-e7ad-4df7-9427-d09ddcf8ecc2" + "27ee63cb-5145-44d0-978a-79d8ed6ca7e6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T000913Z:2aabd530-e7ad-4df7-9427-d09ddcf8ecc2" + "WESTUS2:20190718T215535Z:27ee63cb-5145-44d0-978a-79d8ed6ca7e6" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:09:13 GMT" + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:54:59.3573505-07:00\",\r\n \"endTime\": \"2019-07-18T14:55:10.3262211-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"79d5b0e1-87f4-4636-928b-b4777f8cda03\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/images/psTestSourceImage6341?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaW1hZ2VzL3BzVGVzdFNvdXJjZUltYWdlNjM0MT9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/images/psTestSourceImage9040?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTkwNDA/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"diskSizeGB\": 127,\r\n \"blobUri\": \"https://saforgallery1778.blob.core.windows.net/crptestar5688/oscrptestar8422.vhd\",\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [],\r\n \"zoneResilient\": true\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/images/psTestSourceImage6341\",\r\n \"name\": \"psTestSourceImage6341\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "799" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:55:34 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetImages3Min;358,Microsoft.Compute/GetImages30Min;1797" + "Microsoft.Compute/GetImages3Min;358,Microsoft.Compute/GetImages30Min;1798" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "af6371a1-1463-4640-acc0-852855580fd5" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "95aa3363-b3d2-4d5e-9943-607f908b6223" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11995" ], "x-ms-correlation-request-id": [ - "e605053a-0146-4471-8646-f6463247aab2" + "c6e6e336-cbed-4bfa-b5d2-d6dacd3ba067" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T000913Z:e605053a-0146-4471-8646-f6463247aab2" + "WESTUS2:20190718T215535Z:c6e6e336-cbed-4bfa-b5d2-d6dacd3ba067" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:09:13 GMT" + "Content-Length": [ + "800" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"psTestSourceImage9040\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/images/psTestSourceImage9040\",\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"diskSizeGB\": 127,\r\n \"blobUri\": \"https://saforgallery8591.blob.core.windows.net/crptestar1353/oscrptestar6393.vhd\",\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [],\r\n \"zoneResilient\": true\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/images/psTestSourceImage6341?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaW1hZ2VzL3BzVGVzdFNvdXJjZUltYWdlNjM0MT9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/images/psTestSourceImage9040?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTkwNDA/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e8adad2d-02f3-41d4-9d76-acd7881b371f" + "473c4bbf-09ab-4131-b9b9-459fb7db1c1a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"diskSizeGB\": 127,\r\n \"blobUri\": \"https://saforgallery1778.blob.core.windows.net/crptestar5688/oscrptestar8422.vhd\",\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [],\r\n \"zoneResilient\": true\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/images/psTestSourceImage6341\",\r\n \"name\": \"psTestSourceImage6341\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "799" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:55:35 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetImages3Min;357,Microsoft.Compute/GetImages30Min;1796" + "Microsoft.Compute/GetImages3Min;357,Microsoft.Compute/GetImages30Min;1797" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b3dc8b58-e6da-4899-82d4-a5fc59bfb562" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "3d6b1658-ea19-4969-824b-f3365c8969d5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11994" ], "x-ms-correlation-request-id": [ - "6abb19cb-69ae-4022-9eaf-70693ecedd8a" + "e799e13c-b253-4181-b7b8-15461458e7cf" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T000913Z:6abb19cb-69ae-4022-9eaf-70693ecedd8a" + "WESTUS2:20190718T215535Z:e799e13c-b253-4181-b7b8-15461458e7cf" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:09:13 GMT" + "Content-Length": [ + "800" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"psTestSourceImage9040\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/images/psTestSourceImage9040\",\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"diskSizeGB\": 127,\r\n \"blobUri\": \"https://saforgallery8591.blob.core.windows.net/crptestar1353/oscrptestar6393.vhd\",\r\n \"caching\": \"None\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"dataDisks\": [],\r\n \"zoneResilient\": true\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/galleries/galleryPsTestGallery2561?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MjU2MT9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/galleries/galleryPsTestGallery9505?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk1MDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\"\r\n },\r\n \"location\": \"eastus2euap\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "117" - ], "x-ms-client-request-id": [ - "b67beb0b-0935-461b-93e6-ee939224de09" + "ce2c636c-dbf8-44b7-aa30-2adebd46bc8e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/galleries/galleryPsTestGallery2561\",\r\n \"name\": \"galleryPsTestGallery2561\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"5393f919-a68a-43d0-9063-4b2bda6bffdf-GALLERYPSTESTGALLERY2561\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "511" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "117" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 18 Jul 2019 21:55:36 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/bdc7927b-317c-4e8c-8426-040125406bdd?api-version=2019-03-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/228a36bb-e07c-4e9d-9ef3-64fa15c1391d?api-version=2019-07-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "bdc7927b-317c-4e8c-8426-040125406bdd" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "228a36bb-e07c-4e9d-9ef3-64fa15c1391d" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-correlation-request-id": [ - "8e0ba1f5-6a4a-47b0-bddc-ba6123c0df53" + "5b697524-8c37-466e-b823-284b71d16e8e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T000914Z:8e0ba1f5-6a4a-47b0-bddc-ba6123c0df53" + "WESTUS2:20190718T215536Z:5b697524-8c37-466e-b823-284b71d16e8e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:09:14 GMT" + "Content-Length": [ + "512" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/galleries/galleryPsTestGallery9505\",\r\n \"name\": \"galleryPsTestGallery9505\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY9505\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/bdc7927b-317c-4e8c-8426-040125406bdd?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvYmRjNzkyN2ItMzE3Yy00ZThjLTg0MjYtMDQwMTI1NDA2YmRkP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/228a36bb-e07c-4e9d-9ef3-64fa15c1391d?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMjI4YTM2YmItZTA3Yy00ZTlkLTllZjMtNjRmYTE1YzEzOTFkP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:09:14.436449-07:00\",\r\n \"endTime\": \"2019-04-10T17:09:15.6083228-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"bdc7927b-317c-4e8c-8426-040125406bdd\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "183" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:56:05 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "f1be3685-0447-419e-8d41-80fb52025327" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "bed681aa-80dc-40eb-a0a0-c918ab9176f0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11993" ], "x-ms-correlation-request-id": [ - "bd1fd95e-72c0-452d-8cf9-6a5f9a9f2159" + "52c1c6a6-efc8-4467-96ee-481fe8cddf4f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T000944Z:bd1fd95e-72c0-452d-8cf9-6a5f9a9f2159" + "WESTUS2:20190718T215606Z:52c1c6a6-efc8-4467-96ee-481fe8cddf4f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:09:44 GMT" + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:55:36.0331915-07:00\",\r\n \"endTime\": \"2019-07-18T14:55:36.2206763-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"228a36bb-e07c-4e9d-9ef3-64fa15c1391d\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/galleries/galleryPsTestGallery2561?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MjU2MT9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/galleries/galleryPsTestGallery9505?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk1MDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/galleries/galleryPsTestGallery2561\",\r\n \"name\": \"galleryPsTestGallery2561\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"5393f919-a68a-43d0-9063-4b2bda6bffdf-GALLERYPSTESTGALLERY2561\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "512" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:56:06 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "a0ad2d85-f05a-4f37-ac44-4ccde3c3e647" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "03f0ed18-d191-46e6-8cca-32458c373308" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11992" ], "x-ms-correlation-request-id": [ - "00468a3c-15b8-44e7-aa14-9be95dd4fbf3" + "e5ad474a-be61-4008-933a-612eaf917294" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T000945Z:00468a3c-15b8-44e7-aa14-9be95dd4fbf3" + "WESTUS2:20190718T215606Z:e5ad474a-be61-4008-933a-612eaf917294" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:09:44 GMT" + "Content-Length": [ + "513" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/galleries/galleryPsTestGallery9505\",\r\n \"name\": \"galleryPsTestGallery9505\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY9505\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/galleries/galleryPsTestGallery2561/images/galleryPsTestGalleryImage1184?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MjU2MS9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTExODQ/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/galleries/galleryPsTestGallery9505/images/galleryPsTestGalleryImage1497?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk1MDUvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UxNDk3P2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is the gallery image description.\",\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n }\r\n },\r\n \"location\": \"eastus2euap\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is the gallery image description.\",\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n }\r\n },\r\n \"location\": \"eastus2euap\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "287" - ], "x-ms-client-request-id": [ - "d578447b-a51a-42dc-8b76-19b80870677f" + "75a2b7f5-51db-40eb-abc5-e6b56dbcbe5a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/galleries/galleryPsTestGallery2561/images/galleryPsTestGalleryImage1184\",\r\n \"name\": \"galleryPsTestGalleryImage1184\",\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"description\": \"This is the gallery image description.\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "616" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "289" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 18 Jul 2019 21:56:06 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/5ffc5f5a-4c99-4085-b84d-76f25e3d0610?api-version=2019-03-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/367e14e7-b06d-459d-99dc-486c9702c487?api-version=2019-07-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "5ffc5f5a-4c99-4085-b84d-76f25e3d0610" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "367e14e7-b06d-459d-99dc-486c9702c487" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1197" ], "x-ms-correlation-request-id": [ - "d071128c-f2ef-448c-9264-179b559a183c" + "a5a4e4d6-d5d5-4843-8a9f-24637d37c027" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T000946Z:d071128c-f2ef-448c-9264-179b559a183c" + "WESTUS2:20190718T215607Z:a5a4e4d6-d5d5-4843-8a9f-24637d37c027" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:09:45 GMT" + "Content-Length": [ + "619" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/galleries/galleryPsTestGallery9505/images/galleryPsTestGalleryImage1497\",\r\n \"name\": \"galleryPsTestGalleryImage1497\",\r\n \"properties\": {\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"description\": \"This is the gallery image description.\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/5ffc5f5a-4c99-4085-b84d-76f25e3d0610?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvNWZmYzVmNWEtNGM5OS00MDg1LWI4NGQtNzZmMjVlM2QwNjEwP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/367e14e7-b06d-459d-99dc-486c9702c487?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMzY3ZTE0ZTctYjA2ZC00NTlkLTk5ZGMtNDg2Yzk3MDJjNDg3P2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:09:45.5929103-07:00\",\r\n \"endTime\": \"2019-04-10T17:09:46.6710403-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5ffc5f5a-4c99-4085-b84d-76f25e3d0610\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "184" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:56:37 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "dbeb904d-e02c-4fac-adde-19a5f827ebcd" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "997e88f9-0647-4826-a31e-56da39d6b483" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11991" ], "x-ms-correlation-request-id": [ - "6411f81b-d3f3-4e4d-b505-4d5acd91cbb0" + "d549d4c6-085e-468b-837d-f03383236fb0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T001016Z:6411f81b-d3f3-4e4d-b505-4d5acd91cbb0" + "WESTUS2:20190718T215637Z:d549d4c6-085e-468b-837d-f03383236fb0" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:10:15 GMT" + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:56:07.1431265-07:00\",\r\n \"endTime\": \"2019-07-18T14:56:07.2212564-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"367e14e7-b06d-459d-99dc-486c9702c487\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/galleries/galleryPsTestGallery2561/images/galleryPsTestGalleryImage1184?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MjU2MS9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTExODQ/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/galleries/galleryPsTestGallery9505/images/galleryPsTestGalleryImage1497?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk1MDUvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UxNDk3P2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/galleries/galleryPsTestGallery2561/images/galleryPsTestGalleryImage1184\",\r\n \"name\": \"galleryPsTestGalleryImage1184\",\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"This is the gallery image description.\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "617" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:56:37 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "b1ce3a0d-4cdb-4947-a2cd-bf18b6b26f7d" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "954b65d2-355f-438c-8f76-5ac3bc228abb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11990" ], "x-ms-correlation-request-id": [ - "0156fada-8377-42c1-9f43-b1f122c7cad9" + "eb5919dc-637d-40ef-9574-f22f0af0e552" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T001016Z:0156fada-8377-42c1-9f43-b1f122c7cad9" + "WESTUS2:20190718T215637Z:eb5919dc-637d-40ef-9574-f22f0af0e552" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:10:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/galleries/galleryPsTestGallery2561/images/galleryPsTestGalleryImage1184/versions/1.0.0?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MjU2MS9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTExODQvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"replicaCount\": 1,\r\n \"endOfLifeDate\": \"2019-04-20T07:00:00Z\",\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"eastus2euap\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"source\": {\r\n \"managedImage\": {\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/images/psTestSourceImage6341\"\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"eastus2euap\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], "Content-Length": [ - "618" - ], - "x-ms-client-request-id": [ - "49d0617d-7e3b-431d-bd56-8bd1d6dec761" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/galleries/galleryPsTestGallery2561/images/galleryPsTestGalleryImage1184/versions/1.0.0\",\r\n \"name\": \"1.0.0\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2019-04-10T17:10:16.8457735-07:00\",\r\n \"endOfLifeDate\": \"2019-04-20T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2 EUAP\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"source\": {\r\n \"managedImage\": {\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/images/psTestSourceImage6341\"\r\n }\r\n }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1051" + "620" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Pragma": [ - "no-cache" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/1380ccee-b0ed-4977-b96a-c374ac0f6e27?api-version=2019-03-01" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" - ], - "x-ms-request-id": [ - "1380ccee-b0ed-4977-b96a-c374ac0f6e27" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" - ], - "x-ms-correlation-request-id": [ - "4be73b71-c677-40d8-8a5b-1a94985c6d41" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190411T001017Z:4be73b71-c677-40d8-8a5b-1a94985c6d41" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 11 Apr 2019 00:10:16 GMT" ] }, - "StatusCode": 201 + "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/galleries/galleryPsTestGallery9505/images/galleryPsTestGalleryImage1497\",\r\n \"name\": \"galleryPsTestGalleryImage1497\",\r\n \"properties\": {\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"This is the gallery image description.\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/galleries/galleryPsTestGallery2561/images/galleryPsTestGalleryImage1184/versions/1.0.0?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MjU2MS9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTExODQvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/galleries/galleryPsTestGallery9505/images/galleryPsTestGalleryImage1497/versions/1.0.0?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk1MDUvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UxNDk3L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"replicaCount\": 1,\r\n \"endOfLifeDate\": \"2019-07-19T07:00:00Z\",\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"eastus2euap\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"source\": {\r\n \"managedImage\": {\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/images/psTestSourceImage6341\"\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"eastus2euap\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"replicaCount\": 1,\r\n \"endOfLifeDate\": \"2019-07-28T07:00:00Z\",\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"eastus2euap\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/images/psTestSourceImage9040\"\r\n }\r\n }\r\n },\r\n \"location\": \"eastus2euap\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "618" - ], "x-ms-client-request-id": [ - "3c177be2-146d-4480-a07c-3b70f4c86e37" + "9c566bf3-649e-428b-840c-8432cbfb0a2e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/galleries/galleryPsTestGallery2561/images/galleryPsTestGalleryImage1184/versions/1.0.0\",\r\n \"name\": \"1.0.0\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2019-04-10T17:10:16.8457735-07:00\",\r\n \"endOfLifeDate\": \"2019-07-19T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2 EUAP\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"source\": {\r\n \"managedImage\": {\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/images/psTestSourceImage6341\"\r\n }\r\n }\r\n },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1051" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/38026dd6-4245-492b-9e63-60b348befa25?api-version=2019-03-01" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" - ], - "x-ms-request-id": [ - "38026dd6-4245-492b-9e63-60b348befa25" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" - ], - "x-ms-correlation-request-id": [ - "c56da76c-737d-4f69-ae36-7301c0d2028d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190411T002422Z:c56da76c-737d-4f69-ae36-7301c0d2028d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 11 Apr 2019 00:24:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/1380ccee-b0ed-4977-b96a-c374ac0f6e27?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMTM4MGNjZWUtYjBlZC00OTc3LWI5NmEtYzM3NGFjMGY2ZTI3P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "Content-Length": [ + "611" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:10:16.7988943-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1380ccee-b0ed-4977-b96a-c374ac0f6e27\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" - ], - "x-ms-request-id": [ - "c4d483f6-fd7d-4a98-a7b6-29d28e4a5478" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "Date": [ + "Thu, 18 Jul 2019 21:56:38 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ - "bbc3333f-3442-414e-9f5c-42d174644815" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190411T001047Z:bbc3333f-3442-414e-9f5c-42d174644815" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 11 Apr 2019 00:10:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/1380ccee-b0ed-4977-b96a-c374ac0f6e27?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMTM4MGNjZWUtYjBlZC00OTc3LWI5NmEtYzM3NGFjMGY2ZTI3P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:10:16.7988943-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1380ccee-b0ed-4977-b96a-c374ac0f6e27\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/bb070085-0663-4e06-9c14-30e1af6df4a1?api-version=2019-07-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "556fe7ff-3dcc-4f80-98c5-154f6da5764e" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "bb070085-0663-4e06-9c14-30e1af6df4a1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" ], "x-ms-correlation-request-id": [ - "aed30ca8-aa6b-4b27-bf12-aac7623a55a2" + "82a7d4e1-fae5-4d8e-80ed-cdaeff67b4cd" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T001117Z:aed30ca8-aa6b-4b27-bf12-aac7623a55a2" + "WESTUS2:20190718T215638Z:82a7d4e1-fae5-4d8e-80ed-cdaeff67b4cd" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:11:17 GMT" + "Content-Length": [ + "1045" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/galleries/galleryPsTestGallery9505/images/galleryPsTestGalleryImage1497/versions/1.0.0\",\r\n \"name\": \"1.0.0\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2 EUAP\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2019-07-18T14:56:38.5337244-07:00\",\r\n \"endOfLifeDate\": \"2019-07-28T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/images/psTestSourceImage9040\"\r\n }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/1380ccee-b0ed-4977-b96a-c374ac0f6e27?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMTM4MGNjZWUtYjBlZC00OTc3LWI5NmEtYzM3NGFjMGY2ZTI3P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/galleries/galleryPsTestGallery9505/images/galleryPsTestGalleryImage1497/versions/1.0.0?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk1MDUvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UxNDk3L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"replicaCount\": 1,\r\n \"endOfLifeDate\": \"2019-10-26T07:00:00Z\",\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"eastus2euap\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ]\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/images/psTestSourceImage9040\"\r\n }\r\n }\r\n },\r\n \"location\": \"eastus2euap\"\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "741d4717-15a5-421f-9cfd-ab609b9fffe6" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:10:16.7988943-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1380ccee-b0ed-4977-b96a-c374ac0f6e27\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "611" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 18 Jul 2019 22:09:43 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/7bf72f12-ab96-472d-a29d-4251b46c4445?api-version=2019-07-01" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "71fb0b9d-0290-4f28-9f18-8af4ac761bd1" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "7bf72f12-ab96-472d-a29d-4251b46c4445" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" ], "x-ms-correlation-request-id": [ - "ca5cca7d-170d-4752-a462-6397a1498a0b" + "595466f2-abaa-4afc-8074-e79dec951450" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T001147Z:ca5cca7d-170d-4752-a462-6397a1498a0b" + "WESTUS2:20190718T220944Z:595466f2-abaa-4afc-8074-e79dec951450" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:11:47 GMT" + "Content-Length": [ + "1159" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/galleries/galleryPsTestGallery9505/images/galleryPsTestGalleryImage1497/versions/1.0.0\",\r\n \"name\": \"1.0.0\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2 EUAP\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2019-07-18T14:56:38.5337244-07:00\",\r\n \"endOfLifeDate\": \"2019-10-26T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/images/psTestSourceImage9040\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/1380ccee-b0ed-4977-b96a-c374ac0f6e27?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMTM4MGNjZWUtYjBlZC00OTc3LWI5NmEtYzM3NGFjMGY2ZTI3P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/bb070085-0663-4e06-9c14-30e1af6df4a1?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvYmIwNzAwODUtMDY2My00ZTA2LTljMTQtMzBlMWFmNmRmNGExP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:10:16.7988943-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1380ccee-b0ed-4977-b96a-c374ac0f6e27\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:57:08 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "8918adac-dd85-49de-936b-8744114c283b" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "0119cd0b-0060-4dc5-b591-eb173c31385d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11989" ], "x-ms-correlation-request-id": [ - "07881346-26cf-4e1b-829a-d2b06c1a49fa" + "f189ba78-7305-41ff-b0be-d1e2a8f1c2fa" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T001217Z:07881346-26cf-4e1b-829a-d2b06c1a49fa" + "WESTUS2:20190718T215709Z:f189ba78-7305-41ff-b0be-d1e2a8f1c2fa" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:12:16 GMT" + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:56:38.471244-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bb070085-0663-4e06-9c14-30e1af6df4a1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/1380ccee-b0ed-4977-b96a-c374ac0f6e27?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMTM4MGNjZWUtYjBlZC00OTc3LWI5NmEtYzM3NGFjMGY2ZTI3P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/bb070085-0663-4e06-9c14-30e1af6df4a1?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvYmIwNzAwODUtMDY2My00ZTA2LTljMTQtMzBlMWFmNmRmNGExP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:10:16.7988943-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1380ccee-b0ed-4977-b96a-c374ac0f6e27\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:57:39 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "ddae5a70-a478-455a-ae97-c3cc74cb82be" + "52b90b76-14f3-4d20-8a24-43fb390cc761" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "11988" ], "x-ms-correlation-request-id": [ - "ef0add95-96c4-45d6-83e9-80b33c95f98a" + "18575012-3af2-48ec-9d06-b4febf905d72" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T001247Z:ef0add95-96c4-45d6-83e9-80b33c95f98a" + "WESTUS2:20190718T215739Z:18575012-3af2-48ec-9d06-b4febf905d72" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:12:47 GMT" + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:56:38.471244-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bb070085-0663-4e06-9c14-30e1af6df4a1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/1380ccee-b0ed-4977-b96a-c374ac0f6e27?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMTM4MGNjZWUtYjBlZC00OTc3LWI5NmEtYzM3NGFjMGY2ZTI3P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/bb070085-0663-4e06-9c14-30e1af6df4a1?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvYmIwNzAwODUtMDY2My00ZTA2LTljMTQtMzBlMWFmNmRmNGExP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:10:16.7988943-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1380ccee-b0ed-4977-b96a-c374ac0f6e27\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:58:08 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "132fa7b1-a511-427a-b71b-098ed7b75c08" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "9b2348cc-6ea0-4499-9226-c72aa0140062" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11987" ], "x-ms-correlation-request-id": [ - "6440d0c7-26e5-49a2-9eb4-29e1e6d3cea5" + "237083c1-b3cc-4c3c-befc-62f2c48e0d19" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T001318Z:6440d0c7-26e5-49a2-9eb4-29e1e6d3cea5" + "WESTUS2:20190718T215809Z:237083c1-b3cc-4c3c-befc-62f2c48e0d19" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:13:17 GMT" + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:56:38.471244-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bb070085-0663-4e06-9c14-30e1af6df4a1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/1380ccee-b0ed-4977-b96a-c374ac0f6e27?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMTM4MGNjZWUtYjBlZC00OTc3LWI5NmEtYzM3NGFjMGY2ZTI3P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/bb070085-0663-4e06-9c14-30e1af6df4a1?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvYmIwNzAwODUtMDY2My00ZTA2LTljMTQtMzBlMWFmNmRmNGExP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:10:16.7988943-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1380ccee-b0ed-4977-b96a-c374ac0f6e27\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:58:39 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "ce0ba389-a300-42f3-beb6-e622c274d1ce" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "3452c3c8-8908-4c4c-8007-8ff62f4dfafd" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11986" ], "x-ms-correlation-request-id": [ - "a5ebfeb5-9d86-4797-adcb-7202d9d65926" + "70b1a0cd-1a5f-43e6-a782-d27b22516d32" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T001348Z:a5ebfeb5-9d86-4797-adcb-7202d9d65926" + "WESTUS2:20190718T215839Z:70b1a0cd-1a5f-43e6-a782-d27b22516d32" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:13:47 GMT" + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:56:38.471244-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bb070085-0663-4e06-9c14-30e1af6df4a1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/1380ccee-b0ed-4977-b96a-c374ac0f6e27?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMTM4MGNjZWUtYjBlZC00OTc3LWI5NmEtYzM3NGFjMGY2ZTI3P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/bb070085-0663-4e06-9c14-30e1af6df4a1?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvYmIwNzAwODUtMDY2My00ZTA2LTljMTQtMzBlMWFmNmRmNGExP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:10:16.7988943-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1380ccee-b0ed-4977-b96a-c374ac0f6e27\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:59:08 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "1c2a2dfe-dc05-47d5-8357-0791f78f3b8d" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "360ac2cc-9d7e-49d2-9ea7-7a106d33c7e1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11985" ], "x-ms-correlation-request-id": [ - "102d72b6-abb2-4f86-b0bf-b7151853d773" + "82138703-0dec-4db5-91fa-0b1ee15eefb4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T001418Z:102d72b6-abb2-4f86-b0bf-b7151853d773" + "WESTUS2:20190718T215909Z:82138703-0dec-4db5-91fa-0b1ee15eefb4" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:14:18 GMT" + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:56:38.471244-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bb070085-0663-4e06-9c14-30e1af6df4a1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/1380ccee-b0ed-4977-b96a-c374ac0f6e27?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMTM4MGNjZWUtYjBlZC00OTc3LWI5NmEtYzM3NGFjMGY2ZTI3P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/bb070085-0663-4e06-9c14-30e1af6df4a1?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvYmIwNzAwODUtMDY2My00ZTA2LTljMTQtMzBlMWFmNmRmNGExP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:10:16.7988943-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1380ccee-b0ed-4977-b96a-c374ac0f6e27\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:59:39 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "0033e528-39b1-45a6-80ff-75fc82b1c8b0" + "fc4d25d4-1f94-4469-9505-3c6e6cd5de0c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "11984" ], "x-ms-correlation-request-id": [ - "b732126f-4ea7-4a27-ad8d-5d7804bf18a1" + "8e4afed5-9e27-4280-8242-3be0b213b2aa" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T001448Z:b732126f-4ea7-4a27-ad8d-5d7804bf18a1" + "WESTUS2:20190718T215940Z:8e4afed5-9e27-4280-8242-3be0b213b2aa" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:14:48 GMT" + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:56:38.471244-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bb070085-0663-4e06-9c14-30e1af6df4a1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/1380ccee-b0ed-4977-b96a-c374ac0f6e27?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMTM4MGNjZWUtYjBlZC00OTc3LWI5NmEtYzM3NGFjMGY2ZTI3P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/bb070085-0663-4e06-9c14-30e1af6df4a1?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvYmIwNzAwODUtMDY2My00ZTA2LTljMTQtMzBlMWFmNmRmNGExP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:10:16.7988943-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1380ccee-b0ed-4977-b96a-c374ac0f6e27\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:00:09 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "92a8e02f-98fb-4e05-a038-fd8b20d8d50a" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "704361f9-5b94-43de-8c8a-48c6d3df303b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11983" ], "x-ms-correlation-request-id": [ - "74c17735-7c8f-4739-83fd-795cc540f17b" + "1da319c0-8ef7-4a8a-b507-de48ee0b6b6e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T001519Z:74c17735-7c8f-4739-83fd-795cc540f17b" + "WESTUS2:20190718T220010Z:1da319c0-8ef7-4a8a-b507-de48ee0b6b6e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:15:18 GMT" + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:56:38.471244-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bb070085-0663-4e06-9c14-30e1af6df4a1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/1380ccee-b0ed-4977-b96a-c374ac0f6e27?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMTM4MGNjZWUtYjBlZC00OTc3LWI5NmEtYzM3NGFjMGY2ZTI3P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/bb070085-0663-4e06-9c14-30e1af6df4a1?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvYmIwNzAwODUtMDY2My00ZTA2LTljMTQtMzBlMWFmNmRmNGExP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:10:16.7988943-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1380ccee-b0ed-4977-b96a-c374ac0f6e27\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:00:40 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "c022b843-c639-40d2-be2e-e2c6f591bf64" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "227e773b-55e3-4abb-9bf0-e0fd33f3337b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11982" ], "x-ms-correlation-request-id": [ - "d528fcaa-9520-45e8-b4c4-18cd48a2379c" + "a5a5b231-1495-41f9-9a09-2417549e201d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T001549Z:d528fcaa-9520-45e8-b4c4-18cd48a2379c" + "WESTUS2:20190718T220040Z:a5a5b231-1495-41f9-9a09-2417549e201d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:15:49 GMT" + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:56:38.471244-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bb070085-0663-4e06-9c14-30e1af6df4a1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/1380ccee-b0ed-4977-b96a-c374ac0f6e27?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMTM4MGNjZWUtYjBlZC00OTc3LWI5NmEtYzM3NGFjMGY2ZTI3P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/bb070085-0663-4e06-9c14-30e1af6df4a1?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvYmIwNzAwODUtMDY2My00ZTA2LTljMTQtMzBlMWFmNmRmNGExP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:10:16.7988943-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1380ccee-b0ed-4977-b96a-c374ac0f6e27\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:01:09 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "5e1d2e96-3d4a-4aa5-9ffd-bc57ed8a214d" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "15b0783e-cbfb-4392-a36d-54d99d9723be" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11981" ], "x-ms-correlation-request-id": [ - "1c38b086-ef2c-4697-8763-5bba5fdf6e63" + "e936a44f-a5d1-4bcf-9f58-9b44dcca6e39" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T001619Z:1c38b086-ef2c-4697-8763-5bba5fdf6e63" + "WESTUS2:20190718T220110Z:e936a44f-a5d1-4bcf-9f58-9b44dcca6e39" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:16:18 GMT" + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:56:38.471244-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bb070085-0663-4e06-9c14-30e1af6df4a1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/1380ccee-b0ed-4977-b96a-c374ac0f6e27?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMTM4MGNjZWUtYjBlZC00OTc3LWI5NmEtYzM3NGFjMGY2ZTI3P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/bb070085-0663-4e06-9c14-30e1af6df4a1?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvYmIwNzAwODUtMDY2My00ZTA2LTljMTQtMzBlMWFmNmRmNGExP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:10:16.7988943-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1380ccee-b0ed-4977-b96a-c374ac0f6e27\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:01:40 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "76d92089-75f9-4010-9120-f5022041c39f" + "6b0b6aa3-87d6-4785-bcfd-eff82bb687de" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "11980" ], "x-ms-correlation-request-id": [ - "3e135fa1-ba8d-4704-82da-a2bac750809a" + "f4141587-4eb3-4e6e-b34b-d2d3e5a69c52" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T001649Z:3e135fa1-ba8d-4704-82da-a2bac750809a" + "WESTUS2:20190718T220140Z:f4141587-4eb3-4e6e-b34b-d2d3e5a69c52" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:16:48 GMT" + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:56:38.471244-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bb070085-0663-4e06-9c14-30e1af6df4a1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/1380ccee-b0ed-4977-b96a-c374ac0f6e27?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMTM4MGNjZWUtYjBlZC00OTc3LWI5NmEtYzM3NGFjMGY2ZTI3P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/bb070085-0663-4e06-9c14-30e1af6df4a1?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvYmIwNzAwODUtMDY2My00ZTA2LTljMTQtMzBlMWFmNmRmNGExP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:10:16.7988943-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1380ccee-b0ed-4977-b96a-c374ac0f6e27\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:02:10 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "8ce6eaa6-5d16-430a-9d85-3e5ce6022bce" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "7b811055-4e72-4259-90d7-b05ac02dc38e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11979" ], "x-ms-correlation-request-id": [ - "27735f51-fda6-4fcf-8640-d56b7fc732f8" + "57c473d5-fd88-4d4c-b461-bfe0e94bc793" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T001719Z:27735f51-fda6-4fcf-8640-d56b7fc732f8" + "WESTUS2:20190718T220211Z:57c473d5-fd88-4d4c-b461-bfe0e94bc793" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:17:19 GMT" + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:56:38.471244-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bb070085-0663-4e06-9c14-30e1af6df4a1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/1380ccee-b0ed-4977-b96a-c374ac0f6e27?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMTM4MGNjZWUtYjBlZC00OTc3LWI5NmEtYzM3NGFjMGY2ZTI3P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/bb070085-0663-4e06-9c14-30e1af6df4a1?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvYmIwNzAwODUtMDY2My00ZTA2LTljMTQtMzBlMWFmNmRmNGExP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:10:16.7988943-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1380ccee-b0ed-4977-b96a-c374ac0f6e27\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:02:40 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "e2ce25e5-d883-4209-b1c1-9a35baea1044" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "eff65afa-b520-4606-aa0d-82504156ab86" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11978" ], "x-ms-correlation-request-id": [ - "8186e56e-8ae4-42ca-8f8b-1b4183e33146" + "5ff5a7a4-7cdd-4cb4-b42b-6f0acaacd7d8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T001749Z:8186e56e-8ae4-42ca-8f8b-1b4183e33146" + "WESTUS2:20190718T220241Z:5ff5a7a4-7cdd-4cb4-b42b-6f0acaacd7d8" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:17:49 GMT" + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:56:38.471244-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bb070085-0663-4e06-9c14-30e1af6df4a1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/1380ccee-b0ed-4977-b96a-c374ac0f6e27?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMTM4MGNjZWUtYjBlZC00OTc3LWI5NmEtYzM3NGFjMGY2ZTI3P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/bb070085-0663-4e06-9c14-30e1af6df4a1?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvYmIwNzAwODUtMDY2My00ZTA2LTljMTQtMzBlMWFmNmRmNGExP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:10:16.7988943-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1380ccee-b0ed-4977-b96a-c374ac0f6e27\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:03:11 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "4fee81e5-ef25-4ddc-bf44-26017a4c8802" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "37cc4461-edb8-4fd9-895f-0eafa331c613" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11977" ], "x-ms-correlation-request-id": [ - "4bc259d6-1c12-4bae-9596-fbf17c992689" + "930971ac-7ca4-414c-ba9c-975f92c93f18" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T001819Z:4bc259d6-1c12-4bae-9596-fbf17c992689" + "WESTUS2:20190718T220311Z:930971ac-7ca4-414c-ba9c-975f92c93f18" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:18:19 GMT" + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:56:38.471244-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bb070085-0663-4e06-9c14-30e1af6df4a1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/1380ccee-b0ed-4977-b96a-c374ac0f6e27?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMTM4MGNjZWUtYjBlZC00OTc3LWI5NmEtYzM3NGFjMGY2ZTI3P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/bb070085-0663-4e06-9c14-30e1af6df4a1?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvYmIwNzAwODUtMDY2My00ZTA2LTljMTQtMzBlMWFmNmRmNGExP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:10:16.7988943-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1380ccee-b0ed-4977-b96a-c374ac0f6e27\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:03:40 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "cab276b6-2f7d-43a0-8d5d-5c87c99981dc" + "c74d19c8-b343-4438-8537-fc80f70f5986" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "11976" ], "x-ms-correlation-request-id": [ - "f3f5460a-1451-4081-acd6-49bd3cbb991c" + "421d5c6a-9103-4188-adb7-d2e1f7e15ef6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T001850Z:f3f5460a-1451-4081-acd6-49bd3cbb991c" + "WESTUS2:20190718T220341Z:421d5c6a-9103-4188-adb7-d2e1f7e15ef6" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:18:49 GMT" + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:56:38.471244-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bb070085-0663-4e06-9c14-30e1af6df4a1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/1380ccee-b0ed-4977-b96a-c374ac0f6e27?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMTM4MGNjZWUtYjBlZC00OTc3LWI5NmEtYzM3NGFjMGY2ZTI3P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/bb070085-0663-4e06-9c14-30e1af6df4a1?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvYmIwNzAwODUtMDY2My00ZTA2LTljMTQtMzBlMWFmNmRmNGExP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:10:16.7988943-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1380ccee-b0ed-4977-b96a-c374ac0f6e27\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:04:11 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "57b2b7f5-369f-425c-b4b4-01aa85a8dba4" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "058a11aa-1845-46e8-8a7b-4e1d9d707f4f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11975" ], "x-ms-correlation-request-id": [ - "3c63baf5-1912-4653-b9e5-60762633613d" + "5857bc34-fb4a-418f-a65f-2be4d7c30256" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T001920Z:3c63baf5-1912-4653-b9e5-60762633613d" + "WESTUS2:20190718T220411Z:5857bc34-fb4a-418f-a65f-2be4d7c30256" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:19:20 GMT" + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:56:38.471244-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bb070085-0663-4e06-9c14-30e1af6df4a1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/1380ccee-b0ed-4977-b96a-c374ac0f6e27?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMTM4MGNjZWUtYjBlZC00OTc3LWI5NmEtYzM3NGFjMGY2ZTI3P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/bb070085-0663-4e06-9c14-30e1af6df4a1?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvYmIwNzAwODUtMDY2My00ZTA2LTljMTQtMzBlMWFmNmRmNGExP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:10:16.7988943-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1380ccee-b0ed-4977-b96a-c374ac0f6e27\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:04:41 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "de687733-671d-49f4-b7ac-f715a62bc2b3" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "3416b94c-00cb-474e-bd6b-fb45d35f8cb6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11974" ], "x-ms-correlation-request-id": [ - "7bc64634-74ce-4618-8ede-b16a546d7463" + "e3593898-2291-4ae5-b564-b71e9cd12764" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T001950Z:7bc64634-74ce-4618-8ede-b16a546d7463" + "WESTUS2:20190718T220441Z:e3593898-2291-4ae5-b564-b71e9cd12764" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:19:50 GMT" + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:56:38.471244-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bb070085-0663-4e06-9c14-30e1af6df4a1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/1380ccee-b0ed-4977-b96a-c374ac0f6e27?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMTM4MGNjZWUtYjBlZC00OTc3LWI5NmEtYzM3NGFjMGY2ZTI3P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/bb070085-0663-4e06-9c14-30e1af6df4a1?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvYmIwNzAwODUtMDY2My00ZTA2LTljMTQtMzBlMWFmNmRmNGExP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:10:16.7988943-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1380ccee-b0ed-4977-b96a-c374ac0f6e27\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:05:12 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "5ff65887-612c-4c07-9f1a-045a58adeae7" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "a109ecd5-d4bb-4a0b-a606-f9d3535074e2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11973" ], "x-ms-correlation-request-id": [ - "4d8d6344-dece-4cba-b7ef-24592bf23877" + "335f6377-7ba3-4026-ac5d-be0188367b70" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T002020Z:4d8d6344-dece-4cba-b7ef-24592bf23877" + "WESTUS2:20190718T220512Z:335f6377-7ba3-4026-ac5d-be0188367b70" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:20:19 GMT" + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:56:38.471244-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bb070085-0663-4e06-9c14-30e1af6df4a1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/1380ccee-b0ed-4977-b96a-c374ac0f6e27?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMTM4MGNjZWUtYjBlZC00OTc3LWI5NmEtYzM3NGFjMGY2ZTI3P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/bb070085-0663-4e06-9c14-30e1af6df4a1?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvYmIwNzAwODUtMDY2My00ZTA2LTljMTQtMzBlMWFmNmRmNGExP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:10:16.7988943-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1380ccee-b0ed-4977-b96a-c374ac0f6e27\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:05:41 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "ad5cbb90-5805-44b9-b11e-27f2e0037dcb" + "45255a33-491a-4711-af34-43ebb510f3d4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "11972" ], "x-ms-correlation-request-id": [ - "41906de9-cfb3-4ec7-b9a3-b716ca036de6" + "677ec7bd-47c0-4090-8ffd-cb9288065516" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T002050Z:41906de9-cfb3-4ec7-b9a3-b716ca036de6" + "WESTUS2:20190718T220542Z:677ec7bd-47c0-4090-8ffd-cb9288065516" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:20:50 GMT" + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:56:38.471244-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bb070085-0663-4e06-9c14-30e1af6df4a1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/1380ccee-b0ed-4977-b96a-c374ac0f6e27?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMTM4MGNjZWUtYjBlZC00OTc3LWI5NmEtYzM3NGFjMGY2ZTI3P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/bb070085-0663-4e06-9c14-30e1af6df4a1?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvYmIwNzAwODUtMDY2My00ZTA2LTljMTQtMzBlMWFmNmRmNGExP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:10:16.7988943-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1380ccee-b0ed-4977-b96a-c374ac0f6e27\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:06:12 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "acf818a6-bd50-43e2-aa6e-b981068d5a0a" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "aaec7878-e582-43f0-bd65-ab32975f3d74" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11971" ], "x-ms-correlation-request-id": [ - "a5e6c9cc-dbcf-46cf-900c-183b8ed54b84" + "f0fa820e-8190-4482-8aee-3a515b9d2215" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T002121Z:a5e6c9cc-dbcf-46cf-900c-183b8ed54b84" + "WESTUS2:20190718T220612Z:f0fa820e-8190-4482-8aee-3a515b9d2215" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:21:20 GMT" + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:56:38.471244-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bb070085-0663-4e06-9c14-30e1af6df4a1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/1380ccee-b0ed-4977-b96a-c374ac0f6e27?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMTM4MGNjZWUtYjBlZC00OTc3LWI5NmEtYzM3NGFjMGY2ZTI3P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/bb070085-0663-4e06-9c14-30e1af6df4a1?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvYmIwNzAwODUtMDY2My00ZTA2LTljMTQtMzBlMWFmNmRmNGExP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:10:16.7988943-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1380ccee-b0ed-4977-b96a-c374ac0f6e27\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:06:41 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "c610ae65-02b7-4191-9119-6afe638c63fb" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "75ed6414-4c75-443a-8179-7f8b2b0865d6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11970" ], "x-ms-correlation-request-id": [ - "26264ff5-c317-40a7-89ab-002bb5d1136b" + "2b7bd708-6ba4-4498-b8fc-11f89847dc69" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T002151Z:26264ff5-c317-40a7-89ab-002bb5d1136b" + "WESTUS2:20190718T220642Z:2b7bd708-6ba4-4498-b8fc-11f89847dc69" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:21:50 GMT" + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:56:38.471244-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bb070085-0663-4e06-9c14-30e1af6df4a1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/1380ccee-b0ed-4977-b96a-c374ac0f6e27?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMTM4MGNjZWUtYjBlZC00OTc3LWI5NmEtYzM3NGFjMGY2ZTI3P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/bb070085-0663-4e06-9c14-30e1af6df4a1?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvYmIwNzAwODUtMDY2My00ZTA2LTljMTQtMzBlMWFmNmRmNGExP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:10:16.7988943-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1380ccee-b0ed-4977-b96a-c374ac0f6e27\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:07:12 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "aa799514-9902-4507-8bea-c87586d298e9" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "b4f5efb7-65f1-4295-9f09-3768b26a1feb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11969" ], "x-ms-correlation-request-id": [ - "4ba759be-e808-4eb1-bf4d-cff01d4d367a" + "e0f75601-d826-41c4-b09f-29c217fa7daf" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T002221Z:4ba759be-e808-4eb1-bf4d-cff01d4d367a" + "WESTUS2:20190718T220712Z:e0f75601-d826-41c4-b09f-29c217fa7daf" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:22:20 GMT" + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:56:38.471244-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bb070085-0663-4e06-9c14-30e1af6df4a1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/1380ccee-b0ed-4977-b96a-c374ac0f6e27?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMTM4MGNjZWUtYjBlZC00OTc3LWI5NmEtYzM3NGFjMGY2ZTI3P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/bb070085-0663-4e06-9c14-30e1af6df4a1?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvYmIwNzAwODUtMDY2My00ZTA2LTljMTQtMzBlMWFmNmRmNGExP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:10:16.7988943-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1380ccee-b0ed-4977-b96a-c374ac0f6e27\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:07:42 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "f33d61b7-cb9a-4fb7-bf19-4acd55ff07bd" + "be5d2bfd-9918-41fc-96b6-aca1526867aa" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "11968" ], "x-ms-correlation-request-id": [ - "eda376be-03c6-4844-b194-115d0fddbde1" + "ccd25aed-8956-4836-8637-a06a659cfc7f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T002251Z:eda376be-03c6-4844-b194-115d0fddbde1" + "WESTUS2:20190718T220743Z:ccd25aed-8956-4836-8637-a06a659cfc7f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:22:50 GMT" + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:56:38.471244-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bb070085-0663-4e06-9c14-30e1af6df4a1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/1380ccee-b0ed-4977-b96a-c374ac0f6e27?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMTM4MGNjZWUtYjBlZC00OTc3LWI5NmEtYzM3NGFjMGY2ZTI3P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/bb070085-0663-4e06-9c14-30e1af6df4a1?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvYmIwNzAwODUtMDY2My00ZTA2LTljMTQtMzBlMWFmNmRmNGExP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:10:16.7988943-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1380ccee-b0ed-4977-b96a-c374ac0f6e27\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:08:13 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "ff1deebe-aab1-46d0-9645-75109e896d5e" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "d388c36c-66ad-4a57-9ade-caa441410134" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11967" ], "x-ms-correlation-request-id": [ - "181ad475-2481-43ee-bf75-42d458c89b17" + "1de81dae-1147-49a6-b867-4efe0e0cd05b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T002321Z:181ad475-2481-43ee-bf75-42d458c89b17" + "WESTUS2:20190718T220813Z:1de81dae-1147-49a6-b867-4efe0e0cd05b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:23:21 GMT" + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:56:38.471244-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bb070085-0663-4e06-9c14-30e1af6df4a1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/1380ccee-b0ed-4977-b96a-c374ac0f6e27?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMTM4MGNjZWUtYjBlZC00OTc3LWI5NmEtYzM3NGFjMGY2ZTI3P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/bb070085-0663-4e06-9c14-30e1af6df4a1?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvYmIwNzAwODUtMDY2My00ZTA2LTljMTQtMzBlMWFmNmRmNGExP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:10:16.7988943-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1380ccee-b0ed-4977-b96a-c374ac0f6e27\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:08:42 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "5778b175-a620-44a4-88c5-5c8c06964f8c" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "046946c9-ee09-42dc-8eb6-7fc10e43b527" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11966" ], "x-ms-correlation-request-id": [ - "f0d01130-c521-48eb-bd8f-5e5505666964" + "a411a5e9-4b9a-4717-b2f5-8706f23c5eb9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T002351Z:f0d01130-c521-48eb-bd8f-5e5505666964" + "WESTUS2:20190718T220843Z:a411a5e9-4b9a-4717-b2f5-8706f23c5eb9" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:23:51 GMT" + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:56:38.471244-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bb070085-0663-4e06-9c14-30e1af6df4a1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/1380ccee-b0ed-4977-b96a-c374ac0f6e27?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMTM4MGNjZWUtYjBlZC00OTc3LWI5NmEtYzM3NGFjMGY2ZTI3P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/bb070085-0663-4e06-9c14-30e1af6df4a1?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvYmIwNzAwODUtMDY2My00ZTA2LTljMTQtMzBlMWFmNmRmNGExP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:10:16.7988943-07:00\",\r\n \"endTime\": \"2019-04-10T17:24:17.9909922-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1380ccee-b0ed-4977-b96a-c374ac0f6e27\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "184" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:09:13 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "28a0b4bd-4bfa-459f-b48b-206927016335" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "9ce80d67-d7cb-46fd-b620-47d0b05e3665" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11965" ], "x-ms-correlation-request-id": [ - "a8b90c0c-987d-455c-b1e4-eef90d10260b" + "cfb96883-3348-4956-956b-18cacd9a2c18" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T002422Z:a8b90c0c-987d-455c-b1e4-eef90d10260b" + "WESTUS2:20190718T220913Z:cfb96883-3348-4956-956b-18cacd9a2c18" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:24:21 GMT" + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:56:38.471244-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bb070085-0663-4e06-9c14-30e1af6df4a1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/galleries/galleryPsTestGallery2561/images/galleryPsTestGalleryImage1184/versions/1.0.0?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MjU2MS9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTExODQvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/bb070085-0663-4e06-9c14-30e1af6df4a1?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvYmIwNzAwODUtMDY2My00ZTA2LTljMTQtMzBlMWFmNmRmNGExP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/galleries/galleryPsTestGallery2561/images/galleryPsTestGalleryImage1184/versions/1.0.0\",\r\n \"name\": \"1.0.0\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2019-04-10T17:10:16.8457735-07:00\",\r\n \"endOfLifeDate\": \"2019-04-20T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2 EUAP\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"source\": {\r\n \"managedImage\": {\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/images/psTestSourceImage6341\"\r\n }\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\"\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1175" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:09:43 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "d4214264-5f8b-448e-9bfe-e288437bd0a6" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "6db53aaa-a456-4aaf-89ed-112fefb09f1e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11964" ], "x-ms-correlation-request-id": [ - "23357abf-7c0e-4a80-b20a-f34d46f189be" + "c401594b-96f1-4fa1-bd36-a9c7e2e17e9c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T002422Z:23357abf-7c0e-4a80-b20a-f34d46f189be" + "WESTUS2:20190718T220943Z:c401594b-96f1-4fa1-bd36-a9c7e2e17e9c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:24:21 GMT" + "Content-Length": [ + "183" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:56:38.471244-07:00\",\r\n \"endTime\": \"2019-07-18T15:09:39.7053574-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"bb070085-0663-4e06-9c14-30e1af6df4a1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/galleries/galleryPsTestGallery2561/images/galleryPsTestGalleryImage1184/versions/1.0.0?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MjU2MS9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTExODQvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/galleries/galleryPsTestGallery9505/images/galleryPsTestGalleryImage1497/versions/1.0.0?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk1MDUvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UxNDk3L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "98476556-5095-4573-ab87-a5605d57a104" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/galleries/galleryPsTestGallery2561/images/galleryPsTestGalleryImage1184/versions/1.0.0\",\r\n \"name\": \"1.0.0\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2019-04-10T17:10:16.8457735-07:00\",\r\n \"endOfLifeDate\": \"2019-04-20T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2 EUAP\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"source\": {\r\n \"managedImage\": {\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/images/psTestSourceImage6341\"\r\n }\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\"\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1175" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:09:43 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "02f0701e-0306-45b6-afa6-9081af8dd153" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "58922a7e-5478-4c5f-9aad-9be4fdbdba60" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "11963" ], "x-ms-correlation-request-id": [ - "b70ea32e-ab4e-4e78-b1ed-78f878a5c31f" + "7a082403-cd88-432b-862f-126fbf883b56" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T002422Z:b70ea32e-ab4e-4e78-b1ed-78f878a5c31f" + "WESTUS2:20190718T220944Z:7a082403-cd88-432b-862f-126fbf883b56" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:24:21 GMT" + "Content-Length": [ + "1160" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/galleries/galleryPsTestGallery9505/images/galleryPsTestGalleryImage1497/versions/1.0.0\",\r\n \"name\": \"1.0.0\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2 EUAP\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2019-07-18T14:56:38.5337244-07:00\",\r\n \"endOfLifeDate\": \"2019-07-28T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/images/psTestSourceImage9040\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/galleries/galleryPsTestGallery2561/images/galleryPsTestGalleryImage1184/versions/1.0.0?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MjU2MS9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTExODQvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/galleries/galleryPsTestGallery9505/images/galleryPsTestGalleryImage1497/versions/1.0.0?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk1MDUvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UxNDk3L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "477ffd70-944a-4db6-9f54-bb2fd85ee4e6" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/galleries/galleryPsTestGallery2561/images/galleryPsTestGalleryImage1184/versions/1.0.0\",\r\n \"name\": \"1.0.0\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2019-04-10T17:10:16.8457735-07:00\",\r\n \"endOfLifeDate\": \"2019-07-19T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2 EUAP\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"source\": {\r\n \"managedImage\": {\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/images/psTestSourceImage6341\"\r\n }\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\"\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1175" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:09:43 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "e9a6ff8a-aaa4-41ff-a7f8-3be4e2b1f558" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "784b0020-3ec7-4fc4-99a9-44c5751482fb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" + "11962" ], "x-ms-correlation-request-id": [ - "f85c322f-ab98-4cf4-92a9-835bf00f2317" + "abfcf829-11a6-48fc-85b2-8d20d2c5fba6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T002523Z:f85c322f-ab98-4cf4-92a9-835bf00f2317" + "WESTUS2:20190718T220944Z:abfcf829-11a6-48fc-85b2-8d20d2c5fba6" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:25:22 GMT" + "Content-Length": [ + "1160" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/galleries/galleryPsTestGallery9505/images/galleryPsTestGalleryImage1497/versions/1.0.0\",\r\n \"name\": \"1.0.0\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2 EUAP\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2019-07-18T14:56:38.5337244-07:00\",\r\n \"endOfLifeDate\": \"2019-07-28T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/images/psTestSourceImage9040\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/galleries/galleryPsTestGallery2561/images/galleryPsTestGalleryImage1184/versions/1.0.0?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MjU2MS9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTExODQvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/galleries/galleryPsTestGallery9505/images/galleryPsTestGalleryImage1497/versions/1.0.0?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk1MDUvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UxNDk3L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "fde56967-d40c-4ffa-8e8b-4ea102a24821" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/galleries/galleryPsTestGallery2561/images/galleryPsTestGalleryImage1184/versions/1.0.0\",\r\n \"name\": \"1.0.0\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2019-04-10T17:10:16.8457735-07:00\",\r\n \"endOfLifeDate\": \"2019-07-19T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2 EUAP\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"source\": {\r\n \"managedImage\": {\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/images/psTestSourceImage6341\"\r\n }\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\"\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1175" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:10:14 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "41cdeb39-ac7b-4042-9c04-d93aef01df55" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "21df7488-e168-4e82-84c9-944d1d4d8550" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" + "11959" ], "x-ms-correlation-request-id": [ - "754b51d5-2d4e-47cd-a1fe-c49bee6f11db" + "f1d0c95f-42fa-4adb-8a72-a479d2d14afc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T002523Z:754b51d5-2d4e-47cd-a1fe-c49bee6f11db" + "WESTUS2:20190718T221014Z:f1d0c95f-42fa-4adb-8a72-a479d2d14afc" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:25:22 GMT" + "Content-Length": [ + "1160" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/galleries/galleryPsTestGallery9505/images/galleryPsTestGalleryImage1497/versions/1.0.0\",\r\n \"name\": \"1.0.0\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2 EUAP\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2019-07-18T14:56:38.5337244-07:00\",\r\n \"endOfLifeDate\": \"2019-10-26T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/images/psTestSourceImage9040\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/galleries/galleryPsTestGallery2561/images/galleryPsTestGalleryImage1184/versions/1.0.0?$expand=ReplicationStatus&api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MjU2MS9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTExODQvdmVyc2lvbnMvMS4wLjA/JGV4cGFuZD1SZXBsaWNhdGlvblN0YXR1cyZhcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/galleries/galleryPsTestGallery9505/images/galleryPsTestGalleryImage1497/versions/1.0.0?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk1MDUvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UxNDk3L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9bacea28-29b1-4a70-a921-8e1f81f394dc" + "4bfc3352-d5da-48b4-9e14-9ed9ad47af63" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/galleries/galleryPsTestGallery2561/images/galleryPsTestGalleryImage1184/versions/1.0.0\",\r\n \"name\": \"1.0.0\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2019-04-10T17:10:16.8457735-07:00\",\r\n \"endOfLifeDate\": \"2019-04-20T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2 EUAP\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"source\": {\r\n \"managedImage\": {\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/images/psTestSourceImage6341\"\r\n }\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\"\r\n }\r\n },\r\n \"replicationStatus\": {\r\n \"aggregatedState\": \"Completed\",\r\n \"summary\": [\r\n {\r\n \"region\": \"eastus2euap\",\r\n \"state\": \"Completed\",\r\n \"progress\": 100\r\n }\r\n ]\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1397" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:10:14 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "3edee0e0-d65b-4b69-85a2-dbd8b13dc451" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "00a9ad1b-b427-4297-bda6-5c4053b6c2be" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "11958" ], "x-ms-correlation-request-id": [ - "806ddcec-49ae-44b5-81cd-783fd7a77ab7" + "c5122c59-eaea-4874-9378-52487cc15095" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T002422Z:806ddcec-49ae-44b5-81cd-783fd7a77ab7" + "WESTUS2:20190718T221014Z:c5122c59-eaea-4874-9378-52487cc15095" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:24:21 GMT" + "Content-Length": [ + "1160" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/galleries/galleryPsTestGallery9505/images/galleryPsTestGalleryImage1497/versions/1.0.0\",\r\n \"name\": \"1.0.0\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2 EUAP\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2019-07-18T14:56:38.5337244-07:00\",\r\n \"endOfLifeDate\": \"2019-10-26T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/images/psTestSourceImage9040\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/38026dd6-4245-492b-9e63-60b348befa25?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMzgwMjZkZDYtNDI0NS00OTJiLTllNjMtNjBiMzQ4YmVmYTI1P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/galleries/galleryPsTestGallery9505/images/galleryPsTestGalleryImage1497/versions/1.0.0?$expand=ReplicationStatus&api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk1MDUvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UxNDk3L3ZlcnNpb25zLzEuMC4wPyRleHBhbmQ9UmVwbGljYXRpb25TdGF0dXMmYXBpLXZlcnNpb249MjAxOS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "8d15eb12-ac31-4f9c-a88d-4371ed6969c6" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:24:22.584746-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"38026dd6-4245-492b-9e63-60b348befa25\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "133" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:09:43 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "02e500d5-311d-4732-a97f-0068fb72f8e2" + "e0b8fd4b-fbc1-4b25-8592-f1b6e6d60c13" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "11961" ], "x-ms-correlation-request-id": [ - "6b0afa2e-f00a-4228-a00e-23b36fc16970" + "491b1a12-83af-4917-8046-807c77eaff54" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T002452Z:6b0afa2e-f00a-4228-a00e-23b36fc16970" + "WESTUS2:20190718T220944Z:491b1a12-83af-4917-8046-807c77eaff54" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:24:52 GMT" + "Content-Length": [ + "1382" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/galleries/galleryPsTestGallery9505/images/galleryPsTestGalleryImage1497/versions/1.0.0\",\r\n \"name\": \"1.0.0\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2 EUAP\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2019-07-18T14:56:38.5337244-07:00\",\r\n \"endOfLifeDate\": \"2019-07-28T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/images/psTestSourceImage9040\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"replicationStatus\": {\r\n \"aggregatedState\": \"Completed\",\r\n \"summary\": [\r\n {\r\n \"region\": \"eastus2euap\",\r\n \"state\": \"Completed\",\r\n \"progress\": 100\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/38026dd6-4245-492b-9e63-60b348befa25?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMzgwMjZkZDYtNDI0NS00OTJiLTllNjMtNjBiMzQ4YmVmYTI1P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/7bf72f12-ab96-472d-a29d-4251b46c4445?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvN2JmNzJmMTItYWI5Ni00NzJkLWEyOWQtNDI1MWI0NmM0NDQ1P2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:24:22.584746-07:00\",\r\n \"endTime\": \"2019-04-10T17:25:07.7114041-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"38026dd6-4245-492b-9e63-60b348befa25\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "183" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:10:14 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "bd8d3ee6-e744-4268-9097-f3b0056721b8" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "f222cfc3-4b7d-42a8-8c19-ea563b68e0a1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" + "11960" ], "x-ms-correlation-request-id": [ - "6189418a-5c23-4299-ba92-dcf47faed032" + "31dd1af8-07a1-4d76-aec6-bb53e5b733ca" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T002523Z:6189418a-5c23-4299-ba92-dcf47faed032" + "WESTUS2:20190718T221014Z:31dd1af8-07a1-4d76-aec6-bb53e5b733ca" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:25:22 GMT" + "Content-Length": [ + "183" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T15:09:44.4085481-07:00\",\r\n \"endTime\": \"2019-07-18T15:10:14.502461-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7bf72f12-ab96-472d-a29d-4251b46c4445\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/galleries/galleryPsTestGallery2561/images/galleryPsTestGalleryImage1184/versions?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MjU2MS9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTExODQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/galleries/galleryPsTestGallery9505/images/galleryPsTestGalleryImage1497/versions?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk1MDUvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UxNDk3L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "703cb69d-afe2-4365-819a-327b0b30ea40" + "9bc0d3ca-5dda-48b1-b0a3-babfb7f4cff5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/galleries/galleryPsTestGallery2561/images/galleryPsTestGalleryImage1184/versions/1.0.0\",\r\n \"name\": \"1.0.0\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2019-04-10T17:10:16.8457735-07:00\",\r\n \"endOfLifeDate\": \"2019-07-19T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2 EUAP\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"source\": {\r\n \"managedImage\": {\r\n \"id\": \"/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/images/psTestSourceImage6341\"\r\n }\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1336" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:10:14 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "6fe1b06a-a490-4f79-80a7-1bccc88f869c" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "610e1c1d-4643-4d74-a366-32087645d721" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" + "11957" ], "x-ms-correlation-request-id": [ - "deb30813-3aeb-42ac-98a9-f566e5651b1f" + "b884adf3-2b44-4804-be23-5e9965b40a86" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T002523Z:deb30813-3aeb-42ac-98a9-f566e5651b1f" + "WESTUS2:20190718T221015Z:b884adf3-2b44-4804-be23-5e9965b40a86" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:25:22 GMT" + "Content-Length": [ + "1317" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/galleries/galleryPsTestGallery9505/images/galleryPsTestGalleryImage1497/versions/1.0.0\",\r\n \"name\": \"1.0.0\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2 EUAP\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2019-07-18T14:56:38.5337244-07:00\",\r\n \"endOfLifeDate\": \"2019-10-26T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/images/psTestSourceImage9040\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/galleries/galleryPsTestGallery2561/images/galleryPsTestGalleryImage1184/versions?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MjU2MS9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTExODQvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/galleries/galleryPsTestGallery9505/images/galleryPsTestGalleryImage1497/versions?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk1MDUvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UxNDk3L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa7badc4-f7dd-4df7-b40f-14051eeb6831" + "b3b4c594-4ea7-419a-adf8-12e5897ad1e4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Length": [ - "19" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:12:16 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "cbdfc527-b123-4706-adfe-ebc23cf1e9ed" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "edb5784c-9094-4409-9ce6-8a3a8b6fc06b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11943" + "11951" ], "x-ms-correlation-request-id": [ - "a8e50859-d0d2-46d8-8ce6-4eefc392cf85" + "7e436357-db2f-4c17-8cf4-6b31c572fac5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T002654Z:a8e50859-d0d2-46d8-8ce6-4eefc392cf85" + "WESTUS2:20190718T221216Z:7e436357-db2f-4c17-8cf4-6b31c572fac5" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:26:54 GMT" + "Content-Length": [ + "19" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/galleries/galleryPsTestGallery2561/images/galleryPsTestGalleryImage1184/versions/1.0.0?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MjU2MS9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTExODQvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/galleries/galleryPsTestGallery9505/images/galleryPsTestGalleryImage1497/versions/1.0.0?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk1MDUvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UxNDk3L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e5904015-6c99-431f-84e5-c19e17222ee4" + "43634ff8-6823-408f-91cc-02a6eda85cd8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:10:15 GMT" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/ca534cb7-8ed1-460d-ae06-2f71b17993c8?monitor=true&api-version=2019-07-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/0ab54a31-a1a8-4298-b22b-a15d23d3a3b8?api-version=2019-03-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/ca534cb7-8ed1-460d-ae06-2f71b17993c8?api-version=2019-07-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "0ab54a31-a1a8-4298-b22b-a15d23d3a3b8" - ], - "Cache-Control": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/0ab54a31-a1a8-4298-b22b-a15d23d3a3b8?monitor=true&api-version=2019-03-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "ca534cb7-8ed1-460d-ae06-2f71b17993c8" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "f6f14432-e2a5-4205-9076-1092aea30be9" + "886f579c-1105-4d24-964c-3e00e7e978aa" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T002523Z:f6f14432-e2a5-4205-9076-1092aea30be9" + "WESTUS2:20190718T221015Z:886f579c-1105-4d24-964c-3e00e7e978aa" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:25:23 GMT" + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/0ab54a31-a1a8-4298-b22b-a15d23d3a3b8?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMGFiNTRhMzEtYTFhOC00Mjk4LWIyMmItYTE1ZDIzZDNhM2I4P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/ca534cb7-8ed1-460d-ae06-2f71b17993c8?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvY2E1MzRjYjctOGVkMS00NjBkLWFlMDYtMmY3MWIxNzk5M2M4P2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:25:23.5708682-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0ab54a31-a1a8-4298-b22b-a15d23d3a3b8\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:10:44 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "c7fca99a-daec-4cc4-aaf7-a8661fe3311b" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "db733e62-a20b-4aa4-9b6c-b93b56c7ef38" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" + "11956" ], "x-ms-correlation-request-id": [ - "0610b739-29ea-4449-b5ea-46fd1c798b3a" + "4fe242d1-135c-44bf-ac29-528b8ae307f7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T002553Z:0610b739-29ea-4449-b5ea-46fd1c798b3a" + "WESTUS2:20190718T221045Z:4fe242d1-135c-44bf-ac29-528b8ae307f7" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:25:52 GMT" + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T15:10:15.5181303-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ca534cb7-8ed1-460d-ae06-2f71b17993c8\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/0ab54a31-a1a8-4298-b22b-a15d23d3a3b8?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMGFiNTRhMzEtYTFhOC00Mjk4LWIyMmItYTE1ZDIzZDNhM2I4P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/ca534cb7-8ed1-460d-ae06-2f71b17993c8?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvY2E1MzRjYjctOGVkMS00NjBkLWFlMDYtMmY3MWIxNzk5M2M4P2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:25:23.5708682-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0ab54a31-a1a8-4298-b22b-a15d23d3a3b8\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:11:15 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "36830222-0fa0-491c-93cb-121f8af1857b" + "553be0c3-c12b-4a4d-b722-a5d385120de1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" ], + "x-ms-correlation-request-id": [ + "7e6eb6ae-d708-45cc-91aa-a20b94270b63" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20190718T221116Z:7e6eb6ae-d708-45cc-91aa-a20b94270b63" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T15:10:15.5181303-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ca534cb7-8ed1-460d-ae06-2f71b17993c8\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/ca534cb7-8ed1-460d-ae06-2f71b17993c8?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvY2E1MzRjYjctOGVkMS00NjBkLWFlMDYtMmY3MWIxNzk5M2M4P2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Thu, 18 Jul 2019 22:11:45 GMT" + ], + "Pragma": [ + "no-cache" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" + ], + "x-ms-request-id": [ + "1c0d1c16-f312-46e9-b8b4-eb1590981412" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11946" + "11954" ], "x-ms-correlation-request-id": [ - "64f706b8-aca8-490c-a3f4-c6a47da1e21e" + "0831d87d-d4c8-452d-b6af-260de3a8dae2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T002623Z:64f706b8-aca8-490c-a3f4-c6a47da1e21e" + "WESTUS2:20190718T221146Z:0831d87d-d4c8-452d-b6af-260de3a8dae2" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:26:23 GMT" + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T15:10:15.5181303-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ca534cb7-8ed1-460d-ae06-2f71b17993c8\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/0ab54a31-a1a8-4298-b22b-a15d23d3a3b8?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMGFiNTRhMzEtYTFhOC00Mjk4LWIyMmItYTE1ZDIzZDNhM2I4P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/ca534cb7-8ed1-460d-ae06-2f71b17993c8?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvY2E1MzRjYjctOGVkMS00NjBkLWFlMDYtMmY3MWIxNzk5M2M4P2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:25:23.5708682-07:00\",\r\n \"endTime\": \"2019-04-10T17:26:38.8525633-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0ab54a31-a1a8-4298-b22b-a15d23d3a3b8\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "184" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:12:16 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "eaf90c40-a22e-4109-8399-ae48825b9fe2" + "6ad96ff5-c39a-4ca8-8db2-2e1e12dbb863" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "11953" ], "x-ms-correlation-request-id": [ - "3225ab81-35d2-464c-ac23-ebd8d13d6309" + "840a4021-eb4d-4ec9-ad04-a8ac7cecf0c4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T002654Z:3225ab81-35d2-464c-ac23-ebd8d13d6309" + "WESTUS2:20190718T221216Z:840a4021-eb4d-4ec9-ad04-a8ac7cecf0c4" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:26:53 GMT" + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T15:10:15.5181303-07:00\",\r\n \"endTime\": \"2019-07-18T15:12:15.8639563-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ca534cb7-8ed1-460d-ae06-2f71b17993c8\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/0ab54a31-a1a8-4298-b22b-a15d23d3a3b8?monitor=true&api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMGFiNTRhMzEtYTFhOC00Mjk4LWIyMmItYTE1ZDIzZDNhM2I4P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/ca534cb7-8ed1-460d-ae06-2f71b17993c8?monitor=true&api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvY2E1MzRjYjctOGVkMS00NjBkLWFlMDYtMmY3MWIxNzk5M2M4P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE5LTA3LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:12:16 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "2753404a-354b-4775-9128-9fac0ec2128f" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "bdee8711-8cad-4a8e-aa98-35063cc764ba" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11944" + "11952" ], "x-ms-correlation-request-id": [ - "0915230b-312f-41f4-a4a6-ccadbdc6751b" + "66ff0ebd-1ac5-45ab-9628-2257f81a0409" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T002654Z:0915230b-312f-41f4-a4a6-ccadbdc6751b" + "WESTUS2:20190718T221216Z:66ff0ebd-1ac5-45ab-9628-2257f81a0409" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:26:53 GMT" + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/images/psTestSourceImage6341?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaW1hZ2VzL3BzVGVzdFNvdXJjZUltYWdlNjM0MT9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/images/psTestSourceImage9040?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTkwNDA/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "de00f590-8c6a-421f-8ef1-e34903dd9edd" + "950fce5e-024c-44f7-8054-cae7395c0391" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:13:17 GMT" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/265ac36e-334c-46f2-87bf-0cd84a7557cf?monitor=true&api-version=2019-03-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/8d9f460d-2ab2-4e70-8e1c-e168f504ce7b?api-version=2019-03-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/265ac36e-334c-46f2-87bf-0cd84a7557cf?api-version=2019-03-01" ], "Azure-AsyncNotification": [ "Enabled" @@ -5291,74 +5269,70 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8d9f460d-2ab2-4e70-8e1c-e168f504ce7b" - ], - "Cache-Control": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/8d9f460d-2ab2-4e70-8e1c-e168f504ce7b?monitor=true&api-version=2019-03-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "265ac36e-334c-46f2-87bf-0cd84a7557cf" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-correlation-request-id": [ - "c58abda1-5e87-4d50-83ba-cd6d9a89a01c" + "0d4efd22-1fba-4a82-b7fa-d197c4bb12b6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T002755Z:c58abda1-5e87-4d50-83ba-cd6d9a89a01c" + "WESTUS2:20190718T221317Z:0d4efd22-1fba-4a82-b7fa-d197c4bb12b6" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:27:55 GMT" + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/images/psTestSourceImage6341?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaW1hZ2VzL3BzVGVzdFNvdXJjZUltYWdlNjM0MT9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/images/psTestSourceImage9040?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTkwNDA/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df68f83a-2cb3-4145-b62d-1239d4a23e7b" + "8eeda189-1671-4dc9-8eb8-1b5d3ee51f22" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 18 Jul 2019 22:16:00 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14993" + "14994" ], "x-ms-request-id": [ - "030dda99-1de2-4d17-8c27-025251bd0673" + "b39918e3-1012-421f-9909-efd1716910a0" ], "x-ms-correlation-request-id": [ - "030dda99-1de2-4d17-8c27-025251bd0673" + "b39918e3-1012-421f-9909-efd1716910a0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T003038Z:030dda99-1de2-4d17-8c27-025251bd0673" + "WESTUS2:20190718T221600Z:b39918e3-1012-421f-9909-efd1716910a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5366,169 +5340,173 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 11 Apr 2019 00:30:37 GMT" + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/8d9f460d-2ab2-4e70-8e1c-e168f504ce7b?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvb3BlcmF0aW9ucy84ZDlmNDYwZC0yYWIyLTRlNzAtOGUxYy1lMTY4ZjUwNGNlN2I/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/265ac36e-334c-46f2-87bf-0cd84a7557cf?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvb3BlcmF0aW9ucy8yNjVhYzM2ZS0zMzRjLTQ2ZjItODdiZi0wY2Q4NGE3NTU3Y2Y/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:27:54.9240501-07:00\",\r\n \"endTime\": \"2019-04-10T17:28:00.1115657-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8d9f460d-2ab2-4e70-8e1c-e168f504ce7b\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "184" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:13:47 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29977" + "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29884" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e692a277-010c-4af1-9574-decbeb392a7e" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "f5961a1b-58a7-4d3d-8df4-868474918127" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11942" + "11999" ], "x-ms-correlation-request-id": [ - "e013c5f3-4a84-4bf8-a8e8-3db1e136b819" + "bda90583-f047-4f6b-abc4-5d0db27423a0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T002825Z:e013c5f3-4a84-4bf8-a8e8-3db1e136b819" + "WESTUS2:20190718T221347Z:bda90583-f047-4f6b-abc4-5d0db27423a0" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:28:24 GMT" + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T15:13:17.4040676-07:00\",\r\n \"endTime\": \"2019-07-18T15:13:22.5915774-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"265ac36e-334c-46f2-87bf-0cd84a7557cf\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/8d9f460d-2ab2-4e70-8e1c-e168f504ce7b?monitor=true&api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvb3BlcmF0aW9ucy84ZDlmNDYwZC0yYWIyLTRlNzAtOGUxYy1lMTY4ZjUwNGNlN2I/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/265ac36e-334c-46f2-87bf-0cd84a7557cf?monitor=true&api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvb3BlcmF0aW9ucy8yNjVhYzM2ZS0zMzRjLTQ2ZjItODdiZi0wY2Q4NGE3NTU3Y2Y/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:13:47 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29976" + "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29883" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "43408e50-4cd7-4c7e-9855-fadc908bf8fa" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "ab81a352-4c79-479c-a730-3f7880d88178" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11941" + "11998" ], "x-ms-correlation-request-id": [ - "3e6f7a08-3c91-4597-b395-d0f8452cb1e0" + "cb8e6d1f-3d35-48dc-bed7-48084dc0fcce" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T002825Z:3e6f7a08-3c91-4597-b395-d0f8452cb1e0" + "WESTUS2:20190718T221347Z:cb8e6d1f-3d35-48dc-bed7-48084dc0fcce" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:28:25 GMT" + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/virtualMachines/vm2925?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtMjkyNT9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/virtualMachines/vm9919?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTk5MTk/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d318bd9c-34bf-4db7-ae74-e39c9861983d" + "85a7e785-63c5-42d0-af60-c05442ffd679" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:13:47 GMT" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/66797718-2014-4704-84ab-2f34fc142114?monitor=true&api-version=2019-03-01" + ], "Retry-After": [ "10" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/a45ba279-4195-4e5b-b6bf-934b8ed9565a?api-version=2019-03-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/66797718-2014-4704-84ab-2f34fc142114?api-version=2019-03-01" ], "Azure-AsyncNotification": [ "Enabled" @@ -5540,74 +5518,70 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a45ba279-4195-4e5b-b6bf-934b8ed9565a" - ], - "Cache-Control": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/a45ba279-4195-4e5b-b6bf-934b8ed9565a?monitor=true&api-version=2019-03-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "66797718-2014-4704-84ab-2f34fc142114" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14998" ], "x-ms-correlation-request-id": [ - "930f9a59-47ff-4078-8731-2f851d74b01d" + "930abfd9-4d84-4093-ac59-8309675edc92" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T002825Z:930f9a59-47ff-4078-8731-2f851d74b01d" + "WESTUS2:20190718T221348Z:930abfd9-4d84-4093-ac59-8309675edc92" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:28:25 GMT" + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/virtualMachines/vm2925?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtMjkyNT9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/virtualMachines/vm9919?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTk5MTk/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27598d3a-f0f4-4a74-88e9-b18c5337894b" + "cf1c6d49-0fa2-4b9a-afa1-9c6d202c5c7e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 18 Jul 2019 22:16:00 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14994" + "14995" ], "x-ms-request-id": [ - "cc3b8d7a-1f24-4ba4-99b3-f7e95a68a845" + "d4635052-d701-4533-a647-4d4bfa6ca3c6" ], "x-ms-correlation-request-id": [ - "cc3b8d7a-1f24-4ba4-99b3-f7e95a68a845" + "d4635052-d701-4533-a647-4d4bfa6ca3c6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T003038Z:cc3b8d7a-1f24-4ba4-99b3-f7e95a68a845" + "WESTUS2:20190718T221600Z:d4635052-d701-4533-a647-4d4bfa6ca3c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5615,38 +5589,32 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 11 Apr 2019 00:30:37 GMT" + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 204 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/a45ba279-4195-4e5b-b6bf-934b8ed9565a?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvb3BlcmF0aW9ucy9hNDViYTI3OS00MTk1LTRlNWItYjZiZi05MzRiOGVkOTU2NWE/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/66797718-2014-4704-84ab-2f34fc142114?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvb3BlcmF0aW9ucy82Njc5NzcxOC0yMDE0LTQ3MDQtODRhYi0yZjM0ZmMxNDIxMTQ/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:28:25.4867103-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a45ba279-4195-4e5b-b6bf-934b8ed9565a\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:13:57 GMT" ], "Pragma": [ "no-cache" @@ -5654,631 +5622,635 @@ "Retry-After": [ "30" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29975" + "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29882" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e6782ebb-70d7-40a4-bfea-7a2c93ba9f31" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "7c519e1e-2797-428b-8f51-651123ac4a44" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11940" + "11997" ], "x-ms-correlation-request-id": [ - "55207c56-33f0-427f-b4a3-5ef0ac577b7c" + "a857e20d-92ef-496d-8920-19b6fcd04571" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T002835Z:55207c56-33f0-427f-b4a3-5ef0ac577b7c" + "WESTUS2:20190718T221358Z:a857e20d-92ef-496d-8920-19b6fcd04571" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:28:35 GMT" + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T15:13:48.1699058-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"66797718-2014-4704-84ab-2f34fc142114\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/a45ba279-4195-4e5b-b6bf-934b8ed9565a?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvb3BlcmF0aW9ucy9hNDViYTI3OS00MTk1LTRlNWItYjZiZi05MzRiOGVkOTU2NWE/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/66797718-2014-4704-84ab-2f34fc142114?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvb3BlcmF0aW9ucy82Njc5NzcxOC0yMDE0LTQ3MDQtODRhYi0yZjM0ZmMxNDIxMTQ/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:28:25.4867103-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a45ba279-4195-4e5b-b6bf-934b8ed9565a\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:14:28 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29974" + "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29881" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4a39ceaf-d39d-4b15-8238-554cbbba541c" + "c9488aba-6b3e-4889-b6fd-2a7165f01f7f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11939" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "11996" ], "x-ms-correlation-request-id": [ - "07684849-4818-41c2-a648-036bbf0f61fe" + "dd4a71c3-aded-4d05-959a-2f734ae98322" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T002905Z:07684849-4818-41c2-a648-036bbf0f61fe" + "WESTUS2:20190718T221428Z:dd4a71c3-aded-4d05-959a-2f734ae98322" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:29:05 GMT" + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T15:13:48.1699058-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"66797718-2014-4704-84ab-2f34fc142114\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/a45ba279-4195-4e5b-b6bf-934b8ed9565a?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvb3BlcmF0aW9ucy9hNDViYTI3OS00MTk1LTRlNWItYjZiZi05MzRiOGVkOTU2NWE/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/66797718-2014-4704-84ab-2f34fc142114?api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvb3BlcmF0aW9ucy82Njc5NzcxOC0yMDE0LTQ3MDQtODRhYi0yZjM0ZmMxNDIxMTQ/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:28:25.4867103-07:00\",\r\n \"endTime\": \"2019-04-10T17:29:07.1275907-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a45ba279-4195-4e5b-b6bf-934b8ed9565a\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "184" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:14:57 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29972" + "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29879" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "267072e3-3eeb-448b-abce-9e88b581569a" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "459c75c6-b78d-4ad3-845c-3ee017ffc103" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11938" + "11995" ], "x-ms-correlation-request-id": [ - "c84fdc3e-2bda-4789-9fae-92d2908269d1" + "a3b7301a-f377-4615-a596-faa066f5ac74" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T002936Z:c84fdc3e-2bda-4789-9fae-92d2908269d1" + "WESTUS2:20190718T221458Z:a3b7301a-f377-4615-a596-faa066f5ac74" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:29:35 GMT" + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T15:13:48.1699058-07:00\",\r\n \"endTime\": \"2019-07-18T15:14:39.1858145-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"66797718-2014-4704-84ab-2f34fc142114\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/a45ba279-4195-4e5b-b6bf-934b8ed9565a?monitor=true&api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvb3BlcmF0aW9ucy9hNDViYTI3OS00MTk1LTRlNWItYjZiZi05MzRiOGVkOTU2NWE/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/operations/66797718-2014-4704-84ab-2f34fc142114?monitor=true&api-version=2019-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvb3BlcmF0aW9ucy82Njc5NzcxOC0yMDE0LTQ3MDQtODRhYi0yZjM0ZmMxNDIxMTQ/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:14:58 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29971" + "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29878" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a4cd60df-cce4-4cfe-880f-4755dc6e783c" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "ac8905b3-9f50-4790-afc8-91ba7281a422" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11937" + "11994" ], "x-ms-correlation-request-id": [ - "20c12f54-c8ec-4ce8-bf82-b0932f074157" + "a94103cb-5e66-4305-b841-20594159076e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T002936Z:20c12f54-c8ec-4ce8-bf82-b0932f074157" + "WESTUS2:20190718T221458Z:a94103cb-5e66-4305-b841-20594159076e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:29:35 GMT" + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/galleries/galleryPsTestGallery2561/images/galleryPsTestGalleryImage1184?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MjU2MS9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTExODQ/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/galleries/galleryPsTestGallery9505/images/galleryPsTestGalleryImage1497?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk1MDUvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UxNDk3P2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fd6144ee-8775-4363-830f-43ccce653003" + "c1f8afe0-a8ea-4d46-9fc1-9e83575fec72" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:14:58 GMT" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/efdd3a02-487b-45e1-bee2-cc6133f26cdf?monitor=true&api-version=2019-07-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/07bcf13a-0f16-4766-a02e-f7f61cb54bd0?api-version=2019-03-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/efdd3a02-487b-45e1-bee2-cc6133f26cdf?api-version=2019-07-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "07bcf13a-0f16-4766-a02e-f7f61cb54bd0" - ], - "Cache-Control": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/07bcf13a-0f16-4766-a02e-f7f61cb54bd0?monitor=true&api-version=2019-03-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "efdd3a02-487b-45e1-bee2-cc6133f26cdf" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "14997" ], "x-ms-correlation-request-id": [ - "479e10fc-5cf4-413b-84b4-211391f61882" + "5bc8bebf-cd40-4095-ad25-c9cc0dfa458a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T002937Z:479e10fc-5cf4-413b-84b4-211391f61882" + "WESTUS2:20190718T221459Z:5bc8bebf-cd40-4095-ad25-c9cc0dfa458a" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:29:36 GMT" + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/07bcf13a-0f16-4766-a02e-f7f61cb54bd0?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMDdiY2YxM2EtMGYxNi00NzY2LWEwMmUtZjdmNjFjYjU0YmQwP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/efdd3a02-487b-45e1-bee2-cc6133f26cdf?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvZWZkZDNhMDItNDg3Yi00NWUxLWJlZTItY2M2MTMzZjI2Y2RmP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:29:36.9346429-07:00\",\r\n \"endTime\": \"2019-04-10T17:29:38.1378157-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"07bcf13a-0f16-4766-a02e-f7f61cb54bd0\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "184" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:15:29 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "2014bfa3-24c9-433a-9710-be61232f3196" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "7d70e87b-e4ed-4226-9af3-fb43ecbee5df" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11936" + "11993" ], "x-ms-correlation-request-id": [ - "0b7e01a4-9130-411a-a513-ed1f6879fdce" + "38b78595-ebf1-4a99-a35e-adbb88dbccbb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T003007Z:0b7e01a4-9130-411a-a513-ed1f6879fdce" + "WESTUS2:20190718T221529Z:38b78595-ebf1-4a99-a35e-adbb88dbccbb" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:30:06 GMT" + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T15:14:59.6359436-07:00\",\r\n \"endTime\": \"2019-07-18T15:14:59.8547098-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"efdd3a02-487b-45e1-bee2-cc6133f26cdf\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/07bcf13a-0f16-4766-a02e-f7f61cb54bd0?monitor=true&api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMDdiY2YxM2EtMGYxNi00NzY2LWEwMmUtZjdmNjFjYjU0YmQwP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/efdd3a02-487b-45e1-bee2-cc6133f26cdf?monitor=true&api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvZWZkZDNhMDItNDg3Yi00NWUxLWJlZTItY2M2MTMzZjI2Y2RmP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE5LTA3LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:15:29 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "81c9e8b2-b695-433e-aaaf-2ea358fd8d16" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "ce56e436-1555-48ba-8f5e-46bf3f2bd547" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11935" + "11992" ], "x-ms-correlation-request-id": [ - "b8041422-8670-43c1-af0b-351d917dd7f8" + "6c4d3c7a-00a9-4807-8077-77ccf2e9bea6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T003007Z:b8041422-8670-43c1-af0b-351d917dd7f8" + "WESTUS2:20190718T221529Z:6c4d3c7a-00a9-4807-8077-77ccf2e9bea6" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:30:06 GMT" + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/galleryPsTestRg920/providers/Microsoft.Compute/galleries/galleryPsTestGallery2561?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MjU2MT9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4802/providers/Microsoft.Compute/galleries/galleryPsTestGallery9505?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk1MDU/YXBpLXZlcnNpb249MjAxOS0wNy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "429cc160-87c1-4f86-9f09-81430861c5b6" + "f1affec5-4223-45af-bf60-66c020e0b9b6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:15:29 GMT" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/04c30bf6-ecc4-4467-b496-a94dcbc37527?monitor=true&api-version=2019-07-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/edd27132-701a-4e65-9554-1b13cf2b9310?api-version=2019-03-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/04c30bf6-ecc4-4467-b496-a94dcbc37527?api-version=2019-07-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "edd27132-701a-4e65-9554-1b13cf2b9310" - ], - "Cache-Control": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/edd27132-701a-4e65-9554-1b13cf2b9310?monitor=true&api-version=2019-03-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "04c30bf6-ecc4-4467-b496-a94dcbc37527" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14995" + "14996" ], "x-ms-correlation-request-id": [ - "ac9f3c6f-1e90-4246-9431-53dcd3aeeaa8" + "ebe6235d-7b12-4ca0-913d-ad87ce316966" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T003008Z:ac9f3c6f-1e90-4246-9431-53dcd3aeeaa8" + "WESTUS2:20190718T221530Z:ebe6235d-7b12-4ca0-913d-ad87ce316966" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:30:07 GMT" + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/edd27132-701a-4e65-9554-1b13cf2b9310?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvZWRkMjcxMzItNzAxYS00ZTY1LTk1NTQtMWIxM2NmMmI5MzEwP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/04c30bf6-ecc4-4467-b496-a94dcbc37527?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMDRjMzBiZjYtZWNjNC00NDY3LWI0OTYtYTk0ZGNiYzM3NTI3P2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-10T17:30:07.5598796-07:00\",\r\n \"endTime\": \"2019-04-10T17:30:09.2785976-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"edd27132-701a-4e65-9554-1b13cf2b9310\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "184" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:16:00 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "28c4a29a-98e4-48af-b1d9-cc237ae204b2" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "98439810-4ce1-499a-a839-73d4da9110f1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11934" + "11991" ], "x-ms-correlation-request-id": [ - "b3d169dd-a61e-4076-82fd-9fd254420b0d" + "8d424951-2557-4357-bd7e-7dd2d7cef5ea" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T003038Z:b3d169dd-a61e-4076-82fd-9fd254420b0d" + "WESTUS2:20190718T221600Z:8d424951-2557-4357-bd7e-7dd2d7cef5ea" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:30:37 GMT" + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T15:15:30.2453166-07:00\",\r\n \"endTime\": \"2019-07-18T15:15:30.3546863-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"04c30bf6-ecc4-4467-b496-a94dcbc37527\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/edd27132-701a-4e65-9554-1b13cf2b9310?monitor=true&api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvZWRkMjcxMzItNzAxYS00ZTY1LTk1NTQtMWIxM2NmMmI5MzEwP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/04c30bf6-ecc4-4467-b496-a94dcbc37527?monitor=true&api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMDRjMzBiZjYtZWNjNC00NDY3LWI0OTYtYTk0ZGNiYzM3NTI3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE5LTA3LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.3078.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 22:16:00 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531,9fd6c73e-0f5b-4df6-9373-e2bc65b52a37_131952605014292531" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "dab63a2b-48a4-49d3-8ec0-a4f3ccff6f35" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "a60ec117-3a40-4031-9265-81ea1596dde7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11933" + "11990" ], "x-ms-correlation-request-id": [ - "4138ef08-6409-444f-88a0-11099febaa25" + "7c68dc53-2bd6-4d7d-accc-5db972317ad7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190411T003038Z:4138ef08-6409-444f-88a0-11099febaa25" + "WESTUS2:20190718T221600Z:7c68dc53-2bd6-4d7d-accc-5db972317ad7" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 11 Apr 2019 00:30:37 GMT" + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 200 } ], "Names": { "GalleryImageVersion_CRUD_Tests": [ - "galleryPsTestRg920", - "psTestSourceImage6341", - "galleryPsTestGallery2561", - "galleryPsTestGalleryImage1184" + "galleryPsTestRg4802", + "psTestSourceImage9040", + "galleryPsTestGallery9505", + "galleryPsTestGalleryImage1497" ], "CreateCRPImage": [ - "saforgallery1778", - "asforgallery3292" + "saforgallery8591", + "asforgallery4644" ], "CreatePublicIP": [ - "pip9966", - "dn5475" + "pip9137", + "dn7116" ], "CreateVNET": [ - "vn8974", - "sn3142" + "vn1994", + "sn5799" ], "CreateNIC": [ - "nic9966", - "ip3650" + "nic7304", + "ip2904" ], "CreateDefaultVMInput": [ - "crptestar5688", - "crptestar8338", - "crptestar8422", - "vm2925", - "Microsoft.Compute/virtualMachines324" + "crptestar1353", + "crptestar7419", + "crptestar6393", + "vm9919", + "Microsoft.Compute/virtualMachines6104" ] }, "Variables": { - "SubscriptionId": "5393f919-a68a-43d0-9063-4b2bda6bffdf" + "SubscriptionId": "97f78232-382b-46a7-8a72-964d692c4f3f" } } \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/Compute.Tests.GalleryTests/GalleryImage_CRUD_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/Compute.Tests.GalleryTests/GalleryImage_CRUD_Tests.json index 87f8a3a6fe99d..1a3fd7017cf66 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/Compute.Tests.GalleryTests/GalleryImage_CRUD_Tests.json +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/Compute.Tests.GalleryTests/GalleryImage_CRUD_Tests.json @@ -1,40 +1,36 @@ { "Entries": [ { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg3243?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzMyNDM/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg843?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg0Mz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus2euap\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "33" - ], "x-ms-client-request-id": [ - "9911cc36-4fc3-409c-aa32-e5e27c55a33a" + "fc81c771-bfdc-47e1-8e42-4946feb2669c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3243\",\r\n \"name\": \"galleryPsTestRg3243\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "196" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "33" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 18 Jul 2019 21:22:19 GMT" ], "Pragma": [ "no-cache" @@ -43,13 +39,13 @@ "1199" ], "x-ms-request-id": [ - "638584dc-48bd-4df1-bb80-6472d00bd69c" + "a3156188-02bf-493c-9632-1d6fcb754de8" ], "x-ms-correlation-request-id": [ - "638584dc-48bd-4df1-bb80-6472d00bd69c" + "a3156188-02bf-493c-9632-1d6fcb754de8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190401T212005Z:638584dc-48bd-4df1-bb80-6472d00bd69c" + "WESTUS2:20190718T212220Z:a3156188-02bf-493c-9632-1d6fcb754de8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -57,1261 +53,1265 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" + "Content-Length": [ + "194" ], - "Date": [ - "Mon, 01 Apr 2019 21:20:05 GMT" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg843\",\r\n \"name\": \"galleryPsTestRg843\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3243/providers/Microsoft.Compute/galleries/galleryPsTestGallery4981?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzMyNDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ5ODE/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg843/providers/Microsoft.Compute/galleries/galleryPsTestGallery8792?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODc5Mj9hcGktdmVyc2lvbj0yMDE5LTA3LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\"\r\n },\r\n \"location\": \"eastus2euap\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "117" - ], "x-ms-client-request-id": [ - "1b3e0d2d-3f2e-4da5-84fb-978b8521ce1c" + "b752a586-6fc4-4297-8eef-a9dd5948cb9a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.2956.0" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3243/providers/Microsoft.Compute/galleries/galleryPsTestGallery4981\",\r\n \"name\": \"galleryPsTestGallery4981\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY4981\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "512" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "117" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 18 Jul 2019 21:22:21 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/a64aff80-14b3-4857-b873-8788ad3b27f2?api-version=2019-03-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/b0cb2ce5-ed20-4000-98df-139770c24074?api-version=2019-07-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "a64aff80-14b3-4857-b873-8788ad3b27f2" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "b0cb2ce5-ed20-4000-98df-139770c24074" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "d23585e9-0711-4e24-8502-0da0f33264ba" + "1a714458-e5af-45de-8941-59bb148bd875" ], "x-ms-routing-request-id": [ - "WESTUS2:20190401T212007Z:d23585e9-0711-4e24-8502-0da0f33264ba" + "WESTUS2:20190718T212221Z:1a714458-e5af-45de-8941-59bb148bd875" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 01 Apr 2019 21:20:06 GMT" + "Content-Length": [ + "511" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg843/providers/Microsoft.Compute/galleries/galleryPsTestGallery8792\",\r\n \"name\": \"galleryPsTestGallery8792\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8792\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/a64aff80-14b3-4857-b873-8788ad3b27f2?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvYTY0YWZmODAtMTRiMy00ODU3LWI4NzMtODc4OGFkM2IyN2YyP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/b0cb2ce5-ed20-4000-98df-139770c24074?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvYjBjYjJjZTUtZWQyMC00MDAwLTk4ZGYtMTM5NzcwYzI0MDc0P2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.2956.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-01T14:20:06.9303654-07:00\",\r\n \"endTime\": \"2019-04-01T14:20:07.9303385-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a64aff80-14b3-4857-b873-8788ad3b27f2\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "184" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:22:51 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "3c43396f-c703-43ea-85a2-5555caddcf4a" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "e106abc2-2281-4a04-9a1e-5545ec0dd568" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "52716655-7c9c-408b-a0c4-752d88379ef2" + "5f26ded8-2a68-46bf-ad50-dfb96b0ab5c3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190401T212037Z:52716655-7c9c-408b-a0c4-752d88379ef2" + "WESTUS2:20190718T212251Z:5f26ded8-2a68-46bf-ad50-dfb96b0ab5c3" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 01 Apr 2019 21:20:36 GMT" + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:22:21.3855881-07:00\",\r\n \"endTime\": \"2019-07-18T14:22:21.4793848-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b0cb2ce5-ed20-4000-98df-139770c24074\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3243/providers/Microsoft.Compute/galleries/galleryPsTestGallery4981?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzMyNDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ5ODE/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg843/providers/Microsoft.Compute/galleries/galleryPsTestGallery8792?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODc5Mj9hcGktdmVyc2lvbj0yMDE5LTA3LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.2956.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3243/providers/Microsoft.Compute/galleries/galleryPsTestGallery4981\",\r\n \"name\": \"galleryPsTestGallery4981\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY4981\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "513" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:22:51 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "5ae17a30-63ed-4886-b98b-a1e7baf0e03b" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "b715f022-e561-463c-9bb1-d31b5ec7d8c7" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "23e51e9e-5a56-40f8-b471-27fda9db5aa9" + "009ac631-8fe7-44de-9ed3-956eda97202f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190401T212037Z:23e51e9e-5a56-40f8-b471-27fda9db5aa9" + "WESTUS2:20190718T212252Z:009ac631-8fe7-44de-9ed3-956eda97202f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 01 Apr 2019 21:20:36 GMT" + "Content-Length": [ + "512" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg843/providers/Microsoft.Compute/galleries/galleryPsTestGallery8792\",\r\n \"name\": \"galleryPsTestGallery8792\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8792\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3243/providers/Microsoft.Compute/galleries/galleryPsTestGallery4981/images/galleryPsTestGalleryImage2643?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzMyNDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ5ODEvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UyNjQzP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg843/providers/Microsoft.Compute/galleries/galleryPsTestGallery8792/images/galleryPsTestGalleryImage7485?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODc5Mi9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTc0ODU/YXBpLXZlcnNpb249MjAxOS0wNy0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is the gallery image description.\",\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n }\r\n },\r\n \"location\": \"eastus2euap\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is the gallery image description.\",\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n }\r\n },\r\n \"location\": \"eastus2euap\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "287" - ], "x-ms-client-request-id": [ - "fdc9043a-bade-4036-a164-64ad3f08b1cd" + "47cff204-e93a-4bb0-b375-2c22a40f1b07" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.2956.0" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3243/providers/Microsoft.Compute/galleries/galleryPsTestGallery4981/images/galleryPsTestGalleryImage2643\",\r\n \"name\": \"galleryPsTestGalleryImage2643\",\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"description\": \"This is the gallery image description.\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "617" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "289" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 18 Jul 2019 21:22:52 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/8bb027f2-8235-4742-ac1d-7993aefb84d9?api-version=2019-03-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/4369cbfc-52e9-495e-a24b-bc49d614f7a3?api-version=2019-07-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "8bb027f2-8235-4742-ac1d-7993aefb84d9" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "4369cbfc-52e9-495e-a24b-bc49d614f7a3" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "14d564c3-e032-407e-8df8-baa27c779c56" + "537d3f06-0a6d-46b0-85bd-07973ca32bdd" ], "x-ms-routing-request-id": [ - "WESTUS2:20190401T212038Z:14d564c3-e032-407e-8df8-baa27c779c56" + "WESTUS2:20190718T212253Z:537d3f06-0a6d-46b0-85bd-07973ca32bdd" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 01 Apr 2019 21:20:37 GMT" + "Content-Length": [ + "618" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg843/providers/Microsoft.Compute/galleries/galleryPsTestGallery8792/images/galleryPsTestGalleryImage7485\",\r\n \"name\": \"galleryPsTestGalleryImage7485\",\r\n \"properties\": {\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"description\": \"This is the gallery image description.\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3243/providers/Microsoft.Compute/galleries/galleryPsTestGallery4981/images/galleryPsTestGalleryImage2643?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzMyNDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ5ODEvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UyNjQzP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg843/providers/Microsoft.Compute/galleries/galleryPsTestGallery8792/images/galleryPsTestGalleryImage7485?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODc5Mi9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTc0ODU/YXBpLXZlcnNpb249MjAxOS0wNy0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"Updated description.\",\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n }\r\n },\r\n \"location\": \"eastus2euap\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"Updated description.\",\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n }\r\n },\r\n \"location\": \"eastus2euap\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "269" - ], "x-ms-client-request-id": [ - "6092745e-c103-4ef2-a25d-9bb5074959d0" + "070bf91d-2aa1-4c13-aafb-c5955f68e783" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.2956.0" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3243/providers/Microsoft.Compute/galleries/galleryPsTestGallery4981/images/galleryPsTestGalleryImage2643\",\r\n \"name\": \"galleryPsTestGalleryImage2643\",\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Updated description.\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "599" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "271" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 18 Jul 2019 21:23:22 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/84547f7b-25dc-4627-a874-8e9d8b8350a5?api-version=2019-03-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/e60b5816-9242-494e-94c3-c7e98652c7a2?api-version=2019-07-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "84547f7b-25dc-4627-a874-8e9d8b8350a5" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "e60b5816-9242-494e-94c3-c7e98652c7a2" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "e43b6b60-1c9e-477e-8fab-64633355234b" + "ab68d982-cc38-484a-b3fd-e9a5673bdfb4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190401T212109Z:e43b6b60-1c9e-477e-8fab-64633355234b" + "WESTUS2:20190718T212323Z:ab68d982-cc38-484a-b3fd-e9a5673bdfb4" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 01 Apr 2019 21:21:09 GMT" + "Content-Length": [ + "600" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg843/providers/Microsoft.Compute/galleries/galleryPsTestGallery8792/images/galleryPsTestGalleryImage7485\",\r\n \"name\": \"galleryPsTestGalleryImage7485\",\r\n \"properties\": {\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Updated description.\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/8bb027f2-8235-4742-ac1d-7993aefb84d9?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvOGJiMDI3ZjItODIzNS00NzQyLWFjMWQtNzk5M2FlZmI4NGQ5P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/4369cbfc-52e9-495e-a24b-bc49d614f7a3?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvNDM2OWNiZmMtNTJlOS00OTVlLWEyNGItYmM0OWQ2MTRmN2EzP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.2956.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-01T14:20:38.3013076-07:00\",\r\n \"endTime\": \"2019-04-01T14:20:39.3637933-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8bb027f2-8235-4742-ac1d-7993aefb84d9\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "184" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:23:22 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "4e3e4d0f-9073-4a50-b980-a717d4360289" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "03ce350c-f23e-4f5f-8dfd-83fabbb8510d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "e2dfaa1f-1de0-4a14-aeca-bf59d78f91d5" + "41d8f2c0-c5dc-4a80-bb1b-e4d61ad4cf52" ], "x-ms-routing-request-id": [ - "WESTUS2:20190401T212108Z:e2dfaa1f-1de0-4a14-aeca-bf59d78f91d5" + "WESTUS2:20190718T212323Z:41d8f2c0-c5dc-4a80-bb1b-e4d61ad4cf52" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 01 Apr 2019 21:21:08 GMT" + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:22:52.5574655-07:00\",\r\n \"endTime\": \"2019-07-18T14:22:52.7762105-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4369cbfc-52e9-495e-a24b-bc49d614f7a3\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3243/providers/Microsoft.Compute/galleries/galleryPsTestGallery4981/images/galleryPsTestGalleryImage2643?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzMyNDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ5ODEvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UyNjQzP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg843/providers/Microsoft.Compute/galleries/galleryPsTestGallery8792/images/galleryPsTestGalleryImage7485?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODc5Mi9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTc0ODU/YXBpLXZlcnNpb249MjAxOS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.2956.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3243/providers/Microsoft.Compute/galleries/galleryPsTestGallery4981/images/galleryPsTestGalleryImage2643\",\r\n \"name\": \"galleryPsTestGalleryImage2643\",\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"This is the gallery image description.\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "618" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:23:22 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "ebc8f673-3dbc-4979-8b9a-6ae397adfbfa" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "61f83259-2b44-4799-9638-05e8a02b1eab" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "7141ab00-d423-4360-9682-24269e2892c9" + "f5cc3413-53ad-4c05-bf21-d5acca1e261b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190401T212108Z:7141ab00-d423-4360-9682-24269e2892c9" + "WESTUS2:20190718T212323Z:f5cc3413-53ad-4c05-bf21-d5acca1e261b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 01 Apr 2019 21:21:08 GMT" + "Content-Length": [ + "619" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg843/providers/Microsoft.Compute/galleries/galleryPsTestGallery8792/images/galleryPsTestGalleryImage7485\",\r\n \"name\": \"galleryPsTestGalleryImage7485\",\r\n \"properties\": {\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"This is the gallery image description.\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3243/providers/Microsoft.Compute/galleries/galleryPsTestGallery4981/images/galleryPsTestGalleryImage2643?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzMyNDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ5ODEvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UyNjQzP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg843/providers/Microsoft.Compute/galleries/galleryPsTestGallery8792/images/galleryPsTestGalleryImage7485?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODc5Mi9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTc0ODU/YXBpLXZlcnNpb249MjAxOS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad35104c-10b1-40e6-9556-542bd0985fb3" + "81a793d8-5872-4c02-8392-70914a97541d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.2956.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3243/providers/Microsoft.Compute/galleries/galleryPsTestGallery4981/images/galleryPsTestGalleryImage2643\",\r\n \"name\": \"galleryPsTestGalleryImage2643\",\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"This is the gallery image description.\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "618" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:23:22 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "470d3f24-dfd1-471f-a016-2c7272923b94" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "ae3997fa-51a1-44b5-8087-211990b602a4" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "c3b3821e-ea93-415b-a3af-723fbcf28357" + "4089ff3a-eb03-44c9-94f5-c1ce0c929f88" ], "x-ms-routing-request-id": [ - "WESTUS2:20190401T212109Z:c3b3821e-ea93-415b-a3af-723fbcf28357" + "WESTUS2:20190718T212323Z:4089ff3a-eb03-44c9-94f5-c1ce0c929f88" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 01 Apr 2019 21:21:08 GMT" + "Content-Length": [ + "619" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg843/providers/Microsoft.Compute/galleries/galleryPsTestGallery8792/images/galleryPsTestGalleryImage7485\",\r\n \"name\": \"galleryPsTestGalleryImage7485\",\r\n \"properties\": {\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"This is the gallery image description.\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3243/providers/Microsoft.Compute/galleries/galleryPsTestGallery4981/images/galleryPsTestGalleryImage2643?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzMyNDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ5ODEvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UyNjQzP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg843/providers/Microsoft.Compute/galleries/galleryPsTestGallery8792/images/galleryPsTestGalleryImage7485?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODc5Mi9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTc0ODU/YXBpLXZlcnNpb249MjAxOS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.2956.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3243/providers/Microsoft.Compute/galleries/galleryPsTestGallery4981/images/galleryPsTestGalleryImage2643\",\r\n \"name\": \"galleryPsTestGalleryImage2643\",\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Updated description.\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "600" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:23:53 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "e7ae4b87-6f22-41ad-ac23-e0c966ba9c3a" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "9a2420a0-ae1a-4b14-855b-ee44e7955560" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-correlation-request-id": [ - "1a4955d6-b87f-4d6a-ad4d-09e9560131c2" + "899e1302-3301-448a-b89b-9db3ffe86032" ], "x-ms-routing-request-id": [ - "WESTUS2:20190401T212139Z:1a4955d6-b87f-4d6a-ad4d-09e9560131c2" + "WESTUS2:20190718T212354Z:899e1302-3301-448a-b89b-9db3ffe86032" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 01 Apr 2019 21:21:39 GMT" + "Content-Length": [ + "601" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg843/providers/Microsoft.Compute/galleries/galleryPsTestGallery8792/images/galleryPsTestGalleryImage7485\",\r\n \"name\": \"galleryPsTestGalleryImage7485\",\r\n \"properties\": {\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Updated description.\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3243/providers/Microsoft.Compute/galleries/galleryPsTestGallery4981/images/galleryPsTestGalleryImage2643?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzMyNDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ5ODEvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UyNjQzP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg843/providers/Microsoft.Compute/galleries/galleryPsTestGallery8792/images/galleryPsTestGalleryImage7485?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODc5Mi9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTc0ODU/YXBpLXZlcnNpb249MjAxOS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bebe15d3-d362-4eb6-862a-c24de4516000" + "a6dd98f4-d13a-4993-864f-bb44f10e9dfd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.2956.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3243/providers/Microsoft.Compute/galleries/galleryPsTestGallery4981/images/galleryPsTestGalleryImage2643\",\r\n \"name\": \"galleryPsTestGalleryImage2643\",\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Updated description.\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "600" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:23:53 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "a2ef65e9-83ce-4ec1-a0d6-03d381133679" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "47dbdb87-5d3a-4ca9-9bf3-2f92f14a634e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], "x-ms-correlation-request-id": [ - "2f424db0-12ed-4a35-9524-35f24aa4ac16" + "9867d5e8-9a0e-4f20-bcbf-1f7229ff42f8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190401T212139Z:2f424db0-12ed-4a35-9524-35f24aa4ac16" + "WESTUS2:20190718T212354Z:9867d5e8-9a0e-4f20-bcbf-1f7229ff42f8" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 01 Apr 2019 21:21:39 GMT" + "Content-Length": [ + "601" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg843/providers/Microsoft.Compute/galleries/galleryPsTestGallery8792/images/galleryPsTestGalleryImage7485\",\r\n \"name\": \"galleryPsTestGalleryImage7485\",\r\n \"properties\": {\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Updated description.\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/84547f7b-25dc-4627-a874-8e9d8b8350a5?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvODQ1NDdmN2ItMjVkYy00NjI3LWE4NzQtOGU5ZDhiODM1MGE1P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/e60b5816-9242-494e-94c3-c7e98652c7a2?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvZTYwYjU4MTYtOTI0Mi00OTRlLTk0YzMtYzdlOTg2NTJjN2EyP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.2956.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-01T14:21:09.2299924-07:00\",\r\n \"endTime\": \"2019-04-01T14:21:09.2768965-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"84547f7b-25dc-4627-a874-8e9d8b8350a5\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "184" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:23:53 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "0b6ee328-5124-4774-bd73-8c5140c904d9" + "4e2841e6-6396-47ed-b177-38a433380186" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-correlation-request-id": [ - "e20cc537-3014-4d52-9cb6-b0636814ad62" + "dbcf3200-76aa-416e-9343-d70811685312" ], "x-ms-routing-request-id": [ - "WESTUS2:20190401T212139Z:e20cc537-3014-4d52-9cb6-b0636814ad62" + "WESTUS2:20190718T212353Z:dbcf3200-76aa-416e-9343-d70811685312" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 01 Apr 2019 21:21:38 GMT" + "Content-Length": [ + "183" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:23:23.434505-07:00\",\r\n \"endTime\": \"2019-07-18T14:23:23.4813794-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e60b5816-9242-494e-94c3-c7e98652c7a2\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3243/providers/Microsoft.Compute/galleries/galleryPsTestGallery4981/images?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzMyNDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ5ODEvaW1hZ2VzP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg843/providers/Microsoft.Compute/galleries/galleryPsTestGallery8792/images?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODc5Mi9pbWFnZXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2311cb94-dfd3-4c92-a87a-ceb465cc2525" + "f2769006-9105-4b1e-b57d-81df1712d822" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.2956.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3243/providers/Microsoft.Compute/galleries/galleryPsTestGallery4981/images/galleryPsTestGalleryImage2643\",\r\n \"name\": \"galleryPsTestGalleryImage2643\",\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Updated description.\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "693" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:23:54 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "65c9e073-4ac6-4c2f-aa48-a40aad4c9f69" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "eec9b47e-95ce-47e2-a898-2cd063e2f699" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], "x-ms-correlation-request-id": [ - "27faea55-554a-4a59-8e1d-0d36969b3412" + "b1dd727d-c154-4a92-ac5e-a3263d0a5ca4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190401T212140Z:27faea55-554a-4a59-8e1d-0d36969b3412" + "WESTUS2:20190718T212354Z:b1dd727d-c154-4a92-ac5e-a3263d0a5ca4" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 01 Apr 2019 21:21:39 GMT" + "Content-Length": [ + "694" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg843/providers/Microsoft.Compute/galleries/galleryPsTestGallery8792/images/galleryPsTestGalleryImage7485\",\r\n \"name\": \"galleryPsTestGalleryImage7485\",\r\n \"properties\": {\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Updated description.\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3243/providers/Microsoft.Compute/galleries/galleryPsTestGallery4981/images?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzMyNDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ5ODEvaW1hZ2VzP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg843/providers/Microsoft.Compute/galleries/galleryPsTestGallery8792/images?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODc5Mi9pbWFnZXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "767c8787-dcdd-4fdf-bc5b-358b14d152fd" + "82e73d7b-b6c2-4f3e-a5aa-b7e7366f1e9a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.2956.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Length": [ - "19" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:24:24 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "0e78883c-50c1-42e9-a0fc-3e98fedf40e5" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "b295bd9b-c35d-43c2-a354-12274e4c13f6" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], "x-ms-correlation-request-id": [ - "4fd3e887-6e3f-4dfb-b75b-7f1967e749a7" + "8d04c4cd-c2f4-4950-b8de-83b792a630b8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190401T212210Z:4fd3e887-6e3f-4dfb-b75b-7f1967e749a7" + "WESTUS2:20190718T212425Z:8d04c4cd-c2f4-4950-b8de-83b792a630b8" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 01 Apr 2019 21:22:10 GMT" + "Content-Length": [ + "19" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3243/providers/Microsoft.Compute/galleries/galleryPsTestGallery4981/images/galleryPsTestGalleryImage2643?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzMyNDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ5ODEvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UyNjQzP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg843/providers/Microsoft.Compute/galleries/galleryPsTestGallery8792/images/galleryPsTestGalleryImage7485?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODc5Mi9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTc0ODU/YXBpLXZlcnNpb249MjAxOS0wNy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "911a1311-f706-43cd-85fc-88d06886dce9" + "608bf4f0-ea28-4688-bb9e-6c4afd23c10b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.2956.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:23:54 GMT" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/123b20ee-a5ce-48a2-98c0-ab7051a758ec?monitor=true&api-version=2019-07-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/53c813fe-e1b3-43ea-b3d5-407bad4f3474?api-version=2019-03-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/123b20ee-a5ce-48a2-98c0-ab7051a758ec?api-version=2019-07-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "53c813fe-e1b3-43ea-b3d5-407bad4f3474" - ], - "Cache-Control": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/53c813fe-e1b3-43ea-b3d5-407bad4f3474?monitor=true&api-version=2019-03-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "123b20ee-a5ce-48a2-98c0-ab7051a758ec" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "6b3d20e0-711f-4cba-bd7c-9a3bb8b4f865" + "b1241f56-6d9c-424a-bd98-fd6d343e3836" ], "x-ms-routing-request-id": [ - "WESTUS2:20190401T212140Z:6b3d20e0-711f-4cba-bd7c-9a3bb8b4f865" + "WESTUS2:20190718T212354Z:b1241f56-6d9c-424a-bd98-fd6d343e3836" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 01 Apr 2019 21:21:40 GMT" + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/53c813fe-e1b3-43ea-b3d5-407bad4f3474?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvNTNjODEzZmUtZTFiMy00M2VhLWIzZDUtNDA3YmFkNGYzNDc0P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/123b20ee-a5ce-48a2-98c0-ab7051a758ec?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMTIzYjIwZWUtYTVjZS00OGEyLTk4YzAtYWI3MDUxYTc1OGVjP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.2956.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-01T14:21:40.5595002-07:00\",\r\n \"endTime\": \"2019-04-01T14:21:41.8563859-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"53c813fe-e1b3-43ea-b3d5-407bad4f3474\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "184" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:24:24 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "778ffa3d-a815-4d60-8337-96367e229e79" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "1ba8f1e4-14c3-4b7f-b3fd-942ff53ec2bd" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], "x-ms-correlation-request-id": [ - "8d491c34-ea49-4cbb-af82-3a43ece81582" + "b359aadc-0e57-4490-9dc2-bbf567a52f6b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190401T212210Z:8d491c34-ea49-4cbb-af82-3a43ece81582" + "WESTUS2:20190718T212425Z:b359aadc-0e57-4490-9dc2-bbf567a52f6b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 01 Apr 2019 21:22:09 GMT" + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:23:54.8563365-07:00\",\r\n \"endTime\": \"2019-07-18T14:23:54.9813684-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"123b20ee-a5ce-48a2-98c0-ab7051a758ec\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/53c813fe-e1b3-43ea-b3d5-407bad4f3474?monitor=true&api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvNTNjODEzZmUtZTFiMy00M2VhLWIzZDUtNDA3YmFkNGYzNDc0P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/123b20ee-a5ce-48a2-98c0-ab7051a758ec?monitor=true&api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMTIzYjIwZWUtYTVjZS00OGEyLTk4YzAtYWI3MDUxYTc1OGVjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE5LTA3LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.2956.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:24:24 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "2a588132-10f7-4c30-bee3-4aea9c78cdc6" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "8f3f1f3b-c5b4-48e8-a247-564bc6198a23" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], "x-ms-correlation-request-id": [ - "63a39972-fcd4-4776-97bf-400c6259a365" + "38cb0ce0-b1e9-4f58-ba21-437fe6d0be46" ], "x-ms-routing-request-id": [ - "WESTUS2:20190401T212210Z:63a39972-fcd4-4776-97bf-400c6259a365" + "WESTUS2:20190718T212425Z:38cb0ce0-b1e9-4f58-ba21-437fe6d0be46" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 01 Apr 2019 21:22:09 GMT" + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3243/providers/Microsoft.Compute/galleries/galleryPsTestGallery4981?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzMyNDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ5ODE/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg843/providers/Microsoft.Compute/galleries/galleryPsTestGallery8792?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODc5Mj9hcGktdmVyc2lvbj0yMDE5LTA3LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3041e13c-9530-4134-9f86-2844f35b3aa9" + "b0f3feee-5db1-4129-955b-e562c303ea91" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.2956.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:24:24 GMT" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/7acf5836-8d90-4546-a1ff-c35b03934927?monitor=true&api-version=2019-07-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/613fecfb-e04a-43f1-945b-cc1427ce72b6?api-version=2019-03-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/7acf5836-8d90-4546-a1ff-c35b03934927?api-version=2019-07-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "613fecfb-e04a-43f1-945b-cc1427ce72b6" - ], - "Cache-Control": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/613fecfb-e04a-43f1-945b-cc1427ce72b6?monitor=true&api-version=2019-03-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "7acf5836-8d90-4546-a1ff-c35b03934927" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "b84ad9e5-7f84-4901-8ab6-4b1086ca6b84" + "a8141385-fd47-4a35-a62c-9af462f09c0f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190401T212211Z:b84ad9e5-7f84-4901-8ab6-4b1086ca6b84" + "WESTUS2:20190718T212425Z:a8141385-fd47-4a35-a62c-9af462f09c0f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 01 Apr 2019 21:22:11 GMT" + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/613fecfb-e04a-43f1-945b-cc1427ce72b6?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvNjEzZmVjZmItZTA0YS00M2YxLTk0NWItY2MxNDI3Y2U3MmI2P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/7acf5836-8d90-4546-a1ff-c35b03934927?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvN2FjZjU4MzYtOGQ5MC00NTQ2LWExZmYtYzM1YjAzOTM0OTI3P2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.2956.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-01T14:22:11.2285225-07:00\",\r\n \"endTime\": \"2019-04-01T14:22:12.9160166-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"613fecfb-e04a-43f1-945b-cc1427ce72b6\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "184" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:24:55 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "32b54fc7-8bf9-4148-8551-82502f155789" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "c65a2d72-2d91-4535-b7ca-4657ce1d9187" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], "x-ms-correlation-request-id": [ - "55d48afc-54c6-499a-953f-3ce667eb0595" + "52250387-549c-489d-9957-3e4824cfff8f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190401T212242Z:55d48afc-54c6-499a-953f-3ce667eb0595" + "WESTUS2:20190718T212455Z:52250387-549c-489d-9957-3e4824cfff8f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 01 Apr 2019 21:22:41 GMT" + "Content-Length": [ + "183" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:24:25.543872-07:00\",\r\n \"endTime\": \"2019-07-18T14:24:25.6376132-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7acf5836-8d90-4546-a1ff-c35b03934927\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/613fecfb-e04a-43f1-945b-cc1427ce72b6?monitor=true&api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvNjEzZmVjZmItZTA0YS00M2YxLTk0NWItY2MxNDI3Y2U3MmI2P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/7acf5836-8d90-4546-a1ff-c35b03934927?monitor=true&api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvN2FjZjU4MzYtOGQ5MC00NTQ2LWExZmYtYzM1YjAzOTM0OTI3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE5LTA3LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.2956.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:24:55 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "a106c40c-170d-4bc5-8b28-ad1215f80cde" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "a8520fb3-dd3b-4e18-9082-6d097241d93c" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], "x-ms-correlation-request-id": [ - "b0223e59-0fd0-4f89-adf5-7dd25fe8bc60" + "c36ac17b-c0bf-4315-92f1-1a54fbbe5e0f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190401T212242Z:b0223e59-0fd0-4f89-adf5-7dd25fe8bc60" + "WESTUS2:20190718T212455Z:c36ac17b-c0bf-4315-92f1-1a54fbbe5e0f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 01 Apr 2019 21:22:42 GMT" + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 200 } ], "Names": { "GalleryImage_CRUD_Tests": [ - "galleryPsTestRg3243", - "galleryPsTestGallery4981", - "galleryPsTestGalleryImage2643" + "galleryPsTestRg843", + "galleryPsTestGallery8792", + "galleryPsTestGalleryImage7485" ] }, "Variables": { diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/Compute.Tests.GalleryTests/Gallery_CRUD_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/Compute.Tests.GalleryTests/Gallery_CRUD_Tests.json index de6fbc2ea7bea..f05d5d0affe44 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/Compute.Tests.GalleryTests/Gallery_CRUD_Tests.json +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/Compute.Tests.GalleryTests/Gallery_CRUD_Tests.json @@ -1,40 +1,36 @@ { "Entries": [ { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg4418?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ0MTg/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg3752?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM3NTI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus2euap\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "33" - ], "x-ms-client-request-id": [ - "4a59233c-c73d-4951-9fe7-422d0182b1a5" + "80862720-acbe-49c4-b559-f9aa9176faa9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4418\",\r\n \"name\": \"galleryPsTestRg4418\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "196" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "33" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 18 Jul 2019 21:18:14 GMT" ], "Pragma": [ "no-cache" @@ -43,13 +39,13 @@ "1199" ], "x-ms-request-id": [ - "c3f03cd2-752d-411b-bfc3-ccfe8a8df900" + "8e7fb51b-9e81-40e6-a247-c45938af15e0" ], "x-ms-correlation-request-id": [ - "c3f03cd2-752d-411b-bfc3-ccfe8a8df900" + "8e7fb51b-9e81-40e6-a247-c45938af15e0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190401T211554Z:c3f03cd2-752d-411b-bfc3-ccfe8a8df900" + "WESTUS2:20190718T211814Z:8e7fb51b-9e81-40e6-a247-c45938af15e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -57,519 +53,519 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" + "Content-Length": [ + "196" ], - "Date": [ - "Mon, 01 Apr 2019 21:15:54 GMT" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3752\",\r\n \"name\": \"galleryPsTestRg3752\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4418/providers/Microsoft.Compute/galleries/galleryPsTestGallery531?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ0MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUzMT9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3752/providers/Microsoft.Compute/galleries/galleryPsTestGallery9293?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM3NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTkyOTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\"\r\n },\r\n \"location\": \"eastus2euap\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "117" - ], "x-ms-client-request-id": [ - "82a70020-ae6b-48af-b835-744c951755d1" + "da6c962a-2a7b-4a03-b0d2-29398956dbff" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.2956.0" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4418/providers/Microsoft.Compute/galleries/galleryPsTestGallery531\",\r\n \"name\": \"galleryPsTestGallery531\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY531\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "509" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "117" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 18 Jul 2019 21:18:16 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/d33d1456-1193-4aef-aff1-89d5f291a98d?api-version=2019-03-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/68e3b4ee-6387-4609-a4ed-6f3aa7510ac1?api-version=2019-07-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "d33d1456-1193-4aef-aff1-89d5f291a98d" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "68e3b4ee-6387-4609-a4ed-6f3aa7510ac1" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "e78eabb3-2907-449f-9deb-f746e8c0b4a4" + "58695a3f-8096-4abe-a630-d1a5283a5d80" ], "x-ms-routing-request-id": [ - "WESTUS2:20190401T211557Z:e78eabb3-2907-449f-9deb-f746e8c0b4a4" + "WESTUS2:20190718T211816Z:58695a3f-8096-4abe-a630-d1a5283a5d80" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 01 Apr 2019 21:15:56 GMT" + "Content-Length": [ + "512" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3752/providers/Microsoft.Compute/galleries/galleryPsTestGallery9293\",\r\n \"name\": \"galleryPsTestGallery9293\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY9293\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4418/providers/Microsoft.Compute/galleries/galleryPsTestGallery531?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ0MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUzMT9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3752/providers/Microsoft.Compute/galleries/galleryPsTestGallery9293?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM3NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTkyOTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is an updated description\"\r\n },\r\n \"location\": \"eastus2euap\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "111" - ], "x-ms-client-request-id": [ - "03bd3c45-533c-4342-81fb-3a9306479093" + "38ca4091-4890-4989-a000-b946ed7953d4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.2956.0" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4418/providers/Microsoft.Compute/galleries/galleryPsTestGallery531\",\r\n \"name\": \"galleryPsTestGallery531\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY531\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "504" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "111" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 18 Jul 2019 21:18:46 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/1d4f1a06-765e-4c73-b917-c2b785b66c75?api-version=2019-03-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/6e9a699f-221c-43e3-9495-a214333cd662?api-version=2019-07-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "1d4f1a06-765e-4c73-b917-c2b785b66c75" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "6e9a699f-221c-43e3-9495-a214333cd662" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "6a42db8a-655a-48ca-8613-979fcbc2c709" + "363a8da0-e964-401d-974a-a602450ddeaf" ], "x-ms-routing-request-id": [ - "WESTUS2:20190401T211628Z:6a42db8a-655a-48ca-8613-979fcbc2c709" + "WESTUS2:20190718T211847Z:363a8da0-e964-401d-974a-a602450ddeaf" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 01 Apr 2019 21:16:27 GMT" + "Content-Length": [ + "507" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3752/providers/Microsoft.Compute/galleries/galleryPsTestGallery9293\",\r\n \"name\": \"galleryPsTestGallery9293\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY9293\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/d33d1456-1193-4aef-aff1-89d5f291a98d?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvZDMzZDE0NTYtMTE5My00YWVmLWFmZjEtODlkNWYyOTFhOThkP2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/68e3b4ee-6387-4609-a4ed-6f3aa7510ac1?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvNjhlM2I0ZWUtNjM4Ny00NjA5LWE0ZWQtNmYzYWE3NTEwYWMxP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.2956.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-01T14:15:56.709269-07:00\",\r\n \"endTime\": \"2019-04-01T14:15:58.1780052-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d33d1456-1193-4aef-aff1-89d5f291a98d\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "183" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:18:46 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "d9547a45-03a9-495c-8df2-1d0e9aa158fb" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "352fc0df-2d72-449f-af21-16e484430a2f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "ced37073-351a-48ac-b80c-871df203fc88" + "d8fdfc5b-59c8-47bc-b7d5-c2943d7a4fdf" ], "x-ms-routing-request-id": [ - "WESTUS2:20190401T211627Z:ced37073-351a-48ac-b80c-871df203fc88" + "WESTUS2:20190718T211847Z:d8fdfc5b-59c8-47bc-b7d5-c2943d7a4fdf" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 01 Apr 2019 21:16:26 GMT" + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:18:16.3460132-07:00\",\r\n \"endTime\": \"2019-07-18T14:18:16.8772759-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"68e3b4ee-6387-4609-a4ed-6f3aa7510ac1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4418/providers/Microsoft.Compute/galleries/galleryPsTestGallery531?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ0MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUzMT9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3752/providers/Microsoft.Compute/galleries/galleryPsTestGallery9293?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM3NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTkyOTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.2956.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4418/providers/Microsoft.Compute/galleries/galleryPsTestGallery531\",\r\n \"name\": \"galleryPsTestGallery531\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY531\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "510" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:18:46 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "42e94a93-32bd-4658-8550-43742a87f081" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "98e09c86-f056-4f37-9a90-a691c838d139" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "74b5203a-79fe-436f-8c79-b23a657e8518" + "42e60039-1e29-4fd4-a4e3-72cabe5636e9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190401T211627Z:74b5203a-79fe-436f-8c79-b23a657e8518" + "WESTUS2:20190718T211847Z:42e60039-1e29-4fd4-a4e3-72cabe5636e9" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 01 Apr 2019 21:16:26 GMT" + "Content-Length": [ + "513" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3752/providers/Microsoft.Compute/galleries/galleryPsTestGallery9293\",\r\n \"name\": \"galleryPsTestGallery9293\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY9293\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4418/providers/Microsoft.Compute/galleries/galleryPsTestGallery531?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ0MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUzMT9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3752/providers/Microsoft.Compute/galleries/galleryPsTestGallery9293?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM3NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTkyOTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "72b4129c-64e3-4ad7-b194-fd4cdbcf1e1b" + "dbd944b0-70e4-42ad-a434-c6617fd9f8ea" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.2956.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4418/providers/Microsoft.Compute/galleries/galleryPsTestGallery531\",\r\n \"name\": \"galleryPsTestGallery531\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY531\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "510" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:18:46 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "291f7b61-9b6e-466a-8688-bc547c49285f" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "53902db0-1199-49cd-94cb-f205ddc85cde" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "a14ce38c-e164-4bec-a8b1-19179e74222a" + "24d4301b-a8d0-4059-891b-775b79e74b2c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190401T211627Z:a14ce38c-e164-4bec-a8b1-19179e74222a" + "WESTUS2:20190718T211847Z:24d4301b-a8d0-4059-891b-775b79e74b2c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 01 Apr 2019 21:16:26 GMT" + "Content-Length": [ + "513" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3752/providers/Microsoft.Compute/galleries/galleryPsTestGallery9293\",\r\n \"name\": \"galleryPsTestGallery9293\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY9293\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4418/providers/Microsoft.Compute/galleries/galleryPsTestGallery531?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ0MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUzMT9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3752/providers/Microsoft.Compute/galleries/galleryPsTestGallery9293?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM3NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTkyOTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.2956.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4418/providers/Microsoft.Compute/galleries/galleryPsTestGallery531\",\r\n \"name\": \"galleryPsTestGallery531\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY531\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "504" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:18:46 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "604d8aa2-b832-48e6-b6b6-7b4c84809192" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "20477a02-b59b-4978-8851-3df816017f9b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "128465e1-96f2-45cd-8d77-e9409dd59827" + "d53c5bb1-8e66-4aca-8ae9-616f25bbad2f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190401T211628Z:128465e1-96f2-45cd-8d77-e9409dd59827" + "WESTUS2:20190718T211847Z:d53c5bb1-8e66-4aca-8ae9-616f25bbad2f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 01 Apr 2019 21:16:27 GMT" + "Content-Length": [ + "507" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3752/providers/Microsoft.Compute/galleries/galleryPsTestGallery9293\",\r\n \"name\": \"galleryPsTestGallery9293\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY9293\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4418/providers/Microsoft.Compute/galleries/galleryPsTestGallery531?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ0MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUzMT9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3752/providers/Microsoft.Compute/galleries/galleryPsTestGallery9293?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM3NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTkyOTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2260ab6e-329a-4502-b209-ed0562317b79" + "55f04371-e8c2-4254-a87d-6961143e0ae2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.2956.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4418/providers/Microsoft.Compute/galleries/galleryPsTestGallery531\",\r\n \"name\": \"galleryPsTestGallery531\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY531\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "504" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:18:46 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "9a76fdd9-4751-4e51-bfe0-e28ff29062ff" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "0231cc3e-a09b-4fe5-afac-2ab2dab03875" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "4f53910e-412e-4ad6-9845-8e88e2fcfeee" + "26e582c9-fdc3-4942-8c27-54e15d6432b3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190401T211628Z:4f53910e-412e-4ad6-9845-8e88e2fcfeee" + "WESTUS2:20190718T211847Z:26e582c9-fdc3-4942-8c27-54e15d6432b3" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 01 Apr 2019 21:16:27 GMT" + "Content-Length": [ + "507" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3752/providers/Microsoft.Compute/galleries/galleryPsTestGallery9293\",\r\n \"name\": \"galleryPsTestGallery9293\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY9293\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg4418New?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ0MThOZXc/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg3752New?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM3NTJOZXc/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus2euap\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "33" - ], "x-ms-client-request-id": [ - "116374d5-fee9-44cd-acd6-5067b04e57c3" + "22b9171a-3204-4c79-af48-0ccb8ac3fdc5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4418New\",\r\n \"name\": \"galleryPsTestRg4418New\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "202" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "33" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 18 Jul 2019 21:18:47 GMT" ], "Pragma": [ "no-cache" @@ -578,13 +574,13 @@ "1198" ], "x-ms-request-id": [ - "5565ebc2-27ec-4825-8ff0-c4a18e6a22dd" + "85c937fb-f837-4052-a339-ca39c5564ca2" ], "x-ms-correlation-request-id": [ - "5565ebc2-27ec-4825-8ff0-c4a18e6a22dd" + "85c937fb-f837-4052-a339-ca39c5564ca2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190401T211628Z:5565ebc2-27ec-4825-8ff0-c4a18e6a22dd" + "WESTUS2:20190718T211848Z:85c937fb-f837-4052-a339-ca39c5564ca2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -592,309 +588,309 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" + "Content-Length": [ + "202" ], - "Date": [ - "Mon, 01 Apr 2019 21:16:27 GMT" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3752New\",\r\n \"name\": \"galleryPsTestRg3752New\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4418New/providers/Microsoft.Compute/galleries/galleryPsTestGallery531New?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ0MThOZXcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUzMU5ldz9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3752New/providers/Microsoft.Compute/galleries/galleryPsTestGallery9293New?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM3NTJOZXcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTkyOTNOZXc/YXBpLXZlcnNpb249MjAxOS0wNy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is an updated description\"\r\n },\r\n \"location\": \"eastus2euap\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "111" - ], "x-ms-client-request-id": [ - "61d3efe3-5d2c-4c94-8ec4-cfd41bd893ec" + "ae830b4b-3734-4957-9bbc-a6d50d599e96" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.2956.0" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4418New/providers/Microsoft.Compute/galleries/galleryPsTestGallery531New\",\r\n \"name\": \"galleryPsTestGallery531New\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY531NEW\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "515" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "111" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 18 Jul 2019 21:18:49 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/0653e62a-eb7c-42b5-85d9-a809db06ee77?api-version=2019-03-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/4476b6a7-0911-4da8-b90b-9b41767bf2b5?api-version=2019-07-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "0653e62a-eb7c-42b5-85d9-a809db06ee77" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "4476b6a7-0911-4da8-b90b-9b41767bf2b5" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "476ca431-c0e5-403d-a749-8f5470225d97" + "acb7b1d4-37ce-4b11-83ca-b8c68cf45841" ], "x-ms-routing-request-id": [ - "WESTUS2:20190401T211629Z:476ca431-c0e5-403d-a749-8f5470225d97" + "WESTUS2:20190718T211850Z:acb7b1d4-37ce-4b11-83ca-b8c68cf45841" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 01 Apr 2019 21:16:29 GMT" + "Content-Length": [ + "518" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3752New/providers/Microsoft.Compute/galleries/galleryPsTestGallery9293New\",\r\n \"name\": \"galleryPsTestGallery9293New\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY9293NEW\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/0653e62a-eb7c-42b5-85d9-a809db06ee77?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvMDY1M2U2MmEtZWI3Yy00MmI1LTg1ZDktYTgwOWRiMDZlZTc3P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/4476b6a7-0911-4da8-b90b-9b41767bf2b5?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvNDQ3NmI2YTctMDkxMS00ZGE4LWI5MGItOWI0MTc2N2JmMmI1P2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.2956.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-01T14:16:29.6476069-07:00\",\r\n \"endTime\": \"2019-04-01T14:16:30.8507169-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0653e62a-eb7c-42b5-85d9-a809db06ee77\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "184" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:19:20 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "f6e2ba07-a174-45a3-8caa-36aa5d84f77f" + "bb5e4fff-40b1-4915-83cd-ff8b732bb912" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-correlation-request-id": [ - "66e00d4d-75ba-49c5-a8e7-8fea4fff99dd" + "99a3765d-f785-4fe4-8b56-a39d797e9522" ], "x-ms-routing-request-id": [ - "WESTUS2:20190401T211700Z:66e00d4d-75ba-49c5-a8e7-8fea4fff99dd" + "WESTUS2:20190718T211920Z:99a3765d-f785-4fe4-8b56-a39d797e9522" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 01 Apr 2019 21:16:59 GMT" + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:18:50.2523021-07:00\",\r\n \"endTime\": \"2019-07-18T14:18:50.3616613-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4476b6a7-0911-4da8-b90b-9b41767bf2b5\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4418New/providers/Microsoft.Compute/galleries/galleryPsTestGallery531New?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ0MThOZXcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUzMU5ldz9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3752New/providers/Microsoft.Compute/galleries/galleryPsTestGallery9293New?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM3NTJOZXcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTkyOTNOZXc/YXBpLXZlcnNpb249MjAxOS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.2956.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4418New/providers/Microsoft.Compute/galleries/galleryPsTestGallery531New\",\r\n \"name\": \"galleryPsTestGallery531New\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY531NEW\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "516" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:19:20 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "2dd69836-5381-4e5d-ac03-2b79cb61b340" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "1fecaed7-2438-4fa6-8fcd-f4397c6013f0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-correlation-request-id": [ - "6d7149a4-afb6-4c73-94bc-f3689c1bb504" + "f519135d-785a-4143-b7db-cda56c81ca8f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190401T211700Z:6d7149a4-afb6-4c73-94bc-f3689c1bb504" + "WESTUS2:20190718T211920Z:f519135d-785a-4143-b7db-cda56c81ca8f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 01 Apr 2019 21:16:59 GMT" + "Content-Length": [ + "519" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3752New/providers/Microsoft.Compute/galleries/galleryPsTestGallery9293New\",\r\n \"name\": \"galleryPsTestGallery9293New\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY9293NEW\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4418/providers/Microsoft.Compute/galleries?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ0MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcz9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3752/providers/Microsoft.Compute/galleries?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM3NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcz9hcGktdmVyc2lvbj0yMDE5LTA3LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "674ab5bf-9cf9-4732-bf10-686e6026acb5" + "7ce5db0f-20ab-417f-b567-b1f01632278d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.2956.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG4418/providers/Microsoft.Compute/galleries/galleryPsTestGallery531\",\r\n \"name\": \"galleryPsTestGallery531\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY531\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "581" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:19:21 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "702ac45c-8b28-462d-a4c2-a6a2903c2160" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "4a1282ec-297d-46d2-a5d2-312306836c4a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], "x-ms-correlation-request-id": [ - "5098f7e0-6ce1-431b-a540-98dd21e769e1" + "f6c82bb0-cfd3-441d-a97e-89983224b306" ], "x-ms-routing-request-id": [ - "WESTUS2:20190401T211700Z:5098f7e0-6ce1-431b-a540-98dd21e769e1" + "WESTUS2:20190718T211921Z:f6c82bb0-cfd3-441d-a97e-89983224b306" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 01 Apr 2019 21:17:00 GMT" + "Content-Length": [ + "584" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG3752/providers/Microsoft.Compute/galleries/galleryPsTestGallery9293\",\r\n \"name\": \"galleryPsTestGallery9293\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY9293\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4418/providers/Microsoft.Compute/galleries?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ0MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcz9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3752/providers/Microsoft.Compute/galleries?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM3NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcz9hcGktdmVyc2lvbj0yMDE5LTA3LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d38db4b-1963-49ef-badd-d3b8942f4af6" + "f3cba839-2188-4c90-8003-c2fb25d8a39f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.2956.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:20:23 GMT" ], "Pragma": [ "no-cache" @@ -903,13 +899,13 @@ "11986" ], "x-ms-request-id": [ - "a56ebb34-7f62-4e00-b7a4-d41b0dfb62c6" + "a22f91f0-6725-4caf-8f82-a5cda6b770ea" ], "x-ms-correlation-request-id": [ - "a56ebb34-7f62-4e00-b7a4-d41b0dfb62c6" + "a22f91f0-6725-4caf-8f82-a5cda6b770ea" ], "x-ms-routing-request-id": [ - "WESTUS2:20190401T211804Z:a56ebb34-7f62-4e00-b7a4-d41b0dfb62c6" + "WESTUS2:20190718T212023Z:a22f91f0-6725-4caf-8f82-a5cda6b770ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -917,65 +913,65 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" + "Content-Length": [ + "12" ], - "Date": [ - "Mon, 01 Apr 2019 21:18:04 GMT" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/galleries?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9nYWxsZXJpZXM/YXBpLXZlcnNpb249MjAxOS0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/galleries?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9nYWxsZXJpZXM/YXBpLXZlcnNpb249MjAxOS0wNy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1b63bd5-42cf-411e-b62b-ffb1660ca80f" + "d05bd52c-c87f-4654-958f-e215034792cf" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.2956.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/BUGBASHRG/providers/Microsoft.Compute/galleries/bugbashgal\",\r\n \"name\": \"bugbashgal\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-BUGBASHGAL\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYWCUS/providers/Microsoft.Compute/galleries/longlivedgalwcus\",\r\n \"name\": \"longlivedgalwcus\",\r\n \"properties\": {\r\n \"description\": \"gallery used for e2e testing\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEDGALWCUS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/SIG1/providers/Microsoft.Compute/galleries/gal1-with-dash\",\r\n \"name\": \"gal1-with-dash\",\r\n \"properties\": {\r\n \"description\": \"Shared Image Gallery for my ORG\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GAL1-WITH-DASH\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRG/providers/Microsoft.Compute/galleries/galleryForCirrus\",\r\n \"name\": \"galleryForCirrus\",\r\n \"properties\": {\r\n \"description\": \"gallery created for cirrus scaling test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYFORCIRRUS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRG/providers/Microsoft.Compute/galleries/xwLongLivedGallerywestcentralus\",\r\n \"name\": \"xwLongLivedGallerywestcentralus\",\r\n \"properties\": {\r\n \"description\": \"long lived gallery created in using powershell in westcentralus\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWLONGLIVEDGALLERYWESTCENTRALUS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGallery0726westcentralus\",\r\n \"name\": \"xwGallery0726westcentralus\",\r\n \"properties\": {\r\n \"description\": \"input gallery created in ps.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERY0726WESTCENTRALUS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGallery1207\",\r\n \"name\": \"xwGallery1207\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERY1207\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGalleryForCirrus\",\r\n \"name\": \"xwGalleryForCirrus\",\r\n \"properties\": {\r\n \"description\": \"gallery created for cirrus\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERYFORCIRRUS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGallery0921SouthCentralUs\",\r\n \"name\": \"xwGallery0921SouthCentralUs\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERY0921SOUTHCENTRALUS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastasia\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-636896779482712025-90657631F9394A00825B4332CFF4F5F7/providers/Microsoft.Compute/galleries/eyuasqfs\",\r\n \"name\": \"eyuasqfs\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-EYUASQFS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG3906/providers/Microsoft.Compute/galleries/galleryPsTestGallery2975\",\r\n \"name\": \"galleryPsTestGallery2975\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY2975\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG4418/providers/Microsoft.Compute/galleries/galleryPsTestGallery531\",\r\n \"name\": \"galleryPsTestGallery531\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY531\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG4418NEW/providers/Microsoft.Compute/galleries/galleryPsTestGallery531New\",\r\n \"name\": \"galleryPsTestGallery531New\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY531NEW\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG9881/providers/Microsoft.Compute/galleries/galleryPsTestGallery8333\",\r\n \"name\": \"galleryPsTestGallery8333\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8333\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERY/providers/Microsoft.Compute/galleries/longlivedgal\",\r\n \"name\": \"longlivedgal\",\r\n \"properties\": {\r\n \"description\": \"gallery used for e2e testing\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEDGAL\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/RGEUAP/providers/Microsoft.Compute/galleries/gallery1euap\",\r\n \"name\": \"gallery1euap\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERY1EUAP\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XW32PSRESOURCEGROUP7047/providers/Microsoft.Compute/galleries/xw32PSgallery8869\",\r\n \"name\": \"xw32PSgallery8869\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XW32PSGALLERY8869\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xw32Gallery20181105\",\r\n \"name\": \"xw32Gallery20181105\",\r\n \"properties\": {\r\n \"description\": \"My Private Gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XW32GALLERY20181105\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xw32Gallery20181212\",\r\n \"name\": \"xw32Gallery20181212\",\r\n \"properties\": {\r\n \"description\": \"xw Private Gallery updated\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XW32GALLERY20181212\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xw32test_gallery\",\r\n \"name\": \"xw32test_gallery\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XW32TEST_GALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGallery0725\",\r\n \"name\": \"xwGallery0725\",\r\n \"properties\": {\r\n \"description\": \"input gallery created in ps.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERY0725\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGallery20181213\",\r\n \"name\": \"xwGallery20181213\",\r\n \"properties\": {\r\n \"description\": \"updated\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERY20181213\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGalleryTest\",\r\n \"name\": \"xwGalleryTest\",\r\n \"properties\": {\r\n \"description\": \"input gallery created in ps.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERYTEST\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGalleryTest20180821\",\r\n \"name\": \"xwGalleryTest20180821\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERYTEST20180821\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGalleryTest20180927\",\r\n \"name\": \"xwGalleryTest20180927\",\r\n \"properties\": {\r\n \"description\": \"gallery created in using powershell for testing on 20180927 in eastus2euap.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERYTEST20180927\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGalleryTest20181007\",\r\n \"name\": \"xwGalleryTest20181007\",\r\n \"properties\": {\r\n \"description\": \"gallery created in using powershell for testing on 20181007 in eastus2euap.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERYTEST20181007\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGalleryTest20181009\",\r\n \"name\": \"xwGalleryTest20181009\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERYTEST20181009\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGalleryTest20181026\",\r\n \"name\": \"xwGalleryTest20181026\",\r\n \"properties\": {\r\n \"description\": \"gallery created in using powershell for testing on 20181026 in eastus2euap.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERYTEST20181026\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWTESTRG2/providers/Microsoft.Compute/galleries/xwTestGallery2\",\r\n \"name\": \"xwTestGallery2\",\r\n \"properties\": {\r\n \"description\": \"This is the second gallery created in another RG.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWTESTGALLERY2\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "12070" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:19:21 GMT" ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "eca43ba0-3ea3-4249-9201-f289b02a4e68", - "6f4abb9a-f974-46e9-b4f2-d592c3c5d5ef", - "b98d04ab-8f17-42f9-821f-e0d32be15437", - "ba9a380a-6c78-4b6d-8b44-7ae2087cf2a6" + "43c608c6-7e8f-42e8-8279-bd9542dbc53b", + "505a4dad-36cb-4a57-8775-792766f926ac", + "1e4d955c-4ca4-4cae-80d0-b1fd3eed74e9", + "134edac9-bbfc-4375-be51-93badd987130" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], "x-ms-request-id": [ - "b869de99-1f1e-4501-a013-c48aa6733df3" + "aba30180-118b-46f1-8876-9062efe6981a" ], "x-ms-correlation-request-id": [ - "b869de99-1f1e-4501-a013-c48aa6733df3" + "aba30180-118b-46f1-8876-9062efe6981a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190401T211701Z:b869de99-1f1e-4501-a013-c48aa6733df3" + "WESTUS2:20190718T211922Z:aba30180-118b-46f1-8876-9062efe6981a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -983,398 +979,402 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" + "Content-Length": [ + "13291" ], - "Date": [ - "Mon, 01 Apr 2019 21:17:00 GMT" + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/BUGBASHRG/providers/Microsoft.Compute/galleries/bugbashgal\",\r\n \"name\": \"bugbashgal\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-BUGBASHGAL\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/BUGBASHRG/providers/Microsoft.Compute/galleries/defaultGalleryk4zq6r6ehqy2i\",\r\n \"name\": \"defaultGalleryk4zq6r6ehqy2i\",\r\n \"properties\": {\r\n \"description\": \"My Private Gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-DEFAULTGALLERYK4ZQ6R6EHQY2I\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPTUREDIRECTLYTOSIG/providers/Microsoft.Compute/galleries/defaultGalleryudwt6h4se6x6c\",\r\n \"name\": \"defaultGalleryudwt6h4se6x6c\",\r\n \"properties\": {\r\n \"description\": \"My Private Gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-DEFAULTGALLERYUDWT6H4SE6X6C\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYWCUS/providers/Microsoft.Compute/galleries/longlivedgalwcus\",\r\n \"name\": \"longlivedgalwcus\",\r\n \"properties\": {\r\n \"description\": \"gallery used for e2e testing\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEDGALWCUS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/SIG1/providers/Microsoft.Compute/galleries/gal1-with-dash\",\r\n \"name\": \"gal1-with-dash\",\r\n \"properties\": {\r\n \"description\": \"Shared Image Gallery for my ORG\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GAL1-WITH-DASH\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRG/providers/Microsoft.Compute/galleries/galleryForCirrus\",\r\n \"name\": \"galleryForCirrus\",\r\n \"properties\": {\r\n \"description\": \"gallery created for cirrus scaling test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYFORCIRRUS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRG/providers/Microsoft.Compute/galleries/xwLongLivedGallerywestcentralus\",\r\n \"name\": \"xwLongLivedGallerywestcentralus\",\r\n \"properties\": {\r\n \"description\": \"long lived gallery created in using powershell in westcentralus\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWLONGLIVEDGALLERYWESTCENTRALUS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGallery0726westcentralus\",\r\n \"name\": \"xwGallery0726westcentralus\",\r\n \"properties\": {\r\n \"description\": \"input gallery created in ps.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERY0726WESTCENTRALUS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGallery1207\",\r\n \"name\": \"xwGallery1207\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERY1207\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGalleryForCirrus\",\r\n \"name\": \"xwGalleryForCirrus\",\r\n \"properties\": {\r\n \"description\": \"gallery created for cirrus\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERYFORCIRRUS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGallery0921SouthCentralUs\",\r\n \"name\": \"xwGallery0921SouthCentralUs\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERY0921SOUTHCENTRALUS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus2\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYAZURESUPPORTRG/providers/Microsoft.Compute/galleries/longlivedgallery\",\r\n \"name\": \"longlivedgallery\",\r\n \"properties\": {\r\n \"description\": \"My Private Gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEDGALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG3752/providers/Microsoft.Compute/galleries/galleryPsTestGallery9293\",\r\n \"name\": \"galleryPsTestGallery9293\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY9293\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG3752NEW/providers/Microsoft.Compute/galleries/galleryPsTestGallery9293New\",\r\n \"name\": \"galleryPsTestGallery9293New\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY9293NEW\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG3906/providers/Microsoft.Compute/galleries/galleryPsTestGallery2975\",\r\n \"name\": \"galleryPsTestGallery2975\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY2975\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG9881/providers/Microsoft.Compute/galleries/galleryPsTestGallery8333\",\r\n \"name\": \"galleryPsTestGallery8333\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8333\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERY/providers/Microsoft.Compute/galleries/longlivedgal\",\r\n \"name\": \"longlivedgal\",\r\n \"properties\": {\r\n \"description\": \"gallery used for e2e testing\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEDGAL\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERY/providers/Microsoft.Compute/galleries/mygalleryForCrpEastus2euap\",\r\n \"name\": \"mygalleryForCrpEastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-MYGALLERYFORCRPEASTUS2EUAP\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/RGEUAP/providers/Microsoft.Compute/galleries/gallery1euap\",\r\n \"name\": \"gallery1euap\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERY1EUAP\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/VZDUADOJ\",\r\n \"name\": \"VZDUADOJ\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-VZDUADOJ\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xw32Gallery20181105\",\r\n \"name\": \"xw32Gallery20181105\",\r\n \"properties\": {\r\n \"description\": \"My Private Gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XW32GALLERY20181105\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xw32Gallery20181212\",\r\n \"name\": \"xw32Gallery20181212\",\r\n \"properties\": {\r\n \"description\": \"xw Private Gallery updated\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XW32GALLERY20181212\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xw32test_gallery\",\r\n \"name\": \"xw32test_gallery\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XW32TEST_GALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGallery0725\",\r\n \"name\": \"xwGallery0725\",\r\n \"properties\": {\r\n \"description\": \"input gallery created in ps.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERY0725\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGallery20181213\",\r\n \"name\": \"xwGallery20181213\",\r\n \"properties\": {\r\n \"description\": \"updated\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERY20181213\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGalleryTest\",\r\n \"name\": \"xwGalleryTest\",\r\n \"properties\": {\r\n \"description\": \"input gallery created in ps.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERYTEST\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGalleryTest20180821\",\r\n \"name\": \"xwGalleryTest20180821\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERYTEST20180821\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGalleryTest20180927\",\r\n \"name\": \"xwGalleryTest20180927\",\r\n \"properties\": {\r\n \"description\": \"gallery created in using powershell for testing on 20180927 in eastus2euap.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERYTEST20180927\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGalleryTest20181007\",\r\n \"name\": \"xwGalleryTest20181007\",\r\n \"properties\": {\r\n \"description\": \"gallery created in using powershell for testing on 20181007 in eastus2euap.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERYTEST20181007\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGalleryTest20181009\",\r\n \"name\": \"xwGalleryTest20181009\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERYTEST20181009\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGalleryTest20181026\",\r\n \"name\": \"xwGalleryTest20181026\",\r\n \"properties\": {\r\n \"description\": \"gallery created in using powershell for testing on 20181026 in eastus2euap.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERYTEST20181026\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWTESTRG2/providers/Microsoft.Compute/galleries/xwTestGallery2\",\r\n \"name\": \"xwTestGallery2\",\r\n \"properties\": {\r\n \"description\": \"This is the second gallery created in another RG.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWTESTGALLERY2\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4418/providers/Microsoft.Compute/galleries/galleryPsTestGallery531?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ0MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUzMT9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3752/providers/Microsoft.Compute/galleries/galleryPsTestGallery9293?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM3NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTkyOTM/YXBpLXZlcnNpb249MjAxOS0wNy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "282414bb-f7be-4a8a-86ef-9b9fd4507b8a" + "8fbb70e8-1546-4979-9f47-76db8ba49fde" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.2956.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:19:22 GMT" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/d928554e-9b88-41a9-914c-d26ccc49a3d7?monitor=true&api-version=2019-07-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/bfb96fa2-da25-47a2-9357-51f0070c32d5?api-version=2019-03-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/d928554e-9b88-41a9-914c-d26ccc49a3d7?api-version=2019-07-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "bfb96fa2-da25-47a2-9357-51f0070c32d5" - ], - "Cache-Control": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/bfb96fa2-da25-47a2-9357-51f0070c32d5?monitor=true&api-version=2019-03-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "d928554e-9b88-41a9-914c-d26ccc49a3d7" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "7ea826ae-4ab7-4762-9a56-badecd0320de" + "3a104d7d-c58a-4aa8-808a-a21733b91a04" ], "x-ms-routing-request-id": [ - "WESTUS2:20190401T211702Z:7ea826ae-4ab7-4762-9a56-badecd0320de" + "WESTUS2:20190718T211922Z:3a104d7d-c58a-4aa8-808a-a21733b91a04" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 01 Apr 2019 21:17:02 GMT" + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/bfb96fa2-da25-47a2-9357-51f0070c32d5?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvYmZiOTZmYTItZGEyNS00N2EyLTkzNTctNTFmMDA3MGMzMmQ1P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/d928554e-9b88-41a9-914c-d26ccc49a3d7?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvZDkyODU1NGUtOWI4OC00MWE5LTkxNGMtZDI2Y2NjNDlhM2Q3P2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.2956.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-01T14:17:01.5389939-07:00\",\r\n \"endTime\": \"2019-04-01T14:17:04.007763-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"bfb96fa2-da25-47a2-9357-51f0070c32d5\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "183" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:19:51 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "780c1df7-30f4-43fe-9307-83d7d790b28d" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "6e45c410-2bae-4d63-b037-c1aa45a0592b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], "x-ms-correlation-request-id": [ - "9d95139a-82dd-44bd-9be3-43f9735d49eb" + "c59c48a4-bef1-498e-b860-2798095a01db" ], "x-ms-routing-request-id": [ - "WESTUS2:20190401T211732Z:9d95139a-82dd-44bd-9be3-43f9735d49eb" + "WESTUS2:20190718T211952Z:c59c48a4-bef1-498e-b860-2798095a01db" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 01 Apr 2019 21:17:32 GMT" + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:19:22.2554657-07:00\",\r\n \"endTime\": \"2019-07-18T14:19:22.8336114-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d928554e-9b88-41a9-914c-d26ccc49a3d7\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/bfb96fa2-da25-47a2-9357-51f0070c32d5?monitor=true&api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvYmZiOTZmYTItZGEyNS00N2EyLTkzNTctNTFmMDA3MGMzMmQ1P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/d928554e-9b88-41a9-914c-d26ccc49a3d7?monitor=true&api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvZDkyODU1NGUtOWI4OC00MWE5LTkxNGMtZDI2Y2NjNDlhM2Q3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE5LTA3LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.2956.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:19:52 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "859732a3-ecdc-4be1-b585-eb401c55f2ef" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "7f5562ad-13cf-49ee-8cc0-95a974ba0b42" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], "x-ms-correlation-request-id": [ - "ff4332c6-be3d-4321-ad03-c6128c9948a6" + "f5b6dd3a-ea2a-41ae-917e-d4a0f0ef416e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190401T211733Z:ff4332c6-be3d-4321-ad03-c6128c9948a6" + "WESTUS2:20190718T211952Z:f5b6dd3a-ea2a-41ae-917e-d4a0f0ef416e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 01 Apr 2019 21:17:32 GMT" + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg4418New/providers/Microsoft.Compute/galleries/galleryPsTestGallery531New?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ0MThOZXcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUzMU5ldz9hcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3752New/providers/Microsoft.Compute/galleries/galleryPsTestGallery9293New?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM3NTJOZXcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTkyOTNOZXc/YXBpLXZlcnNpb249MjAxOS0wNy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f622811-fe83-4f6f-a574-84de1dac34ab" + "45c6069f-6503-45a2-a275-b7767a907ff7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.2956.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:19:52 GMT" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/9687cd65-b77e-4328-a862-bf0d96332d43?monitor=true&api-version=2019-07-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/ad1e459a-98d6-4c1c-9423-3dfc4d4ac9c5?api-version=2019-03-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/9687cd65-b77e-4328-a862-bf0d96332d43?api-version=2019-07-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "ad1e459a-98d6-4c1c-9423-3dfc4d4ac9c5" - ], - "Cache-Control": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/ad1e459a-98d6-4c1c-9423-3dfc4d4ac9c5?monitor=true&api-version=2019-03-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "9687cd65-b77e-4328-a862-bf0d96332d43" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "9d6b3fe1-72db-42c5-a771-8ffe3d2d13ae" + "a25f044d-4fdf-460b-9ef9-6d3edcedfe67" ], "x-ms-routing-request-id": [ - "WESTUS2:20190401T211734Z:9d6b3fe1-72db-42c5-a771-8ffe3d2d13ae" + "WESTUS2:20190718T211953Z:a25f044d-4fdf-460b-9ef9-6d3edcedfe67" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 01 Apr 2019 21:17:33 GMT" + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/ad1e459a-98d6-4c1c-9423-3dfc4d4ac9c5?api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvYWQxZTQ1OWEtOThkNi00YzFjLTk0MjMtM2RmYzRkNGFjOWM1P2FwaS12ZXJzaW9uPTIwMTktMDMtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/9687cd65-b77e-4328-a862-bf0d96332d43?api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvOTY4N2NkNjUtYjc3ZS00MzI4LWE4NjItYmYwZDk2MzMyZDQzP2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.2956.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2019-04-01T14:17:33.2736121-07:00\",\r\n \"endTime\": \"2019-04-01T14:17:34.945528-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ad1e459a-98d6-4c1c-9423-3dfc4d4ac9c5\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "183" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:20:23 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "23425655-3410-4e15-886e-223745a0fa33" + "e5c584d6-3bc1-4864-ac80-176db69a7738" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-correlation-request-id": [ - "addae2f0-1431-4eb0-95ed-6031ad57ed52" + "51196671-b829-4ade-96e9-8afbfafe450e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190401T211804Z:addae2f0-1431-4eb0-95ed-6031ad57ed52" + "WESTUS2:20190718T212023Z:51196671-b829-4ade-96e9-8afbfafe450e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 01 Apr 2019 21:18:04 GMT" + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"startTime\": \"2019-07-18T14:19:53.1929349-07:00\",\r\n \"endTime\": \"2019-07-18T14:19:53.2867026-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9687cd65-b77e-4328-a862-bf0d96332d43\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/ad1e459a-98d6-4c1c-9423-3dfc4d4ac9c5?monitor=true&api-version=2019-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvYWQxZTQ1OWEtOThkNi00YzFjLTk0MjMtM2RmYzRkNGFjOWM1P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE5LTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/EastUS2EUAP/capsOperations/9687cd65-b77e-4328-a862-bf0d96332d43?monitor=true&api-version=2019-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvRWFzdFVTMkVVQVAvY2Fwc09wZXJhdGlvbnMvOTY4N2NkNjUtYjc3ZS00MzI4LWE4NjItYmYwZDk2MzMyZDQzP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE5LTA3LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.3324.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.2956.0" + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/27.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache" ], - "Expires": [ - "-1" + "Date": [ + "Thu, 18 Jul 2019 21:20:23 GMT" ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_131965613818665073" + "a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149,a9dc78ba-b8ad-41a4-8d4b-0fc1fc69dfa2_132071933293252149" ], "x-ms-request-id": [ - "e76abe56-09c9-4431-b77a-ee5234c36cdf" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "3610432d-4f56-4cb2-b25b-7ce1f9957746" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], "x-ms-correlation-request-id": [ - "fdf075b5-acb1-4506-bfbd-389ea4410176" + "bfe87245-a6dc-42ce-aa07-24724f4fbf2f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190401T211804Z:fdf075b5-acb1-4506-bfbd-389ea4410176" + "WESTUS2:20190718T212023Z:bfe87245-a6dc-42ce-aa07-24724f4fbf2f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 01 Apr 2019 21:18:04 GMT" + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "", "StatusCode": 200 } ], "Names": { "Gallery_CRUD_Tests": [ - "galleryPsTestRg4418", - "galleryPsTestGallery531" + "galleryPsTestRg3752", + "galleryPsTestGallery9293" ] }, "Variables": {