From 6385c725c1fe16dadba8b902dc80957c3ad90928 Mon Sep 17 00:00:00 2001 From: Theodore Chang Date: Thu, 9 Jun 2022 21:45:24 -0500 Subject: [PATCH] Compute Gallery RP new API version 2022-01-03 (#27481) * set up feature branch * set up feature branch * new recordings * Gallery 01 03 SDK (#27466) * save * save * update * update * save * save * sanitization * add eula/privacy statement to gallery SDK release (#28238) * save * update * update * update test * SDK changes for new properties "settings" and "advancedSettings" to gallery application version (#28250) * Generated SDK using 0c46c6ca375c5b61de701f790db5673d76ceb8b6 * Updated test and recording * removed SAS tokens from recorded test * generated SDK with updated comments from API PR * removed "sig=" tokens from recorded test * added customization and sanitized keys in recorded tests * Restored older customization * fixed customization * Made enableHealthCheck optional parameter because it appears after settings and advancedSettings, as the WIKI states. * Update AssemblyInfo.cs .Net version update * Update Microsoft.Azure.Management.Compute.csproj * save (#29131) test rerecord that was needed * Update compute_resource-manager.txt * Update AzSdk.RP.props Co-authored-by: Adam Sandor Co-authored-by: kangsun-ctrl <69279251+kangsun-ctrl@users.noreply.github.com> Co-authored-by: Bhaskar Brahma --- .../mgmtmetadata/compute_resource-manager.txt | 2 +- .../AzSdk.RP.props | 4 +- ...leryApplicationVersionPublishingProfile.cs | 9 + .../Generated/CommunityGalleriesOperations.cs | 2 +- ...CommunityGalleryImageVersionsOperations.cs | 378 ++- ...alleryImageVersionsOperationsExtensions.cs | 80 + .../CommunityGalleryImagesOperations.cs | 369 ++- ...munityGalleryImagesOperationsExtensions.cs | 74 + .../src/Generated/GalleriesOperations.cs | 12 +- .../GalleryApplicationVersionsOperations.cs | 10 +- .../GalleryApplicationsOperations.cs | 10 +- .../GalleryImageVersionsOperations.cs | 10 +- .../src/Generated/GalleryImagesOperations.cs | 10 +- .../GallerySharingProfileOperations.cs | 2 +- ...CommunityGalleryImageVersionsOperations.cs | 50 + .../ICommunityGalleryImagesOperations.cs | 47 + .../Generated/Models/CommunityGalleryImage.cs | 31 +- .../Models/CommunityGalleryImageVersion.cs | 23 +- .../Generated/Models/CommunityGalleryInfo.cs | 27 +- .../src/Generated/Models/Gallery.cs | 13 +- .../Models/GalleryApplicationVersion.cs | 13 +- ...leryApplicationVersionPublishingProfile.cs | 18 +- .../Models/GalleryApplicationVersionUpdate.cs | 13 +- .../src/Generated/Models/GalleryImage.cs | 19 +- .../Generated/Models/GalleryImageUpdate.cs | 19 +- .../Generated/Models/GalleryImageVersion.cs | 13 +- .../Models/GalleryImageVersionUpdate.cs | 13 +- .../Models/GalleryProvisioningState.cs | 26 + .../Models/GallerySharingPermissionTypes.cs | 1 + .../src/Generated/Models/GalleryUpdate.cs | 13 +- .../Models/SharedGalleryDataDiskImage.cs | 73 + .../Models/SharedGalleryDiskImage.cs | 64 + .../Models/SharedGalleryHostCaching.cs | 23 + .../Generated/Models/SharedGalleryImage.cs | 11 +- .../Models/SharedGalleryImageVersion.cs | 23 +- ...SharedGalleryImageVersionStorageProfile.cs | 61 + .../Models/SharedGalleryOSDiskImage.cs | 48 + .../src/Generated/Models/SharingProfile.cs | 8 +- .../Generated/Models/SharingProfileGroup.cs | 9 +- .../Models/SharingProfileGroupTypes.cs | 1 - .../Generated/Models/UserArtifactSettings.cs | 72 + .../SdkInfo_ComputeManagementClient.cs | 26 +- .../Generated/SharedGalleriesOperations.cs | 4 +- .../SharedGalleryImageVersionsOperations.cs | 4 +- .../SharedGalleryImagesOperations.cs | 4 +- .../Microsoft.Azure.Management.Compute.csproj | 12 +- .../src/Properties/AssemblyInfo.cs | 4 +- .../ScenarioTests/CommunityGalleryTests.cs | 122 + .../tests/ScenarioTests/GalleryTests.cs | 37 +- .../tests/ScenarioTests/SharedGalleryTests.cs | 28 +- ...yGalleryImageVersion_GetAndList_Tests.json | 142 ++ ...ommunityGalleryImage_GetAndList_Tests.json | 142 ++ .../CommunityGallery_Get_Tests.json | 75 + .../GalleryApplicationVersion_CRUD_Tests.json | 1116 +++++---- .../GalleryApplication_CRUD_Tests.json | 302 +-- .../GalleryImageVersion_CRUD_Tests.json | 2125 ++++++++--------- .../GalleryTests/GalleryImage_CRUD_Tests.json | 853 +++---- .../GalleryTests/Gallery_CRUD_Tests.json | 723 +++--- ...Gallery_SharingToCommunity_CRUD_Tests.json | 380 +-- ...ingToSubscriptionAndTenant_CRUD_Tests.json | 624 +++-- ...dGalleryImageVersion_GetAndList_Tests.json | 106 +- .../SharedGalleryImage_GetAndList_Tests.json | 90 +- .../SharedGallery_GetAndList_Tests.json | 139 +- 63 files changed, 5278 insertions(+), 3484 deletions(-) create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryProvisioningState.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGalleryDataDiskImage.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGalleryDiskImage.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGalleryHostCaching.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGalleryImageVersionStorageProfile.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGalleryOSDiskImage.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/UserArtifactSettings.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/CommunityGalleryTests.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CommunityGalleryTests/CommunityGalleryImageVersion_GetAndList_Tests.json create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CommunityGalleryTests/CommunityGalleryImage_GetAndList_Tests.json create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CommunityGalleryTests/CommunityGallery_Get_Tests.json diff --git a/eng/mgmt/mgmtmetadata/compute_resource-manager.txt b/eng/mgmt/mgmtmetadata/compute_resource-manager.txt index 1d8fd4cf40871..79ecf159d9123 100644 --- a/eng/mgmt/mgmtmetadata/compute_resource-manager.txt +++ b/eng/mgmt/mgmtmetadata/compute_resource-manager.txt @@ -9,7 +9,7 @@ Autorest CSharp Version: 2.3.82 Azure-rest-api-specs repository information GitHub fork: Azure Branch: main -Commit: 28db62c152a3556a579a6031f730d3f6b9f868a4 +Commit: 4640dfc655f8641962814663fd03fd667e5c1a88 AutoRest information Requested version: v2 Bootstrapper version: autorest@2.0.4413 diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/AzSdk.RP.props b/sdk/compute/Microsoft.Azure.Management.Compute/AzSdk.RP.props index 8a2de4c9d1032..6beeafc3a675a 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/AzSdk.RP.props +++ b/sdk/compute/Microsoft.Azure.Management.Compute/AzSdk.RP.props @@ -1,7 +1,7 @@  - Compute_2022-03-01;Compute_2021-11-01;Compute_2021-03-01;Compute_2021-07-01;Compute_2021-12-01;Compute_2021-10-01;Compute_2021-06-01-preview + Compute_2022-03-01;Compute_2021-11-01;Compute_2021-03-01;Compute_2021-07-01;Compute_2021-12-01;Compute_2022-01-03;Compute_2021-06-01-preview $(PackageTags);$(CommonTags);$(AzureApiTag); - \ No newline at end of file + diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/GalleryApplicationVersionPublishingProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/GalleryApplicationVersionPublishingProfile.cs index 2789a0f2a87b9..825032e43e098 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/GalleryApplicationVersionPublishingProfile.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/GalleryApplicationVersionPublishingProfile.cs @@ -19,5 +19,14 @@ public partial class GalleryApplicationVersionPublishingProfile : GalleryArtifac EnableHealthCheck = enableHealthCheck; CustomInit(); } + + public GalleryApplicationVersionPublishingProfile(UserArtifactSource source, IList targetRegions, int? replicaCount, bool? excludeFromLatest, System.DateTime? publishedDate, System.DateTime? endOfLifeDate, string storageAccountType, string replicationMode, IList targetExtendedLocations, UserArtifactManage manageActions, bool? enableHealthCheck = default(bool?)) + : base(targetRegions, replicaCount, excludeFromLatest, publishedDate, endOfLifeDate, storageAccountType, replicationMode, targetExtendedLocations) + { + Source = source; + ManageActions = manageActions; + EnableHealthCheck = enableHealthCheck; + CustomInit(); + } } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CommunityGalleriesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CommunityGalleriesOperations.cs index ac43187831e31..aca425211ae08 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CommunityGalleriesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CommunityGalleriesOperations.cs @@ -94,7 +94,7 @@ internal CommunityGalleriesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "publicGalleryName"); } - string apiVersion = "2021-07-01"; + string apiVersion = "2022-01-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CommunityGalleryImageVersionsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CommunityGalleryImageVersionsOperations.cs index 7bd7b869fe9d0..ae3a9012dd993 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CommunityGalleryImageVersionsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CommunityGalleryImageVersionsOperations.cs @@ -111,7 +111,7 @@ internal CommunityGalleryImageVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageVersionName"); } - string apiVersion = "2021-07-01"; + string apiVersion = "2022-01-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -265,5 +265,381 @@ internal CommunityGalleryImageVersionsOperations(ComputeManagementClient client) return _result; } + /// + /// List community gallery image versions inside an image. + /// + /// + /// Resource location. + /// + /// + /// The public name of the community gallery. + /// + /// + /// The name of the community gallery image definition. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListWithHttpMessagesAsync(string location, string publicGalleryName, string galleryImageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "location"); + } + if (publicGalleryName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "publicGalleryName"); + } + if (galleryImageName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageName"); + } + string apiVersion = "2022-01-03"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("location", location); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("publicGalleryName", publicGalleryName); + tracingParameters.Add("galleryImageName", galleryImageName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/communityGalleries/{publicGalleryName}/images/{galleryImageName}/versions").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); + _url = _url.Replace("{publicGalleryName}", System.Uri.EscapeDataString(publicGalleryName)); + _url = _url.Replace("{galleryImageName}", System.Uri.EscapeDataString(galleryImageName)); + 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; + } + + /// + /// List community gallery image versions inside an image. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CommunityGalleryImageVersionsOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CommunityGalleryImageVersionsOperationsExtensions.cs index 4cea2f7d90c22..1227052f43f63 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CommunityGalleryImageVersionsOperationsExtensions.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CommunityGalleryImageVersionsOperationsExtensions.cs @@ -79,5 +79,85 @@ public static CommunityGalleryImageVersion Get(this ICommunityGalleryImageVersio } } + /// + /// List community gallery image versions inside an image. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Resource location. + /// + /// + /// The public name of the community gallery. + /// + /// + /// The name of the community gallery image definition. + /// + public static IPage List(this ICommunityGalleryImageVersionsOperations operations, string location, string publicGalleryName, string galleryImageName) + { + return operations.ListAsync(location, publicGalleryName, galleryImageName).GetAwaiter().GetResult(); + } + + /// + /// List community gallery image versions inside an image. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Resource location. + /// + /// + /// The public name of the community gallery. + /// + /// + /// The name of the community gallery image definition. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this ICommunityGalleryImageVersionsOperations operations, string location, string publicGalleryName, string galleryImageName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(location, publicGalleryName, galleryImageName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// List community gallery image versions inside an image. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this ICommunityGalleryImageVersionsOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// List community gallery image versions inside an image. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListNextAsync(this ICommunityGalleryImageVersionsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CommunityGalleryImagesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CommunityGalleryImagesOperations.cs index 92b4975e26bb6..45392d981068b 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CommunityGalleryImagesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CommunityGalleryImagesOperations.cs @@ -101,7 +101,7 @@ internal CommunityGalleryImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageName"); } - string apiVersion = "2021-07-01"; + string apiVersion = "2022-01-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -253,5 +253,372 @@ internal CommunityGalleryImagesOperations(ComputeManagementClient client) return _result; } + /// + /// List community gallery images inside a gallery. + /// + /// + /// Resource location. + /// + /// + /// The public name of the community gallery. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListWithHttpMessagesAsync(string location, string publicGalleryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "location"); + } + if (publicGalleryName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "publicGalleryName"); + } + string apiVersion = "2022-01-03"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("location", location); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("publicGalleryName", publicGalleryName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/communityGalleries/{publicGalleryName}/images").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); + _url = _url.Replace("{publicGalleryName}", System.Uri.EscapeDataString(publicGalleryName)); + 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; + } + + /// + /// List community gallery images inside a gallery. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CommunityGalleryImagesOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CommunityGalleryImagesOperationsExtensions.cs index a70d9b2410b08..0cb768ca6313b 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CommunityGalleryImagesOperationsExtensions.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CommunityGalleryImagesOperationsExtensions.cs @@ -67,5 +67,79 @@ public static CommunityGalleryImage Get(this ICommunityGalleryImagesOperations o } } + /// + /// List community gallery images inside a gallery. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Resource location. + /// + /// + /// The public name of the community gallery. + /// + public static IPage List(this ICommunityGalleryImagesOperations operations, string location, string publicGalleryName) + { + return operations.ListAsync(location, publicGalleryName).GetAwaiter().GetResult(); + } + + /// + /// List community gallery images inside a gallery. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Resource location. + /// + /// + /// The public name of the community gallery. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this ICommunityGalleryImagesOperations operations, string location, string publicGalleryName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(location, publicGalleryName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// List community gallery images inside a gallery. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this ICommunityGalleryImagesOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// List community gallery images inside a gallery. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListNextAsync(this ICommunityGalleryImagesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(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 50ce40ec2d1c9..f6976a3c43f13 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleriesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleriesOperations.cs @@ -156,7 +156,7 @@ internal GalleriesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); } - string apiVersion = "2021-10-01"; + string apiVersion = "2022-01-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -375,7 +375,7 @@ internal GalleriesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - string apiVersion = "2021-10-01"; + string apiVersion = "2022-01-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -553,7 +553,7 @@ internal GalleriesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2021-10-01"; + string apiVersion = "2022-01-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -756,7 +756,7 @@ internal GalleriesOperations(ComputeManagementClient client) { gallery.Validate(); } - string apiVersion = "2021-10-01"; + string apiVersion = "2022-01-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1002,7 +1002,7 @@ internal GalleriesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "gallery"); } - string apiVersion = "2021-10-01"; + string apiVersion = "2022-01-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1200,7 +1200,7 @@ internal GalleriesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); } - string apiVersion = "2021-10-01"; + string apiVersion = "2022-01-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryApplicationVersionsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryApplicationVersionsOperations.cs index 337b365f0ad7c..837474b39ecdd 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryApplicationVersionsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryApplicationVersionsOperations.cs @@ -187,7 +187,7 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryApplicationVersionName"); } - string apiVersion = "2021-10-01"; + string apiVersion = "2022-01-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -429,7 +429,7 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryApplicationName"); } - string apiVersion = "2021-10-01"; + string apiVersion = "2022-01-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -656,7 +656,7 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) { galleryApplicationVersion.Validate(); } - string apiVersion = "2021-10-01"; + string apiVersion = "2022-01-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -923,7 +923,7 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryApplicationVersion"); } - string apiVersion = "2021-10-01"; + string apiVersion = "2022-01-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1141,7 +1141,7 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryApplicationVersionName"); } - string apiVersion = "2021-10-01"; + string apiVersion = "2022-01-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryApplicationsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryApplicationsOperations.cs index 7d0ffc20747de..0fc03e143abba 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryApplicationsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryApplicationsOperations.cs @@ -164,7 +164,7 @@ internal GalleryApplicationsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryApplicationName"); } - string apiVersion = "2021-10-01"; + string apiVersion = "2022-01-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -387,7 +387,7 @@ internal GalleryApplicationsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); } - string apiVersion = "2021-10-01"; + string apiVersion = "2022-01-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -602,7 +602,7 @@ internal GalleryApplicationsOperations(ComputeManagementClient client) { galleryApplication.Validate(); } - string apiVersion = "2021-10-01"; + string apiVersion = "2022-01-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -858,7 +858,7 @@ internal GalleryApplicationsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryApplication"); } - string apiVersion = "2021-10-01"; + string apiVersion = "2022-01-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1066,7 +1066,7 @@ internal GalleryApplicationsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryApplicationName"); } - string apiVersion = "2021-10-01"; + string apiVersion = "2022-01-03"; // 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 984d0893682c5..ea6728a47d110 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImageVersionsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImageVersionsOperations.cs @@ -184,7 +184,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageVersionName"); } - string apiVersion = "2021-10-01"; + string apiVersion = "2022-01-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -424,7 +424,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageName"); } - string apiVersion = "2021-10-01"; + string apiVersion = "2022-01-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -650,7 +650,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) { galleryImageVersion.Validate(); } - string apiVersion = "2021-10-01"; + string apiVersion = "2022-01-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -916,7 +916,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageVersion"); } - string apiVersion = "2021-10-01"; + string apiVersion = "2022-01-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1133,7 +1133,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageVersionName"); } - string apiVersion = "2021-10-01"; + string apiVersion = "2022-01-03"; // 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 9870d45cec981..66290d0397d59 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImagesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImagesOperations.cs @@ -164,7 +164,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageName"); } - string apiVersion = "2021-10-01"; + string apiVersion = "2022-01-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -387,7 +387,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); } - string apiVersion = "2021-10-01"; + string apiVersion = "2022-01-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -602,7 +602,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) { galleryImage.Validate(); } - string apiVersion = "2021-10-01"; + string apiVersion = "2022-01-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -858,7 +858,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryImage"); } - string apiVersion = "2021-10-01"; + string apiVersion = "2022-01-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1066,7 +1066,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageName"); } - string apiVersion = "2021-10-01"; + string apiVersion = "2022-01-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GallerySharingProfileOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GallerySharingProfileOperations.cs index 094f564a407e5..a85c3afeeb027 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GallerySharingProfileOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GallerySharingProfileOperations.cs @@ -130,7 +130,7 @@ internal GallerySharingProfileOperations(ComputeManagementClient client) { sharingUpdate.Validate(); } - string apiVersion = "2021-10-01"; + string apiVersion = "2022-01-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICommunityGalleryImageVersionsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICommunityGalleryImageVersionsOperations.cs index 99c4df517559d..3c668bd25e852 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICommunityGalleryImageVersionsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICommunityGalleryImageVersionsOperations.cs @@ -57,5 +57,55 @@ public partial interface ICommunityGalleryImageVersionsOperations /// Thrown when a required parameter is null /// Task> GetWithHttpMessagesAsync(string location, string publicGalleryName, string galleryImageName, string galleryImageVersionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List community gallery image versions inside an image. + /// + /// + /// Resource location. + /// + /// + /// The public name of the community gallery. + /// + /// + /// The name of the community gallery image definition. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListWithHttpMessagesAsync(string location, string publicGalleryName, string galleryImageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List community gallery image versions inside an image. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICommunityGalleryImagesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICommunityGalleryImagesOperations.cs index 993e9e375d071..38391de5f3d75 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICommunityGalleryImagesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICommunityGalleryImagesOperations.cs @@ -51,5 +51,52 @@ public partial interface ICommunityGalleryImagesOperations /// Thrown when a required parameter is null /// Task> GetWithHttpMessagesAsync(string location, string publicGalleryName, string galleryImageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List community gallery images inside a gallery. + /// + /// + /// Resource location. + /// + /// + /// The public name of the community gallery. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListWithHttpMessagesAsync(string location, string publicGalleryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List community gallery images inside a gallery. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CommunityGalleryImage.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CommunityGalleryImage.cs index b49166210b468..1123b0732ead4 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CommunityGalleryImage.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CommunityGalleryImage.cs @@ -56,7 +56,13 @@ public CommunityGalleryImage() /// Virtual Machine. Applicable to OS disks only. Possible values /// include: 'V1', 'V2' /// A list of gallery image features. - public CommunityGalleryImage(OperatingSystemTypes osType, OperatingSystemStateTypes osState, GalleryImageIdentifier identifier, string name = default(string), string location = default(string), string type = default(string), string uniqueId = default(string), System.DateTime? endOfLifeDate = default(System.DateTime?), RecommendedMachineConfiguration recommended = default(RecommendedMachineConfiguration), Disallowed disallowed = default(Disallowed), string hyperVGeneration = default(string), IList features = default(IList), ImagePurchasePlan purchasePlan = default(ImagePurchasePlan)) + /// Possible values include: 'x64', + /// 'Arm64' + /// Privacy statement uri for the + /// current community gallery image. + /// End-user license agreement for the current + /// community gallery image. + public CommunityGalleryImage(OperatingSystemTypes osType, OperatingSystemStateTypes osState, GalleryImageIdentifier identifier, string name = default(string), string location = default(string), string type = default(string), string uniqueId = default(string), System.DateTime? endOfLifeDate = default(System.DateTime?), RecommendedMachineConfiguration recommended = default(RecommendedMachineConfiguration), Disallowed disallowed = default(Disallowed), string hyperVGeneration = default(string), IList features = default(IList), ImagePurchasePlan purchasePlan = default(ImagePurchasePlan), string architecture = default(string), string privacyStatementUri = default(string), string eula = default(string)) : base(name, location, type, uniqueId) { OsType = osType; @@ -68,6 +74,9 @@ public CommunityGalleryImage() HyperVGeneration = hyperVGeneration; Features = features; PurchasePlan = purchasePlan; + Architecture = architecture; + PrivacyStatementUri = privacyStatementUri; + Eula = eula; CustomInit(); } @@ -137,6 +146,26 @@ public CommunityGalleryImage() [JsonProperty(PropertyName = "properties.purchasePlan")] public ImagePurchasePlan PurchasePlan { get; set; } + /// + /// Gets or sets possible values include: 'x64', 'Arm64' + /// + [JsonProperty(PropertyName = "properties.architecture")] + public string Architecture { get; set; } + + /// + /// Gets or sets privacy statement uri for the current community + /// gallery image. + /// + [JsonProperty(PropertyName = "properties.privacyStatementUri")] + public string PrivacyStatementUri { get; set; } + + /// + /// Gets or sets end-user license agreement for the current community + /// gallery image. + /// + [JsonProperty(PropertyName = "properties.eula")] + public string Eula { get; set; } + /// /// Validate the object. /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CommunityGalleryImageVersion.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CommunityGalleryImageVersion.cs index 9c14ff8ce3f58..0829d3a398894 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CommunityGalleryImageVersion.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CommunityGalleryImageVersion.cs @@ -46,11 +46,18 @@ public CommunityGalleryImageVersion() /// The end of life date of the gallery /// image version Definition. This property can be used for /// decommissioning purposes. This property is updatable. - public CommunityGalleryImageVersion(string name = default(string), string location = default(string), string type = default(string), string uniqueId = default(string), System.DateTime? publishedDate = default(System.DateTime?), System.DateTime? endOfLifeDate = default(System.DateTime?)) + /// If set to true, Virtual Machines + /// deployed from the latest version of the Image Definition won't use + /// this Image Version. + /// Describes the storage profile of the + /// image version. + public CommunityGalleryImageVersion(string name = default(string), string location = default(string), string type = default(string), string uniqueId = default(string), System.DateTime? publishedDate = default(System.DateTime?), System.DateTime? endOfLifeDate = default(System.DateTime?), bool? excludeFromLatest = default(bool?), SharedGalleryImageVersionStorageProfile storageProfile = default(SharedGalleryImageVersionStorageProfile)) : base(name, location, type, uniqueId) { PublishedDate = publishedDate; EndOfLifeDate = endOfLifeDate; + ExcludeFromLatest = excludeFromLatest; + StorageProfile = storageProfile; CustomInit(); } @@ -75,5 +82,19 @@ public CommunityGalleryImageVersion() [JsonProperty(PropertyName = "properties.endOfLifeDate")] public System.DateTime? EndOfLifeDate { get; set; } + /// + /// Gets or sets if set to true, Virtual Machines deployed from the + /// latest version of the Image Definition won't use this Image + /// Version. + /// + [JsonProperty(PropertyName = "properties.excludeFromLatest")] + public bool? ExcludeFromLatest { get; set; } + + /// + /// Gets or sets describes the storage profile of the image version. + /// + [JsonProperty(PropertyName = "properties.storageProfile")] + public SharedGalleryImageVersionStorageProfile StorageProfile { get; set; } + } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CommunityGalleryInfo.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CommunityGalleryInfo.cs index 5f611256ec60b..ec47ca47d6c24 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CommunityGalleryInfo.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CommunityGalleryInfo.cs @@ -32,12 +32,15 @@ public CommunityGalleryInfo() /// /// Initializes a new instance of the CommunityGalleryInfo class. /// - /// Community gallery publisher uri - /// Community gallery publisher contact - /// email - /// Community gallery publisher eula - /// Community gallery public name - /// prefix + /// The link to the publisher website. + /// Visible to all users. + /// Community gallery publisher support + /// email. The email address of the publisher. Visible to all + /// users. + /// End-user license agreement for community gallery + /// image. + /// The prefix of the gallery name that + /// will be displayed publicly. Visible to all users. /// Contains info about whether /// community gallery sharing is enabled. /// Community gallery public name @@ -59,25 +62,29 @@ public CommunityGalleryInfo() partial void CustomInit(); /// - /// Gets or sets community gallery publisher uri + /// Gets or sets the link to the publisher website. Visible to all + /// users. /// [JsonProperty(PropertyName = "publisherUri")] public string PublisherUri { get; set; } /// - /// Gets or sets community gallery publisher contact email + /// Gets or sets community gallery publisher support email. The email + /// address of the publisher. Visible to all users. /// [JsonProperty(PropertyName = "publisherContact")] public string PublisherContact { get; set; } /// - /// Gets or sets community gallery publisher eula + /// Gets or sets end-user license agreement for community gallery + /// image. /// [JsonProperty(PropertyName = "eula")] public string Eula { get; set; } /// - /// Gets or sets community gallery public name prefix + /// Gets or sets the prefix of the gallery name that will be displayed + /// publicly. Visible to all users. /// [JsonProperty(PropertyName = "publicNamePrefix")] public string PublicNamePrefix { get; set; } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/Gallery.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/Gallery.cs index f21e83cd597dc..daa2236026117 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/Gallery.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/Gallery.cs @@ -42,8 +42,9 @@ public Gallery() /// Resource tags /// The description of this Shared Image /// Gallery resource. This property is updatable. - /// The current state of the - /// gallery. + /// Possible values include: + /// 'Creating', 'Updating', 'Failed', 'Succeeded', 'Deleting', + /// 'Migrating' public Gallery(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string description = default(string), GalleryIdentifier identifier = default(GalleryIdentifier), string provisioningState = default(string), SharingProfile sharingProfile = default(SharingProfile), SoftDeletePolicy softDeletePolicy = default(SoftDeletePolicy), SharingStatus sharingStatus = default(SharingStatus)) : base(location, id, name, type, tags) { @@ -74,13 +75,9 @@ public Gallery() public GalleryIdentifier Identifier { get; set; } /// - /// Gets the current state of the gallery. - /// - /// - /// The provisioning state, which only appears in the response. - /// Possible values include: 'Creating', 'Updating', 'Failed', + /// Gets possible values include: 'Creating', 'Updating', 'Failed', /// 'Succeeded', 'Deleting', 'Migrating' - /// + /// [JsonProperty(PropertyName = "properties.provisioningState")] public string ProvisioningState { get; private set; } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryApplicationVersion.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryApplicationVersion.cs index b9d3829da9510..2fd878ba87c7e 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryApplicationVersion.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryApplicationVersion.cs @@ -40,8 +40,9 @@ public GalleryApplicationVersion() /// Resource name /// Resource type /// Resource tags - /// The current state of the gallery - /// Application Version. + /// Possible values include: + /// 'Creating', 'Updating', 'Failed', 'Succeeded', 'Deleting', + /// 'Migrating' public GalleryApplicationVersion(string location, GalleryApplicationVersionPublishingProfile publishingProfile, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string provisioningState = default(string), ReplicationStatus replicationStatus = default(ReplicationStatus)) : base(location, id, name, type, tags) { @@ -62,13 +63,9 @@ public GalleryApplicationVersion() public GalleryApplicationVersionPublishingProfile PublishingProfile { get; set; } /// - /// Gets the current state of the gallery Application Version. - /// - /// - /// The provisioning state, which only appears in the response. - /// Possible values include: 'Creating', 'Updating', 'Failed', + /// Gets possible values include: 'Creating', 'Updating', 'Failed', /// 'Succeeded', 'Deleting', 'Migrating' - /// + /// [JsonProperty(PropertyName = "properties.provisioningState")] public string ProvisioningState { get; private set; } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryApplicationVersionPublishingProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryApplicationVersionPublishingProfile.cs index e79a2868c5598..b38644fbfdcec 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryApplicationVersionPublishingProfile.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryApplicationVersionPublishingProfile.cs @@ -59,13 +59,17 @@ public GalleryApplicationVersionPublishingProfile() /// The target extended locations /// where the Image Version is going to be replicated to. This property /// is updatable. + /// Optional. Additional settings to + /// pass to the VMApp extension. For advanced use only. /// Optional. Whether or not this /// application reports health. - public GalleryApplicationVersionPublishingProfile(UserArtifactSource 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), string replicationMode = default(string), IList targetExtendedLocations = default(IList), UserArtifactManage manageActions = default(UserArtifactManage), bool? enableHealthCheck = default(bool?)) + public GalleryApplicationVersionPublishingProfile(UserArtifactSource 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), string replicationMode = default(string), IList targetExtendedLocations = default(IList), UserArtifactManage manageActions = default(UserArtifactManage), UserArtifactSettings settings = default(UserArtifactSettings), IDictionary advancedSettings = default(IDictionary), bool? enableHealthCheck = default(bool?)) : base(targetRegions, replicaCount, excludeFromLatest, publishedDate, endOfLifeDate, storageAccountType, replicationMode, targetExtendedLocations) { Source = source; ManageActions = manageActions; + Settings = settings; + AdvancedSettings = advancedSettings; EnableHealthCheck = enableHealthCheck; CustomInit(); } @@ -85,6 +89,18 @@ public GalleryApplicationVersionPublishingProfile() [JsonProperty(PropertyName = "manageActions")] public UserArtifactManage ManageActions { get; set; } + /// + /// + [JsonProperty(PropertyName = "settings")] + public UserArtifactSettings Settings { get; set; } + + /// + /// Gets or sets optional. Additional settings to pass to the VMApp + /// extension. For advanced use only. + /// + [JsonProperty(PropertyName = "advancedSettings")] + public IDictionary AdvancedSettings { get; set; } + /// /// Gets or sets optional. Whether or not this application reports /// health. diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryApplicationVersionUpdate.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryApplicationVersionUpdate.cs index d220e04c69aed..4f62d714eac01 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryApplicationVersionUpdate.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryApplicationVersionUpdate.cs @@ -41,8 +41,9 @@ public GalleryApplicationVersionUpdate() /// Resource name /// Resource type /// Resource tags - /// The current state of the gallery - /// Application Version. + /// Possible values include: + /// 'Creating', 'Updating', 'Failed', 'Succeeded', 'Deleting', + /// 'Migrating' public GalleryApplicationVersionUpdate(GalleryApplicationVersionPublishingProfile publishingProfile, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string provisioningState = default(string), ReplicationStatus replicationStatus = default(ReplicationStatus)) : base(id, name, type, tags) { @@ -63,13 +64,9 @@ public GalleryApplicationVersionUpdate() public GalleryApplicationVersionPublishingProfile PublishingProfile { get; set; } /// - /// Gets the current state of the gallery Application Version. - /// - /// - /// The provisioning state, which only appears in the response. - /// Possible values include: 'Creating', 'Updating', 'Failed', + /// Gets possible values include: 'Creating', 'Updating', 'Failed', /// 'Succeeded', 'Deleting', 'Migrating' - /// + /// [JsonProperty(PropertyName = "properties.provisioningState")] public string ProvisioningState { get; private set; } 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 7af369dd5e66b..afffbc09fa1f9 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 @@ -62,11 +62,11 @@ public GalleryImage() /// 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. + /// Possible values include: + /// 'Creating', 'Updating', 'Failed', 'Succeeded', 'Deleting', + /// 'Migrating' /// A list of gallery image features. - /// The architecture of the image. - /// Applicable to OS disks only. Possible values include: 'x64', + /// Possible values include: 'x64', /// 'Arm64' 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), IList features = default(IList), string architecture = default(string)) : base(location, id, name, type, tags) @@ -175,13 +175,9 @@ public GalleryImage() public ImagePurchasePlan PurchasePlan { get; set; } /// - /// Gets the current state of the gallery image definition. - /// - /// - /// The provisioning state, which only appears in the response. - /// Possible values include: 'Creating', 'Updating', 'Failed', + /// Gets possible values include: 'Creating', 'Updating', 'Failed', /// 'Succeeded', 'Deleting', 'Migrating' - /// + /// [JsonProperty(PropertyName = "properties.provisioningState")] public string ProvisioningState { get; private set; } @@ -192,8 +188,7 @@ public GalleryImage() public IList Features { get; set; } /// - /// Gets or sets the architecture of the image. Applicable to OS disks - /// only. Possible values include: 'x64', 'Arm64' + /// Gets or sets possible values include: 'x64', 'Arm64' /// [JsonProperty(PropertyName = "properties.architecture")] public string Architecture { get; set; } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageUpdate.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageUpdate.cs index d83f87be2ce76..b1c06caaa8392 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageUpdate.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageUpdate.cs @@ -61,11 +61,11 @@ public GalleryImageUpdate() /// 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. + /// Possible values include: + /// 'Creating', 'Updating', 'Failed', 'Succeeded', 'Deleting', + /// 'Migrating' /// A list of gallery image features. - /// The architecture of the image. - /// Applicable to OS disks only. Possible values include: 'x64', + /// Possible values include: 'x64', /// 'Arm64' public GalleryImageUpdate(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), IList features = default(IList), string architecture = default(string)) : base(id, name, type, tags) @@ -174,13 +174,9 @@ public GalleryImageUpdate() public ImagePurchasePlan PurchasePlan { get; set; } /// - /// Gets the current state of the gallery image definition. - /// - /// - /// The provisioning state, which only appears in the response. - /// Possible values include: 'Creating', 'Updating', 'Failed', + /// Gets possible values include: 'Creating', 'Updating', 'Failed', /// 'Succeeded', 'Deleting', 'Migrating' - /// + /// [JsonProperty(PropertyName = "properties.provisioningState")] public string ProvisioningState { get; private set; } @@ -191,8 +187,7 @@ public GalleryImageUpdate() public IList Features { get; set; } /// - /// Gets or sets the architecture of the image. Applicable to OS disks - /// only. Possible values include: 'x64', 'Arm64' + /// Gets or sets possible values include: 'x64', 'Arm64' /// [JsonProperty(PropertyName = "properties.architecture")] public string Architecture { get; set; } 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 707a553ae2c51..da4d3fdb5d07f 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 @@ -40,8 +40,9 @@ public GalleryImageVersion() /// Resource name /// Resource type /// Resource tags - /// The current state of the gallery - /// image version. + /// Possible values include: + /// 'Creating', 'Updating', 'Failed', 'Succeeded', 'Deleting', + /// 'Migrating' 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) { @@ -63,13 +64,9 @@ public GalleryImageVersion() public GalleryImageVersionPublishingProfile PublishingProfile { get; set; } /// - /// Gets the current state of the gallery image version. - /// - /// - /// The provisioning state, which only appears in the response. - /// Possible values include: 'Creating', 'Updating', 'Failed', + /// Gets possible values include: 'Creating', 'Updating', 'Failed', /// 'Succeeded', 'Deleting', 'Migrating' - /// + /// [JsonProperty(PropertyName = "properties.provisioningState")] public string ProvisioningState { get; private set; } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageVersionUpdate.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageVersionUpdate.cs index 174e5218e0fe5..08093be763e4b 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageVersionUpdate.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageVersionUpdate.cs @@ -39,8 +39,9 @@ public GalleryImageVersionUpdate() /// Resource name /// Resource type /// Resource tags - /// The current state of the gallery - /// image version. + /// Possible values include: + /// 'Creating', 'Updating', 'Failed', 'Succeeded', 'Deleting', + /// 'Migrating' public GalleryImageVersionUpdate(GalleryImageVersionStorageProfile storageProfile, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), GalleryImageVersionPublishingProfile publishingProfile = default(GalleryImageVersionPublishingProfile), string provisioningState = default(string), ReplicationStatus replicationStatus = default(ReplicationStatus)) : base(id, name, type, tags) { @@ -62,13 +63,9 @@ public GalleryImageVersionUpdate() public GalleryImageVersionPublishingProfile PublishingProfile { get; set; } /// - /// Gets the current state of the gallery image version. - /// - /// - /// The provisioning state, which only appears in the response. - /// Possible values include: 'Creating', 'Updating', 'Failed', + /// Gets possible values include: 'Creating', 'Updating', 'Failed', /// 'Succeeded', 'Deleting', 'Migrating' - /// + /// [JsonProperty(PropertyName = "properties.provisioningState")] public string ProvisioningState { get; private set; } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryProvisioningState.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryProvisioningState.cs new file mode 100644 index 0000000000000..41b216b9ce3fe --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryProvisioningState.cs @@ -0,0 +1,26 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + + /// + /// Defines values for GalleryProvisioningState. + /// + public static class GalleryProvisioningState + { + public const string Creating = "Creating"; + public const string Updating = "Updating"; + public const string Failed = "Failed"; + public const string Succeeded = "Succeeded"; + public const string Deleting = "Deleting"; + public const string Migrating = "Migrating"; + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GallerySharingPermissionTypes.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GallerySharingPermissionTypes.cs index 22f0125b9557b..ae86b1d43aa6c 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GallerySharingPermissionTypes.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GallerySharingPermissionTypes.cs @@ -18,5 +18,6 @@ public static class GallerySharingPermissionTypes { public const string Private = "Private"; public const string Groups = "Groups"; + public const string Community = "Community"; } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryUpdate.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryUpdate.cs index cc76a8e5b1701..268f3d966eb93 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryUpdate.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryUpdate.cs @@ -41,8 +41,9 @@ public GalleryUpdate() /// Resource tags /// The description of this Shared Image /// Gallery resource. This property is updatable. - /// The current state of the - /// gallery. + /// Possible values include: + /// 'Creating', 'Updating', 'Failed', 'Succeeded', 'Deleting', + /// 'Migrating' public GalleryUpdate(string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string description = default(string), GalleryIdentifier identifier = default(GalleryIdentifier), string provisioningState = default(string), SharingProfile sharingProfile = default(SharingProfile), SoftDeletePolicy softDeletePolicy = default(SoftDeletePolicy), SharingStatus sharingStatus = default(SharingStatus)) : base(id, name, type, tags) { @@ -73,13 +74,9 @@ public GalleryUpdate() public GalleryIdentifier Identifier { get; set; } /// - /// Gets the current state of the gallery. - /// - /// - /// The provisioning state, which only appears in the response. - /// Possible values include: 'Creating', 'Updating', 'Failed', + /// Gets possible values include: 'Creating', 'Updating', 'Failed', /// 'Succeeded', 'Deleting', 'Migrating' - /// + /// [JsonProperty(PropertyName = "properties.provisioningState")] public string ProvisioningState { get; private set; } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGalleryDataDiskImage.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGalleryDataDiskImage.cs new file mode 100644 index 0000000000000..62c2d060be590 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGalleryDataDiskImage.cs @@ -0,0 +1,73 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// This is the data disk image. + /// + public partial class SharedGalleryDataDiskImage : SharedGalleryDiskImage + { + /// + /// Initializes a new instance of the SharedGalleryDataDiskImage class. + /// + public SharedGalleryDataDiskImage() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the SharedGalleryDataDiskImage 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' + public SharedGalleryDataDiskImage(int lun, int? diskSizeGB = default(int?), string hostCaching = default(string)) + : base(diskSizeGB, hostCaching) + { + Lun = lun; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// 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; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + //Nothing to validate + } + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGalleryDiskImage.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGalleryDiskImage.cs new file mode 100644 index 0000000000000..590ac0462327c --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGalleryDiskImage.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; + + /// + /// This is the disk image base class. + /// + public partial class SharedGalleryDiskImage + { + /// + /// Initializes a new instance of the SharedGalleryDiskImage class. + /// + public SharedGalleryDiskImage() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the SharedGalleryDiskImage class. + /// + /// 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' + public SharedGalleryDiskImage(int? diskSizeGB = default(int?), string hostCaching = default(string)) + { + DiskSizeGB = diskSizeGB; + HostCaching = hostCaching; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets this property indicates the size of the VHD to be created. + /// + [JsonProperty(PropertyName = "diskSizeGB")] + public int? DiskSizeGB { get; private set; } + + /// + /// 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 string HostCaching { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGalleryHostCaching.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGalleryHostCaching.cs new file mode 100644 index 0000000000000..84edad26f060e --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGalleryHostCaching.cs @@ -0,0 +1,23 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + + /// + /// Defines values for SharedGalleryHostCaching. + /// + public static class SharedGalleryHostCaching + { + public const string None = "None"; + public const string ReadOnly = "ReadOnly"; + public const string ReadWrite = "ReadWrite"; + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGalleryImage.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGalleryImage.cs index e64cdf38245e3..c148163212041 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGalleryImage.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGalleryImage.cs @@ -55,7 +55,9 @@ public SharedGalleryImage() /// Virtual Machine. Applicable to OS disks only. Possible values /// include: 'V1', 'V2' /// A list of gallery image features. - public SharedGalleryImage(OperatingSystemTypes osType, OperatingSystemStateTypes osState, GalleryImageIdentifier identifier, string name = default(string), string location = default(string), string uniqueId = default(string), System.DateTime? endOfLifeDate = default(System.DateTime?), RecommendedMachineConfiguration recommended = default(RecommendedMachineConfiguration), Disallowed disallowed = default(Disallowed), string hyperVGeneration = default(string), IList features = default(IList), ImagePurchasePlan purchasePlan = default(ImagePurchasePlan)) + /// Possible values include: 'x64', + /// 'Arm64' + public SharedGalleryImage(OperatingSystemTypes osType, OperatingSystemStateTypes osState, GalleryImageIdentifier identifier, string name = default(string), string location = default(string), string uniqueId = default(string), System.DateTime? endOfLifeDate = default(System.DateTime?), RecommendedMachineConfiguration recommended = default(RecommendedMachineConfiguration), Disallowed disallowed = default(Disallowed), string hyperVGeneration = default(string), IList features = default(IList), ImagePurchasePlan purchasePlan = default(ImagePurchasePlan), string architecture = default(string)) : base(name, location, uniqueId) { OsType = osType; @@ -67,6 +69,7 @@ public SharedGalleryImage() HyperVGeneration = hyperVGeneration; Features = features; PurchasePlan = purchasePlan; + Architecture = architecture; CustomInit(); } @@ -136,6 +139,12 @@ public SharedGalleryImage() [JsonProperty(PropertyName = "properties.purchasePlan")] public ImagePurchasePlan PurchasePlan { get; set; } + /// + /// Gets or sets possible values include: 'x64', 'Arm64' + /// + [JsonProperty(PropertyName = "properties.architecture")] + public string Architecture { get; set; } + /// /// Validate the object. /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGalleryImageVersion.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGalleryImageVersion.cs index b51fcbd0b480e..c9c40cfc649c9 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGalleryImageVersion.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGalleryImageVersion.cs @@ -43,11 +43,18 @@ public SharedGalleryImageVersion() /// The end of life date of the gallery /// image version Definition. This property can be used for /// decommissioning purposes. This property is updatable. - public SharedGalleryImageVersion(string name = default(string), string location = default(string), string uniqueId = default(string), System.DateTime? publishedDate = default(System.DateTime?), System.DateTime? endOfLifeDate = default(System.DateTime?)) + /// If set to true, Virtual Machines + /// deployed from the latest version of the Image Definition won't use + /// this Image Version. + /// Describes the storage profile of the + /// image version. + public SharedGalleryImageVersion(string name = default(string), string location = default(string), string uniqueId = default(string), System.DateTime? publishedDate = default(System.DateTime?), System.DateTime? endOfLifeDate = default(System.DateTime?), bool? excludeFromLatest = default(bool?), SharedGalleryImageVersionStorageProfile storageProfile = default(SharedGalleryImageVersionStorageProfile)) : base(name, location, uniqueId) { PublishedDate = publishedDate; EndOfLifeDate = endOfLifeDate; + ExcludeFromLatest = excludeFromLatest; + StorageProfile = storageProfile; CustomInit(); } @@ -72,5 +79,19 @@ public SharedGalleryImageVersion() [JsonProperty(PropertyName = "properties.endOfLifeDate")] public System.DateTime? EndOfLifeDate { get; set; } + /// + /// Gets or sets if set to true, Virtual Machines deployed from the + /// latest version of the Image Definition won't use this Image + /// Version. + /// + [JsonProperty(PropertyName = "properties.excludeFromLatest")] + public bool? ExcludeFromLatest { get; set; } + + /// + /// Gets or sets describes the storage profile of the image version. + /// + [JsonProperty(PropertyName = "properties.storageProfile")] + public SharedGalleryImageVersionStorageProfile StorageProfile { get; set; } + } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGalleryImageVersionStorageProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGalleryImageVersionStorageProfile.cs new file mode 100644 index 0000000000000..0e9a4a85dd6a2 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGalleryImageVersionStorageProfile.cs @@ -0,0 +1,61 @@ +// +// 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; + + /// + /// This is the storage profile of a Gallery Image Version. + /// + public partial class SharedGalleryImageVersionStorageProfile + { + /// + /// Initializes a new instance of the + /// SharedGalleryImageVersionStorageProfile class. + /// + public SharedGalleryImageVersionStorageProfile() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// SharedGalleryImageVersionStorageProfile class. + /// + /// A list of data disk images. + public SharedGalleryImageVersionStorageProfile(SharedGalleryOSDiskImage osDiskImage = default(SharedGalleryOSDiskImage), IList dataDiskImages = default(IList)) + { + OsDiskImage = osDiskImage; + DataDiskImages = dataDiskImages; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// + [JsonProperty(PropertyName = "osDiskImage")] + public SharedGalleryOSDiskImage OsDiskImage { get; set; } + + /// + /// Gets or sets a list of data disk images. + /// + [JsonProperty(PropertyName = "dataDiskImages")] + public IList DataDiskImages { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGalleryOSDiskImage.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGalleryOSDiskImage.cs new file mode 100644 index 0000000000000..a89a7a8847da1 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGalleryOSDiskImage.cs @@ -0,0 +1,48 @@ +// +// 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 System.Linq; + + /// + /// This is the OS disk image. + /// + public partial class SharedGalleryOSDiskImage : SharedGalleryDiskImage + { + /// + /// Initializes a new instance of the SharedGalleryOSDiskImage class. + /// + public SharedGalleryOSDiskImage() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the SharedGalleryOSDiskImage class. + /// + /// 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' + public SharedGalleryOSDiskImage(int? diskSizeGB = default(int?), string hostCaching = default(string)) + : base(diskSizeGB, hostCaching) + { + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingProfile.cs index 8ce538b2c6ea4..3cbc4050601e4 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingProfile.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingProfile.cs @@ -34,7 +34,8 @@ public SharingProfile() /// This property allows you to specify the /// permission of sharing gallery. <br><br> Possible values /// are: <br><br> **Private** <br><br> - /// **Groups**. Possible values include: 'Private', 'Groups' + /// **Groups** <br><br> **Community**. Possible values + /// include: 'Private', 'Groups', 'Community' /// A list of sharing profile groups. /// Information of community gallery /// if current gallery is shared to community. @@ -55,8 +56,9 @@ public SharingProfile() /// Gets or sets this property allows you to specify the permission of /// sharing gallery. &lt;br&gt;&lt;br&gt; Possible /// values are: &lt;br&gt;&lt;br&gt; **Private** - /// &lt;br&gt;&lt;br&gt; **Groups**. Possible values - /// include: 'Private', 'Groups' + /// &lt;br&gt;&lt;br&gt; **Groups** + /// &lt;br&gt;&lt;br&gt; **Community**. Possible values + /// include: 'Private', 'Groups', 'Community' /// [JsonProperty(PropertyName = "permissions")] public string Permissions { get; set; } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingProfileGroup.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingProfileGroup.cs index 4e23b163f9291..7a8e4df6262c4 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingProfileGroup.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingProfileGroup.cs @@ -34,8 +34,8 @@ public SharingProfileGroup() /// This property allows you to specify the type of /// sharing group. <br><br> Possible values are: /// <br><br> **Subscriptions** <br><br> - /// **AADTenants** <br><br> **Community**. Possible values - /// include: 'Subscriptions', 'AADTenants', 'Community' + /// **AADTenants**. Possible values include: 'Subscriptions', + /// 'AADTenants' /// A list of subscription/tenant ids the gallery is /// aimed to be shared to. public SharingProfileGroup(string type = default(string), IList ids = default(IList)) @@ -54,9 +54,8 @@ public SharingProfileGroup() /// Gets or sets this property allows you to specify the type of /// sharing group. &lt;br&gt;&lt;br&gt; Possible values /// are: &lt;br&gt;&lt;br&gt; **Subscriptions** - /// &lt;br&gt;&lt;br&gt; **AADTenants** - /// &lt;br&gt;&lt;br&gt; **Community**. Possible values - /// include: 'Subscriptions', 'AADTenants', 'Community' + /// &lt;br&gt;&lt;br&gt; **AADTenants**. Possible + /// values include: 'Subscriptions', 'AADTenants' /// [JsonProperty(PropertyName = "type")] public string Type { get; set; } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingProfileGroupTypes.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingProfileGroupTypes.cs index a9bb49a168384..1f1724bed836d 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingProfileGroupTypes.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingProfileGroupTypes.cs @@ -18,6 +18,5 @@ public static class SharingProfileGroupTypes { public const string Subscriptions = "Subscriptions"; public const string AADTenants = "AADTenants"; - public const string Community = "Community"; } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/UserArtifactSettings.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/UserArtifactSettings.cs new file mode 100644 index 0000000000000..7df0ba129ac89 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/UserArtifactSettings.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.Linq; + + /// + /// Additional settings for the VM app that contains the target package and + /// config file name when it is deployed to target VM or VM scale set. + /// + public partial class UserArtifactSettings + { + /// + /// Initializes a new instance of the UserArtifactSettings class. + /// + public UserArtifactSettings() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the UserArtifactSettings class. + /// + /// Optional. The name to assign the + /// downloaded package file on the VM. This is limited to 4096 + /// characters. If not specified, the package file will be named the + /// same as the Gallery Application name. + /// Optional. The name to assign the + /// downloaded config file on the VM. This is limited to 4096 + /// characters. If not specified, the config file will be named the + /// Gallery Application name appended with "_config". + public UserArtifactSettings(string packageFileName = default(string), string configFileName = default(string)) + { + PackageFileName = packageFileName; + ConfigFileName = configFileName; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets optional. The name to assign the downloaded package + /// file on the VM. This is limited to 4096 characters. If not + /// specified, the package file will be named the same as the Gallery + /// Application name. + /// + [JsonProperty(PropertyName = "packageFileName")] + public string PackageFileName { get; set; } + + /// + /// Gets or sets optional. The name to assign the downloaded config + /// file on the VM. This is limited to 4096 characters. If not + /// specified, the config file will be named the Gallery Application + /// name appended with "_config". + /// + [JsonProperty(PropertyName = "configFileName")] + public string ConfigFileName { get; set; } + + } +} 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 7a216e03f2fcb..8923984f53957 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 @@ -27,21 +27,21 @@ public static IEnumerable> ApiInfo_ComputeManageme new Tuple("Compute", "CloudServiceRoles", "2021-03-01"), new Tuple("Compute", "CloudServices", "2021-03-01"), new Tuple("Compute", "CloudServicesUpdateDomain", "2021-03-01"), - new Tuple("Compute", "CommunityGalleries", "2021-07-01"), - new Tuple("Compute", "CommunityGalleryImageVersions", "2021-07-01"), - new Tuple("Compute", "CommunityGalleryImages", "2021-07-01"), + new Tuple("Compute", "CommunityGalleries", "2022-01-03"), + new Tuple("Compute", "CommunityGalleryImageVersions", "2022-01-03"), + new Tuple("Compute", "CommunityGalleryImages", "2022-01-03"), new Tuple("Compute", "DedicatedHostGroups", "2022-03-01"), new Tuple("Compute", "DedicatedHosts", "2022-03-01"), new Tuple("Compute", "DiskAccesses", "2021-12-01"), new Tuple("Compute", "DiskEncryptionSets", "2021-12-01"), new Tuple("Compute", "DiskRestorePoint", "2021-12-01"), new Tuple("Compute", "Disks", "2021-12-01"), - new Tuple("Compute", "Galleries", "2021-10-01"), - new Tuple("Compute", "GalleryApplicationVersions", "2021-10-01"), - new Tuple("Compute", "GalleryApplications", "2021-10-01"), - new Tuple("Compute", "GalleryImageVersions", "2021-10-01"), - new Tuple("Compute", "GalleryImages", "2021-10-01"), - new Tuple("Compute", "GallerySharingProfile", "2021-10-01"), + new Tuple("Compute", "Galleries", "2022-01-03"), + new Tuple("Compute", "GalleryApplicationVersions", "2022-01-03"), + new Tuple("Compute", "GalleryApplications", "2022-01-03"), + new Tuple("Compute", "GalleryImageVersions", "2022-01-03"), + new Tuple("Compute", "GalleryImages", "2022-01-03"), + new Tuple("Compute", "GallerySharingProfile", "2022-01-03"), new Tuple("Compute", "Images", "2022-03-01"), new Tuple("Compute", "LogAnalytics", "2022-03-01"), new Tuple("Compute", "Operations", "2022-03-01"), @@ -49,9 +49,9 @@ public static IEnumerable> ApiInfo_ComputeManageme new Tuple("Compute", "ResourceSkus", "2021-07-01"), new Tuple("Compute", "RestorePointCollections", "2022-03-01"), new Tuple("Compute", "RestorePoints", "2022-03-01"), - new Tuple("Compute", "SharedGalleries", "2021-07-01"), - new Tuple("Compute", "SharedGalleryImageVersions", "2021-07-01"), - new Tuple("Compute", "SharedGalleryImages", "2021-07-01"), + new Tuple("Compute", "SharedGalleries", "2022-01-03"), + new Tuple("Compute", "SharedGalleryImageVersions", "2022-01-03"), + new Tuple("Compute", "SharedGalleryImages", "2022-01-03"), new Tuple("Compute", "Snapshots", "2021-12-01"), new Tuple("Compute", "SshPublicKeys", "2022-03-01"), new Tuple("Compute", "Usage", "2022-03-01"), @@ -72,4 +72,4 @@ public static IEnumerable> ApiInfo_ComputeManageme } } } -} +} \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleriesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleriesOperations.cs index 54261348776a2..7c1142a966181 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleriesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleriesOperations.cs @@ -91,7 +91,7 @@ internal SharedGalleriesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "location"); } - string apiVersion = "2021-07-01"; + string apiVersion = "2022-01-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -288,7 +288,7 @@ internal SharedGalleriesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryUniqueName"); } - string apiVersion = "2021-07-01"; + string apiVersion = "2022-01-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleryImageVersionsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleryImageVersionsOperations.cs index 9ff94cb851263..abc4b12fa4414 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleryImageVersionsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleryImageVersionsOperations.cs @@ -106,7 +106,7 @@ internal SharedGalleryImageVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageName"); } - string apiVersion = "2021-07-01"; + string apiVersion = "2022-01-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -325,7 +325,7 @@ internal SharedGalleryImageVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageVersionName"); } - string apiVersion = "2021-07-01"; + string apiVersion = "2022-01-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleryImagesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleryImagesOperations.cs index ac3b8a6f2e719..99a4f931acf23 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleryImagesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleryImagesOperations.cs @@ -98,7 +98,7 @@ internal SharedGalleryImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryUniqueName"); } - string apiVersion = "2021-07-01"; + string apiVersion = "2022-01-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -305,7 +305,7 @@ internal SharedGalleryImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageName"); } - string apiVersion = "2021-07-01"; + string apiVersion = "2022-01-03"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; 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 4a059a786dc54..cf9c52f809ac1 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 @@ -9,19 +9,15 @@ 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. Development of this library has shifted focus to the Azure Unified SDK. The future development will be focused on "Azure.ResourceManager.Compute" (https://www.nuget.org/packages/Azure.ResourceManager.Compute/). Please see the package changelog for more information. - 55.0.0 + 56.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 0704516cd4cf9..836ea357f2851 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("55.0.0")] -[assembly: AssemblyFileVersion("55.0.0")] +[assembly: AssemblyVersion("56.0.0")] +[assembly: AssemblyFileVersion("56.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Microsoft Azure .NET SDK")] diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/CommunityGalleryTests.cs b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/CommunityGalleryTests.cs new file mode 100644 index 0000000000000..e6d0b05a9d321 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/CommunityGalleryTests.cs @@ -0,0 +1,122 @@ +using Microsoft.Azure.Management.Compute.Models; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using System; +using System.Collections.Generic; +using System.Text; +using Xunit; +using Microsoft.Azure.Management.Compute; +using System.Diagnostics; +using Microsoft.Rest.Azure; +using System.Linq; + +namespace Compute.Tests +{ + public class CommunityGalleryTests : VMTestBase + { + // these needs to be decided and created + // Gallery team is responsible for maintaining these long lived gallery + protected const string PublicGalleryName = "PIRBVT-6c64f11e-ad23-4737-a58a-4f3c85acadbf"; + protected const string GalleryImageName = "communitygallerylrwah"; + protected const string GalleryImageVersionName = "1.0.0"; + + private string galleryAccessLocation = "eastus2euap"; + + [Fact] + public void CommunityGallery_Get_Tests() + { + using (MockContext context = MockContext.Start(this.GetType())) + { + EnsureClientsInitialized(context); + + CommunityGallery communityGalleryOut = m_CrpClient.CommunityGalleries.Get(galleryAccessLocation, PublicGalleryName); + Trace.TraceInformation("Got the community gallery {0} which is shared to public.", PublicGalleryName); + Assert.NotNull(communityGalleryOut); + ValidateCommunityGallery(communityGalleryOut); + } + } + + [Fact] + public void CommunityGalleryImage_GetAndList_Tests() + { + using (MockContext context = MockContext.Start(this.GetType())) + { + EnsureClientsInitialized(context); + + CommunityGalleryImage communityGalleryImageOut = m_CrpClient.CommunityGalleryImages.Get(galleryAccessLocation, PublicGalleryName, GalleryImageName); + Trace.TraceInformation("Got the community gallery image {0} which is shared to public.", GalleryImageName); + Assert.NotNull(communityGalleryImageOut); + + ValidateCommunityGalleryImage(communityGalleryImageOut); + + + IPage communityGalleryImagesList = m_CrpClient.CommunityGalleryImages.List(galleryAccessLocation, PublicGalleryName); + Trace.TraceInformation("Got the community gallery image list which are shared to public."); + + int count = communityGalleryImagesList.Count(); + Assert.Equal(1, count); + + foreach (CommunityGalleryImage galleryImage in communityGalleryImagesList) + { + if (galleryImage.Name == GalleryImageName) + { + ValidateCommunityGalleryImage(galleryImage); + break; + } + } + } + } + + [Fact] + public void CommunityGalleryImageVersion_GetAndList_Tests() + { + using (MockContext context = MockContext.Start(this.GetType())) + { + EnsureClientsInitialized(context); + + CommunityGalleryImageVersion communityGalleryImageVersionOut = m_CrpClient.CommunityGalleryImageVersions.Get(galleryAccessLocation, PublicGalleryName, GalleryImageName, GalleryImageVersionName); + Trace.TraceInformation("Got the community gallery image name {0} which is shared to public.", GalleryImageVersionName); + Assert.NotNull(communityGalleryImageVersionOut); + ValidateCommunityGalleryImageVersion(communityGalleryImageVersionOut); + + IPage communityGalleryImageVersionsList = m_CrpClient.CommunityGalleryImageVersions.List(galleryAccessLocation, PublicGalleryName, GalleryImageName); + Trace.TraceInformation("Got the community gallery image versions which are shared to public."); + + int count = communityGalleryImageVersionsList.Count(); + Assert.Equal(1, count); + + foreach (CommunityGalleryImageVersion galleryImageVersion in communityGalleryImageVersionsList) + { + if (galleryImageVersion.Name == GalleryImageVersionName) + { + ValidateCommunityGalleryImageVersion(galleryImageVersion); + break; + } + } + } + } + + private void ValidateCommunityGallery(CommunityGallery communityGallery) + { + string expectedId = "/CommunityGalleries/" + PublicGalleryName; + Assert.Equal(expectedId, communityGallery.UniqueId); + } + + private void ValidateCommunityGalleryImage(CommunityGalleryImage communityGalleryImage) + { + string expectedId = "/CommunityGalleries/" + PublicGalleryName + "/Images/" + GalleryImageName; + Assert.Equal(expectedId, communityGalleryImage.UniqueId); + Assert.NotNull(communityGalleryImage.Eula); + Assert.NotNull(communityGalleryImage.PrivacyStatementUri); + } + + private void ValidateCommunityGalleryImageVersion(CommunityGalleryImageVersion communityGalleryImageVersion) + { + string expectedId = "/CommunityGalleries/" + PublicGalleryName + "/Images/" + GalleryImageName + "/Versions/" + GalleryImageVersionName; + Assert.Equal(expectedId, communityGalleryImageVersion.UniqueId); + Assert.NotNull(communityGalleryImageVersion.StorageProfile); + Assert.NotNull(communityGalleryImageVersion.ExcludeFromLatest); + Assert.NotNull(communityGalleryImageVersion.StorageProfile.OsDiskImage); + } + + } +} 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 dcce4e54c384a..1189671375e12 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/GalleryTests.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/GalleryTests.cs @@ -119,7 +119,8 @@ public void GalleryImage_CRUD_Tests() IPage listGalleryImagesResult = m_CrpClient.GalleryImages.ListByGallery(rgName, galleryName); Assert.Single(listGalleryImagesResult); - Assert.Null(listGalleryImagesResult.NextPageLink); + Assert.Equal(1, listGalleryImagesResult.Count()); + //Assert.Null(listGalleryImagesResult.NextPageLink); m_CrpClient.GalleryImages.Delete(rgName, galleryName, galleryImageName); listGalleryImagesResult = m_CrpClient.GalleryImages.ListByGallery(rgName, galleryName); @@ -194,13 +195,13 @@ public void GalleryImageVersion_CRUD_Tests() IPage listGalleryImageVersionsResult = m_CrpClient.GalleryImageVersions. ListByGalleryImage(rgName, galleryName, galleryImageName); Assert.Single(listGalleryImageVersionsResult); - Assert.Null(listGalleryImageVersionsResult.NextPageLink); + Assert.Equal(1, listGalleryImageVersionsResult.Count()); + //Assert.Null(listGalleryImageVersionsResult.NextPageLink); m_CrpClient.GalleryImageVersions.Delete(rgName, galleryName, galleryImageName, galleryImageVersionName); listGalleryImageVersionsResult = m_CrpClient.GalleryImageVersions. ListByGalleryImage(rgName, galleryName, galleryImageName); Assert.Empty(listGalleryImageVersionsResult); - Assert.Null(listGalleryImageVersionsResult.NextPageLink); Trace.TraceInformation(string.Format("Deleted the gallery image version: {0} in gallery image: {1}", galleryImageVersionName, galleryImageName)); @@ -231,7 +232,7 @@ public void GalleryApplication_CRUD_Tests() { using (MockContext context = MockContext.Start(this.GetType())) { - string location = ComputeManagementTestUtilities.DefaultLocation; + string location = galleryHomeLocation; EnsureClientsInitialized(context); string rgName = ComputeManagementTestUtilities.GenerateName(ResourceGroupPrefix); @@ -276,7 +277,7 @@ public void GalleryApplicationVersion_CRUD_Tests() string originalTestLocation = Environment.GetEnvironmentVariable("AZURE_VM_TEST_LOCATION"); using (MockContext context = MockContext.Start(this.GetType())) { - string location = ComputeManagementTestUtilities.DefaultLocation; + string location = galleryHomeLocation; Environment.SetEnvironmentVariable("AZURE_VM_TEST_LOCATION", location); EnsureClientsInitialized(context); string rgName = ComputeManagementTestUtilities.GenerateName(ResourceGroupPrefix); @@ -759,7 +760,7 @@ private GalleryApplication GetTestInputGalleryApplication() return new GalleryApplication { Eula = "This is the gallery application EULA.", - Location = ComputeManagementTestUtilities.DefaultLocation, + Location = galleryHomeLocation, SupportedOSType = OperatingSystemTypes.Windows, PrivacyStatementUri = "www.privacystatement.com", ReleaseNoteUri = "www.releasenote.com", @@ -771,7 +772,7 @@ private GalleryApplicationVersion GetTestInputGalleryApplicationVersion(string a { return new GalleryApplicationVersion { - Location = ComputeManagementTestUtilities.DefaultLocation, + Location = galleryHomeLocation, PublishingProfile = new GalleryApplicationVersionPublishingProfile { Source = new UserArtifactSource @@ -783,10 +784,20 @@ private GalleryApplicationVersion GetTestInputGalleryApplicationVersion(string a Install = "powershell -command \"Expand-Archive -Path test.zip -DestinationPath C:\\package\"", Remove = "del C:\\package " }, + Settings = new UserArtifactSettings + { + PackageFileName = "test.zip", + ConfigFileName = "config.cfg" + }, + AdvancedSettings = new Dictionary() + { + { "cacheLimit", "500" }, + { "user", "root"} + }, ReplicaCount = 1, StorageAccountType = StorageAccountType.StandardLRS, TargetRegions = new List { - new TargetRegion { Name = ComputeManagementTestUtilities.DefaultLocation, RegionalReplicaCount = 1, StorageAccountType = StorageAccountType.StandardLRS } + new TargetRegion { Name = galleryHomeLocation, RegionalReplicaCount = 1, StorageAccountType = StorageAccountType.StandardLRS } }, EndOfLifeDate = DateTime.Today.AddDays(10).Date } @@ -831,6 +842,16 @@ private void ValidateGalleryApplicationVersion(GalleryApplicationVersion applica Assert.NotNull(applicationVersionOut.PublishingProfile.EndOfLifeDate); Assert.NotNull(applicationVersionOut.PublishingProfile.PublishedDate); Assert.NotNull(applicationVersionOut.Id); + Assert.Equal(applicationVersionIn.PublishingProfile.Settings.PackageFileName, applicationVersionOut.PublishingProfile.Settings.PackageFileName); + Assert.Equal(applicationVersionIn.PublishingProfile.Settings.ConfigFileName, applicationVersionOut.PublishingProfile.Settings.ConfigFileName); + IDictionary advancedSettingsIn = applicationVersionIn.PublishingProfile.AdvancedSettings; + IDictionary advancedSettingsOut = applicationVersionOut.PublishingProfile.AdvancedSettings; + Assert.Equal(advancedSettingsIn.Count, advancedSettingsOut.Count); + foreach (KeyValuePair kvp in advancedSettingsIn) + { + Assert.True(advancedSettingsOut.ContainsKey(kvp.Key)); + Assert.Equal(kvp.Value, advancedSettingsOut[kvp.Key]); + } } } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/SharedGalleryTests.cs b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/SharedGalleryTests.cs index f1160c5dad356..225037aa5130a 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/SharedGalleryTests.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/SharedGalleryTests.cs @@ -41,9 +41,8 @@ public void SharedGallery_GetAndList_Tests() Trace.TraceInformation("Got the shared galleries which are shared to tenant of current subscription."); int count = sharedGalleriesList.Count(); - Assert.Equal(1, count); - - foreach(SharedGallery gallery in sharedGalleriesList) + Assert.True(count > 0); + foreach (SharedGallery gallery in sharedGalleriesList) { if(gallery.Name == GalleryUniqueName) { @@ -55,18 +54,16 @@ public void SharedGallery_GetAndList_Tests() sharedGalleriesList = m_CrpClient.SharedGalleries.List(galleryAccessLocation); count = sharedGalleriesList.Count(); - Assert.Equal(1, count); + Assert.True(count > 0); Trace.TraceInformation("Got the shared gallery {0} which is shared to current subscription.", GalleryUniqueName); - - ValidateSharedGallery(sharedGalleriesList.First()); - - sharedGalleriesList = m_CrpClient.SharedGalleries.List(galleryAccessLocation, sharedTo: SharedToValues.Tenant); - - count = sharedGalleriesList.Count(); - Assert.Equal(1, count); - Trace.TraceInformation("Got the shared gallery {0} which is shared to current tenant.", GalleryUniqueName); - - ValidateSharedGallery(sharedGalleriesList.First()); + foreach (SharedGallery gallery in sharedGalleriesList) + { + if (gallery.Name == GalleryUniqueName) + { + ValidateSharedGallery(gallery); + break; + } + } } } @@ -180,6 +177,9 @@ private void ValidateSharedGalleryImageVersion(SharedGalleryImageVersion sharedG { string expectedId = "/SharedGalleries/" + GalleryUniqueName + "/Images/" + GalleryImageName + "/Versions/" + GalleryImageVersionName; Assert.Equal(expectedId, sharedGalleryImageVersion.UniqueId); + Assert.NotNull(sharedGalleryImageVersion.StorageProfile); + Assert.NotNull(sharedGalleryImageVersion.ExcludeFromLatest); + Assert.NotNull(sharedGalleryImageVersion.StorageProfile.OsDiskImage); } } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CommunityGalleryTests/CommunityGalleryImageVersion_GetAndList_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CommunityGalleryTests/CommunityGalleryImageVersion_GetAndList_Tests.json new file mode 100644 index 0000000000000..a04a1f193ba40 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CommunityGalleryTests/CommunityGalleryImageVersion_GetAndList_Tests.json @@ -0,0 +1,142 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/communityGalleries/PIRBVT-6c64f11e-ad23-4737-a58a-4f3c85acadbf/images/communitygallerylrwah/versions/1.0.0?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvY29tbXVuaXR5R2FsbGVyaWVzL1BJUkJWVC02YzY0ZjExZS1hZDIzLTQ3MzctYTU4YS00ZjNjODVhY2FkYmYvaW1hZ2VzL2NvbW11bml0eWdhbGxlcnlscndhaC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDIyLTAxLTAz", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "77b9c875-57f0-4d64-8a5d-5dd48012a761" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.11601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f409cccf-f8d5-4387-82a6-57ba86b3a582_132902163873453225" + ], + "x-ms-request-id": [ + "393f4004-80e1-4c6f-a729-67cf4f0d4ccd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "91d43956-303e-45c9-8bc8-df5d25b72f96" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220309T063958Z:91d43956-303e-45c9-8bc8-df5d25b72f96" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 09 Mar 2022 06:39:57 GMT" + ], + "Content-Length": [ + "445" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"identifier\": {\r\n \"uniqueId\": \"/CommunityGalleries/PIRBVT-6c64f11e-ad23-4737-a58a-4f3c85acadbf/Images/communitygallerylrwah/Versions/1.0.0\"\r\n },\r\n \"properties\": {\r\n \"publishedDate\": \"2021-10-19T13:20:42.4891413-07:00\",\r\n \"excludeFromLatest\": false,\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"diskSizeGB\": 29,\r\n \"hostCaching\": \"None\"\r\n }\r\n }\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"1.0.0\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/communityGalleries/PIRBVT-6c64f11e-ad23-4737-a58a-4f3c85acadbf/images/communitygallerylrwah/versions?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvY29tbXVuaXR5R2FsbGVyaWVzL1BJUkJWVC02YzY0ZjExZS1hZDIzLTQ3MzctYTU4YS00ZjNjODVhY2FkYmYvaW1hZ2VzL2NvbW11bml0eWdhbGxlcnlscndhaC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDIyLTAxLTAz", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "96d1bab1-5d9e-49af-b353-ab1d6c3469f5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.11601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f409cccf-f8d5-4387-82a6-57ba86b3a582_132902163873453225" + ], + "x-ms-request-id": [ + "b66b0742-91af-4c55-801c-62758acad35a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "d9c8dea8-3fc2-412e-8956-8b99bfa8c9d0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220309T063958Z:d9c8dea8-3fc2-412e-8956-8b99bfa8c9d0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 09 Mar 2022 06:39:58 GMT" + ], + "Content-Length": [ + "538" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"identifier\": {\r\n \"uniqueId\": \"/CommunityGalleries/PIRBVT-6c64f11e-ad23-4737-a58a-4f3c85acadbf/Images/communitygallerylrwah/Versions/1.0.0\"\r\n },\r\n \"properties\": {\r\n \"publishedDate\": \"2021-10-19T13:20:42.4891413-07:00\",\r\n \"excludeFromLatest\": false,\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"diskSizeGB\": 29,\r\n \"hostCaching\": \"None\"\r\n }\r\n }\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"1.0.0\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "97f78232-382b-46a7-8a72-964d692c4f3f" + } +} \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CommunityGalleryTests/CommunityGalleryImage_GetAndList_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CommunityGalleryTests/CommunityGalleryImage_GetAndList_Tests.json new file mode 100644 index 0000000000000..a9eed4b3d6930 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CommunityGalleryTests/CommunityGalleryImage_GetAndList_Tests.json @@ -0,0 +1,142 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/communityGalleries/PIRBVT-6c64f11e-ad23-4737-a58a-4f3c85acadbf/images/communitygallerylrwah?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvY29tbXVuaXR5R2FsbGVyaWVzL1BJUkJWVC02YzY0ZjExZS1hZDIzLTQ3MzctYTU4YS00ZjNjODVhY2FkYmYvaW1hZ2VzL2NvbW11bml0eWdhbGxlcnlscndhaD9hcGktdmVyc2lvbj0yMDIyLTAxLTAz", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1ea467b3-bee3-4f8a-840c-cb685a925551" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.16002", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f409cccf-f8d5-4387-82a6-57ba86b3a582_132947811814696538" + ], + "x-ms-request-id": [ + "b6f0810a-f9cb-4bec-b96b-7bef8eea9731" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "bfc03955-bafd-4287-871e-4045180a6dbf" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20220422T234553Z:bfc03955-bafd-4287-871e-4045180a6dbf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 22 Apr 2022 23:45:53 GMT" + ], + "Content-Length": [ + "584" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"identifier\": {\r\n \"uniqueId\": \"/CommunityGalleries/PIRBVT-6c64f11e-ad23-4737-a58a-4f3c85acadbf/Images/communitygallerylrwah\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"GalleryPub\",\r\n \"offer\": \"GalleryOffer\",\r\n \"sku\": \"GallerySku\"\r\n },\r\n \"recommended\": {},\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"privacyStatementUri\": \"https://www.microsoft.com\",\r\n \"eula\": \"Use on your own risk\"\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"communitygallerylrwah\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/communityGalleries/PIRBVT-6c64f11e-ad23-4737-a58a-4f3c85acadbf/images?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvY29tbXVuaXR5R2FsbGVyaWVzL1BJUkJWVC02YzY0ZjExZS1hZDIzLTQ3MzctYTU4YS00ZjNjODVhY2FkYmYvaW1hZ2VzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3d9c311f-ab72-4396-88ae-51a66c42ecc8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.16002", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f409cccf-f8d5-4387-82a6-57ba86b3a582_132947811814696538" + ], + "x-ms-request-id": [ + "74adeedb-f74b-4b59-8888-a238ea50d678" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "e151100a-8756-4bb6-a574-949b6d1e7b7f" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20220422T234553Z:e151100a-8756-4bb6-a574-949b6d1e7b7f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 22 Apr 2022 23:45:53 GMT" + ], + "Content-Length": [ + "693" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"identifier\": {\r\n \"uniqueId\": \"/CommunityGalleries/PIRBVT-6c64f11e-ad23-4737-a58a-4f3c85acadbf/Images/communitygallerylrwah\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"GalleryPub\",\r\n \"offer\": \"GalleryOffer\",\r\n \"sku\": \"GallerySku\"\r\n },\r\n \"recommended\": {},\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"privacyStatementUri\": \"https://www.microsoft.com\",\r\n \"eula\": \"Use on your own risk\"\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"communitygallerylrwah\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "97f78232-382b-46a7-8a72-964d692c4f3f" + } +} \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CommunityGalleryTests/CommunityGallery_Get_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CommunityGalleryTests/CommunityGallery_Get_Tests.json new file mode 100644 index 0000000000000..16d13c7f06941 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CommunityGalleryTests/CommunityGallery_Get_Tests.json @@ -0,0 +1,75 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/communityGalleries/PIRBVT-6c64f11e-ad23-4737-a58a-4f3c85acadbf?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvY29tbXVuaXR5R2FsbGVyaWVzL1BJUkJWVC02YzY0ZjExZS1hZDIzLTQ3MzctYTU4YS00ZjNjODVhY2FkYmY/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7ebb1a52-ae28-4f1f-81fe-562a8fde4176" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.11601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "f409cccf-f8d5-4387-82a6-57ba86b3a582_132902163873453225" + ], + "x-ms-request-id": [ + "bf8d26c8-00cb-4f25-b4cb-5002d4d1701d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "bf556bbf-a526-4fe1-9a7f-13359da8bb1e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220309T063957Z:bf556bbf-a526-4fe1-9a7f-13359da8bb1e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 09 Mar 2022 06:39:57 GMT" + ], + "Content-Length": [ + "423" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"identifier\": {\r\n \"uniqueId\": \"/CommunityGalleries/PIRBVT-6c64f11e-ad23-4737-a58a-4f3c85acadbf\"\r\n },\r\n \"communityMetadata\": {\r\n \"publisherUri\": \"BVTPublisherUri\",\r\n \"publisherContact\": \"PIR@microsoft.com\",\r\n \"eula\": \"BVTeula\",\r\n \"publicNames\": [\r\n \"PIRBVT-6c64f11e-ad23-4737-a58a-4f3c85acadbf\"\r\n ]\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"PIRBVT-6c64f11e-ad23-4737-a58a-4f3c85acadbf\"\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "97f78232-382b-46a7-8a72-964d692c4f3f" + } +} \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryApplicationVersion_CRUD_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryApplicationVersion_CRUD_Tests.json index 6f1a4faec6503..34bcb9a12d93d 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryApplicationVersion_CRUD_Tests.json +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryApplicationVersion_CRUD_Tests.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/galleryPsTestRg254?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1ND9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourcegroups/galleryPsTestRg172?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE3Mj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"galleryPsTestRg254\": \"2022-04-14 01:47:13Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg172\": \"2022-04-19 01:03:55Z\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fb70b30f-ce7f-4e08-8bbb-0160754cf39c" + "e76ae95b-8eab-4318-a74d-9d6078ed0e04" ], "Accept-Language": [ "en-US" @@ -15,14 +15,14 @@ "User-Agent": [ "FxVersion/4.700.22.16002", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "104" + "98" ] }, "ResponseHeaders": { @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "a196671b-9bc0-4dbe-927a-eb4126f4657a" + "2ccb0982-1689-474c-a4b8-ce81b1432214" ], "x-ms-correlation-request-id": [ - "a196671b-9bc0-4dbe-927a-eb4126f4657a" + "2ccb0982-1689-474c-a4b8-ce81b1432214" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T014541Z:a196671b-9bc0-4dbe-927a-eb4126f4657a" + "WESTCENTRALUS:20220419T010357Z:2ccb0982-1689-474c-a4b8-ce81b1432214" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:45:41 GMT" + "Tue, 19 Apr 2022 01:03:57 GMT" ], "Content-Length": [ - "249" + "243" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,17 +63,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg254\",\r\n \"name\": \"galleryPsTestRg254\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"galleryPsTestRg254\": \"2022-04-14 01:47:13Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/galleryPsTestRg172\",\r\n \"name\": \"galleryPsTestRg172\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg172\": \"2022-04-19 01:03:55Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg254/providers/Microsoft.Storage/storageAccounts/saforgallery2224?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3NhZm9yZ2FsbGVyeTIyMjQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/galleryPsTestRg172/providers/Microsoft.Storage/storageAccounts/saforgallery6712?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3NhZm9yZ2FsbGVyeTY3MTI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ce86fdd4-d98d-407d-8f28-afcedfe57ed7" + "7f5e1b12-1d97-449f-9858-1bf64b91541a" ], "Accept-Language": [ "en-US" @@ -81,14 +81,14 @@ "User-Agent": [ "FxVersion/4.700.22.16002", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "95" + "89" ] }, "ResponseHeaders": { @@ -99,13 +99,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b7ccf09d-69e2-4b86-aaab-8769a690ba47?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/providers/Microsoft.Storage/locations/eastus2/asyncoperations/1456c85a-f787-4ae3-bfd2-99299e7afe6f?monitor=true&api-version=2015-06-15" ], "Retry-After": [ "17" ], "x-ms-request-id": [ - "b7ccf09d-69e2-4b86-aaab-8769a690ba47" + "1456c85a-f787-4ae3-bfd2-99299e7afe6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,16 +117,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "de3324f4-0f9b-4ceb-bfa3-cf8596375333" + "03348b9d-231c-4f59-9d51-e67e6d8425fc" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T014553Z:de3324f4-0f9b-4ceb-bfa3-cf8596375333" + "WESTCENTRALUS:20220419T010405Z:03348b9d-231c-4f59-9d51-e67e6d8425fc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:45:52 GMT" + "Tue, 19 Apr 2022 01:04:04 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -142,15 +142,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b7ccf09d-69e2-4b86-aaab-8769a690ba47?monitor=true&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjdjY2YwOWQtNjllMi00Yjg2LWFhYWItODc2OWE2OTBiYTQ3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/providers/Microsoft.Storage/locations/eastus2/asyncoperations/1456c85a-f787-4ae3-bfd2-99299e7afe6f?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMi9hc3luY29wZXJhdGlvbnMvMTQ1NmM4NWEtZjc4Ny00YWUzLWJmZDItOTkyOTllN2FmZTZmP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.16002", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ] }, @@ -162,13 +162,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b7ccf09d-69e2-4b86-aaab-8769a690ba47?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/providers/Microsoft.Storage/locations/eastus2/asyncoperations/1456c85a-f787-4ae3-bfd2-99299e7afe6f?monitor=true&api-version=2015-06-15" ], "Retry-After": [ "3" ], "x-ms-request-id": [ - "6eed3df1-de3f-413d-9b28-32dce7dff2be" + "0252d15e-1b85-43f7-b9fd-0f2939885043" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -180,16 +180,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "3d08c8e1-a362-4b73-8196-7b64a413ef8f" + "d2c9ff37-494f-4b88-943e-8cc72a4814bc" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T014610Z:3d08c8e1-a362-4b73-8196-7b64a413ef8f" + "WESTCENTRALUS:20220419T010422Z:d2c9ff37-494f-4b88-943e-8cc72a4814bc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:46:10 GMT" + "Tue, 19 Apr 2022 01:04:21 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -205,15 +205,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/b7ccf09d-69e2-4b86-aaab-8769a690ba47?monitor=true&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvYjdjY2YwOWQtNjllMi00Yjg2LWFhYWItODc2OWE2OTBiYTQ3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/providers/Microsoft.Storage/locations/eastus2/asyncoperations/1456c85a-f787-4ae3-bfd2-99299e7afe6f?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMi9hc3luY29wZXJhdGlvbnMvMTQ1NmM4NWEtZjc4Ny00YWUzLWJmZDItOTkyOTllN2FmZTZmP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.16002", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ] }, @@ -225,7 +225,7 @@ "no-cache" ], "x-ms-request-id": [ - "6924b74f-3952-4635-924b-7c86dd2ca6e8" + "1c9f7492-d13e-4607-90f8-bcb35d4f4792" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,19 +237,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "fba95999-40c9-44b5-aa6e-486ceb7e1267" + "279b793f-5e9c-40c5-abe1-b41475172bcc" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T014613Z:fba95999-40c9-44b5-aa6e-486ceb7e1267" + "WESTCENTRALUS:20220419T010425Z:279b793f-5e9c-40c5-abe1-b41475172bcc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:46:13 GMT" + "Tue, 19 Apr 2022 01:04:24 GMT" ], "Content-Length": [ - "95" + "89" ], "Content-Type": [ "application/json" @@ -258,17 +258,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg254/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/galleryPsTestRg172/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3ee7edb2-6d4a-43e5-b0ec-ad5990ee668f" + "7cac2973-8e96-4267-b778-8a8526858264" ], "Accept-Language": [ "en-US" @@ -276,7 +276,7 @@ "User-Agent": [ "FxVersion/4.700.22.16002", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ] }, @@ -288,7 +288,7 @@ "no-cache" ], "x-ms-request-id": [ - "c95d07c1-fd4c-417a-a089-89bf125658d1" + "5d1dabf8-b9b3-452f-a9f8-ccbaaf58f529" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -300,19 +300,19 @@ "11997" ], "x-ms-correlation-request-id": [ - "f64d75f1-acdd-4d83-a02c-d04931084901" + "ca936dfb-a0be-4c08-930c-5ecf2195c9f2" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T014624Z:f64d75f1-acdd-4d83-a02c-d04931084901" + "WESTCENTRALUS:20220419T010435Z:ca936dfb-a0be-4c08-930c-5ecf2195c9f2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:46:23 GMT" + "Tue, 19 Apr 2022 01:04:35 GMT" ], "Content-Length": [ - "775" + "764" ], "Content-Type": [ "application/json" @@ -321,17 +321,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg254/providers/Microsoft.Storage/storageAccounts/saforgallery2224\",\r\n \"name\": \"saforgallery2224\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2022-04-14T01:45:49.6023994Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery2224.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery2224.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery2224.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery2224.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/galleryPsTestRg172/providers/Microsoft.Storage/storageAccounts/saforgallery6712\",\r\n \"name\": \"saforgallery6712\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2022-04-19T01:04:00.2160834Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery6712.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery6712.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery6712.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery6712.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg254/providers/Microsoft.Storage/storageAccounts/saforgallery2224?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3NhZm9yZ2FsbGVyeTIyMjQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/galleryPsTestRg172/providers/Microsoft.Storage/storageAccounts/saforgallery6712?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3NhZm9yZ2FsbGVyeTY3MTI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c8275c5-7491-4264-9aab-318af49daff9" + "eec7c99e-ad45-4b21-a978-3c7750ad2cb3" ], "Accept-Language": [ "en-US" @@ -339,7 +339,7 @@ "User-Agent": [ "FxVersion/4.700.22.16002", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ] }, @@ -351,7 +351,7 @@ "no-cache" ], "x-ms-request-id": [ - "6204bd9a-c2c0-4e47-b3a8-63130596deaa" + "d4cf7c03-afbf-425d-8841-96d6ecabdd30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -363,19 +363,19 @@ "11996" ], "x-ms-correlation-request-id": [ - "ac23ce97-04dd-44bc-9cf9-773ea9f41b77" + "6fdfca40-8e0e-4880-9564-056edc6e3d14" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T014624Z:ac23ce97-04dd-44bc-9cf9-773ea9f41b77" + "WESTCENTRALUS:20220419T010436Z:6fdfca40-8e0e-4880-9564-056edc6e3d14" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:46:24 GMT" + "Tue, 19 Apr 2022 01:04:35 GMT" ], "Content-Length": [ - "763" + "752" ], "Content-Type": [ "application/json" @@ -384,17 +384,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg254/providers/Microsoft.Storage/storageAccounts/saforgallery2224\",\r\n \"name\": \"saforgallery2224\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2022-04-14T01:45:49.6023994Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery2224.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery2224.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery2224.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery2224.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/galleryPsTestRg172/providers/Microsoft.Storage/storageAccounts/saforgallery6712\",\r\n \"name\": \"saforgallery6712\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2022-04-19T01:04:00.2160834Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery6712.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery6712.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery6712.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery6712.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg254/providers/Microsoft.Storage/storageAccounts/saforgallery2224/listKeys?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3NhZm9yZ2FsbGVyeTIyMjQvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/galleryPsTestRg172/providers/Microsoft.Storage/storageAccounts/saforgallery6712/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3NhZm9yZ2FsbGVyeTY3MTIvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d58073a-4df1-4b74-acc2-fe11c1a7f7dd" + "2c277d59-c04d-4acf-a1b7-deef07ddc742" ], "Accept-Language": [ "en-US" @@ -402,7 +402,7 @@ "User-Agent": [ "FxVersion/4.700.22.16002", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ] }, @@ -414,7 +414,7 @@ "no-cache" ], "x-ms-request-id": [ - "dd5ae0a8-dabb-4857-a37e-13da5a45a2cd" + "26a8b7a6-28a8-4fae-a4a5-1e7f0e96d157" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -426,16 +426,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "9133fb41-fa1a-4877-86a9-66cc79106330" + "f206cab2-06f2-40e0-ae7e-f0b684f5a1dc" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T014624Z:9133fb41-fa1a-4877-86a9-66cc79106330" + "WESTCENTRALUS:20220419T010436Z:f206cab2-06f2-40e0-ae7e-f0b684f5a1dc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:46:24 GMT" + "Tue, 19 Apr 2022 01:04:35 GMT" ], "Content-Length": [ "197" @@ -451,13 +451,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg254/providers/Microsoft.Compute/galleries/galleryPsTestGallery7123?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzEyMz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/galleryPsTestRg172/providers/Microsoft.Compute/galleries/galleryPsTestGallery1006?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTAwNj9hcGktdmVyc2lvbj0yMDIyLTAxLTAz", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\"\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\"\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f1d85ecd-6c22-4cbb-8b9d-5600b4438936" + "06da6987-ba09-4960-9d79-a4c9f26a8d40" ], "Accept-Language": [ "en-US" @@ -465,14 +465,14 @@ "User-Agent": [ "FxVersion/4.700.22.16002", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "119" + "113" ] }, "ResponseHeaders": { @@ -483,19 +483,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/c269d416-82fc-4bd8-9703-ed5d0166e35f?api-version=2021-10-01" + "https://management.azure.com/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/providers/Microsoft.Compute/locations/eastus2/capsOperations/626027d7-5f55-4547-abba-9876df6f9870?api-version=2022-01-03" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;298" + "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008" ], "x-ms-request-id": [ - "c269d416-82fc-4bd8-9703-ed5d0166e35f" + "626027d7-5f55-4547-abba-9876df6f9870" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -505,19 +505,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "bbba16e6-d18d-4d9d-9222-cabe5e27313b" + "e65c3775-5863-4f06-bf6d-d30f13f791cd" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T014637Z:bbba16e6-d18d-4d9d-9222-cabe5e27313b" + "WESTCENTRALUS:20220419T010439Z:e65c3775-5863-4f06-bf6d-d30f13f791cd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:46:36 GMT" + "Tue, 19 Apr 2022 01:04:38 GMT" ], "Content-Length": [ - "513" + "507" ], "Content-Type": [ "application/json; charset=utf-8" @@ -526,20 +526,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery7123\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg254/providers/Microsoft.Compute/galleries/galleryPsTestGallery7123\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY7123\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery1006\",\r\n \"id\": \"/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/galleryPsTestRg172/providers/Microsoft.Compute/galleries/galleryPsTestGallery1006\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"a53f7094-a16c-47af-abe4-b05c05d0d79a-GALLERYPSTESTGALLERY1006\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/c269d416-82fc-4bd8-9703-ed5d0166e35f?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9jMjY5ZDQxNi04MmZjLTRiZDgtOTcwMy1lZDVkMDE2NmUzNWY/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/providers/Microsoft.Compute/locations/eastus2/capsOperations/626027d7-5f55-4547-abba-9876df6f9870?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy82MjYwMjdkNy01ZjU1LTQ1NDctYWJiYS05ODc2ZGY2Zjk4NzA/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.16002", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -550,16 +550,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4193" + "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4198" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008" ], "x-ms-request-id": [ - "275f3f2e-b5f1-4d69-892a-250377908c84" + "c174c50a-c519-44e8-937b-09c0a49ff0b9" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -569,16 +569,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "68a6fec6-b616-489f-86a3-f0751059f283" + "7110a2b6-6912-4248-9a11-028ef7c7d2b6" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T014707Z:68a6fec6-b616-489f-86a3-f0751059f283" + "WESTCENTRALUS:20220419T010509Z:7110a2b6-6912-4248-9a11-028ef7c7d2b6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:47:06 GMT" + "Tue, 19 Apr 2022 01:05:08 GMT" ], "Content-Length": [ "184" @@ -590,20 +590,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-13T20:46:35.8592782-05:00\",\r\n \"endTime\": \"2022-04-13T20:46:36.1249292-05:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c269d416-82fc-4bd8-9703-ed5d0166e35f\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-04-18T18:04:39.1858618-07:00\",\r\n \"endTime\": \"2022-04-18T18:04:39.7952817-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"626027d7-5f55-4547-abba-9876df6f9870\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg254/providers/Microsoft.Compute/galleries/galleryPsTestGallery7123?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzEyMz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/galleryPsTestRg172/providers/Microsoft.Compute/galleries/galleryPsTestGallery1006?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTAwNj9hcGktdmVyc2lvbj0yMDIyLTAxLTAz", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.16002", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -614,16 +614,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;344,Microsoft.Compute/GetGallery30Min;2490" + "Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2496" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008" ], "x-ms-request-id": [ - "a94f9835-09a4-474a-8dc7-aca7dd8d934b" + "15e2d4a5-93ba-4567-a07a-b0352d6d0b54" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -633,19 +633,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "f4f81431-fde7-455f-93e6-aa6091896b1d" + "6827fd47-373b-4a59-9cc6-d9d96eff2753" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T014708Z:f4f81431-fde7-455f-93e6-aa6091896b1d" + "WESTCENTRALUS:20220419T010509Z:6827fd47-373b-4a59-9cc6-d9d96eff2753" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:47:07 GMT" + "Tue, 19 Apr 2022 01:05:09 GMT" ], "Content-Length": [ - "514" + "508" ], "Content-Type": [ "application/json; charset=utf-8" @@ -654,17 +654,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery7123\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg254/providers/Microsoft.Compute/galleries/galleryPsTestGallery7123\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY7123\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery1006\",\r\n \"id\": \"/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/galleryPsTestRg172/providers/Microsoft.Compute/galleries/galleryPsTestGallery1006\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"a53f7094-a16c-47af-abe4-b05c05d0d79a-GALLERYPSTESTGALLERY1006\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg254/providers/Microsoft.Compute/galleries/galleryPsTestGallery7123/applications/galleryPsTestGalleryApplication438?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzEyMy9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjQzOD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/galleryPsTestRg172/providers/Microsoft.Compute/galleries/galleryPsTestGallery1006/applications/galleryPsTestGalleryApplication2473?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTAwNi9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjI0NzM/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\",\r\n \"supportedOSType\": \"Windows\"\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\",\r\n \"supportedOSType\": \"Windows\"\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "22877c15-ab01-49e8-8345-997e1ceddea5" + "0202a917-a26d-40fe-9d17-c070b919826f" ], "Accept-Language": [ "en-US" @@ -672,14 +672,14 @@ "User-Agent": [ "FxVersion/4.700.22.16002", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "318" + "312" ] }, "ResponseHeaders": { @@ -690,16 +690,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateUpdateGalleryApplication3Min;148,Microsoft.Compute/CreateUpdateGalleryApplication30Min;747" + "Microsoft.Compute/CreateUpdateGalleryApplication3Min;149,Microsoft.Compute/CreateUpdateGalleryApplication30Min;749" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008" ], "x-ms-request-id": [ - "4be0c43f-663f-4093-8edd-5ebb7842efc2" + "02ea695b-dcbf-4ef9-915e-313b80bfffa0" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -709,19 +709,19 @@ "1198" ], "x-ms-correlation-request-id": [ - "0e8bfcdf-4254-4536-877d-00585b2f2ceb" + "ba88c753-4cc0-4b5c-835f-b9ef2ba1c3d8" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T014711Z:0e8bfcdf-4254-4536-877d-00585b2f2ceb" + "WESTCENTRALUS:20220419T010511Z:ba88c753-4cc0-4b5c-835f-b9ef2ba1c3d8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:47:11 GMT" + "Tue, 19 Apr 2022 01:05:10 GMT" ], "Content-Length": [ - "631" + "627" ], "Content-Type": [ "application/json; charset=utf-8" @@ -730,20 +730,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication438\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg254/providers/Microsoft.Compute/galleries/galleryPsTestGallery7123/applications/galleryPsTestGalleryApplication438\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication2473\",\r\n \"id\": \"/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/galleryPsTestRg172/providers/Microsoft.Compute/galleries/galleryPsTestGallery1006/applications/galleryPsTestGalleryApplication2473\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg254/providers/Microsoft.Compute/galleries/galleryPsTestGallery7123/applications/galleryPsTestGalleryApplication438?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzEyMy9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjQzOD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/galleryPsTestRg172/providers/Microsoft.Compute/galleries/galleryPsTestGallery1006/applications/galleryPsTestGalleryApplication2473?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTAwNi9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjI0NzM/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.16002", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -754,16 +754,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryApplication3Min;298,Microsoft.Compute/GetGalleryApplication30Min;1993" + "Microsoft.Compute/GetGalleryApplication3Min;298,Microsoft.Compute/GetGalleryApplication30Min;1998" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008" ], "x-ms-request-id": [ - "b584e264-284f-42bc-8c38-220c458ce982" + "ec50a893-0e4f-4c53-81a5-d71ffe1f4af2" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -773,19 +773,19 @@ "11997" ], "x-ms-correlation-request-id": [ - "fe5dfc56-244f-4768-b3cf-22af1edcbdd0" + "b2c16c0d-523f-4643-95c6-7530bec553d0" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T014742Z:fe5dfc56-244f-4768-b3cf-22af1edcbdd0" + "WESTCENTRALUS:20220419T010541Z:b2c16c0d-523f-4643-95c6-7530bec553d0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:47:42 GMT" + "Tue, 19 Apr 2022 01:05:40 GMT" ], "Content-Length": [ - "631" + "627" ], "Content-Type": [ "application/json; charset=utf-8" @@ -794,17 +794,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication438\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg254/providers/Microsoft.Compute/galleries/galleryPsTestGallery7123/applications/galleryPsTestGalleryApplication438\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication2473\",\r\n \"id\": \"/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/galleryPsTestRg172/providers/Microsoft.Compute/galleries/galleryPsTestGallery1006/applications/galleryPsTestGalleryApplication2473\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg254/providers/Microsoft.Compute/galleries/galleryPsTestGallery7123/applications/galleryPsTestGalleryApplication438/versions/1.0.0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzEyMy9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjQzOC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/galleryPsTestRg172/providers/Microsoft.Compute/galleries/galleryPsTestGallery1006/applications/galleryPsTestGalleryApplication2473/versions/1.0.0?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTAwNi9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjI0NzMvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery2224.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=F3u%2Bg4mJsTKgsxpW7eIfkKnVqzitJqjSnI8lMl11v4Q%3D&st=2022-04-13T01%3A48%3A02Z&se=2022-04-16T01%3A48%3A02Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"SoutheastAsia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"endOfLifeDate\": \"2022-04-23T05:00:00Z\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery6712.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&st=2022-04-18T01%3A04%3A36Z&se=2022-04-21T01%3A04%3A36Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"settings\": {\r\n \"packageFileName\": \"test.zip\",\r\n \"configFileName\": \"config.cfg\"\r\n },\r\n \"advancedSettings\": {\r\n \"cacheLimit\": \"500\",\r\n \"user\": \"root\"\r\n },\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"eastus2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"endOfLifeDate\": \"2022-04-28T07:00:00Z\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "748c549b-4d5d-4dda-85b2-eca6e076fe3f" + "222c3b4b-0da9-48af-90ed-fb6ea77cd400" ], "Accept-Language": [ "en-US" @@ -812,14 +812,14 @@ "User-Agent": [ "FxVersion/4.700.22.16002", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "829" + "1023" ] }, "ResponseHeaders": { @@ -830,7 +830,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/f174a7f5-1a46-44bb-a43a-48445d3d7325?api-version=2021-10-01" + "https://management.azure.com/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/providers/Microsoft.Compute/locations/eastus2/capsOperations/e93aa3a9-3ba6-4ccb-ad1b-785b029f232a?api-version=2022-01-03" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/CreateUpdateGalleryApplicationVersion3Min;149,Microsoft.Compute/CreateUpdateGalleryApplicationVersion30Min;749" @@ -839,10 +839,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008" ], "x-ms-request-id": [ - "f174a7f5-1a46-44bb-a43a-48445d3d7325" + "e93aa3a9-3ba6-4ccb-ad1b-785b029f232a" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -852,19 +852,19 @@ "1197" ], "x-ms-correlation-request-id": [ - "402a7ccd-fd36-47bc-a7e5-8acf211d7d75" + "a2121a4b-df78-483c-8f52-8aeac047e2ca" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T014747Z:402a7ccd-fd36-47bc-a7e5-8acf211d7d75" + "WESTCENTRALUS:20220419T010542Z:a2121a4b-df78-483c-8f52-8aeac047e2ca" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:47:46 GMT" + "Tue, 19 Apr 2022 01:05:41 GMT" ], "Content-Length": [ - "1312" + "1508" ], "Content-Type": [ "application/json; charset=utf-8" @@ -873,17 +873,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg254/providers/Microsoft.Compute/galleries/galleryPsTestGallery7123/applications/galleryPsTestGalleryApplication438/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery2224.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=F3u%2Bg4mJsTKgsxpW7eIfkKnVqzitJqjSnI8lMl11v4Q%3D&st=2022-04-13T01%3A48%3A02Z&se=2022-04-16T01%3A48%3A02Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2022-04-13T20:47:45.4057596-05:00\",\r\n \"endOfLifeDate\": \"2022-04-23T00:00:00-05:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/galleryPsTestRg172/providers/Microsoft.Compute/galleries/galleryPsTestGallery1006/applications/galleryPsTestGalleryApplication2473/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery6712.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&st=2022-04-18T01%3A04%3A36Z&se=2022-04-21T01%3A04%3A36Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"settings\": {\r\n \"packageFileName\": \"test.zip\",\r\n \"configFileName\": \"config.cfg\"\r\n },\r\n \"advancedSettings\": {\r\n \"cacheLimit\": \"500\",\r\n \"user\": \"root\"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2022-04-18T18:05:42.1548328-07:00\",\r\n \"endOfLifeDate\": \"2022-04-28T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg254/providers/Microsoft.Compute/galleries/galleryPsTestGallery7123/applications/galleryPsTestGalleryApplication438/versions/1.0.0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzEyMy9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjQzOC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/galleryPsTestRg172/providers/Microsoft.Compute/galleries/galleryPsTestGallery1006/applications/galleryPsTestGalleryApplication2473/versions/1.0.0?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTAwNi9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjI0NzMvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery2224.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=F3u%2Bg4mJsTKgsxpW7eIfkKnVqzitJqjSnI8lMl11v4Q%3D&st=2022-04-13T01%3A48%3A02Z&se=2022-04-16T01%3A48%3A02Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"SoutheastAsia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"endOfLifeDate\": \"2022-07-22T05:00:00Z\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery6712.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&st=2022-04-18T01%3A04%3A36Z&se=2022-04-21T01%3A04%3A36Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"settings\": {\r\n \"packageFileName\": \"test.zip\",\r\n \"configFileName\": \"config.cfg\"\r\n },\r\n \"advancedSettings\": {\r\n \"cacheLimit\": \"500\",\r\n \"user\": \"root\"\r\n },\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"eastus2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"endOfLifeDate\": \"2022-07-27T07:00:00Z\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1a2b1f5f-628a-4c99-8adc-e648e715834b" + "c6ee6004-5e33-45ce-8eaa-a21306aa308d" ], "Accept-Language": [ "en-US" @@ -891,14 +891,14 @@ "User-Agent": [ "FxVersion/4.700.22.16002", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "829" + "1023" ] }, "ResponseHeaders": { @@ -909,7 +909,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/99f37f8d-ac8b-4bc8-b896-d5796c9141b5?api-version=2021-10-01" + "https://management.azure.com/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/providers/Microsoft.Compute/locations/eastus2/capsOperations/605d3964-51e1-4f73-ad96-99b1d2ef2e28?api-version=2022-01-03" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/CreateUpdateGalleryApplicationVersion3Min;149,Microsoft.Compute/CreateUpdateGalleryApplicationVersion30Min;748" @@ -918,10 +918,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008" ], "x-ms-request-id": [ - "99f37f8d-ac8b-4bc8-b896-d5796c9141b5" + "605d3964-51e1-4f73-ad96-99b1d2ef2e28" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -931,19 +931,19 @@ "1196" ], "x-ms-correlation-request-id": [ - "9add2ebd-5933-4928-8a02-e8ab5110aa57" + "b7a794c1-2598-481c-a9bf-7d24751f15f0" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T015221Z:9add2ebd-5933-4928-8a02-e8ab5110aa57" + "WESTCENTRALUS:20220419T011014Z:b7a794c1-2598-481c-a9bf-7d24751f15f0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:52:21 GMT" + "Tue, 19 Apr 2022 01:10:13 GMT" ], "Content-Length": [ - "1312" + "1508" ], "Content-Type": [ "application/json; charset=utf-8" @@ -952,20 +952,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg254/providers/Microsoft.Compute/galleries/galleryPsTestGallery7123/applications/galleryPsTestGalleryApplication438/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery2224.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=F3u%2Bg4mJsTKgsxpW7eIfkKnVqzitJqjSnI8lMl11v4Q%3D&st=2022-04-13T01%3A48%3A02Z&se=2022-04-16T01%3A48%3A02Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2022-04-13T20:47:45.4057596-05:00\",\r\n \"endOfLifeDate\": \"2022-07-22T00:00:00-05:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/galleryPsTestRg172/providers/Microsoft.Compute/galleries/galleryPsTestGallery1006/applications/galleryPsTestGalleryApplication2473/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery6712.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&st=2022-04-18T01%3A04%3A36Z&se=2022-04-21T01%3A04%3A36Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"settings\": {\r\n \"packageFileName\": \"test.zip\",\r\n \"configFileName\": \"config.cfg\"\r\n },\r\n \"advancedSettings\": {\r\n \"cacheLimit\": \"500\",\r\n \"user\": \"root\"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2022-04-18T18:05:42.1548328-07:00\",\r\n \"endOfLifeDate\": \"2022-07-27T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/f174a7f5-1a46-44bb-a43a-48445d3d7325?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9mMTc0YTdmNS0xYTQ2LTQ0YmItYTQzYS00ODQ0NWQzZDczMjU/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/providers/Microsoft.Compute/locations/eastus2/capsOperations/e93aa3a9-3ba6-4ccb-ad1b-785b029f232a?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lOTNhYTNhOS0zYmE2LTRjY2ItYWQxYi03ODViMDI5ZjIzMmE/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.16002", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -976,16 +976,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4190" + "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4196" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008" ], "x-ms-request-id": [ - "9337e408-918d-421f-8490-43d177dc0f08" + "afddfa95-d89d-4a27-9ee8-0cf94836a03e" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -995,19 +995,19 @@ "11996" ], "x-ms-correlation-request-id": [ - "ace668bd-5fba-48b4-8641-285fa3efd432" + "8458000c-f13b-4c00-8986-4c2ec4ddf47f" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T014817Z:ace668bd-5fba-48b4-8641-285fa3efd432" + "WESTCENTRALUS:20220419T010612Z:8458000c-f13b-4c00-8986-4c2ec4ddf47f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:48:17 GMT" + "Tue, 19 Apr 2022 01:06:12 GMT" ], "Content-Length": [ - "134" + "133" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1016,20 +1016,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-13T20:47:45.3588821-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f174a7f5-1a46-44bb-a43a-48445d3d7325\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-04-18T18:05:42.092341-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e93aa3a9-3ba6-4ccb-ad1b-785b029f232a\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/f174a7f5-1a46-44bb-a43a-48445d3d7325?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9mMTc0YTdmNS0xYTQ2LTQ0YmItYTQzYS00ODQ0NWQzZDczMjU/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/providers/Microsoft.Compute/locations/eastus2/capsOperations/e93aa3a9-3ba6-4ccb-ad1b-785b029f232a?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lOTNhYTNhOS0zYmE2LTRjY2ItYWQxYi03ODViMDI5ZjIzMmE/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.16002", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1040,16 +1040,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4188" + "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4193" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008" ], "x-ms-request-id": [ - "f864bdf1-ea2a-4116-901b-4b20c455eecb" + "f1a0f4c1-c5e1-4648-9ee3-dc79026dc2af" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1059,19 +1059,19 @@ "11995" ], "x-ms-correlation-request-id": [ - "bb7bab62-4ddb-4e5a-a7b8-806fac394759" + "bf093a08-630c-42b3-8aa7-bf79fefbf5a7" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T014847Z:bb7bab62-4ddb-4e5a-a7b8-806fac394759" + "WESTCENTRALUS:20220419T010642Z:bf093a08-630c-42b3-8aa7-bf79fefbf5a7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:48:47 GMT" + "Tue, 19 Apr 2022 01:06:42 GMT" ], "Content-Length": [ - "134" + "133" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1080,20 +1080,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-13T20:47:45.3588821-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f174a7f5-1a46-44bb-a43a-48445d3d7325\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-04-18T18:05:42.092341-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e93aa3a9-3ba6-4ccb-ad1b-785b029f232a\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/f174a7f5-1a46-44bb-a43a-48445d3d7325?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9mMTc0YTdmNS0xYTQ2LTQ0YmItYTQzYS00ODQ0NWQzZDczMjU/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/providers/Microsoft.Compute/locations/eastus2/capsOperations/e93aa3a9-3ba6-4ccb-ad1b-785b029f232a?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lOTNhYTNhOS0zYmE2LTRjY2ItYWQxYi03ODViMDI5ZjIzMmE/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.16002", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1104,16 +1104,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4185" + "Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4190" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008" ], "x-ms-request-id": [ - "20033440-66ac-4c0e-9e63-4e672e6e5eae" + "fe87335e-ced6-40ac-b4c4-7ff0bffa1837" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1123,19 +1123,19 @@ "11994" ], "x-ms-correlation-request-id": [ - "9cf0e9ad-0845-4278-a6b2-d0226aeb67f0" + "2dc7296d-3573-46af-8952-d75ad240e607" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T014918Z:9cf0e9ad-0845-4278-a6b2-d0226aeb67f0" + "WESTCENTRALUS:20220419T010712Z:2dc7296d-3573-46af-8952-d75ad240e607" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:49:17 GMT" + "Tue, 19 Apr 2022 01:07:12 GMT" ], "Content-Length": [ - "134" + "133" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1144,20 +1144,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-13T20:47:45.3588821-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f174a7f5-1a46-44bb-a43a-48445d3d7325\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-04-18T18:05:42.092341-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e93aa3a9-3ba6-4ccb-ad1b-785b029f232a\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/f174a7f5-1a46-44bb-a43a-48445d3d7325?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9mMTc0YTdmNS0xYTQ2LTQ0YmItYTQzYS00ODQ0NWQzZDczMjU/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/providers/Microsoft.Compute/locations/eastus2/capsOperations/e93aa3a9-3ba6-4ccb-ad1b-785b029f232a?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lOTNhYTNhOS0zYmE2LTRjY2ItYWQxYi03ODViMDI5ZjIzMmE/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.16002", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1168,16 +1168,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4182" + "Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4187" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008" ], "x-ms-request-id": [ - "cbe58576-acfd-4e16-b493-d4fc5c9e8e71" + "e3085db7-0c27-425c-9726-c5c1bd8105cf" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1187,19 +1187,19 @@ "11993" ], "x-ms-correlation-request-id": [ - "4c9e3ff5-af90-46ae-a224-de29aa1209f7" + "a2198211-312a-4c21-8bda-e8faaab00295" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T014948Z:4c9e3ff5-af90-46ae-a224-de29aa1209f7" + "WESTCENTRALUS:20220419T010743Z:a2198211-312a-4c21-8bda-e8faaab00295" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:49:47 GMT" + "Tue, 19 Apr 2022 01:07:42 GMT" ], "Content-Length": [ - "134" + "133" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1208,20 +1208,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-13T20:47:45.3588821-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f174a7f5-1a46-44bb-a43a-48445d3d7325\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-04-18T18:05:42.092341-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e93aa3a9-3ba6-4ccb-ad1b-785b029f232a\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/f174a7f5-1a46-44bb-a43a-48445d3d7325?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9mMTc0YTdmNS0xYTQ2LTQ0YmItYTQzYS00ODQ0NWQzZDczMjU/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/providers/Microsoft.Compute/locations/eastus2/capsOperations/e93aa3a9-3ba6-4ccb-ad1b-785b029f232a?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lOTNhYTNhOS0zYmE2LTRjY2ItYWQxYi03ODViMDI5ZjIzMmE/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.16002", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1232,16 +1232,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;4179" + "Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;4184" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008" ], "x-ms-request-id": [ - "965910cd-099b-4774-aec9-c847f97cabfb" + "be07db23-866d-4388-af96-3ff512aa6a29" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1251,19 +1251,19 @@ "11992" ], "x-ms-correlation-request-id": [ - "c6e5c0ba-29a1-410d-b3e2-f0be29b5c41a" + "6427b772-8829-400a-842f-554fa214405a" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T015018Z:c6e5c0ba-29a1-410d-b3e2-f0be29b5c41a" + "WESTCENTRALUS:20220419T010813Z:6427b772-8829-400a-842f-554fa214405a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:50:17 GMT" + "Tue, 19 Apr 2022 01:08:13 GMT" ], "Content-Length": [ - "134" + "133" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1272,20 +1272,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-13T20:47:45.3588821-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f174a7f5-1a46-44bb-a43a-48445d3d7325\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-04-18T18:05:42.092341-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e93aa3a9-3ba6-4ccb-ad1b-785b029f232a\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/f174a7f5-1a46-44bb-a43a-48445d3d7325?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9mMTc0YTdmNS0xYTQ2LTQ0YmItYTQzYS00ODQ0NWQzZDczMjU/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/providers/Microsoft.Compute/locations/eastus2/capsOperations/e93aa3a9-3ba6-4ccb-ad1b-785b029f232a?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lOTNhYTNhOS0zYmE2LTRjY2ItYWQxYi03ODViMDI5ZjIzMmE/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.16002", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1296,16 +1296,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4176" + "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4181" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008" ], "x-ms-request-id": [ - "f2841b66-17d0-4907-8a15-a302f54412a1" + "361e4867-1a85-435b-8872-d6f0e80151fe" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1315,19 +1315,19 @@ "11991" ], "x-ms-correlation-request-id": [ - "d3eb6aab-b209-4334-9412-6b5260384a52" + "f06dce3b-e8e2-458f-9992-0336a80200f0" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T015049Z:d3eb6aab-b209-4334-9412-6b5260384a52" + "WESTCENTRALUS:20220419T010843Z:f06dce3b-e8e2-458f-9992-0336a80200f0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:50:48 GMT" + "Tue, 19 Apr 2022 01:08:43 GMT" ], "Content-Length": [ - "134" + "133" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1336,20 +1336,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-13T20:47:45.3588821-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f174a7f5-1a46-44bb-a43a-48445d3d7325\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-04-18T18:05:42.092341-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e93aa3a9-3ba6-4ccb-ad1b-785b029f232a\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/f174a7f5-1a46-44bb-a43a-48445d3d7325?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9mMTc0YTdmNS0xYTQ2LTQ0YmItYTQzYS00ODQ0NWQzZDczMjU/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/providers/Microsoft.Compute/locations/eastus2/capsOperations/e93aa3a9-3ba6-4ccb-ad1b-785b029f232a?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lOTNhYTNhOS0zYmE2LTRjY2ItYWQxYi03ODViMDI5ZjIzMmE/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.16002", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1360,38 +1360,38 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4173" + "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4178" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008" ], "x-ms-request-id": [ - "a259df3d-4a3e-4562-bbb2-dc1606dcd70a" + "776b7b8c-fd5e-4094-9cf3-502df21f9348" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], "x-ms-correlation-request-id": [ - "3cba45de-8bf4-435d-a46c-575cd0138f83" + "a508816d-630b-4d50-8331-7f7b24ef95ee" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T015119Z:3cba45de-8bf4-435d-a46c-575cd0138f83" + "WESTCENTRALUS:20220419T010913Z:a508816d-630b-4d50-8331-7f7b24ef95ee" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:51:19 GMT" + "Tue, 19 Apr 2022 01:09:12 GMT" ], "Content-Length": [ - "134" + "133" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1400,20 +1400,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-13T20:47:45.3588821-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f174a7f5-1a46-44bb-a43a-48445d3d7325\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-04-18T18:05:42.092341-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e93aa3a9-3ba6-4ccb-ad1b-785b029f232a\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/f174a7f5-1a46-44bb-a43a-48445d3d7325?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9mMTc0YTdmNS0xYTQ2LTQ0YmItYTQzYS00ODQ0NWQzZDczMjU/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/providers/Microsoft.Compute/locations/eastus2/capsOperations/e93aa3a9-3ba6-4ccb-ad1b-785b029f232a?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lOTNhYTNhOS0zYmE2LTRjY2ItYWQxYi03ODViMDI5ZjIzMmE/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.16002", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1424,16 +1424,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4170" + "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4175" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008" ], "x-ms-request-id": [ - "f9730f82-0c20-40cf-a33b-9c7302b027f2" + "390329dc-b269-4867-9b99-f00ad0015e86" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1443,19 +1443,19 @@ "11989" ], "x-ms-correlation-request-id": [ - "a8eb6756-c980-4b17-9d1c-9467fc7cc1c3" + "17c4e04a-0923-48be-bcb7-2998cad7e12f" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T015149Z:a8eb6756-c980-4b17-9d1c-9467fc7cc1c3" + "WESTCENTRALUS:20220419T010943Z:17c4e04a-0923-48be-bcb7-2998cad7e12f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:51:49 GMT" + "Tue, 19 Apr 2022 01:09:43 GMT" ], "Content-Length": [ - "134" + "133" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1464,20 +1464,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-13T20:47:45.3588821-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f174a7f5-1a46-44bb-a43a-48445d3d7325\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-04-18T18:05:42.092341-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e93aa3a9-3ba6-4ccb-ad1b-785b029f232a\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/f174a7f5-1a46-44bb-a43a-48445d3d7325?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9mMTc0YTdmNS0xYTQ2LTQ0YmItYTQzYS00ODQ0NWQzZDczMjU/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/providers/Microsoft.Compute/locations/eastus2/capsOperations/e93aa3a9-3ba6-4ccb-ad1b-785b029f232a?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lOTNhYTNhOS0zYmE2LTRjY2ItYWQxYi03ODViMDI5ZjIzMmE/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.16002", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1488,38 +1488,38 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4167" + "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4172" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008" ], "x-ms-request-id": [ - "1dae5054-285b-4ed6-bf98-1873116b69e8" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "1a40b625-3a89-437f-87df-29fcaae4e4e3" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], "x-ms-correlation-request-id": [ - "8d5efa77-777f-4252-8663-f4b9daae030d" + "d67a370a-19fd-4c73-afbf-df04347ac98f" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T015219Z:8d5efa77-777f-4252-8663-f4b9daae030d" + "WESTCENTRALUS:20220419T011013Z:d67a370a-19fd-4c73-afbf-df04347ac98f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:52:19 GMT" + "Tue, 19 Apr 2022 01:10:12 GMT" ], "Content-Length": [ - "184" + "183" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1528,20 +1528,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-13T20:47:45.3588821-05:00\",\r\n \"endTime\": \"2022-04-13T20:52:15.6383655-05:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f174a7f5-1a46-44bb-a43a-48445d3d7325\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-04-18T18:05:42.092341-07:00\",\r\n \"endTime\": \"2022-04-18T18:10:12.4207454-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e93aa3a9-3ba6-4ccb-ad1b-785b029f232a\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg254/providers/Microsoft.Compute/galleries/galleryPsTestGallery7123/applications/galleryPsTestGalleryApplication438/versions/1.0.0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzEyMy9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjQzOC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/galleryPsTestRg172/providers/Microsoft.Compute/galleries/galleryPsTestGallery1006/applications/galleryPsTestGalleryApplication2473/versions/1.0.0?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTAwNi9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjI0NzMvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.16002", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1552,16 +1552,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryApplicationVersion3Min;1998,Microsoft.Compute/GetGalleryApplicationVersion30Min;9996" + "Microsoft.Compute/GetGalleryApplicationVersion3Min;1999,Microsoft.Compute/GetGalleryApplicationVersion30Min;9997" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008" ], "x-ms-request-id": [ - "c2e7bc01-1e6f-44f5-9c88-4932e126b4c6" + "50dc6a31-57ed-4801-a11d-8e3e218b5985" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1571,19 +1571,19 @@ "11987" ], "x-ms-correlation-request-id": [ - "8444d1e7-2530-4e6f-b898-2d838010cc5e" + "b92c51cc-6a1d-4151-bc7e-301c43effa7e" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T015220Z:8444d1e7-2530-4e6f-b898-2d838010cc5e" + "WESTCENTRALUS:20220419T011013Z:b92c51cc-6a1d-4151-bc7e-301c43effa7e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:52:20 GMT" + "Tue, 19 Apr 2022 01:10:13 GMT" ], "Content-Length": [ - "1313" + "1509" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1592,17 +1592,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg254/providers/Microsoft.Compute/galleries/galleryPsTestGallery7123/applications/galleryPsTestGalleryApplication438/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery2224.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=F3u%2Bg4mJsTKgsxpW7eIfkKnVqzitJqjSnI8lMl11v4Q%3D&st=2022-04-13T01%3A48%3A02Z&se=2022-04-16T01%3A48%3A02Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2022-04-13T20:47:45.4057596-05:00\",\r\n \"endOfLifeDate\": \"2022-04-23T00:00:00-05:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/galleryPsTestRg172/providers/Microsoft.Compute/galleries/galleryPsTestGallery1006/applications/galleryPsTestGalleryApplication2473/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery6712.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&st=2022-04-18T01%3A04%3A36Z&se=2022-04-21T01%3A04%3A36Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"settings\": {\r\n \"packageFileName\": \"test.zip\",\r\n \"configFileName\": \"config.cfg\"\r\n },\r\n \"advancedSettings\": {\r\n \"cacheLimit\": \"500\",\r\n \"user\": \"root\"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2022-04-18T18:05:42.1548328-07:00\",\r\n \"endOfLifeDate\": \"2022-04-28T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg254/providers/Microsoft.Compute/galleries/galleryPsTestGallery7123/applications/galleryPsTestGalleryApplication438/versions/1.0.0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzEyMy9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjQzOC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/galleryPsTestRg172/providers/Microsoft.Compute/galleries/galleryPsTestGallery1006/applications/galleryPsTestGalleryApplication2473/versions/1.0.0?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTAwNi9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjI0NzMvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f8aec17e-4c4f-4bf9-a94e-a19c6afc87a2" + "338fd99f-08cd-49b3-9045-e642ca6518c5" ], "Accept-Language": [ "en-US" @@ -1610,8 +1610,8 @@ "User-Agent": [ "FxVersion/4.700.22.16002", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1622,16 +1622,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryApplicationVersion3Min;1997,Microsoft.Compute/GetGalleryApplicationVersion30Min;9995" + "Microsoft.Compute/GetGalleryApplicationVersion3Min;1998,Microsoft.Compute/GetGalleryApplicationVersion30Min;9996" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008" ], "x-ms-request-id": [ - "f6b91dee-3c50-4041-a588-cd606a14170a" + "7cdea7f8-b07b-4779-b30e-b810ee70b903" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1641,19 +1641,19 @@ "11986" ], "x-ms-correlation-request-id": [ - "c9f9e6de-16d7-49f7-80e8-75da05a89513" + "edf87c10-21d6-4d10-88fb-dc0e644e7d50" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T015221Z:c9f9e6de-16d7-49f7-80e8-75da05a89513" + "WESTCENTRALUS:20220419T011014Z:edf87c10-21d6-4d10-88fb-dc0e644e7d50" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:52:20 GMT" + "Tue, 19 Apr 2022 01:10:13 GMT" ], "Content-Length": [ - "1313" + "1509" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1662,20 +1662,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg254/providers/Microsoft.Compute/galleries/galleryPsTestGallery7123/applications/galleryPsTestGalleryApplication438/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery2224.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=F3u%2Bg4mJsTKgsxpW7eIfkKnVqzitJqjSnI8lMl11v4Q%3D&st=2022-04-13T01%3A48%3A02Z&se=2022-04-16T01%3A48%3A02Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2022-04-13T20:47:45.4057596-05:00\",\r\n \"endOfLifeDate\": \"2022-04-23T00:00:00-05:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/galleryPsTestRg172/providers/Microsoft.Compute/galleries/galleryPsTestGallery1006/applications/galleryPsTestGalleryApplication2473/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery6712.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&st=2022-04-18T01%3A04%3A36Z&se=2022-04-21T01%3A04%3A36Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"settings\": {\r\n \"packageFileName\": \"test.zip\",\r\n \"configFileName\": \"config.cfg\"\r\n },\r\n \"advancedSettings\": {\r\n \"cacheLimit\": \"500\",\r\n \"user\": \"root\"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2022-04-18T18:05:42.1548328-07:00\",\r\n \"endOfLifeDate\": \"2022-04-28T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg254/providers/Microsoft.Compute/galleries/galleryPsTestGallery7123/applications/galleryPsTestGalleryApplication438/versions/1.0.0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzEyMy9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjQzOC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/galleryPsTestRg172/providers/Microsoft.Compute/galleries/galleryPsTestGallery1006/applications/galleryPsTestGalleryApplication2473/versions/1.0.0?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTAwNi9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjI0NzMvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.16002", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1686,16 +1686,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryApplicationVersion3Min;1999,Microsoft.Compute/GetGalleryApplicationVersion30Min;9991" + "Microsoft.Compute/GetGalleryApplicationVersion3Min;1998,Microsoft.Compute/GetGalleryApplicationVersion30Min;9992" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008" ], "x-ms-request-id": [ - "8e20feed-0b74-4bb4-b6da-f2899aaccbbb" + "2d8564b3-a10c-4363-8995-dc8276db0859" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1705,19 +1705,19 @@ "11978" ], "x-ms-correlation-request-id": [ - "3c8a127b-71cb-4a55-aecc-b20aeb8393c2" + "af696ee9-c471-4496-baaf-bbfb48604495" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T015524Z:3c8a127b-71cb-4a55-aecc-b20aeb8393c2" + "WESTCENTRALUS:20220419T011315Z:af696ee9-c471-4496-baaf-bbfb48604495" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:55:23 GMT" + "Tue, 19 Apr 2022 01:13:14 GMT" ], "Content-Length": [ - "1313" + "1509" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1726,17 +1726,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg254/providers/Microsoft.Compute/galleries/galleryPsTestGallery7123/applications/galleryPsTestGalleryApplication438/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery2224.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=F3u%2Bg4mJsTKgsxpW7eIfkKnVqzitJqjSnI8lMl11v4Q%3D&st=2022-04-13T01%3A48%3A02Z&se=2022-04-16T01%3A48%3A02Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2022-04-13T20:47:45.4057596-05:00\",\r\n \"endOfLifeDate\": \"2022-07-22T00:00:00-05:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/galleryPsTestRg172/providers/Microsoft.Compute/galleries/galleryPsTestGallery1006/applications/galleryPsTestGalleryApplication2473/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery6712.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&st=2022-04-18T01%3A04%3A36Z&se=2022-04-21T01%3A04%3A36Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"settings\": {\r\n \"packageFileName\": \"test.zip\",\r\n \"configFileName\": \"config.cfg\"\r\n },\r\n \"advancedSettings\": {\r\n \"cacheLimit\": \"500\",\r\n \"user\": \"root\"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2022-04-18T18:05:42.1548328-07:00\",\r\n \"endOfLifeDate\": \"2022-07-27T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg254/providers/Microsoft.Compute/galleries/galleryPsTestGallery7123/applications/galleryPsTestGalleryApplication438/versions/1.0.0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzEyMy9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjQzOC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/galleryPsTestRg172/providers/Microsoft.Compute/galleries/galleryPsTestGallery1006/applications/galleryPsTestGalleryApplication2473/versions/1.0.0?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTAwNi9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjI0NzMvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc397c09-d24f-4e60-8e27-41adb1c9e9fc" + "97371657-4bb1-47b2-afc2-7139e3a6a09e" ], "Accept-Language": [ "en-US" @@ -1744,8 +1744,8 @@ "User-Agent": [ "FxVersion/4.700.22.16002", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1756,16 +1756,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryApplicationVersion3Min;1998,Microsoft.Compute/GetGalleryApplicationVersion30Min;9990" + "Microsoft.Compute/GetGalleryApplicationVersion3Min;1997,Microsoft.Compute/GetGalleryApplicationVersion30Min;9991" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008" ], "x-ms-request-id": [ - "99c4c249-999e-4aa0-b7d1-2ef936906dc8" + "ebe1c417-876c-4fa0-8f73-6b08fce66cfc" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1775,19 +1775,19 @@ "11977" ], "x-ms-correlation-request-id": [ - "29ee2cd6-45f1-48f3-805c-e4e6060cabb3" + "f55d9363-8dc6-45d6-a7ac-748b4f768ec4" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T015524Z:29ee2cd6-45f1-48f3-805c-e4e6060cabb3" + "WESTCENTRALUS:20220419T011315Z:f55d9363-8dc6-45d6-a7ac-748b4f768ec4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:55:23 GMT" + "Tue, 19 Apr 2022 01:13:15 GMT" ], "Content-Length": [ - "1313" + "1509" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1796,17 +1796,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg254/providers/Microsoft.Compute/galleries/galleryPsTestGallery7123/applications/galleryPsTestGalleryApplication438/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery2224.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=F3u%2Bg4mJsTKgsxpW7eIfkKnVqzitJqjSnI8lMl11v4Q%3D&st=2022-04-13T01%3A48%3A02Z&se=2022-04-16T01%3A48%3A02Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2022-04-13T20:47:45.4057596-05:00\",\r\n \"endOfLifeDate\": \"2022-07-22T00:00:00-05:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/galleryPsTestRg172/providers/Microsoft.Compute/galleries/galleryPsTestGallery1006/applications/galleryPsTestGalleryApplication2473/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery6712.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&st=2022-04-18T01%3A04%3A36Z&se=2022-04-21T01%3A04%3A36Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"settings\": {\r\n \"packageFileName\": \"test.zip\",\r\n \"configFileName\": \"config.cfg\"\r\n },\r\n \"advancedSettings\": {\r\n \"cacheLimit\": \"500\",\r\n \"user\": \"root\"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2022-04-18T18:05:42.1548328-07:00\",\r\n \"endOfLifeDate\": \"2022-07-27T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg254/providers/Microsoft.Compute/galleries/galleryPsTestGallery7123/applications/galleryPsTestGalleryApplication438/versions/1.0.0?$expand=ReplicationStatus&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzEyMy9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjQzOC92ZXJzaW9ucy8xLjAuMD8kZXhwYW5kPVJlcGxpY2F0aW9uU3RhdHVzJmFwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/galleryPsTestRg172/providers/Microsoft.Compute/galleries/galleryPsTestGallery1006/applications/galleryPsTestGalleryApplication2473/versions/1.0.0?$expand=ReplicationStatus&api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTAwNi9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjI0NzMvdmVyc2lvbnMvMS4wLjA/JGV4cGFuZD1SZXBsaWNhdGlvblN0YXR1cyZhcGktdmVyc2lvbj0yMDIyLTAxLTAz", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1999c1b8-8631-403f-ace9-7aaeb7f67c30" + "cffa238f-f955-4b61-9000-1a4a2420ea3a" ], "Accept-Language": [ "en-US" @@ -1814,8 +1814,8 @@ "User-Agent": [ "FxVersion/4.700.22.16002", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1826,16 +1826,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryApplicationVersion3Min;1996,Microsoft.Compute/GetGalleryApplicationVersion30Min;9994" + "Microsoft.Compute/GetGalleryApplicationVersion3Min;1997,Microsoft.Compute/GetGalleryApplicationVersion30Min;9995" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008" ], "x-ms-request-id": [ - "c94673ee-78fc-4fbd-99b5-dcd8f281b28e" + "419b1ff9-51c0-47b8-9cb1-dae8c8ad42d4" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1845,19 +1845,19 @@ "11985" ], "x-ms-correlation-request-id": [ - "c96a92ab-c9b1-44b2-b00d-18864bf67923" + "61acdbcc-5cf4-4f4b-80b2-27f63fe35f4c" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T015221Z:c96a92ab-c9b1-44b2-b00d-18864bf67923" + "WESTCENTRALUS:20220419T011014Z:61acdbcc-5cf4-4f4b-80b2-27f63fe35f4c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:52:21 GMT" + "Tue, 19 Apr 2022 01:10:13 GMT" ], "Content-Length": [ - "1537" + "1727" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1866,20 +1866,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg254/providers/Microsoft.Compute/galleries/galleryPsTestGallery7123/applications/galleryPsTestGalleryApplication438/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery2224.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=F3u%2Bg4mJsTKgsxpW7eIfkKnVqzitJqjSnI8lMl11v4Q%3D&st=2022-04-13T01%3A48%3A02Z&se=2022-04-16T01%3A48%3A02Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2022-04-13T20:47:45.4057596-05:00\",\r\n \"endOfLifeDate\": \"2022-04-23T00:00:00-05:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"replicationStatus\": {\r\n \"aggregatedState\": \"Completed\",\r\n \"summary\": [\r\n {\r\n \"progress\": 100,\r\n \"region\": \"southeastasia\",\r\n \"state\": \"Completed\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/galleryPsTestRg172/providers/Microsoft.Compute/galleries/galleryPsTestGallery1006/applications/galleryPsTestGalleryApplication2473/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery6712.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&st=2022-04-18T01%3A04%3A36Z&se=2022-04-21T01%3A04%3A36Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"settings\": {\r\n \"packageFileName\": \"test.zip\",\r\n \"configFileName\": \"config.cfg\"\r\n },\r\n \"advancedSettings\": {\r\n \"cacheLimit\": \"500\",\r\n \"user\": \"root\"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2022-04-18T18:05:42.1548328-07:00\",\r\n \"endOfLifeDate\": \"2022-04-28T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"replicationStatus\": {\r\n \"aggregatedState\": \"Completed\",\r\n \"summary\": [\r\n {\r\n \"progress\": 100,\r\n \"region\": \"eastus2\",\r\n \"state\": \"Completed\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/99f37f8d-ac8b-4bc8-b896-d5796c9141b5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy85OWYzN2Y4ZC1hYzhiLTRiYzgtYjg5Ni1kNTc5NmM5MTQxYjU/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/providers/Microsoft.Compute/locations/eastus2/capsOperations/605d3964-51e1-4f73-ad96-99b1d2ef2e28?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy82MDVkMzk2NC01MWUxLTRmNzMtYWQ5Ni05OWIxZDJlZjJlMjg/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.16002", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1890,16 +1890,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4165" + "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4169" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008" ], "x-ms-request-id": [ - "22f064e0-1560-41b6-9e88-02578bcff6cd" + "2e928b54-1303-4d97-bfef-7c75068a59c3" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1909,16 +1909,16 @@ "11984" ], "x-ms-correlation-request-id": [ - "1895e0a0-0bcd-42fb-8653-a8406ca67e46" + "193e5996-5665-45d0-8f40-79933ea11b4f" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T015252Z:1895e0a0-0bcd-42fb-8653-a8406ca67e46" + "WESTCENTRALUS:20220419T011044Z:193e5996-5665-45d0-8f40-79933ea11b4f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:52:51 GMT" + "Tue, 19 Apr 2022 01:10:44 GMT" ], "Content-Length": [ "134" @@ -1930,20 +1930,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-13T20:52:21.8102271-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"99f37f8d-ac8b-4bc8-b896-d5796c9141b5\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-04-18T18:10:14.4051254-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"605d3964-51e1-4f73-ad96-99b1d2ef2e28\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/99f37f8d-ac8b-4bc8-b896-d5796c9141b5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy85OWYzN2Y4ZC1hYzhiLTRiYzgtYjg5Ni1kNTc5NmM5MTQxYjU/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/providers/Microsoft.Compute/locations/eastus2/capsOperations/605d3964-51e1-4f73-ad96-99b1d2ef2e28?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy82MDVkMzk2NC01MWUxLTRmNzMtYWQ5Ni05OWIxZDJlZjJlMjg/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.16002", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1954,16 +1954,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4162" + "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4166" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008" ], "x-ms-request-id": [ - "5fbaa599-fafb-4b7a-8c4b-3265407a6cc7" + "6306c79a-4599-451d-993b-4c926378c97a" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1973,16 +1973,16 @@ "11983" ], "x-ms-correlation-request-id": [ - "609799a2-9ddc-4be1-9470-1c8a5d9e7648" + "aef155bf-e06f-4018-81bb-b32844a3d855" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T015322Z:609799a2-9ddc-4be1-9470-1c8a5d9e7648" + "WESTCENTRALUS:20220419T011114Z:aef155bf-e06f-4018-81bb-b32844a3d855" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:53:21 GMT" + "Tue, 19 Apr 2022 01:11:14 GMT" ], "Content-Length": [ "134" @@ -1994,20 +1994,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-13T20:52:21.8102271-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"99f37f8d-ac8b-4bc8-b896-d5796c9141b5\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-04-18T18:10:14.4051254-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"605d3964-51e1-4f73-ad96-99b1d2ef2e28\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/99f37f8d-ac8b-4bc8-b896-d5796c9141b5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy85OWYzN2Y4ZC1hYzhiLTRiYzgtYjg5Ni1kNTc5NmM5MTQxYjU/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/providers/Microsoft.Compute/locations/eastus2/capsOperations/605d3964-51e1-4f73-ad96-99b1d2ef2e28?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy82MDVkMzk2NC01MWUxLTRmNzMtYWQ5Ni05OWIxZDJlZjJlMjg/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.16002", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2018,16 +2018,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4159" + "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4163" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008" ], "x-ms-request-id": [ - "caec116c-d40c-40e7-a200-bfe7d1150802" + "16d3421a-65f6-4a71-8a70-a1df89eaa926" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2037,16 +2037,16 @@ "11982" ], "x-ms-correlation-request-id": [ - "4870e25a-4fff-42e4-a060-ec3218859c46" + "5e095646-b684-4ad1-9ccb-4d9eafda8155" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T015352Z:4870e25a-4fff-42e4-a060-ec3218859c46" + "WESTCENTRALUS:20220419T011144Z:5e095646-b684-4ad1-9ccb-4d9eafda8155" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:53:52 GMT" + "Tue, 19 Apr 2022 01:11:44 GMT" ], "Content-Length": [ "134" @@ -2058,20 +2058,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-13T20:52:21.8102271-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"99f37f8d-ac8b-4bc8-b896-d5796c9141b5\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-04-18T18:10:14.4051254-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"605d3964-51e1-4f73-ad96-99b1d2ef2e28\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/99f37f8d-ac8b-4bc8-b896-d5796c9141b5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy85OWYzN2Y4ZC1hYzhiLTRiYzgtYjg5Ni1kNTc5NmM5MTQxYjU/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/providers/Microsoft.Compute/locations/eastus2/capsOperations/605d3964-51e1-4f73-ad96-99b1d2ef2e28?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy82MDVkMzk2NC01MWUxLTRmNzMtYWQ5Ni05OWIxZDJlZjJlMjg/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.16002", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2082,16 +2082,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4156" + "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4160" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008" ], "x-ms-request-id": [ - "9400c52d-c1df-42cb-be9c-ba913c2def69" + "5b0f583f-0257-4394-bf32-94d9dd5529eb" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2101,16 +2101,16 @@ "11981" ], "x-ms-correlation-request-id": [ - "3d04fbee-92dd-4c06-b84e-be1a58489b30" + "e6f0efe0-9082-4453-8678-a0409a1599a6" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T015423Z:3d04fbee-92dd-4c06-b84e-be1a58489b30" + "WESTCENTRALUS:20220419T011214Z:e6f0efe0-9082-4453-8678-a0409a1599a6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:54:22 GMT" + "Tue, 19 Apr 2022 01:12:14 GMT" ], "Content-Length": [ "134" @@ -2122,20 +2122,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-13T20:52:21.8102271-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"99f37f8d-ac8b-4bc8-b896-d5796c9141b5\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-04-18T18:10:14.4051254-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"605d3964-51e1-4f73-ad96-99b1d2ef2e28\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/99f37f8d-ac8b-4bc8-b896-d5796c9141b5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy85OWYzN2Y4ZC1hYzhiLTRiYzgtYjg5Ni1kNTc5NmM5MTQxYjU/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/providers/Microsoft.Compute/locations/eastus2/capsOperations/605d3964-51e1-4f73-ad96-99b1d2ef2e28?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy82MDVkMzk2NC01MWUxLTRmNzMtYWQ5Ni05OWIxZDJlZjJlMjg/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.16002", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2146,16 +2146,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4153" + "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4157" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008" ], "x-ms-request-id": [ - "31aa991a-82b2-4e7b-bbc0-79c5c937414b" + "8d769a2b-8e8f-4a97-b11c-6fe6eab07e11" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2165,16 +2165,16 @@ "11980" ], "x-ms-correlation-request-id": [ - "064d9feb-2cba-45e5-8492-fd50bfe8b38a" + "77aaf7ea-76a6-4586-add0-401523859c89" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T015453Z:064d9feb-2cba-45e5-8492-fd50bfe8b38a" + "WESTCENTRALUS:20220419T011245Z:77aaf7ea-76a6-4586-add0-401523859c89" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:54:52 GMT" + "Tue, 19 Apr 2022 01:12:44 GMT" ], "Content-Length": [ "134" @@ -2186,20 +2186,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-13T20:52:21.8102271-05:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"99f37f8d-ac8b-4bc8-b896-d5796c9141b5\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-04-18T18:10:14.4051254-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"605d3964-51e1-4f73-ad96-99b1d2ef2e28\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/99f37f8d-ac8b-4bc8-b896-d5796c9141b5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy85OWYzN2Y4ZC1hYzhiLTRiYzgtYjg5Ni1kNTc5NmM5MTQxYjU/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/providers/Microsoft.Compute/locations/eastus2/capsOperations/605d3964-51e1-4f73-ad96-99b1d2ef2e28?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy82MDVkMzk2NC01MWUxLTRmNzMtYWQ5Ni05OWIxZDJlZjJlMjg/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.16002", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2210,16 +2210,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4150" + "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4154" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008" ], "x-ms-request-id": [ - "2eda0346-d21d-46bd-bd5e-03516e60e290" + "d0540f8e-9c95-4647-ba9b-b96b229241f1" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2229,16 +2229,16 @@ "11979" ], "x-ms-correlation-request-id": [ - "bbd24d3a-8f64-45f8-92da-da5186727d84" + "b44eb65d-72f1-4aab-a1c2-b2cf6292db03" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T015523Z:bbd24d3a-8f64-45f8-92da-da5186727d84" + "WESTCENTRALUS:20220419T011315Z:b44eb65d-72f1-4aab-a1c2-b2cf6292db03" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:55:23 GMT" + "Tue, 19 Apr 2022 01:13:14 GMT" ], "Content-Length": [ "184" @@ -2250,17 +2250,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-13T20:52:21.8102271-05:00\",\r\n \"endTime\": \"2022-04-13T20:55:21.9809454-05:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"99f37f8d-ac8b-4bc8-b896-d5796c9141b5\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-04-18T18:10:14.4051254-07:00\",\r\n \"endTime\": \"2022-04-18T18:13:14.5772018-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"605d3964-51e1-4f73-ad96-99b1d2ef2e28\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg254/providers/Microsoft.Compute/galleries/galleryPsTestGallery7123/applications/galleryPsTestGalleryApplication438/versions/1.0.0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzEyMy9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjQzOC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/galleryPsTestRg172/providers/Microsoft.Compute/galleries/galleryPsTestGallery1006/applications/galleryPsTestGalleryApplication2473/versions/1.0.0?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTAwNi9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjI0NzMvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7fcb1606-828c-46ac-af4e-a621b673fce4" + "8bb4ad0e-cb3c-49cc-857a-5a8fe66b466a" ], "Accept-Language": [ "en-US" @@ -2268,8 +2268,8 @@ "User-Agent": [ "FxVersion/4.700.22.16002", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2280,10 +2280,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/1b498dc1-37fe-467b-b820-a41c26d10d4f?monitor=true&api-version=2021-10-01" + "https://management.azure.com/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/providers/Microsoft.Compute/locations/eastus2/capsOperations/609f2805-5504-4bef-b774-472a44e12f71?monitor=true&api-version=2022-01-03" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/1b498dc1-37fe-467b-b820-a41c26d10d4f?api-version=2021-10-01" + "https://management.azure.com/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/providers/Microsoft.Compute/locations/eastus2/capsOperations/609f2805-5504-4bef-b774-472a44e12f71?api-version=2022-01-03" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/DeleteGalleryApplicationVersion3Min;149,Microsoft.Compute/DeleteGalleryApplicationVersion30Min;999" @@ -2292,10 +2292,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008" ], "x-ms-request-id": [ - "1b498dc1-37fe-467b-b820-a41c26d10d4f" + "609f2805-5504-4bef-b774-472a44e12f71" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2305,16 +2305,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "49b38100-1916-48b8-a020-5361b0fdcf21" + "7f8bf335-6c04-4482-a799-efd245c643ee" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T015525Z:49b38100-1916-48b8-a020-5361b0fdcf21" + "WESTCENTRALUS:20220419T011315Z:7f8bf335-6c04-4482-a799-efd245c643ee" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:55:24 GMT" + "Tue, 19 Apr 2022 01:13:15 GMT" ], "Expires": [ "-1" @@ -2327,16 +2327,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/1b498dc1-37fe-467b-b820-a41c26d10d4f?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xYjQ5OGRjMS0zN2ZlLTQ2N2ItYjgyMC1hNDFjMjZkMTBkNGY/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/providers/Microsoft.Compute/locations/eastus2/capsOperations/609f2805-5504-4bef-b774-472a44e12f71?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy82MDlmMjgwNS01NTA0LTRiZWYtYjc3NC00NzJhNDRlMTJmNzE/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.16002", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2347,38 +2347,38 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1199,Microsoft.Compute/GetOperationStatus30Min;4199" + "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4151" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008" ], "x-ms-request-id": [ - "ea3b1066-1573-4ab0-81e7-8a788e7e7d7a" + "1dcfb73f-7ccd-4713-b382-5e6b9886c220" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11976" ], "x-ms-correlation-request-id": [ - "d89e62b4-cc38-48ab-a97d-4a1f78db1ee5" + "3291117b-50f6-4ad1-bc3f-48630dfaa94a" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T160712Z:d89e62b4-cc38-48ab-a97d-4a1f78db1ee5" + "WESTCENTRALUS:20220419T011345Z:3291117b-50f6-4ad1-bc3f-48630dfaa94a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 16:07:11 GMT" + "Tue, 19 Apr 2022 01:13:45 GMT" ], "Content-Length": [ - "184" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2387,20 +2387,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-13T20:55:25.1215502-05:00\",\r\n \"endTime\": \"2022-04-13T20:56:55.3397189-05:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1b498dc1-37fe-467b-b820-a41c26d10d4f\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-04-18T18:13:15.7490763-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"609f2805-5504-4bef-b774-472a44e12f71\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/1b498dc1-37fe-467b-b820-a41c26d10d4f?monitor=true&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xYjQ5OGRjMS0zN2ZlLTQ2N2ItYjgyMC1hNDFjMjZkMTBkNGY/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/providers/Microsoft.Compute/locations/eastus2/capsOperations/609f2805-5504-4bef-b774-472a44e12f71?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy82MDlmMjgwNS01NTA0LTRiZWYtYjc3NC00NzJhNDRlMTJmNzE/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.16002", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2411,35 +2411,163 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4198" + "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4148" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008" ], "x-ms-request-id": [ - "02a3ac26-3351-4281-9d57-6149dd02c660" + "3a3f2076-e064-4aa4-916d-a90780db8f4d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "e79ea9ca-cdbd-4beb-8f4a-09fb4e6993fc" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20220419T011416Z:e79ea9ca-cdbd-4beb-8f4a-09fb4e6993fc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 19 Apr 2022 01:14:16 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-04-18T18:13:15.7490763-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"609f2805-5504-4bef-b774-472a44e12f71\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/providers/Microsoft.Compute/locations/eastus2/capsOperations/609f2805-5504-4bef-b774-472a44e12f71?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy82MDlmMjgwNS01NTA0LTRiZWYtYjc3NC00NzJhNDRlMTJmNzE/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.16002", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4145" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008" + ], + "x-ms-request-id": [ + "b74eaa63-80f5-4bb4-b313-9f58946f6a40" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11974" ], "x-ms-correlation-request-id": [ - "438aadac-8949-4739-a543-c49d72150c9a" + "e1d41e9d-5a63-4185-9aae-e51fe56b58f3" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T160713Z:438aadac-8949-4739-a543-c49d72150c9a" + "WESTCENTRALUS:20220419T011446Z:e1d41e9d-5a63-4185-9aae-e51fe56b58f3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 16:07:12 GMT" + "Tue, 19 Apr 2022 01:14:45 GMT" + ], + "Content-Length": [ + "183" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-04-18T18:13:15.7490763-07:00\",\r\n \"endTime\": \"2022-04-18T18:14:45.936731-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"609f2805-5504-4bef-b774-472a44e12f71\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/providers/Microsoft.Compute/locations/eastus2/capsOperations/609f2805-5504-4bef-b774-472a44e12f71?monitor=true&api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy82MDlmMjgwNS01NTA0LTRiZWYtYjc3NC00NzJhNDRlMTJmNzE/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDEtMDM=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.16002", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1182,Microsoft.Compute/GetOperationStatus30Min;4144" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008" + ], + "x-ms-request-id": [ + "685791b6-0636-4ae2-802d-d38b50d5a08a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-correlation-request-id": [ + "aac9667d-44d8-4613-9248-e37868b3278c" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20220419T011446Z:aac9667d-44d8-4613-9248-e37868b3278c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 19 Apr 2022 01:14:46 GMT" ], "Expires": [ "-1" @@ -2452,13 +2580,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg254/providers/Microsoft.Compute/galleries/galleryPsTestGallery7123/applications/galleryPsTestGalleryApplication438?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzEyMy9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjQzOD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/galleryPsTestRg172/providers/Microsoft.Compute/galleries/galleryPsTestGallery1006/applications/galleryPsTestGalleryApplication2473?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTAwNi9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjI0NzM/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18d3a667-db1a-453c-963a-93a09e26a3c7" + "fefcc73e-5175-43a4-8ac9-1c7d25a2d7a9" ], "Accept-Language": [ "en-US" @@ -2466,8 +2594,8 @@ "User-Agent": [ "FxVersion/4.700.22.16002", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2484,10 +2612,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008" ], "x-ms-request-id": [ - "b7a4fae7-2e62-441b-8a7f-ac3e8deb5dc1" + "bab3f4b2-b4cc-444c-81cd-097cd8b6a287" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2497,16 +2625,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "ee97fac9-3373-4bbf-ae2e-05e8916c7cc5" + "cbcf6212-bcd2-4315-9c50-68b815b5a44b" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T161221Z:ee97fac9-3373-4bbf-ae2e-05e8916c7cc5" + "WESTCENTRALUS:20220419T011949Z:cbcf6212-bcd2-4315-9c50-68b815b5a44b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 16:12:20 GMT" + "Tue, 19 Apr 2022 01:19:49 GMT" ], "Expires": [ "-1" @@ -2519,13 +2647,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg254/providers/Microsoft.Compute/galleries/galleryPsTestGallery7123?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzEyMz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/galleryPsTestRg172/providers/Microsoft.Compute/galleries/galleryPsTestGallery1006?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTAwNj9hcGktdmVyc2lvbj0yMDIyLTAxLTAz", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8809a028-0b15-436c-9623-6385bbebafc8" + "253f4391-71de-4202-bce6-067976c999ea" ], "Accept-Language": [ "en-US" @@ -2533,8 +2661,8 @@ "User-Agent": [ "FxVersion/4.700.22.16002", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2545,10 +2673,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/a3f69dab-c1c1-43fb-9a03-81192fb48e7a?monitor=true&api-version=2021-10-01" + "https://management.azure.com/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/providers/Microsoft.Compute/locations/eastus2/capsOperations/ca3b9a48-22b9-4873-8be1-ffa4c4d40992?monitor=true&api-version=2022-01-03" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/a3f69dab-c1c1-43fb-9a03-81192fb48e7a?api-version=2021-10-01" + "https://management.azure.com/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/providers/Microsoft.Compute/locations/eastus2/capsOperations/ca3b9a48-22b9-4873-8be1-ffa4c4d40992?api-version=2022-01-03" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;299" @@ -2557,10 +2685,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008" ], "x-ms-request-id": [ - "a3f69dab-c1c1-43fb-9a03-81192fb48e7a" + "ca3b9a48-22b9-4873-8be1-ffa4c4d40992" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2570,16 +2698,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "199b7406-66d1-4681-9d19-41b60b55e01d" + "964af7ff-9617-42d9-ad64-2f320e7cfb85" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T161222Z:199b7406-66d1-4681-9d19-41b60b55e01d" + "WESTCENTRALUS:20220419T011950Z:964af7ff-9617-42d9-ad64-2f320e7cfb85" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 16:12:21 GMT" + "Tue, 19 Apr 2022 01:19:49 GMT" ], "Expires": [ "-1" @@ -2592,16 +2720,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/a3f69dab-c1c1-43fb-9a03-81192fb48e7a?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9hM2Y2OWRhYi1jMWMxLTQzZmItOWEwMy04MTE5MmZiNDhlN2E/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/providers/Microsoft.Compute/locations/eastus2/capsOperations/ca3b9a48-22b9-4873-8be1-ffa4c4d40992?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9jYTNiOWE0OC0yMmI5LTQ4NzMtOGJlMS1mZmE0YzRkNDA5OTI/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.16002", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2612,16 +2740,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4196" + "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4141" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008" ], "x-ms-request-id": [ - "d30b083d-ae06-4960-9ddb-96c2c4e1410b" + "f25c6e2c-e9d1-46b4-a5cb-252273847118" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2631,19 +2759,19 @@ "11999" ], "x-ms-correlation-request-id": [ - "7cb10b8e-cb14-4fc1-837a-4584aa0efd98" + "5a7cc865-54bc-4a0b-82ba-e85837c9c729" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T161252Z:7cb10b8e-cb14-4fc1-837a-4584aa0efd98" + "WESTCENTRALUS:20220419T012020Z:5a7cc865-54bc-4a0b-82ba-e85837c9c729" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 16:12:51 GMT" + "Tue, 19 Apr 2022 01:20:19 GMT" ], "Content-Length": [ - "182" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2652,20 +2780,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-14T11:12:22.0944945-05:00\",\r\n \"endTime\": \"2022-04-14T11:12:22.98507-05:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a3f69dab-c1c1-43fb-9a03-81192fb48e7a\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-04-18T18:19:49.9838922-07:00\",\r\n \"endTime\": \"2022-04-18T18:19:50.2182443-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ca3b9a48-22b9-4873-8be1-ffa4c4d40992\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/a3f69dab-c1c1-43fb-9a03-81192fb48e7a?monitor=true&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9hM2Y2OWRhYi1jMWMxLTQzZmItOWEwMy04MTE5MmZiNDhlN2E/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/providers/Microsoft.Compute/locations/eastus2/capsOperations/ca3b9a48-22b9-4873-8be1-ffa4c4d40992?monitor=true&api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9jYTNiOWE0OC0yMmI5LTQ4NzMtOGJlMS1mZmE0YzRkNDA5OTI/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDEtMDM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.16002", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2676,16 +2804,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4195" + "Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4140" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008" ], "x-ms-request-id": [ - "5ef7d730-f3ed-451c-923e-dcb63495d435" + "b374f490-5b21-4096-9fd9-7186c304773f" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2695,16 +2823,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "df047c3d-6ef4-4450-ac5a-dd02dac0693a" + "950d2b89-c782-4985-ab3a-9556a884dfcc" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T161252Z:df047c3d-6ef4-4450-ac5a-dd02dac0693a" + "WESTCENTRALUS:20220419T012020Z:950d2b89-c782-4985-ab3a-9556a884dfcc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 16:12:52 GMT" + "Tue, 19 Apr 2022 01:20:19 GMT" ], "Expires": [ "-1" @@ -2719,17 +2847,17 @@ ], "Names": { "GalleryApplicationVersion_CRUD_Tests": [ - "galleryPsTestRg254", - "psTestSourceApplication5012", - "galleryPsTestGallery7123", - "galleryPsTestGalleryApplication438" + "galleryPsTestRg172", + "psTestSourceApplication6041", + "galleryPsTestGallery1006", + "galleryPsTestGalleryApplication2473" ], "CreateApplicationMediaLink": [ - "saforgallery2224", - "asforgallery299" + "saforgallery6712", + "asforgallery5527" ] }, "Variables": { - "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871" + "SubscriptionId": "a53f7094-a16c-47af-abe4-b05c05d0d79a" } } \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryApplication_CRUD_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryApplication_CRUD_Tests.json index b4a1d2ca8955e..b85f8caec51b2 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryApplication_CRUD_Tests.json +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryApplication_CRUD_Tests.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/galleryPsTestRg2218?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzIyMTg/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg9870?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk4NzA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", + "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "57ad6871-973d-4d70-8a2d-6f51563ada52" + "f2d6dd0b-488b-48f0-b2c2-d7ff135f5f53" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -22,7 +22,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "35" + "29" ] }, "ResponseHeaders": { @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "3bbd097d-e421-468c-a0c1-ce886c15cb06" + "9bccc548-4292-4ca3-b92e-ee42ce2a9d1a" ], "x-ms-correlation-request-id": [ - "3bbd097d-e421-468c-a0c1-ce886c15cb06" + "9bccc548-4292-4ca3-b92e-ee42ce2a9d1a" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T014339Z:3bbd097d-e421-468c-a0c1-ce886c15cb06" + "WESTUS:20220311T184311Z:9bccc548-4292-4ca3-b92e-ee42ce2a9d1a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:43:38 GMT" + "Fri, 11 Mar 2022 18:43:10 GMT" ], "Content-Length": [ - "198" + "192" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,23 +63,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg2218\",\r\n \"name\": \"galleryPsTestRg2218\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9870\",\r\n \"name\": \"galleryPsTestRg9870\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg2218/providers/Microsoft.Compute/galleries/galleryPsTestGallery3310?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzIyMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTMzMTA/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9870/providers/Microsoft.Compute/galleries/galleryPsTestGallery2495?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk4NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTI0OTU/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\"\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\"\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0a77e694-26d7-473c-9c47-85f64e7f3fd7" + "a097c5ff-da36-4415-b148-704dbb178077" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" @@ -88,7 +88,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "119" + "113" ] }, "ResponseHeaders": { @@ -99,19 +99,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/2bf9b525-802d-42a2-86c8-363ee2f22792?api-version=2021-10-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a81f7f03-4030-4efe-9ad6-5cb0ad103196?api-version=2022-01-03" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299" + "Microsoft.Compute/CreateUpdateGallery3Min;48,Microsoft.Compute/CreateUpdateGallery30Min;296" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044,1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044" ], "x-ms-request-id": [ - "2bf9b525-802d-42a2-86c8-363ee2f22792" + "a81f7f03-4030-4efe-9ad6-5cb0ad103196" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -121,19 +121,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "69f1d5ad-7c1b-462a-ba8c-f5ae8c1b9f88" + "c34987bd-af29-45e4-bb83-5855b0b59f72" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T014350Z:69f1d5ad-7c1b-462a-ba8c-f5ae8c1b9f88" + "WESTUS:20220311T184315Z:c34987bd-af29-45e4-bb83-5855b0b59f72" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:43:50 GMT" + "Fri, 11 Mar 2022 18:43:15 GMT" ], "Content-Length": [ - "514" + "508" ], "Content-Type": [ "application/json; charset=utf-8" @@ -142,17 +142,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery3310\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg2218/providers/Microsoft.Compute/galleries/galleryPsTestGallery3310\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY3310\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery2495\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9870/providers/Microsoft.Compute/galleries/galleryPsTestGallery2495\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY2495\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/2bf9b525-802d-42a2-86c8-363ee2f22792?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8yYmY5YjUyNS04MDJkLTQyYTItODZjOC0zNjNlZTJmMjI3OTI/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a81f7f03-4030-4efe-9ad6-5cb0ad103196?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hODFmN2YwMy00MDMwLTRlZmUtOWFkNi01Y2IwYWQxMDMxOTY/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" @@ -166,16 +166,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4198" + "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4186" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044,1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044" ], "x-ms-request-id": [ - "80deb098-ba12-475b-a222-d98eb43c2b8b" + "ecaad042-7fb3-4776-bdbd-bb612120f98c" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -185,16 +185,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "f6342981-eb81-499d-aa84-024db2ecee9d" + "f91a2087-23c2-45f7-951c-a3aaaac1cafa" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T014421Z:f6342981-eb81-499d-aa84-024db2ecee9d" + "WESTUS:20220311T184345Z:f91a2087-23c2-45f7-951c-a3aaaac1cafa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:44:20 GMT" + "Fri, 11 Mar 2022 18:43:44 GMT" ], "Content-Length": [ "184" @@ -206,17 +206,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-13T20:43:49.3291171-05:00\",\r\n \"endTime\": \"2022-04-13T20:43:53.0166029-05:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2bf9b525-802d-42a2-86c8-363ee2f22792\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-03-11T10:43:14.6670387-08:00\",\r\n \"endTime\": \"2022-03-11T10:43:14.7607915-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a81f7f03-4030-4efe-9ad6-5cb0ad103196\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg2218/providers/Microsoft.Compute/galleries/galleryPsTestGallery3310?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzIyMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTMzMTA/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9870/providers/Microsoft.Compute/galleries/galleryPsTestGallery2495?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk4NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTI0OTU/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" @@ -230,16 +230,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2496" + "Microsoft.Compute/GetGallery3Min;338,Microsoft.Compute/GetGallery30Min;2447" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044,1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044" ], "x-ms-request-id": [ - "803ddd08-ed37-4f5f-a117-8a2b3f470810" + "cc5dfd5f-5d9e-4146-aaf1-67eb09ab6de8" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -249,19 +249,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "d7ed3dcd-a3c2-40c0-aa42-4e3d46fbaca6" + "0781c81e-bb9d-46be-817a-b81b9708d81f" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T014421Z:d7ed3dcd-a3c2-40c0-aa42-4e3d46fbaca6" + "WESTUS:20220311T184345Z:0781c81e-bb9d-46be-817a-b81b9708d81f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:44:20 GMT" + "Fri, 11 Mar 2022 18:43:45 GMT" ], "Content-Length": [ - "515" + "509" ], "Content-Type": [ "application/json; charset=utf-8" @@ -270,23 +270,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery3310\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg2218/providers/Microsoft.Compute/galleries/galleryPsTestGallery3310\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY3310\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery2495\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9870/providers/Microsoft.Compute/galleries/galleryPsTestGallery2495\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY2495\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg2218/providers/Microsoft.Compute/galleries/galleryPsTestGallery3310/applications/galleryPsTestGalleryApplication5237?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzIyMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTMzMTAvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb241MjM3P2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9870/providers/Microsoft.Compute/galleries/galleryPsTestGallery2495/applications/galleryPsTestGalleryApplication6495?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk4NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTI0OTUvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb242NDk1P2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\",\r\n \"supportedOSType\": \"Windows\"\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\",\r\n \"supportedOSType\": \"Windows\"\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "23258b88-5644-49c1-ba37-6b81d83d30a1" + "c46bd737-c887-4412-a704-4676c6265819" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" @@ -295,7 +295,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "318" + "312" ] }, "ResponseHeaders": { @@ -312,10 +312,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044,1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044" ], "x-ms-request-id": [ - "6e8251a6-5b02-481b-a0d1-6cd8462f96d1" + "8e89995f-b0e5-4fb2-a9c6-68d1dfe84303" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -325,19 +325,19 @@ "1198" ], "x-ms-correlation-request-id": [ - "2a86aa8a-9b24-428b-8498-ab52f4b6d5be" + "7152df68-f843-4425-98b5-187d9f048609" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T014424Z:2a86aa8a-9b24-428b-8498-ab52f4b6d5be" + "WESTUS:20220311T184347Z:7152df68-f843-4425-98b5-187d9f048609" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:44:24 GMT" + "Fri, 11 Mar 2022 18:43:46 GMT" ], "Content-Length": [ - "634" + "628" ], "Content-Type": [ "application/json; charset=utf-8" @@ -346,23 +346,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication5237\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg2218/providers/Microsoft.Compute/galleries/galleryPsTestGallery3310/applications/galleryPsTestGalleryApplication5237\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication6495\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9870/providers/Microsoft.Compute/galleries/galleryPsTestGallery2495/applications/galleryPsTestGalleryApplication6495\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg2218/providers/Microsoft.Compute/galleries/galleryPsTestGallery3310/applications/galleryPsTestGalleryApplication5237?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzIyMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTMzMTAvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb241MjM3P2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9870/providers/Microsoft.Compute/galleries/galleryPsTestGallery2495/applications/galleryPsTestGalleryApplication6495?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk4NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTI0OTUvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb242NDk1P2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"Updated description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\",\r\n \"supportedOSType\": \"Windows\"\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"Updated description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\",\r\n \"supportedOSType\": \"Windows\"\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "620cf879-9ec6-4820-8fc6-f6c5ca9a17ff" + "96eca9b1-1b93-4655-9341-d23740f5ffe4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" @@ -371,7 +371,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "294" + "288" ] }, "ResponseHeaders": { @@ -388,10 +388,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044,1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044" ], "x-ms-request-id": [ - "e7986939-1046-4b03-86da-6f7bc3f4e17b" + "a6ac321b-63a8-438c-9499-7ebc429f4168" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -401,19 +401,19 @@ "1197" ], "x-ms-correlation-request-id": [ - "8b53b154-efd4-413c-b095-b5a0c6c14eee" + "f747a72d-2d96-4aa6-9a7e-078a08086703" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T014455Z:8b53b154-efd4-413c-b095-b5a0c6c14eee" + "WESTUS:20220311T184417Z:f747a72d-2d96-4aa6-9a7e-078a08086703" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:44:54 GMT" + "Fri, 11 Mar 2022 18:44:16 GMT" ], "Content-Length": [ - "610" + "604" ], "Content-Type": [ "application/json; charset=utf-8" @@ -422,17 +422,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication5237\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg2218/providers/Microsoft.Compute/galleries/galleryPsTestGallery3310/applications/galleryPsTestGalleryApplication5237\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"Updated description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication6495\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9870/providers/Microsoft.Compute/galleries/galleryPsTestGallery2495/applications/galleryPsTestGalleryApplication6495\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"Updated description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg2218/providers/Microsoft.Compute/galleries/galleryPsTestGallery3310/applications/galleryPsTestGalleryApplication5237?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzIyMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTMzMTAvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb241MjM3P2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9870/providers/Microsoft.Compute/galleries/galleryPsTestGallery2495/applications/galleryPsTestGalleryApplication6495?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk4NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTI0OTUvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb242NDk1P2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" @@ -452,10 +452,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044,1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044" ], "x-ms-request-id": [ - "253839a8-8e90-476a-a052-c22a6e86b670" + "9ae36034-a015-4266-b67c-bae8932c3f9e" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -465,19 +465,19 @@ "11997" ], "x-ms-correlation-request-id": [ - "5872242d-1185-4ec6-aa4e-a2ec9a545716" + "1a9c8190-53f5-4726-aea1-da02f4adfba8" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T014455Z:5872242d-1185-4ec6-aa4e-a2ec9a545716" + "WESTUS:20220311T184417Z:1a9c8190-53f5-4726-aea1-da02f4adfba8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:44:54 GMT" + "Fri, 11 Mar 2022 18:44:16 GMT" ], "Content-Length": [ - "634" + "628" ], "Content-Type": [ "application/json; charset=utf-8" @@ -486,23 +486,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication5237\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg2218/providers/Microsoft.Compute/galleries/galleryPsTestGallery3310/applications/galleryPsTestGalleryApplication5237\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication6495\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9870/providers/Microsoft.Compute/galleries/galleryPsTestGallery2495/applications/galleryPsTestGalleryApplication6495\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg2218/providers/Microsoft.Compute/galleries/galleryPsTestGallery3310/applications/galleryPsTestGalleryApplication5237?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzIyMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTMzMTAvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb241MjM3P2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9870/providers/Microsoft.Compute/galleries/galleryPsTestGallery2495/applications/galleryPsTestGalleryApplication6495?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk4NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTI0OTUvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb242NDk1P2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "31389f13-46d6-4825-9271-655202cb0804" + "5d3d4d65-9f23-4cff-a69b-36c08a08d35f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" @@ -522,10 +522,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044,1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044" ], "x-ms-request-id": [ - "0e98ba6b-c91b-4e94-8fae-904f10632d32" + "72b891be-083e-44ac-bf7f-3beb9cfd9b96" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -535,19 +535,19 @@ "11996" ], "x-ms-correlation-request-id": [ - "f57b2fe1-bdd3-48a9-8661-9866c94912a3" + "a6b4f102-2978-4323-aeb0-6ac2894083f7" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T014455Z:f57b2fe1-bdd3-48a9-8661-9866c94912a3" + "WESTUS:20220311T184417Z:a6b4f102-2978-4323-aeb0-6ac2894083f7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:44:54 GMT" + "Fri, 11 Mar 2022 18:44:16 GMT" ], "Content-Length": [ - "634" + "628" ], "Content-Type": [ "application/json; charset=utf-8" @@ -556,23 +556,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication5237\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg2218/providers/Microsoft.Compute/galleries/galleryPsTestGallery3310/applications/galleryPsTestGalleryApplication5237\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication6495\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9870/providers/Microsoft.Compute/galleries/galleryPsTestGallery2495/applications/galleryPsTestGalleryApplication6495\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg2218/providers/Microsoft.Compute/galleries/galleryPsTestGallery3310/applications/galleryPsTestGalleryApplication5237?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzIyMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTMzMTAvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb241MjM3P2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9870/providers/Microsoft.Compute/galleries/galleryPsTestGallery2495/applications/galleryPsTestGalleryApplication6495?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk4NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTI0OTUvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb242NDk1P2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b36f4389-562b-4d73-a092-fc1eb4aad834" + "6579a896-803f-492c-8714-30633680c797" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" @@ -592,10 +592,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044,1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044" ], "x-ms-request-id": [ - "fed2eeb6-e9d9-4ad9-a986-360f8c25ec3b" + "c6e984d7-40df-4279-856b-7a099e855b6c" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -605,19 +605,19 @@ "11995" ], "x-ms-correlation-request-id": [ - "c2d7ec0c-0b06-4047-b775-a34c4f166086" + "fe177d2c-5488-4d14-9da7-6fa6cb034df1" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T014456Z:c2d7ec0c-0b06-4047-b775-a34c4f166086" + "WESTUS:20220311T184417Z:fe177d2c-5488-4d14-9da7-6fa6cb034df1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:44:55 GMT" + "Fri, 11 Mar 2022 18:44:16 GMT" ], "Content-Length": [ - "610" + "604" ], "Content-Type": [ "application/json; charset=utf-8" @@ -626,23 +626,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication5237\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg2218/providers/Microsoft.Compute/galleries/galleryPsTestGallery3310/applications/galleryPsTestGalleryApplication5237\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"Updated description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication6495\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9870/providers/Microsoft.Compute/galleries/galleryPsTestGallery2495/applications/galleryPsTestGalleryApplication6495\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"Updated description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg2218/providers/Microsoft.Compute/galleries/galleryPsTestGallery3310/applications/galleryPsTestGalleryApplication5237?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzIyMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTMzMTAvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb241MjM3P2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9870/providers/Microsoft.Compute/galleries/galleryPsTestGallery2495/applications/galleryPsTestGalleryApplication6495?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk4NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTI0OTUvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb242NDk1P2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "95351be3-3332-45af-a078-637a82b115d4" + "f0d30295-eb52-4f7b-8484-da041806c709" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" @@ -662,10 +662,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044,1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044" ], "x-ms-request-id": [ - "424a5324-d1b6-4c22-83ed-ce61e57768b4" + "80e8fe3d-6c27-4eb6-83b4-541807089676" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -675,16 +675,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "420a37a7-dd08-484e-9a07-f7b7e7302c7e" + "8b2a63c6-5db8-4998-831f-15b6085c792c" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T014458Z:420a37a7-dd08-484e-9a07-f7b7e7302c7e" + "WESTUS:20220311T184418Z:8b2a63c6-5db8-4998-831f-15b6085c792c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:44:57 GMT" + "Fri, 11 Mar 2022 18:44:17 GMT" ], "Expires": [ "-1" @@ -697,19 +697,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg2218/providers/Microsoft.Compute/galleries/galleryPsTestGallery3310?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzIyMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTMzMTA/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9870/providers/Microsoft.Compute/galleries/galleryPsTestGallery2495?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk4NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTI0OTU/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f2120f97-9e23-4f21-b5b7-5d201c49db78" + "135e0671-cfab-40e5-8a6c-201e05f47181" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" @@ -723,22 +723,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/0955ab8a-5d3a-4eac-9755-422f66db20f9?monitor=true&api-version=2021-10-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/55cfd44a-c9b8-44b7-91d7-1bd1de0f42cd?monitor=true&api-version=2022-01-03" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/0955ab8a-5d3a-4eac-9755-422f66db20f9?api-version=2021-10-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/55cfd44a-c9b8-44b7-91d7-1bd1de0f42cd?api-version=2022-01-03" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;299" + "Microsoft.Compute/DeleteGallery3Min;48,Microsoft.Compute/DeleteGallery30Min;896" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044,1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044" ], "x-ms-request-id": [ - "0955ab8a-5d3a-4eac-9755-422f66db20f9" + "55cfd44a-c9b8-44b7-91d7-1bd1de0f42cd" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -748,16 +748,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "d91fc760-ce2a-4a91-9f45-ffde32fc0c30" + "5cfd6a4d-51ae-4eb2-a60b-508cd70c368c" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T014500Z:d91fc760-ce2a-4a91-9f45-ffde32fc0c30" + "WESTUS:20220311T184418Z:5cfd6a4d-51ae-4eb2-a60b-508cd70c368c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:45:00 GMT" + "Fri, 11 Mar 2022 18:44:18 GMT" ], "Expires": [ "-1" @@ -770,13 +770,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/0955ab8a-5d3a-4eac-9755-422f66db20f9?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wOTU1YWI4YS01ZDNhLTRlYWMtOTc1NS00MjJmNjZkYjIwZjk/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/55cfd44a-c9b8-44b7-91d7-1bd1de0f42cd?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy81NWNmZDQ0YS1jOWI4LTQ0YjctOTFkNy0xYmQxZGUwZjQyY2Q/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" @@ -790,16 +790,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4196" + "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4183" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044,1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044" ], "x-ms-request-id": [ - "daf28093-45c3-4653-8c77-1e5996043bac" + "ae04b438-807b-468d-92da-ae3ea31f6046" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -809,19 +809,19 @@ "11994" ], "x-ms-correlation-request-id": [ - "f08f0361-f079-44c5-af1c-6492db55df5c" + "3e970f9d-44fd-43a6-b395-ede179e9c08f" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T014530Z:f08f0361-f079-44c5-af1c-6492db55df5c" + "WESTUS:20220311T184448Z:3e970f9d-44fd-43a6-b395-ede179e9c08f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:45:30 GMT" + "Fri, 11 Mar 2022 18:44:48 GMT" ], "Content-Length": [ - "184" + "183" ], "Content-Type": [ "application/json; charset=utf-8" @@ -830,17 +830,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-13T20:44:59.4224073-05:00\",\r\n \"endTime\": \"2022-04-13T20:45:00.2974104-05:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0955ab8a-5d3a-4eac-9755-422f66db20f9\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-03-11T10:44:18.794976-08:00\",\r\n \"endTime\": \"2022-03-11T10:44:18.8887154-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"55cfd44a-c9b8-44b7-91d7-1bd1de0f42cd\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/0955ab8a-5d3a-4eac-9755-422f66db20f9?monitor=true&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wOTU1YWI4YS01ZDNhLTRlYWMtOTc1NS00MjJmNjZkYjIwZjk/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/55cfd44a-c9b8-44b7-91d7-1bd1de0f42cd?monitor=true&api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy81NWNmZDQ0YS1jOWI4LTQ0YjctOTFkNy0xYmQxZGUwZjQyY2Q/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDEtMDM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.16002", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" @@ -854,16 +854,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4195" + "Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4182" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132757907707209429" + "1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044,1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044" ], "x-ms-request-id": [ - "e0ab443b-aa9d-4862-8d67-8b8c41a28560" + "f5df2db1-837a-4c35-8fa7-6b0b2fdf3777" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -873,16 +873,16 @@ "11993" ], "x-ms-correlation-request-id": [ - "876875a1-321a-489d-8b68-f4bdca952330" + "3f51ad7f-3192-484d-8b7c-98b03c4e12b2" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220414T014530Z:876875a1-321a-489d-8b68-f4bdca952330" + "WESTUS:20220311T184449Z:3f51ad7f-3192-484d-8b7c-98b03c4e12b2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 14 Apr 2022 01:45:30 GMT" + "Fri, 11 Mar 2022 18:44:48 GMT" ], "Expires": [ "-1" @@ -897,12 +897,12 @@ ], "Names": { "GalleryApplication_CRUD_Tests": [ - "galleryPsTestRg2218", - "galleryPsTestGallery3310", - "galleryPsTestGalleryApplication5237" + "galleryPsTestRg9870", + "galleryPsTestGallery2495", + "galleryPsTestGalleryApplication6495" ] }, "Variables": { - "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871" + "SubscriptionId": "97f78232-382b-46a7-8a72-964d692c4f3f" } } \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryImageVersion_CRUD_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryImageVersion_CRUD_Tests.json index 72c84874f85dd..30a95e41800c4 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryImageVersion_CRUD_Tests.json +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryImageVersion_CRUD_Tests.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDIyLTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDIyLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55a9b349-2b3d-4cb3-9301-71d409ca36a4" + "6fcaa443-c655-4fc3-b720-e42ff6becbb8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43997" + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43999" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "19a6b8e7-2f9b-4b25-aea4-718323f85895_132918940293747805" + "19a6b8e7-2f9b-4b25-aea4-718323f85895_132973868015886131" ], "x-ms-request-id": [ - "01b434b7-0908-4d1f-843c-a9c1d8bcc7fe" + "b02c5cdc-d982-4fcf-bbfa-ec456bff8f69" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -46,16 +46,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "8d43f064-3ab7-4807-9bed-dc51d2b57519" + "a7c1abbd-86b4-4bf9-99a7-c9a680247bd5" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T014737Z:8d43f064-3ab7-4807-9bed-dc51d2b57519" + "WESTUS:20220606T184248Z:a7c1abbd-86b4-4bf9-99a7-c9a680247bd5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:47:37 GMT" + "Mon, 06 Jun 2022 18:42:48 GMT" ], "Content-Length": [ "309" @@ -67,25 +67,25 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus2\",\r\n \"name\": \"4.127.20180315\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus2/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20180315\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus2\",\r\n \"name\": \"4.127.20180315\",\r\n \"id\": \"/Subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/Providers/Microsoft.Compute/Locations/eastus2/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20180315\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/galleryPsTestRg6934?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY5MzQ/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg7790?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc3OTA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg6934\": \"2022-04-06 01:47:37Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg7790\": \"2022-06-06 18:42:48Z\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6fd1a42b-13f6-4e87-8f91-5a626ca5808a" + "383e55eb-e824-434b-9087-528929abd54e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", + "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ @@ -106,13 +106,13 @@ "1199" ], "x-ms-request-id": [ - "47f0c75b-b42c-4341-96d6-b77f33f2fa15" + "e20af073-3a1e-454c-82d4-a4974e6916eb" ], "x-ms-correlation-request-id": [ - "47f0c75b-b42c-4341-96d6-b77f33f2fa15" + "e20af073-3a1e-454c-82d4-a4974e6916eb" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T014738Z:47f0c75b-b42c-4341-96d6-b77f33f2fa15" + "WESTUS:20220606T184250Z:e20af073-3a1e-454c-82d4-a4974e6916eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -121,7 +121,7 @@ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:47:38 GMT" + "Mon, 06 Jun 2022 18:42:50 GMT" ], "Content-Length": [ "246" @@ -133,25 +133,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934\",\r\n \"name\": \"galleryPsTestRg6934\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg6934\": \"2022-04-06 01:47:37Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790\",\r\n \"name\": \"galleryPsTestRg7790\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg7790\": \"2022-06-06 18:42:48Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/galleryPsTestRg6934?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY5MzQ/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg7790?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc3OTA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg6934\": \"2022-04-06 01:48:07Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg7790\": \"2022-06-06 18:43:23Z\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2edd8e92-47ed-41bc-a4d3-6421e33d4f3c" + "28d0ffec-7cf2-491d-850e-8e962fe0e28f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", + "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ @@ -172,13 +172,13 @@ "1198" ], "x-ms-request-id": [ - "95453881-8c43-498a-b020-936f54224262" + "fcf3dfeb-cba4-4925-b867-a3898fcc5418" ], "x-ms-correlation-request-id": [ - "95453881-8c43-498a-b020-936f54224262" + "fcf3dfeb-cba4-4925-b867-a3898fcc5418" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T014807Z:95453881-8c43-498a-b020-936f54224262" + "WESTUS:20220606T184323Z:fcf3dfeb-cba4-4925-b867-a3898fcc5418" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -187,7 +187,7 @@ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:48:07 GMT" + "Mon, 06 Jun 2022 18:43:23 GMT" ], "Content-Length": [ "246" @@ -199,25 +199,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934\",\r\n \"name\": \"galleryPsTestRg6934\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg6934\": \"2022-04-06 01:48:07Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790\",\r\n \"name\": \"galleryPsTestRg7790\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg7790\": \"2022-06-06 18:43:23Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Storage/storageAccounts/saforgallery9181?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY5MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnk5MTgxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Storage/storageAccounts/saforgallery2623?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnkyNjIzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "965a47a4-b68e-483d-876b-557ec2b4967c" + "cab628b4-94dc-49d5-84a5-df7f00e33739" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", + "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ], "Content-Type": [ @@ -235,13 +235,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Storage/locations/eastus2/asyncoperations/7f80abd0-afcb-4e43-b418-05bb0b074bfd?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Storage/locations/eastus2/asyncoperations/4231b9d5-7622-4503-81b0-1b21994fbb7f?monitor=true&api-version=2015-06-15" ], "Retry-After": [ "17" ], "x-ms-request-id": [ - "7f80abd0-afcb-4e43-b418-05bb0b074bfd" + "4231b9d5-7622-4503-81b0-1b21994fbb7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -253,16 +253,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "36df11ab-a2da-44e6-9b52-a033f4585258" + "e80898db-5bbf-4d89-b43a-620d3183791b" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T014740Z:36df11ab-a2da-44e6-9b52-a033f4585258" + "WESTUS:20220606T184255Z:e80898db-5bbf-4d89-b43a-620d3183791b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:47:40 GMT" + "Mon, 06 Jun 2022 18:42:55 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -278,15 +278,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Storage/locations/eastus2/asyncoperations/7f80abd0-afcb-4e43-b418-05bb0b074bfd?monitor=true&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMi9hc3luY29wZXJhdGlvbnMvN2Y4MGFiZDAtYWZjYi00ZTQzLWI0MTgtMDViYjBiMDc0YmZkP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Storage/locations/eastus2/asyncoperations/4231b9d5-7622-4503-81b0-1b21994fbb7f?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMi9hc3luY29wZXJhdGlvbnMvNDIzMWI5ZDUtNzYyMi00NTAzLTgxYjAtMWIyMTk5NGZiYjdmP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", + "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ] }, @@ -298,7 +298,7 @@ "no-cache" ], "x-ms-request-id": [ - "a2c05739-7890-4303-b707-14edc6ee5b76" + "999c2257-5e8c-44b7-826b-4d255dfeaf66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -310,16 +310,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "d22516f9-6780-477e-b000-d80c4744469b" + "e630d919-2ef1-4d80-b845-859fbb867374" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T014757Z:d22516f9-6780-477e-b000-d80c4744469b" + "WESTUS:20220606T184312Z:e630d919-2ef1-4d80-b845-859fbb867374" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:47:57 GMT" + "Mon, 06 Jun 2022 18:43:12 GMT" ], "Content-Length": [ "89" @@ -335,21 +335,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY5MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2d7063de-ec4d-4a5c-9224-806a6255d803" + "dd57983b-638c-425d-aecb-231a926adcda" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", + "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ] }, @@ -361,7 +361,7 @@ "no-cache" ], "x-ms-request-id": [ - "63e83322-75fc-4c00-9a2a-4d726506d1c0" + "eecb7bbc-bff9-4e34-877c-a8aef7be2549" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -373,16 +373,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "e7dccdd4-dc5d-4e18-9464-30832233e0f9" + "7f9df7f4-ddd8-49c4-98c1-cdf0e31f9351" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T014807Z:e7dccdd4-dc5d-4e18-9464-30832233e0f9" + "WESTUS:20220606T184323Z:7f9df7f4-ddd8-49c4-98c1-cdf0e31f9351" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:48:07 GMT" + "Mon, 06 Jun 2022 18:43:22 GMT" ], "Content-Length": [ "765" @@ -394,25 +394,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Storage/storageAccounts/saforgallery9181\",\r\n \"name\": \"saforgallery9181\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2022-04-06T01:47:39.0782397Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery9181.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery9181.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery9181.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery9181.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Storage/storageAccounts/saforgallery2623\",\r\n \"name\": \"saforgallery2623\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2022-06-06T18:42:54.2676459Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery2623.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery2623.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery2623.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery2623.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Storage/storageAccounts/saforgallery9181?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY5MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnk5MTgxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Storage/storageAccounts/saforgallery2623?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnkyNjIzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "68fd8af6-512d-463d-a587-9bdbb2bfdf5e" + "96384ae1-eb42-4623-bf1a-c00baf987ad9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", + "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ] }, @@ -424,7 +424,7 @@ "no-cache" ], "x-ms-request-id": [ - "751067c2-3cb0-460c-9286-6192a11f7a64" + "af63f09a-915b-424c-b588-d49ea451a0ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -436,16 +436,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "01e72e5c-9dcc-4e19-9359-2a999f8e6ccf" + "0a653104-ea6e-462b-a190-07dda2cd9d23" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T014807Z:01e72e5c-9dcc-4e19-9359-2a999f8e6ccf" + "WESTUS:20220606T184323Z:0a653104-ea6e-462b-a190-07dda2cd9d23" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:48:07 GMT" + "Mon, 06 Jun 2022 18:43:23 GMT" ], "Content-Length": [ "753" @@ -457,25 +457,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Storage/storageAccounts/saforgallery9181\",\r\n \"name\": \"saforgallery9181\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2022-04-06T01:47:39.0782397Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery9181.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery9181.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery9181.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery9181.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Storage/storageAccounts/saforgallery2623\",\r\n \"name\": \"saforgallery2623\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2022-06-06T18:42:54.2676459Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery2623.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery2623.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery2623.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery2623.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Network/publicIPAddresses/pip377?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY5MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM3Nz9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Network/publicIPAddresses/pip3526?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1MjY/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9360\"\r\n }\r\n },\r\n \"location\": \"eastus2\",\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\": \"dn9312\"\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b63781d0-4ff5-4fe4-9caa-d3ed09b94bad" + "53a72888-cc67-4a2a-9a47-59ada54a8f28" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", + "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ], "Content-Type": [ @@ -496,19 +496,19 @@ "1" ], "x-ms-request-id": [ - "bdb60f42-67e7-46bd-9360-fce4bc1d8efb" + "badd6ce7-3e25-44b9-8b37-2c359b569410" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/eastus2/operations/bdb60f42-67e7-46bd-9360-fce4bc1d8efb?api-version=2019-09-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Network/locations/eastus2/operations/badd6ce7-3e25-44b9-8b37-2c359b569410?api-version=2019-09-01" ], "x-ms-correlation-request-id": [ - "7e5db2df-0408-4819-8253-e2b94fea0011" + "51901c07-d1d5-47df-a0de-6d32c09f9ff7" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "168354a7-392d-449a-bca0-25a50501c304" + "f2ba353d-99e9-4a47-a4c7-409c834624b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -521,16 +521,16 @@ "1199" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T014809Z:7e5db2df-0408-4819-8253-e2b94fea0011" + "WESTUS:20220606T184328Z:51901c07-d1d5-47df-a0de-6d32c09f9ff7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:48:09 GMT" + "Mon, 06 Jun 2022 18:43:27 GMT" ], "Content-Length": [ - "761" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -539,19 +539,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pip377\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Network/publicIPAddresses/pip377\",\r\n \"etag\": \"W/\\\"758d532f-5e36-4a1b-b7d6-92150a4e6cca\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"026b54e5-04f6-4e7a-bc34-918e399cf61e\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9360\",\r\n \"fqdn\": \"dn9360.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pip3526\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Network/publicIPAddresses/pip3526\",\r\n \"etag\": \"W/\\\"25b2bce7-cacb-4a3d-ae01-c1510f1fb42b\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"33306416-a0f8-4c95-a30d-2c2811e61729\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9312\",\r\n \"fqdn\": \"dn9312.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/eastus2/operations/bdb60f42-67e7-46bd-9360-fce4bc1d8efb?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2JkYjYwZjQyLTY3ZTctNDZiZC05MzYwLWZjZTRiYzFkOGVmYj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Network/locations/eastus2/operations/badd6ce7-3e25-44b9-8b37-2c359b569410?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2JhZGQ2Y2U3LTNlMjUtNDRiOS04YjM3LTJjMzU5YjU2OTQxMD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", + "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ] }, @@ -562,17 +562,14 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "2" - ], "x-ms-request-id": [ - "488bd994-70d0-4708-a9e7-ee0dd3ba91bd" + "b2af390b-e144-4e76-bd36-4f63f0c771d2" ], "x-ms-correlation-request-id": [ - "ca598d75-d951-4b57-98bb-c8d255666f00" + "5c238732-c0bf-45de-a846-967131ed2dbb" ], "x-ms-arm-service-request-id": [ - "5cfb0aa1-1333-4dbf-a53c-dbd133d1c764" + "79861e0f-daf1-44f7-9c57-55994e688264" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -585,74 +582,13 @@ "11999" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T014810Z:ca598d75-d951-4b57-98bb-c8d255666f00" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 06 Apr 2022 01:48:10 GMT" - ], - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/eastus2/operations/bdb60f42-67e7-46bd-9360-fce4bc1d8efb?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2JkYjYwZjQyLTY3ZTctNDZiZC05MzYwLWZjZTRiYzFkOGVmYj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.47003", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "6710512e-988e-45bf-91d2-8c9803112faf" - ], - "x-ms-correlation-request-id": [ - "c610b901-d6a3-447b-99ac-8790d1bbb4c9" - ], - "x-ms-arm-service-request-id": [ - "504eaa5f-9fdd-4db3-ae05-5e815246e94d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-routing-request-id": [ - "EASTUS2:20220406T014812Z:c610b901-d6a3-447b-99ac-8790d1bbb4c9" + "WESTUS:20220606T184329Z:5c238732-c0bf-45de-a846-967131ed2dbb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:48:12 GMT" + "Mon, 06 Jun 2022 18:43:28 GMT" ], "Content-Length": [ "29" @@ -668,15 +604,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Network/publicIPAddresses/pip377?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY5MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM3Nz9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Network/publicIPAddresses/pip3526?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1MjY/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", + "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ] }, @@ -688,16 +624,16 @@ "no-cache" ], "ETag": [ - "W/\"02ed4221-1198-4ae7-a8ae-d329c13ca56f\"" + "W/\"f8ab2d51-c2ec-4d15-abe6-2b582ed08246\"" ], "x-ms-request-id": [ - "510f5dc6-2dad-4948-a9f2-3d5ed13ecbf9" + "3411374c-37a7-4de9-be28-4fdb2653ab8d" ], "x-ms-correlation-request-id": [ - "2d9a1e6f-b554-4858-b8d2-bbdd2e22972c" + "c987e93f-1549-4023-a35d-38f1f29cc7f1" ], "x-ms-arm-service-request-id": [ - "44c1458e-7d86-4464-aa50-6cba06aae4a0" + "11374ca8-3bfe-4886-892d-3e8994dc3e4f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -707,19 +643,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T014812Z:2d9a1e6f-b554-4858-b8d2-bbdd2e22972c" + "WESTUS:20220606T184329Z:c987e93f-1549-4023-a35d-38f1f29cc7f1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:48:12 GMT" + "Mon, 06 Jun 2022 18:43:29 GMT" ], "Content-Length": [ - "762" + "764" ], "Content-Type": [ "application/json; charset=utf-8" @@ -728,25 +664,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pip377\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Network/publicIPAddresses/pip377\",\r\n \"etag\": \"W/\\\"02ed4221-1198-4ae7-a8ae-d329c13ca56f\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"026b54e5-04f6-4e7a-bc34-918e399cf61e\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9360\",\r\n \"fqdn\": \"dn9360.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pip3526\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Network/publicIPAddresses/pip3526\",\r\n \"etag\": \"W/\\\"f8ab2d51-c2ec-4d15-abe6-2b582ed08246\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"33306416-a0f8-4c95-a30d-2c2811e61729\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9312\",\r\n \"fqdn\": \"dn9312.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Network/publicIPAddresses/pip377?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY5MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM3Nz9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Network/publicIPAddresses/pip3526?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1MjY/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "150595ee-8f63-4c4c-b667-bf93b3c0428d" + "7aa8124a-18c7-4398-afb4-662c768d6309" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", + "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ] }, @@ -758,16 +694,16 @@ "no-cache" ], "ETag": [ - "W/\"02ed4221-1198-4ae7-a8ae-d329c13ca56f\"" + "W/\"f8ab2d51-c2ec-4d15-abe6-2b582ed08246\"" ], "x-ms-request-id": [ - "a47184fd-ba8d-429d-b252-14fa038c82d7" + "1030a283-3c18-4a45-8314-403158081531" ], "x-ms-correlation-request-id": [ - "dce2434a-3e6a-4e33-9281-986ff2d2dad8" + "4f5e4186-c45d-4cc4-bf6c-9891e40bb564" ], "x-ms-arm-service-request-id": [ - "69f44d48-379f-4a0e-945c-428c45eecb94" + "26024031-9b06-4b03-8284-7f7fb1324ee1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -777,19 +713,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T014812Z:dce2434a-3e6a-4e33-9281-986ff2d2dad8" + "WESTUS:20220606T184329Z:4f5e4186-c45d-4cc4-bf6c-9891e40bb564" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:48:12 GMT" + "Mon, 06 Jun 2022 18:43:29 GMT" ], "Content-Length": [ - "762" + "764" ], "Content-Type": [ "application/json; charset=utf-8" @@ -798,25 +734,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pip377\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Network/publicIPAddresses/pip377\",\r\n \"etag\": \"W/\\\"02ed4221-1198-4ae7-a8ae-d329c13ca56f\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"026b54e5-04f6-4e7a-bc34-918e399cf61e\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9360\",\r\n \"fqdn\": \"dn9360.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"pip3526\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Network/publicIPAddresses/pip3526\",\r\n \"etag\": \"W/\\\"f8ab2d51-c2ec-4d15-abe6-2b582ed08246\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"33306416-a0f8-4c95-a30d-2c2811e61729\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9312\",\r\n \"fqdn\": \"dn9312.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Network/virtualNetworks/vn7674?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY5MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2NzQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Network/virtualNetworks/vn8412?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg0MTI/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": [\r\n \"10.1.1.1\",\r\n \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"sn9051\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\"\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\": \"sn5849\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1ecfd5aa-24c3-4cb8-b811-960a827e4d7e" + "bb7cfcb9-6abc-4045-b925-9e02202f32bc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", + "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ], "Content-Type": [ @@ -837,19 +773,19 @@ "3" ], "x-ms-request-id": [ - "710889df-fb38-4410-b3ad-7fe2d197af9c" + "ac2ef1e0-d4f4-4a4a-a3b0-2f29950b32ee" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/eastus2/operations/710889df-fb38-4410-b3ad-7fe2d197af9c?api-version=2019-09-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Network/locations/eastus2/operations/ac2ef1e0-d4f4-4a4a-a3b0-2f29950b32ee?api-version=2019-09-01" ], "x-ms-correlation-request-id": [ - "53b76149-6af1-41a7-a94c-b7aa6df1abef" + "f26e53a4-3abb-486f-91b5-dd8f93b543c4" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "7fcc3fe2-11a5-464f-9dec-08af1edaf697" + "81098e5c-a7fe-456c-92be-f7c613e7d2b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -862,13 +798,13 @@ "1198" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T014812Z:53b76149-6af1-41a7-a94c-b7aa6df1abef" + "WESTUS:20220606T184331Z:f26e53a4-3abb-486f-91b5-dd8f93b543c4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:48:12 GMT" + "Mon, 06 Jun 2022 18:43:30 GMT" ], "Content-Length": [ "1327" @@ -880,19 +816,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vn7674\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Network/virtualNetworks/vn7674\",\r\n \"etag\": \"W/\\\"7d899a77-0d7d-47c4-ae0f-0ae712c3a733\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"bff26935-d5d9-4f50-8935-8c2c97c5fc62\",\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\": \"sn9051\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Network/virtualNetworks/vn7674/subnets/sn9051\",\r\n \"etag\": \"W/\\\"7d899a77-0d7d-47c4-ae0f-0ae712c3a733\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vn8412\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Network/virtualNetworks/vn8412\",\r\n \"etag\": \"W/\\\"b44f5c3b-27c2-4506-b778-d0012e326135\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"15eef782-9860-4bd5-9709-4d434d46bb63\",\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\": \"sn5849\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Network/virtualNetworks/vn8412/subnets/sn5849\",\r\n \"etag\": \"W/\\\"b44f5c3b-27c2-4506-b778-d0012e326135\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/eastus2/operations/710889df-fb38-4410-b3ad-7fe2d197af9c?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzcxMDg4OWRmLWZiMzgtNDQxMC1iM2FkLTdmZTJkMTk3YWY5Yz9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Network/locations/eastus2/operations/ac2ef1e0-d4f4-4a4a-a3b0-2f29950b32ee?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2FjMmVmMWUwLWQ0ZjQtNGE0YS1hM2IwLTJmMjk5NTBiMzJlZT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", + "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ] }, @@ -904,13 +840,13 @@ "no-cache" ], "x-ms-request-id": [ - "2e68a938-d03b-4a89-b83a-87ebd99a6dc4" + "520b3f66-72a2-4de8-8ee3-5362b4356108" ], "x-ms-correlation-request-id": [ - "d785f628-e739-46f2-a7df-53754ab67cdb" + "68698af2-c340-4ebe-8669-19dcc578eb42" ], "x-ms-arm-service-request-id": [ - "815809e5-55af-40f9-bfa5-69984ac68fe0" + "6b02d8af-8f5d-4e37-80fe-04625f0fd635" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -920,16 +856,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11996" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T014815Z:d785f628-e739-46f2-a7df-53754ab67cdb" + "WESTUS:20220606T184334Z:68698af2-c340-4ebe-8669-19dcc578eb42" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:48:15 GMT" + "Mon, 06 Jun 2022 18:43:34 GMT" ], "Content-Length": [ "29" @@ -945,15 +881,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Network/virtualNetworks/vn7674?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY5MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2NzQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Network/virtualNetworks/vn8412?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg0MTI/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", + "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ] }, @@ -965,16 +901,16 @@ "no-cache" ], "ETag": [ - "W/\"7c2c94a3-69f3-4628-8aa2-00e8f8e8f98a\"" + "W/\"98362031-98a2-42eb-acd6-8c3d2ad9b7d7\"" ], "x-ms-request-id": [ - "b03213df-4a01-4c8d-861d-4b0586a7f703" + "4faedd76-e1df-4523-8bfd-14c54123a05c" ], "x-ms-correlation-request-id": [ - "55e3881c-9789-4891-85d6-5208cc18e3bc" + "b23bad76-1c00-485e-9128-d6bf013327cf" ], "x-ms-arm-service-request-id": [ - "d79127bc-ba30-4136-8692-661fccbbcd81" + "c1cd9fd2-4311-4327-b5f5-023b33bb100a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -984,16 +920,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11995" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T014816Z:55e3881c-9789-4891-85d6-5208cc18e3bc" + "WESTUS:20220606T184334Z:b23bad76-1c00-485e-9128-d6bf013327cf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:48:15 GMT" + "Mon, 06 Jun 2022 18:43:34 GMT" ], "Content-Length": [ "1329" @@ -1005,25 +941,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vn7674\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Network/virtualNetworks/vn7674\",\r\n \"etag\": \"W/\\\"7c2c94a3-69f3-4628-8aa2-00e8f8e8f98a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"bff26935-d5d9-4f50-8935-8c2c97c5fc62\",\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\": \"sn9051\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Network/virtualNetworks/vn7674/subnets/sn9051\",\r\n \"etag\": \"W/\\\"7c2c94a3-69f3-4628-8aa2-00e8f8e8f98a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vn8412\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Network/virtualNetworks/vn8412\",\r\n \"etag\": \"W/\\\"98362031-98a2-42eb-acd6-8c3d2ad9b7d7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"15eef782-9860-4bd5-9709-4d434d46bb63\",\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\": \"sn5849\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Network/virtualNetworks/vn8412/subnets/sn5849\",\r\n \"etag\": \"W/\\\"98362031-98a2-42eb-acd6-8c3d2ad9b7d7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Network/virtualNetworks/vn7674/subnets/sn9051?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY5MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2NzQvc3VibmV0cy9zbjkwNTE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Network/virtualNetworks/vn8412/subnets/sn5849?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg0MTIvc3VibmV0cy9zbjU4NDk/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7213dd43-8c17-4eb6-ab28-1c035f013df4" + "496b5983-bb5a-4541-b043-62583f3cdf22" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", + "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ] }, @@ -1035,16 +971,16 @@ "no-cache" ], "ETag": [ - "W/\"7c2c94a3-69f3-4628-8aa2-00e8f8e8f98a\"" + "W/\"98362031-98a2-42eb-acd6-8c3d2ad9b7d7\"" ], "x-ms-request-id": [ - "3bc40501-783d-4f53-92d5-d40066b012ab" + "8862a515-0756-45e0-bc47-40efda306445" ], "x-ms-correlation-request-id": [ - "d65e3637-cd4c-455d-bb8b-41c39e72dca7" + "7cdb2454-de92-4073-9f57-cd189b0dac43" ], "x-ms-arm-service-request-id": [ - "283501b2-9bd2-47ef-83dc-46d66e2aaeb8" + "e5111861-2303-4909-9a26-c48354099cf4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1054,16 +990,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11994" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T014816Z:d65e3637-cd4c-455d-bb8b-41c39e72dca7" + "WESTUS:20220606T184334Z:7cdb2454-de92-4073-9f57-cd189b0dac43" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:48:15 GMT" + "Mon, 06 Jun 2022 18:43:34 GMT" ], "Content-Length": [ "529" @@ -1075,25 +1011,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"sn9051\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Network/virtualNetworks/vn7674/subnets/sn9051\",\r\n \"etag\": \"W/\\\"7c2c94a3-69f3-4628-8aa2-00e8f8e8f98a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"sn5849\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Network/virtualNetworks/vn8412/subnets/sn5849\",\r\n \"etag\": \"W/\\\"98362031-98a2-42eb-acd6-8c3d2ad9b7d7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Network/networkInterfaces/nic9665?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY5MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk2NjU/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Network/networkInterfaces/nic1685?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE2ODU/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"sn9051\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Network/virtualNetworks/vn7674/subnets/sn9051\"\r\n }\r\n },\r\n \"name\": \"ip3298\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\",\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 \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"sn5849\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Network/virtualNetworks/vn8412/subnets/sn5849\"\r\n }\r\n },\r\n \"name\": \"ip4169\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "611c24da-b270-4de3-ba23-b8ec0c0d6670" + "57add8bd-375f-4942-86c2-5471c4a2a8ba" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", + "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ], "Content-Type": [ @@ -1111,19 +1047,19 @@ "no-cache" ], "x-ms-request-id": [ - "932dc0c9-d218-4d90-8b57-8afaa500d65d" + "d3ffff99-ffb8-4fd8-a0d4-0a1fc12d0c6f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/eastus2/operations/932dc0c9-d218-4d90-8b57-8afaa500d65d?api-version=2019-09-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Network/locations/eastus2/operations/d3ffff99-ffb8-4fd8-a0d4-0a1fc12d0c6f?api-version=2019-09-01" ], "x-ms-correlation-request-id": [ - "bfc38b06-e97c-40e8-8e39-9386d63e46fa" + "4d07d69f-520d-4d11-bf48-8001a684acb3" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "0b3108e2-79bc-4e11-b919-428472874882" + "dcc912c3-6023-4c32-bd85-7ca1d777ffa7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1136,13 +1072,13 @@ "1197" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T014816Z:bfc38b06-e97c-40e8-8e39-9386d63e46fa" + "WESTUS:20220606T184336Z:4d07d69f-520d-4d11-bf48-8001a684acb3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:48:16 GMT" + "Mon, 06 Jun 2022 18:43:35 GMT" ], "Content-Length": [ "1643" @@ -1154,19 +1090,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"nic9665\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Network/networkInterfaces/nic9665\",\r\n \"etag\": \"W/\\\"394932de-b4e7-4e83-b95a-654174cf4293\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b08d2b70-032d-4096-95ec-b49e2c73545a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3298\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Network/networkInterfaces/nic9665/ipConfigurations/ip3298\",\r\n \"etag\": \"W/\\\"394932de-b4e7-4e83-b95a-654174cf4293\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Network/virtualNetworks/vn7674/subnets/sn9051\"\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\": \"gvu5fp4z0vie5cjvrqwjprp2mc.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic1685\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Network/networkInterfaces/nic1685\",\r\n \"etag\": \"W/\\\"e230bfb1-03cc-4379-b00a-8c63581b95f1\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4a48e91d-8712-4af5-b0b4-d21f9747af33\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip4169\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Network/networkInterfaces/nic1685/ipConfigurations/ip4169\",\r\n \"etag\": \"W/\\\"e230bfb1-03cc-4379-b00a-8c63581b95f1\\\"\",\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/galleryPsTestRg7790/providers/Microsoft.Network/virtualNetworks/vn8412/subnets/sn5849\"\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\": \"ql142flatdkuxfyjjvbu0rv1md.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Network/networkInterfaces/nic9665?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY5MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk2NjU/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Network/networkInterfaces/nic1685?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE2ODU/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", + "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ] }, @@ -1178,16 +1114,16 @@ "no-cache" ], "ETag": [ - "W/\"394932de-b4e7-4e83-b95a-654174cf4293\"" + "W/\"e230bfb1-03cc-4379-b00a-8c63581b95f1\"" ], "x-ms-request-id": [ - "26344c5a-3e4d-494a-9de5-4ed0f6a73d6a" + "ec39d415-4aef-44f5-a5ac-613bc0738da6" ], "x-ms-correlation-request-id": [ - "06b6ab0f-9f41-4d25-85cb-9495269ac3c5" + "4d0009cd-4b83-4784-aaf6-d03b68f265bb" ], "x-ms-arm-service-request-id": [ - "274e958f-a206-4e29-8071-199c433a3924" + "cf384da4-0c7b-4e07-98b6-89778b5c562a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1197,16 +1133,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11993" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T014816Z:06b6ab0f-9f41-4d25-85cb-9495269ac3c5" + "WESTUS:20220606T184336Z:4d0009cd-4b83-4784-aaf6-d03b68f265bb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:48:16 GMT" + "Mon, 06 Jun 2022 18:43:36 GMT" ], "Content-Length": [ "1643" @@ -1218,25 +1154,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"nic9665\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Network/networkInterfaces/nic9665\",\r\n \"etag\": \"W/\\\"394932de-b4e7-4e83-b95a-654174cf4293\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b08d2b70-032d-4096-95ec-b49e2c73545a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3298\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Network/networkInterfaces/nic9665/ipConfigurations/ip3298\",\r\n \"etag\": \"W/\\\"394932de-b4e7-4e83-b95a-654174cf4293\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Network/virtualNetworks/vn7674/subnets/sn9051\"\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\": \"gvu5fp4z0vie5cjvrqwjprp2mc.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic1685\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Network/networkInterfaces/nic1685\",\r\n \"etag\": \"W/\\\"e230bfb1-03cc-4379-b00a-8c63581b95f1\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4a48e91d-8712-4af5-b0b4-d21f9747af33\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip4169\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Network/networkInterfaces/nic1685/ipConfigurations/ip4169\",\r\n \"etag\": \"W/\\\"e230bfb1-03cc-4379-b00a-8c63581b95f1\\\"\",\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/galleryPsTestRg7790/providers/Microsoft.Network/virtualNetworks/vn8412/subnets/sn5849\"\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\": \"ql142flatdkuxfyjjvbu0rv1md.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Network/networkInterfaces/nic9665?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY5MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk2NjU/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Network/networkInterfaces/nic1685?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE2ODU/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "677a7b5c-94bc-4a39-a4d8-b441fb5d69c6" + "4107cd2a-6969-4bc8-b958-376ca14ac864" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", + "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ] }, @@ -1248,16 +1184,16 @@ "no-cache" ], "ETag": [ - "W/\"394932de-b4e7-4e83-b95a-654174cf4293\"" + "W/\"e230bfb1-03cc-4379-b00a-8c63581b95f1\"" ], "x-ms-request-id": [ - "e3b84196-13f6-42da-bcd2-4b80e9a9a16f" + "c2a65237-3fdf-41fe-a7f1-856711bad252" ], "x-ms-correlation-request-id": [ - "5d222f05-a515-4793-9d08-7f4178db2468" + "d58fc501-00bb-466a-b426-90d1264ca5c1" ], "x-ms-arm-service-request-id": [ - "8ec41e3a-bb24-46cd-8b9c-37dd011bfa77" + "b8b41c62-e490-42a3-8b76-cc2618318876" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1267,16 +1203,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11992" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T014816Z:5d222f05-a515-4793-9d08-7f4178db2468" + "WESTUS:20220606T184336Z:d58fc501-00bb-466a-b426-90d1264ca5c1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:48:16 GMT" + "Mon, 06 Jun 2022 18:43:36 GMT" ], "Content-Length": [ "1643" @@ -1288,26 +1224,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"nic9665\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Network/networkInterfaces/nic9665\",\r\n \"etag\": \"W/\\\"394932de-b4e7-4e83-b95a-654174cf4293\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b08d2b70-032d-4096-95ec-b49e2c73545a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3298\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Network/networkInterfaces/nic9665/ipConfigurations/ip3298\",\r\n \"etag\": \"W/\\\"394932de-b4e7-4e83-b95a-654174cf4293\\\"\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Network/virtualNetworks/vn7674/subnets/sn9051\"\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\": \"gvu5fp4z0vie5cjvrqwjprp2mc.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic1685\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Network/networkInterfaces/nic1685\",\r\n \"etag\": \"W/\\\"e230bfb1-03cc-4379-b00a-8c63581b95f1\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4a48e91d-8712-4af5-b0b4-d21f9747af33\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip4169\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Network/networkInterfaces/nic1685/ipConfigurations/ip4169\",\r\n \"etag\": \"W/\\\"e230bfb1-03cc-4379-b00a-8c63581b95f1\\\"\",\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/galleryPsTestRg7790/providers/Microsoft.Network/virtualNetworks/vn8412/subnets/sn5849\"\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\": \"ql142flatdkuxfyjjvbu0rv1md.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/availabilitySets/asforgallery6912?api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY5MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXNmb3JnYWxsZXJ5NjkxMj9hcGktdmVyc2lvbj0yMDIyLTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/availabilitySets/asforgallery3688?api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXNmb3JnYWxsZXJ5MzY4OD9hcGktdmVyc2lvbj0yMDIyLTAzLTAx", "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\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c7df44a7-36f8-462b-8e26-ad4ebb2b887f" + "bed269f4-a1d9-4acf-a4b9-642e7e8a6962" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1330,7 +1266,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0cd60482-fbaf-4641-a692-c2691789fe70" + "464e8921-6704-47d2-b1e2-2249eead4365" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1340,16 +1276,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "1fe57f35-e88a-4295-b72e-9fd724872211" + "78859f67-ce4a-4025-89b5-e74667094408" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T014817Z:1fe57f35-e88a-4295-b72e-9fd724872211" + "WESTUS:20220606T184340Z:78859f67-ce4a-4025-89b5-e74667094408" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:48:17 GMT" + "Mon, 06 Jun 2022 18:43:39 GMT" ], "Content-Length": [ "464" @@ -1361,26 +1297,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"asforgallery6912\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/availabilitySets/asforgallery6912\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"eastus2\",\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}", + "ResponseBody": "{\r\n \"name\": \"asforgallery3688\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/availabilitySets/asforgallery3688\",\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"eastus2\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/virtualMachines/vm5926?api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY5MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTU5MjY/YXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/virtualMachines/vm743?api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTc0Mz9hcGktdmVyc2lvbj0yMDIyLTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A1_v2\"\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://saforgallery9181.blob.core.windows.net/crptestar3321/oscrptestar8066.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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Network/networkInterfaces/nic9665\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/availabilitySets/asforgallery6912\"\r\n }\r\n },\r\n \"location\": \"eastus2\",\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_A1_v2\"\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://saforgallery2623.blob.core.windows.net/crptestar1744/oscrptestar5754.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/galleryPsTestRg7790/providers/Microsoft.Network/networkInterfaces/nic1685\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/availabilitySets/asforgallery3688\"\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "43ba59e4-db38-4054-b88c-84d0753efa61" + "0f894a20-b0fa-493e-9026-afb4abb6a97e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1400,7 +1336,7 @@ "10" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/2ba21965-7c70-4603-a42a-c9a2e5826be6?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-03-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/fc5e5cae-267d-4c24-885a-3082c2e9e3d1?p=0b6b958b-08c9-4eca-a759-7e84a44d7832&api-version=2022-03-01" ], "Azure-AsyncNotification": [ "Enabled" @@ -1412,7 +1348,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2ba21965-7c70-4603-a42a-c9a2e5826be6" + "fc5e5cae-267d-4c24-885a-3082c2e9e3d1" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1422,19 +1358,19 @@ "1198" ], "x-ms-correlation-request-id": [ - "99d931f7-bd7c-4ee2-a03f-e3fcb53b1edf" + "4af5b2be-85b3-40e4-afa9-a301305a83d6" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T014818Z:99d931f7-bd7c-4ee2-a03f-e3fcb53b1edf" + "WESTUS:20220606T184343Z:4af5b2be-85b3-40e4-afa9-a301305a83d6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:48:17 GMT" + "Mon, 06 Jun 2022 18:43:43 GMT" ], "Content-Length": [ - "2108" + "2154" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1443,20 +1379,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vm5926\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/virtualMachines/vm5926\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"f5594abe-643f-4848-bd53-8e99d54b0051\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY6912\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20180315\",\r\n \"exactVersion\": \"4.127.20180315\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://saforgallery9181.blob.core.windows.net/crptestar3321/oscrptestar8066.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"deleteOption\": \"Detach\"\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 \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n }\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Network/networkInterfaces/nic9665\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-04-06T01:48:17.8986039+00:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vm743\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/virtualMachines/vm743\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"f4212264-5bc3-4c70-8488-9c6461a9b866\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY3688\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20180315\",\r\n \"exactVersion\": \"4.127.20180315\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://saforgallery2623.blob.core.windows.net/crptestar1744/oscrptestar5754.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"deleteOption\": \"Detach\"\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 \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Network/networkInterfaces/nic1685\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-06-06T11:43:42.2512127-07:00\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/2ba21965-7c70-4603-a42a-c9a2e5826be6?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzJiYTIxOTY1LTdjNzAtNDYwMy1hNDJhLWM5YTJlNTgyNmJlNj9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZhcGktdmVyc2lvbj0yMDIyLTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/fc5e5cae-267d-4c24-885a-3082c2e9e3d1?p=0b6b958b-08c9-4eca-a759-7e84a44d7832&api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2ZjNWU1Y2FlLTI2N2QtNGMyNC04ODVhLTMwODJjMmU5ZTNkMT9wPTBiNmI5NThiLTA4YzktNGVjYS1hNzU5LTdlODRhNDRkNzgzMiZhcGktdmVyc2lvbj0yMDIyLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -1470,13 +1406,13 @@ "50" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29969" + "Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29910" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6ff53a05-4421-4ead-b8ba-d872f3a7d1c5" + "e9aec237-4f84-4375-b496-eb8d740a1efe" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1486,16 +1422,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "2225b7c1-5b38-4d07-964d-d3dcbfbdbbdc" + "aef3e08b-9f89-4b58-9f0b-72398be3e528" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T014828Z:2225b7c1-5b38-4d07-964d-d3dcbfbdbbdc" + "WESTUS:20220606T184353Z:aef3e08b-9f89-4b58-9f0b-72398be3e528" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:48:27 GMT" + "Mon, 06 Jun 2022 18:43:52 GMT" ], "Content-Length": [ "134" @@ -1507,20 +1443,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-06T01:48:17.8361016+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2ba21965-7c70-4603-a42a-c9a2e5826be6\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-06-06T11:43:42.1574669-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fc5e5cae-267d-4c24-885a-3082c2e9e3d1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/2ba21965-7c70-4603-a42a-c9a2e5826be6?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzJiYTIxOTY1LTdjNzAtNDYwMy1hNDJhLWM5YTJlNTgyNmJlNj9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZhcGktdmVyc2lvbj0yMDIyLTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/fc5e5cae-267d-4c24-885a-3082c2e9e3d1?p=0b6b958b-08c9-4eca-a759-7e84a44d7832&api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2ZjNWU1Y2FlLTI2N2QtNGMyNC04ODVhLTMwODJjMmU5ZTNkMT9wPTBiNmI5NThiLTA4YzktNGVjYS1hNzU5LTdlODRhNDRkNzgzMiZhcGktdmVyc2lvbj0yMDIyLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -1531,13 +1467,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29968" + "Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29906" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "58ba8d28-2e8f-4f32-8ef8-13078b22dd72" + "a298b707-e9c9-4a29-843e-b074d0686d3d" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1547,16 +1483,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "6219fccc-f771-49c5-96ee-a84a0b1119f3" + "4acd2409-21fe-44bb-83a7-bf640f0c915e" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T014918Z:6219fccc-f771-49c5-96ee-a84a0b1119f3" + "WESTUS:20220606T184443Z:4acd2409-21fe-44bb-83a7-bf640f0c915e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:49:17 GMT" + "Mon, 06 Jun 2022 18:44:42 GMT" ], "Content-Length": [ "134" @@ -1568,20 +1504,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-06T01:48:17.8361016+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2ba21965-7c70-4603-a42a-c9a2e5826be6\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-06-06T11:43:42.1574669-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fc5e5cae-267d-4c24-885a-3082c2e9e3d1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/2ba21965-7c70-4603-a42a-c9a2e5826be6?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzJiYTIxOTY1LTdjNzAtNDYwMy1hNDJhLWM5YTJlNTgyNmJlNj9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZhcGktdmVyc2lvbj0yMDIyLTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/fc5e5cae-267d-4c24-885a-3082c2e9e3d1?p=0b6b958b-08c9-4eca-a759-7e84a44d7832&api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2ZjNWU1Y2FlLTI2N2QtNGMyNC04ODVhLTMwODJjMmU5ZTNkMT9wPTBiNmI5NThiLTA4YzktNGVjYS1hNzU5LTdlODRhNDRkNzgzMiZhcGktdmVyc2lvbj0yMDIyLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -1592,13 +1528,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29971" + "Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29921" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3b2d64db-9d71-43b7-954e-c83515d55d01" + "b2329442-a4d4-4b60-8b7e-289d1d1c85f7" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1608,16 +1544,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "fa4f6380-b61a-4400-b33d-e76541004990" + "395a219f-6503-4108-b24e-db87da65aac8" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T015008Z:fa4f6380-b61a-4400-b33d-e76541004990" + "WESTUS:20220606T184533Z:395a219f-6503-4108-b24e-db87da65aac8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:50:07 GMT" + "Mon, 06 Jun 2022 18:45:33 GMT" ], "Content-Length": [ "134" @@ -1629,20 +1565,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-06T01:48:17.8361016+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2ba21965-7c70-4603-a42a-c9a2e5826be6\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-06-06T11:43:42.1574669-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fc5e5cae-267d-4c24-885a-3082c2e9e3d1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/2ba21965-7c70-4603-a42a-c9a2e5826be6?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzJiYTIxOTY1LTdjNzAtNDYwMy1hNDJhLWM5YTJlNTgyNmJlNj9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZhcGktdmVyc2lvbj0yMDIyLTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/fc5e5cae-267d-4c24-885a-3082c2e9e3d1?p=0b6b958b-08c9-4eca-a759-7e84a44d7832&api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2ZjNWU1Y2FlLTI2N2QtNGMyNC04ODVhLTMwODJjMmU5ZTNkMT9wPTBiNmI5NThiLTA4YzktNGVjYS1hNzU5LTdlODRhNDRkNzgzMiZhcGktdmVyc2lvbj0yMDIyLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -1653,13 +1589,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29969" + "Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29916" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5bb8331d-41d7-4935-a36a-e99e4acd6067" + "035342f7-7151-4abc-aa89-f8637121dae8" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1669,16 +1605,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "d61bcbaa-5d53-41e4-bc91-9d373dcd46a5" + "3adbc8fa-1172-4adc-a5fa-e25c7aa5904f" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T015058Z:d61bcbaa-5d53-41e4-bc91-9d373dcd46a5" + "WESTUS:20220606T184623Z:3adbc8fa-1172-4adc-a5fa-e25c7aa5904f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:50:57 GMT" + "Mon, 06 Jun 2022 18:46:23 GMT" ], "Content-Length": [ "184" @@ -1690,20 +1626,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-06T01:48:17.8361016+00:00\",\r\n \"endTime\": \"2022-04-06T01:50:23.3571344+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2ba21965-7c70-4603-a42a-c9a2e5826be6\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-06-06T11:43:42.1574669-07:00\",\r\n \"endTime\": \"2022-06-06T11:45:37.4551069-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"fc5e5cae-267d-4c24-885a-3082c2e9e3d1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/virtualMachines/vm5926?api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY5MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTU5MjY/YXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/virtualMachines/vm743?api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTc0Mz9hcGktdmVyc2lvbj0yMDIyLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -1714,13 +1650,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31994" + "Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31940" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "449265d0-aa54-4763-96ae-fa641d307a10" + "f88f8eb9-bea5-41ca-96b6-d7e4c9c0d4e2" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1730,19 +1666,19 @@ "11994" ], "x-ms-correlation-request-id": [ - "dfe65326-f0b2-4cec-934b-bb0957143e36" + "ba62c0e0-550b-4641-b0be-7fc3ea1caa6b" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T015058Z:dfe65326-f0b2-4cec-934b-bb0957143e36" + "WESTUS:20220606T184623Z:ba62c0e0-550b-4641-b0be-7fc3ea1caa6b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:50:58 GMT" + "Mon, 06 Jun 2022 18:46:23 GMT" ], "Content-Length": [ - "2137" + "2183" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1751,26 +1687,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vm5926\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/virtualMachines/vm5926\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"f5594abe-643f-4848-bd53-8e99d54b0051\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY6912\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20180315\",\r\n \"exactVersion\": \"4.127.20180315\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://saforgallery9181.blob.core.windows.net/crptestar3321/oscrptestar8066.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"deleteOption\": \"Detach\",\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 \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n }\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Network/networkInterfaces/nic9665\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-04-06T01:48:17.8986039+00:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vm743\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/virtualMachines/vm743\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"f4212264-5bc3-4c70-8488-9c6461a9b866\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY3688\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20180315\",\r\n \"exactVersion\": \"4.127.20180315\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://saforgallery2623.blob.core.windows.net/crptestar1744/oscrptestar5754.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"deleteOption\": \"Detach\",\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 \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Network/networkInterfaces/nic1685\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-06-06T11:43:42.2512127-07:00\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/virtualMachines/vm5926?api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY5MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTU5MjY/YXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/virtualMachines/vm743?api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTc0Mz9hcGktdmVyc2lvbj0yMDIyLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "93db407d-183e-4369-af12-f966ba49cdbf" + "24ef87cb-0e86-4027-a9e4-d2fc4cc7ddf0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -1781,13 +1717,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31993" + "Microsoft.Compute/LowCostGet3Min;3990,Microsoft.Compute/LowCostGet30Min;31939" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1121fbb1-94e9-425c-8e6c-f9a7cafdd245" + "a197a0c0-e35c-43aa-ae87-28eca6cb0a7e" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1797,19 +1733,19 @@ "11993" ], "x-ms-correlation-request-id": [ - "d9396a92-1ad4-42a7-8f51-1f12750da1a6" + "8fb0b6e9-bde5-4fb7-bc20-5eb6b550efde" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T015058Z:d9396a92-1ad4-42a7-8f51-1f12750da1a6" + "WESTUS:20220606T184624Z:8fb0b6e9-bde5-4fb7-bc20-5eb6b550efde" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:50:58 GMT" + "Mon, 06 Jun 2022 18:46:23 GMT" ], "Content-Length": [ - "2137" + "2183" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1818,26 +1754,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vm5926\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/virtualMachines/vm5926\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"f5594abe-643f-4848-bd53-8e99d54b0051\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY6912\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20180315\",\r\n \"exactVersion\": \"4.127.20180315\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://saforgallery9181.blob.core.windows.net/crptestar3321/oscrptestar8066.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"deleteOption\": \"Detach\",\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 \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n }\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Network/networkInterfaces/nic9665\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-04-06T01:48:17.8986039+00:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vm743\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/virtualMachines/vm743\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\",\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"f4212264-5bc3-4c70-8488-9c6461a9b866\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY3688\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20180315\",\r\n \"exactVersion\": \"4.127.20180315\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://saforgallery2623.blob.core.windows.net/crptestar1744/oscrptestar5754.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"deleteOption\": \"Detach\",\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 \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Network/networkInterfaces/nic1685\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-06-06T11:43:42.2512127-07:00\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/images/psTestSourceImage3821?api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY5MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTM4MjE/YXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/images/psTestSourceImage9921?api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTk5MjE/YXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"blobUri\": \"https://saforgallery9181.blob.core.windows.net/crptestar3321/oscrptestar8066.vhd\"\r\n },\r\n \"zoneResilient\": true\r\n },\r\n \"hyperVGeneration\": \"V1\"\r\n },\r\n \"location\": \"eastus2\",\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://saforgallery2623.blob.core.windows.net/crptestar1744/oscrptestar5754.vhd\"\r\n },\r\n \"zoneResilient\": true\r\n },\r\n \"hyperVGeneration\": \"V1\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9f90b7b8-fcc3-4eff-9a9b-207821f40b42" + "fc7cc217-8bb2-427b-ac57-b93d50aca231" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1854,7 +1790,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/f7fe1a0d-42c9-4529-81c3-e6e426005280?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-03-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/06a5f008-d1fe-4828-b235-320a0ba62b9b?p=0b6b958b-08c9-4eca-a759-7e84a44d7832&api-version=2022-03-01" ], "Azure-AsyncNotification": [ "Enabled" @@ -1866,7 +1802,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f7fe1a0d-42c9-4529-81c3-e6e426005280" + "06a5f008-d1fe-4828-b235-320a0ba62b9b" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1876,16 +1812,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "65ab460e-2040-4a9e-bb68-f3380b8f59dc" + "da7fc694-213a-427c-9752-f39cbfa34ba0" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T015103Z:65ab460e-2040-4a9e-bb68-f3380b8f59dc" + "WESTUS:20220606T184631Z:da7fc694-213a-427c-9752-f39cbfa34ba0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:51:03 GMT" + "Mon, 06 Jun 2022 18:46:30 GMT" ], "Content-Length": [ "767" @@ -1897,20 +1833,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"psTestSourceImage3821\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/images/psTestSourceImage3821\",\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"eastus2\",\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://saforgallery9181.blob.core.windows.net/crptestar3321/oscrptestar8066.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}", + "ResponseBody": "{\r\n \"name\": \"psTestSourceImage9921\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/images/psTestSourceImage9921\",\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"eastus2\",\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://saforgallery2623.blob.core.windows.net/crptestar1744/oscrptestar5754.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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/f7fe1a0d-42c9-4529-81c3-e6e426005280?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2Y3ZmUxYTBkLTQyYzktNDUyOS04MWMzLWU2ZTQyNjAwNTI4MD9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZhcGktdmVyc2lvbj0yMDIyLTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/06a5f008-d1fe-4828-b235-320a0ba62b9b?p=0b6b958b-08c9-4eca-a759-7e84a44d7832&api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzA2YTVmMDA4LWQxZmUtNDgyOC1iMjM1LTMyMGEwYmE2MmI5Yj9wPTBiNmI5NThiLTA4YzktNGVjYS1hNzU5LTdlODRhNDRkNzgzMiZhcGktdmVyc2lvbj0yMDIyLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -1921,13 +1857,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29968" + "Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29913" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "850e5a82-14f5-45ac-8725-be10512e8edd" + "4231f5ba-870e-48dd-a0f6-4032ccdad21d" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1937,16 +1873,16 @@ "11992" ], "x-ms-correlation-request-id": [ - "49325b60-6555-41d6-81a1-4c2cdc4a4d03" + "3c0047b1-8147-4e61-9e59-58a5425c3db8" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T015133Z:49325b60-6555-41d6-81a1-4c2cdc4a4d03" + "WESTUS:20220606T184701Z:3c0047b1-8147-4e61-9e59-58a5425c3db8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:51:33 GMT" + "Mon, 06 Jun 2022 18:47:01 GMT" ], "Content-Length": [ "184" @@ -1958,20 +1894,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-06T01:50:58.4993215+00:00\",\r\n \"endTime\": \"2022-04-06T01:51:11.7655746+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f7fe1a0d-42c9-4529-81c3-e6e426005280\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-06-06T11:46:25.2992021-07:00\",\r\n \"endTime\": \"2022-06-06T11:46:40.5805824-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"06a5f008-d1fe-4828-b235-320a0ba62b9b\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/images/psTestSourceImage3821?api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY5MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTM4MjE/YXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/images/psTestSourceImage9921?api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTk5MjE/YXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -1988,7 +1924,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3de7c656-de1e-48b6-a4d9-940bec922bd0" + "272b1d40-c9b0-44ac-8d7d-41214c87e270" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1998,16 +1934,16 @@ "11991" ], "x-ms-correlation-request-id": [ - "75881b42-8db1-4655-874a-0e0db8f5d20a" + "b0c08376-c457-42cd-a6fb-7f074a78903a" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T015133Z:75881b42-8db1-4655-874a-0e0db8f5d20a" + "WESTUS:20220606T184701Z:b0c08376-c457-42cd-a6fb-7f074a78903a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:51:33 GMT" + "Mon, 06 Jun 2022 18:47:01 GMT" ], "Content-Length": [ "796" @@ -2019,26 +1955,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"psTestSourceImage3821\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/images/psTestSourceImage3821\",\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"eastus2\",\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://saforgallery9181.blob.core.windows.net/crptestar3321/oscrptestar8066.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}", + "ResponseBody": "{\r\n \"name\": \"psTestSourceImage9921\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/images/psTestSourceImage9921\",\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"eastus2\",\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://saforgallery2623.blob.core.windows.net/crptestar1744/oscrptestar5754.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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/images/psTestSourceImage3821?api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY5MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTM4MjE/YXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/images/psTestSourceImage9921?api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTk5MjE/YXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "feab2941-021c-45a7-b16b-b5b184ac53ea" + "39b02ff6-27a7-4887-9df2-f9d018da383e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -2055,7 +1991,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "552890a6-6831-4bef-a028-86bce8e00127" + "7c906161-b2d5-4363-acbf-956aefb1d191" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2065,16 +2001,16 @@ "11990" ], "x-ms-correlation-request-id": [ - "76d8b278-dbe3-42c6-8fae-01e82b0d9ff0" + "0ecae21d-16d4-4171-afd6-3365a1405232" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T015133Z:76d8b278-dbe3-42c6-8fae-01e82b0d9ff0" + "WESTUS:20220606T184701Z:0ecae21d-16d4-4171-afd6-3365a1405232" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:51:33 GMT" + "Mon, 06 Jun 2022 18:47:01 GMT" ], "Content-Length": [ "796" @@ -2086,26 +2022,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"psTestSourceImage3821\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/images/psTestSourceImage3821\",\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"eastus2\",\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://saforgallery9181.blob.core.windows.net/crptestar3321/oscrptestar8066.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}", + "ResponseBody": "{\r\n \"name\": \"psTestSourceImage9921\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/images/psTestSourceImage9921\",\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"eastus2\",\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://saforgallery2623.blob.core.windows.net/crptestar1744/oscrptestar5754.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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/galleries/galleryPsTestGallery4805?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY5MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ4MDU/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/galleries/galleryPsTestGallery3299?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTMyOTk/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\"\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1bb7e267-33b4-4000-9fab-8dc1c8ddaf5f" + "f51cb44e-f2cb-4941-ad1a-3938dc42bd1c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2122,7 +2058,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/aa445b46-4683-45f4-b577-5f7adee66c0b?api-version=2021-10-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/90815463-f803-44b7-b4ba-a46263c7e225?api-version=2022-01-03" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299" @@ -2131,10 +2067,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" + "1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712,1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712" ], "x-ms-request-id": [ - "aa445b46-4683-45f4-b577-5f7adee66c0b" + "90815463-f803-44b7-b4ba-a46263c7e225" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2144,16 +2080,16 @@ "1196" ], "x-ms-correlation-request-id": [ - "06f3e791-96aa-4c4c-8d0a-bd6d6240d378" + "7e0b75f5-0817-4067-92a1-7597288b7d36" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T015134Z:06f3e791-96aa-4c4c-8d0a-bd6d6240d378" + "WESTUS:20220606T184703Z:7e0b75f5-0817-4067-92a1-7597288b7d36" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:51:33 GMT" + "Mon, 06 Jun 2022 18:47:03 GMT" ], "Content-Length": [ "508" @@ -2165,20 +2101,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery4805\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/galleries/galleryPsTestGallery4805\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY4805\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery3299\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/galleries/galleryPsTestGallery3299\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY3299\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/aa445b46-4683-45f4-b577-5f7adee66c0b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hYTQ0NWI0Ni00NjgzLTQ1ZjQtYjU3Ny01ZjdhZGVlNjZjMGI/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/90815463-f803-44b7-b4ba-a46263c7e225?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy85MDgxNTQ2My1mODAzLTQ0YjctYjRiYS1hNDYyNjNjN2UyMjU/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -2189,16 +2125,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4198" + "Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4151" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" + "1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712,1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712" ], "x-ms-request-id": [ - "0346e38f-6b2c-455f-ad62-b44fa6aa9ce6" + "c461689a-f40f-484f-9d7a-51a3dde9cc48" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2208,19 +2144,19 @@ "11989" ], "x-ms-correlation-request-id": [ - "77ed0755-15c0-4024-bda9-4411b1be64fd" + "40a179a0-0ac9-487e-a125-269c0eb7dc55" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T015204Z:77ed0755-15c0-4024-bda9-4411b1be64fd" + "WESTUS:20220606T184733Z:40a179a0-0ac9-487e-a125-269c0eb7dc55" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:52:03 GMT" + "Mon, 06 Jun 2022 18:47:33 GMT" ], "Content-Length": [ - "184" + "183" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2229,20 +2165,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-06T01:51:33.9310912+00:00\",\r\n \"endTime\": \"2022-04-06T01:51:34.6654841+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"aa445b46-4683-45f4-b577-5f7adee66c0b\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-06-06T11:47:03.1572945-07:00\",\r\n \"endTime\": \"2022-06-06T11:47:03.376017-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"90815463-f803-44b7-b4ba-a46263c7e225\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/galleries/galleryPsTestGallery4805?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY5MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ4MDU/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/galleries/galleryPsTestGallery3299?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTMyOTk/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -2259,10 +2195,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" + "1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712,1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712" ], "x-ms-request-id": [ - "427ad6f9-bcff-4aad-9ebb-f904e2727279" + "93f8db9d-4c32-4fc8-be09-2719add08458" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2272,16 +2208,16 @@ "11988" ], "x-ms-correlation-request-id": [ - "4d9dbdf9-feda-4272-b4d4-804fbe66c52d" + "aef1755b-4929-4df1-a416-9c139ee18b02" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T015204Z:4d9dbdf9-feda-4272-b4d4-804fbe66c52d" + "WESTUS:20220606T184733Z:aef1755b-4929-4df1-a416-9c139ee18b02" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:52:03 GMT" + "Mon, 06 Jun 2022 18:47:33 GMT" ], "Content-Length": [ "509" @@ -2293,26 +2229,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery4805\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/galleries/galleryPsTestGallery4805\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY4805\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery3299\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/galleries/galleryPsTestGallery3299\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY3299\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/galleries/galleryPsTestGallery4805/images/galleryPsTestGalleryImage8904?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY5MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ4MDUvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4OTA0P2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/galleries/galleryPsTestGallery3299/images/galleryPsTestGalleryImage3057?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTMyOTkvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzMDU3P2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=", "RequestMethod": "PUT", "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\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "839cf0a8-a2bf-4c37-91f9-6cf6e1c40584" + "10a4e05b-bbda-46f2-ac6f-3335269acf0b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2329,7 +2265,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/8fea7cd5-dfcc-45d4-98b4-5a6a2778518b?api-version=2021-10-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/95ef7342-f110-4011-9778-e7dd58e99a98?api-version=2022-01-03" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;749" @@ -2338,10 +2274,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" + "1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712,1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712" ], "x-ms-request-id": [ - "8fea7cd5-dfcc-45d4-98b4-5a6a2778518b" + "95ef7342-f110-4011-9778-e7dd58e99a98" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2351,16 +2287,16 @@ "1195" ], "x-ms-correlation-request-id": [ - "e965e40e-f597-4869-8c23-dcc44a502d11" + "854bc599-61da-462e-a398-0d1de7b52766" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T015204Z:e965e40e-f597-4869-8c23-dcc44a502d11" + "WESTUS:20220606T184735Z:854bc599-61da-462e-a398-0d1de7b52766" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:52:03 GMT" + "Mon, 06 Jun 2022 18:47:34 GMT" ], "Content-Length": [ "674" @@ -2372,20 +2308,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage8904\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/galleries/galleryPsTestGallery4805/images/galleryPsTestGalleryImage8904\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\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}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage3057\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/galleries/galleryPsTestGallery3299/images/galleryPsTestGalleryImage3057\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/8fea7cd5-dfcc-45d4-98b4-5a6a2778518b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy84ZmVhN2NkNS1kZmNjLTQ1ZDQtOThiNC01YTZhMjc3ODUxOGI/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/95ef7342-f110-4011-9778-e7dd58e99a98?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy85NWVmNzM0Mi1mMTEwLTQwMTEtOTc3OC1lN2RkNThlOTlhOTg/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -2396,16 +2332,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4196" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4149" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" + "1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712,1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712" ], "x-ms-request-id": [ - "0348a8f7-ba33-455c-b75e-2e448ead968f" + "d0e4275e-9f5d-43af-9477-28f58afaf128" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2415,16 +2351,16 @@ "11987" ], "x-ms-correlation-request-id": [ - "d251ae22-c67e-4402-9cf3-52cdafec8028" + "6b995016-7de7-473c-b033-0757c9019158" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T015234Z:d251ae22-c67e-4402-9cf3-52cdafec8028" + "WESTUS:20220606T184805Z:6b995016-7de7-473c-b033-0757c9019158" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:52:34 GMT" + "Mon, 06 Jun 2022 18:48:05 GMT" ], "Content-Length": [ "184" @@ -2436,20 +2372,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-06T01:52:04.3381822+00:00\",\r\n \"endTime\": \"2022-04-06T01:52:04.5256646+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8fea7cd5-dfcc-45d4-98b4-5a6a2778518b\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-06-06T11:47:34.7199821-07:00\",\r\n \"endTime\": \"2022-06-06T11:47:34.8293032-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"95ef7342-f110-4011-9778-e7dd58e99a98\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/galleries/galleryPsTestGallery4805/images/galleryPsTestGalleryImage8904?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY5MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ4MDUvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4OTA0P2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/galleries/galleryPsTestGallery3299/images/galleryPsTestGalleryImage3057?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTMyOTkvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzMDU3P2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -2466,10 +2402,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" + "1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712,1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712" ], "x-ms-request-id": [ - "6b92844c-72ee-481a-be16-4a77a52d91f5" + "8d826613-7eee-4417-bb6a-e3e6557999a5" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2479,16 +2415,16 @@ "11986" ], "x-ms-correlation-request-id": [ - "5ce31fca-80b3-4c82-8d41-05184f173a3e" + "f6c5028e-50bc-40cd-a71e-a7c4eaa7fcc5" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T015234Z:5ce31fca-80b3-4c82-8d41-05184f173a3e" + "WESTUS:20220606T184805Z:f6c5028e-50bc-40cd-a71e-a7c4eaa7fcc5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:52:34 GMT" + "Mon, 06 Jun 2022 18:48:05 GMT" ], "Content-Length": [ "675" @@ -2500,26 +2436,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage8904\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/galleries/galleryPsTestGallery4805/images/galleryPsTestGalleryImage8904\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\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}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage3057\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/galleries/galleryPsTestGallery3299/images/galleryPsTestGalleryImage3057\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/galleries/galleryPsTestGallery4805/images/galleryPsTestGalleryImage8904/versions/1.0.0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY5MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ4MDUvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4OTA0L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/galleries/galleryPsTestGallery3299/images/galleryPsTestGalleryImage3057/versions/1.0.0?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTMyOTkvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzMDU3L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"eastus2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"endOfLifeDate\": \"2022-04-16T00:00:00Z\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/images/psTestSourceImage3821\"\r\n }\r\n }\r\n },\r\n \"location\": \"eastus2\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"eastus2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"endOfLifeDate\": \"2022-06-16T07:00:00Z\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/images/psTestSourceImage9921\"\r\n }\r\n }\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f000a1f9-f216-4766-8c77-d76f8f3c1dbd" + "423b29c0-d321-493a-8afc-19148859c735" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2539,7 +2475,7 @@ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/2a4f81f3-f793-48e2-b648-5bdf7c2af1b9?api-version=2021-10-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/b6874457-b752-42a1-bb44-ea7d6a61b7cd?api-version=2022-01-03" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1199" @@ -2548,10 +2484,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" + "1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712,1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712" ], "x-ms-request-id": [ - "2a4f81f3-f793-48e2-b648-5bdf7c2af1b9" + "b6874457-b752-42a1-bb44-ea7d6a61b7cd" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2561,19 +2497,19 @@ "1194" ], "x-ms-correlation-request-id": [ - "5f078674-f896-4abe-9a97-1637cb8415f3" + "9299f279-508f-4c92-9942-ea35279c33bc" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T015234Z:5f078674-f896-4abe-9a97-1637cb8415f3" + "WESTUS:20220606T184807Z:9299f279-508f-4c92-9942-ea35279c33bc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:52:34 GMT" + "Mon, 06 Jun 2022 18:48:06 GMT" ], "Content-Length": [ - "1036" + "1111" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2582,26 +2518,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/galleries/galleryPsTestGallery4805/images/galleryPsTestGalleryImage8904/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2022-04-06T01:52:34.7764633+00:00\",\r\n \"endOfLifeDate\": \"2022-04-16T00:00:00+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/images/psTestSourceImage3821\"\r\n }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/galleries/galleryPsTestGallery3299/images/galleryPsTestGalleryImage3057/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2022-06-06T11:48:06.5312046-07:00\",\r\n \"endOfLifeDate\": \"2022-06-16T00: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/galleryPsTestRg7790/providers/Microsoft.Compute/images/psTestSourceImage9921\"\r\n }\r\n },\r\n \"safetyProfile\": {\r\n \"reportedForPolicyViolation\": false\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/galleries/galleryPsTestGallery4805/images/galleryPsTestGalleryImage8904/versions/1.0.0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY5MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ4MDUvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4OTA0L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/galleries/galleryPsTestGallery3299/images/galleryPsTestGalleryImage3057/versions/1.0.0?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTMyOTkvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzMDU3L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"eastus2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"endOfLifeDate\": \"2022-07-15T00:00:00Z\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/images/psTestSourceImage3821\"\r\n }\r\n }\r\n },\r\n \"location\": \"eastus2\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"eastus2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"endOfLifeDate\": \"2022-09-14T07:00:00Z\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/images/psTestSourceImage9921\"\r\n }\r\n }\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "906b9141-4cb0-42c5-9529-2ee9beee1080" + "9d33e79e-0cd7-4503-a249-f400c4e7a24b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2621,7 +2557,7 @@ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/b740ac9d-3845-43d2-bd6e-57ec00fcac79?api-version=2021-10-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/751a5ada-d6c2-4a9e-9b29-bebd4c05ec6f?api-version=2022-01-03" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1198" @@ -2630,10 +2566,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" + "1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712,1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712" ], "x-ms-request-id": [ - "b740ac9d-3845-43d2-bd6e-57ec00fcac79" + "751a5ada-d6c2-4a9e-9b29-bebd4c05ec6f" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2643,19 +2579,19 @@ "1193" ], "x-ms-correlation-request-id": [ - "fd86fe2d-a8dd-41c3-a920-c1fa47f50345" + "5676f1a9-7457-4e7b-9074-a928a9aa83eb" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T020135Z:fd86fe2d-a8dd-41c3-a920-c1fa47f50345" + "WESTUS:20220606T185710Z:5676f1a9-7457-4e7b-9074-a928a9aa83eb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 02:01:35 GMT" + "Mon, 06 Jun 2022 18:57:10 GMT" ], "Content-Length": [ - "1150" + "1225" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2664,20 +2600,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/galleries/galleryPsTestGallery4805/images/galleryPsTestGalleryImage8904/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2022-04-06T01:52:34.7764633+00:00\",\r\n \"endOfLifeDate\": \"2022-07-15T00:00:00+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/images/psTestSourceImage3821\"\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}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/galleries/galleryPsTestGallery3299/images/galleryPsTestGalleryImage3057/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2022-06-06T11:48:06.5312046-07:00\",\r\n \"endOfLifeDate\": \"2022-09-14T00: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/galleryPsTestRg7790/providers/Microsoft.Compute/images/psTestSourceImage9921\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"safetyProfile\": {\r\n \"reportedForPolicyViolation\": false\r\n },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/2a4f81f3-f793-48e2-b648-5bdf7c2af1b9?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yYTRmODFmMy1mNzkzLTQ4ZTItYjY0OC01YmRmN2MyYWYxYjk/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/b6874457-b752-42a1-bb44-ea7d6a61b7cd?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iNjg3NDQ1Ny1iNzUyLTQyYTEtYmI0NC1lYTdkNmE2MWI3Y2Q/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -2691,16 +2627,16 @@ "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4195" + "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4146" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" + "1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712,1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712" ], "x-ms-request-id": [ - "0b0a48ba-efa3-4997-86b7-ab9680930f39" + "822a40b1-cc28-42b5-974c-0582491549cf" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2710,19 +2646,19 @@ "11985" ], "x-ms-correlation-request-id": [ - "988bfe87-d5f0-42a7-8d29-f783c869e19f" + "9bd885d5-1089-40e4-9c71-f54c2d93f5e3" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T015334Z:988bfe87-d5f0-42a7-8d29-f783c869e19f" + "WESTUS:20220606T184907Z:9bd885d5-1089-40e4-9c71-f54c2d93f5e3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:53:34 GMT" + "Mon, 06 Jun 2022 18:49:06 GMT" ], "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2731,20 +2667,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-06T01:52:34.760836+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2a4f81f3-f793-48e2-b648-5bdf7c2af1b9\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-06-06T11:48:06.5155873-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6874457-b752-42a1-bb44-ea7d6a61b7cd\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/2a4f81f3-f793-48e2-b648-5bdf7c2af1b9?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yYTRmODFmMy1mNzkzLTQ4ZTItYjY0OC01YmRmN2MyYWYxYjk/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/b6874457-b752-42a1-bb44-ea7d6a61b7cd?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iNjg3NDQ1Ny1iNzUyLTQyYTEtYmI0NC1lYTdkNmE2MWI3Y2Q/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -2758,16 +2694,16 @@ "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4193" + "Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4147" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" + "1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712,1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712" ], "x-ms-request-id": [ - "9b8e3532-b9b2-4116-9165-33a8cbdc4ae1" + "63e5f529-e726-4965-a311-6085c2663bc0" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2777,19 +2713,19 @@ "11984" ], "x-ms-correlation-request-id": [ - "59a7bf42-fe4a-4273-bdb0-6b127a3d67b3" + "02909a6b-8280-4852-b1dd-e11181071c79" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T015434Z:59a7bf42-fe4a-4273-bdb0-6b127a3d67b3" + "WESTUS:20220606T185007Z:02909a6b-8280-4852-b1dd-e11181071c79" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:54:34 GMT" + "Mon, 06 Jun 2022 18:50:06 GMT" ], "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2798,20 +2734,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-06T01:52:34.760836+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2a4f81f3-f793-48e2-b648-5bdf7c2af1b9\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-06-06T11:48:06.5155873-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6874457-b752-42a1-bb44-ea7d6a61b7cd\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/2a4f81f3-f793-48e2-b648-5bdf7c2af1b9?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yYTRmODFmMy1mNzkzLTQ4ZTItYjY0OC01YmRmN2MyYWYxYjk/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/b6874457-b752-42a1-bb44-ea7d6a61b7cd?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iNjg3NDQ1Ny1iNzUyLTQyYTEtYmI0NC1lYTdkNmE2MWI3Y2Q/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -2825,16 +2761,16 @@ "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4191" + "Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4144" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" + "1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712,1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712" ], "x-ms-request-id": [ - "e9cad385-fefc-42dd-adce-03d51a3b31f0" + "46230694-b6ec-4cf1-b1c6-89ac844b4c2b" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2844,19 +2780,19 @@ "11983" ], "x-ms-correlation-request-id": [ - "75b4ef53-c79a-4281-8740-7bde86b8210f" + "91a30d36-9dea-4a70-93c0-51c4c7a973cc" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T015534Z:75b4ef53-c79a-4281-8740-7bde86b8210f" + "WESTUS:20220606T185107Z:91a30d36-9dea-4a70-93c0-51c4c7a973cc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:55:34 GMT" + "Mon, 06 Jun 2022 18:51:07 GMT" ], "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2865,20 +2801,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-06T01:52:34.760836+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2a4f81f3-f793-48e2-b648-5bdf7c2af1b9\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-06-06T11:48:06.5155873-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6874457-b752-42a1-bb44-ea7d6a61b7cd\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/2a4f81f3-f793-48e2-b648-5bdf7c2af1b9?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yYTRmODFmMy1mNzkzLTQ4ZTItYjY0OC01YmRmN2MyYWYxYjk/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/b6874457-b752-42a1-bb44-ea7d6a61b7cd?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iNjg3NDQ1Ny1iNzUyLTQyYTEtYmI0NC1lYTdkNmE2MWI3Y2Q/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -2892,16 +2828,16 @@ "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4189" + "Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4142" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" + "1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712,1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712" ], "x-ms-request-id": [ - "4cf6868d-ffcc-4824-a9bd-d2d58c0d4284" + "16d31802-29ce-41e3-a56a-e4925ce1fae5" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2911,19 +2847,19 @@ "11982" ], "x-ms-correlation-request-id": [ - "e89c2fa5-8f99-4306-a4ff-c2914c98001e" + "5e2121d1-c73f-474a-b514-7e3706577346" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T015635Z:e89c2fa5-8f99-4306-a4ff-c2914c98001e" + "WESTUS:20220606T185208Z:5e2121d1-c73f-474a-b514-7e3706577346" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:56:34 GMT" + "Mon, 06 Jun 2022 18:52:07 GMT" ], "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2932,20 +2868,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-06T01:52:34.760836+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2a4f81f3-f793-48e2-b648-5bdf7c2af1b9\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-06-06T11:48:06.5155873-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6874457-b752-42a1-bb44-ea7d6a61b7cd\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/2a4f81f3-f793-48e2-b648-5bdf7c2af1b9?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yYTRmODFmMy1mNzkzLTQ4ZTItYjY0OC01YmRmN2MyYWYxYjk/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/b6874457-b752-42a1-bb44-ea7d6a61b7cd?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iNjg3NDQ1Ny1iNzUyLTQyYTEtYmI0NC1lYTdkNmE2MWI3Y2Q/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -2959,16 +2895,16 @@ "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4187" + "Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4139" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" + "1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712,1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712" ], "x-ms-request-id": [ - "c67ce7e5-7f78-44fc-a132-3ec37864635d" + "21d4f4c9-160c-4877-8a22-a6ea850655d7" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2978,19 +2914,19 @@ "11981" ], "x-ms-correlation-request-id": [ - "43122688-2218-413b-a3a0-cc3435efe0b6" + "bdab6c92-571c-4b2b-bdb1-981fe3495cdb" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T015735Z:43122688-2218-413b-a3a0-cc3435efe0b6" + "WESTUS:20220606T185308Z:bdab6c92-571c-4b2b-bdb1-981fe3495cdb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:57:34 GMT" + "Mon, 06 Jun 2022 18:53:08 GMT" ], "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2999,20 +2935,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-06T01:52:34.760836+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2a4f81f3-f793-48e2-b648-5bdf7c2af1b9\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-06-06T11:48:06.5155873-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6874457-b752-42a1-bb44-ea7d6a61b7cd\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/2a4f81f3-f793-48e2-b648-5bdf7c2af1b9?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yYTRmODFmMy1mNzkzLTQ4ZTItYjY0OC01YmRmN2MyYWYxYjk/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/b6874457-b752-42a1-bb44-ea7d6a61b7cd?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iNjg3NDQ1Ny1iNzUyLTQyYTEtYmI0NC1lYTdkNmE2MWI3Y2Q/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -3026,16 +2962,16 @@ "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4185" + "Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4135" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" + "1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712,1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712" ], "x-ms-request-id": [ - "91341db0-ba64-4a18-a331-fd3f5d982259" + "b50dc633-4f78-4ee3-95dc-40f225947fed" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -3045,19 +2981,19 @@ "11980" ], "x-ms-correlation-request-id": [ - "fec3ed17-1d80-48de-80c7-e07813b32831" + "cf6d35ce-8e9c-4ec5-b31b-aaa9c8a592f6" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T015835Z:fec3ed17-1d80-48de-80c7-e07813b32831" + "WESTUS:20220606T185408Z:cf6d35ce-8e9c-4ec5-b31b-aaa9c8a592f6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:58:34 GMT" + "Mon, 06 Jun 2022 18:54:08 GMT" ], "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3066,20 +3002,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-06T01:52:34.760836+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2a4f81f3-f793-48e2-b648-5bdf7c2af1b9\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-06-06T11:48:06.5155873-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6874457-b752-42a1-bb44-ea7d6a61b7cd\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/2a4f81f3-f793-48e2-b648-5bdf7c2af1b9?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yYTRmODFmMy1mNzkzLTQ4ZTItYjY0OC01YmRmN2MyYWYxYjk/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/b6874457-b752-42a1-bb44-ea7d6a61b7cd?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iNjg3NDQ1Ny1iNzUyLTQyYTEtYmI0NC1lYTdkNmE2MWI3Y2Q/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -3093,16 +3029,16 @@ "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4183" + "Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4140" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" + "1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712,1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712" ], "x-ms-request-id": [ - "af57cbb5-ec1c-4afd-b793-e08e5f9c26d9" + "5f745b06-beaa-419c-b65a-9a87398002a5" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -3112,19 +3048,19 @@ "11979" ], "x-ms-correlation-request-id": [ - "50ebe74d-ec29-4bba-892d-de483f82c981" + "8be3826c-6857-4177-b229-bccbd61893d7" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T015935Z:50ebe74d-ec29-4bba-892d-de483f82c981" + "WESTUS:20220606T185509Z:8be3826c-6857-4177-b229-bccbd61893d7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 01:59:34 GMT" + "Mon, 06 Jun 2022 18:55:08 GMT" ], "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3133,20 +3069,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-06T01:52:34.760836+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2a4f81f3-f793-48e2-b648-5bdf7c2af1b9\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-06-06T11:48:06.5155873-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6874457-b752-42a1-bb44-ea7d6a61b7cd\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/2a4f81f3-f793-48e2-b648-5bdf7c2af1b9?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yYTRmODFmMy1mNzkzLTQ4ZTItYjY0OC01YmRmN2MyYWYxYjk/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/b6874457-b752-42a1-bb44-ea7d6a61b7cd?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iNjg3NDQ1Ny1iNzUyLTQyYTEtYmI0NC1lYTdkNmE2MWI3Y2Q/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -3160,16 +3096,16 @@ "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4181" + "Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4137" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" + "1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712,1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712" ], "x-ms-request-id": [ - "1e6be40a-45d5-4615-b08f-ee34f831507c" + "db743f98-5a3e-4abb-8007-e72cd1b24887" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -3179,19 +3115,19 @@ "11978" ], "x-ms-correlation-request-id": [ - "df64f999-d770-4d42-83a0-1364be0abb9d" + "8053a0c4-c050-4a45-ac35-75609e7ba590" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T020035Z:df64f999-d770-4d42-83a0-1364be0abb9d" + "WESTUS:20220606T185609Z:8053a0c4-c050-4a45-ac35-75609e7ba590" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 02:00:34 GMT" + "Mon, 06 Jun 2022 18:56:08 GMT" ], "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3200,20 +3136,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-06T01:52:34.760836+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2a4f81f3-f793-48e2-b648-5bdf7c2af1b9\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-06-06T11:48:06.5155873-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6874457-b752-42a1-bb44-ea7d6a61b7cd\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/2a4f81f3-f793-48e2-b648-5bdf7c2af1b9?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yYTRmODFmMy1mNzkzLTQ4ZTItYjY0OC01YmRmN2MyYWYxYjk/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/b6874457-b752-42a1-bb44-ea7d6a61b7cd?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iNjg3NDQ1Ny1iNzUyLTQyYTEtYmI0NC1lYTdkNmE2MWI3Y2Q/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -3224,16 +3160,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4179" + "Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4134" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" + "1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712,1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712" ], "x-ms-request-id": [ - "1dcf23c0-4f41-44e9-b5c7-c6373b8ff81f" + "1dadc470-333f-4db0-ad2a-59491e805f50" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -3243,16 +3179,16 @@ "11977" ], "x-ms-correlation-request-id": [ - "0111880f-22b2-4a58-b8e6-3d25d604f7e4" + "42b2e67c-4048-4d22-86a7-ca853528a2b8" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T020135Z:0111880f-22b2-4a58-b8e6-3d25d604f7e4" + "WESTUS:20220606T185709Z:42b2e67c-4048-4d22-86a7-ca853528a2b8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 02:01:35 GMT" + "Mon, 06 Jun 2022 18:57:09 GMT" ], "Content-Length": [ "183" @@ -3264,20 +3200,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-06T01:52:34.760836+00:00\",\r\n \"endTime\": \"2022-04-06T02:00:53.6489683+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2a4f81f3-f793-48e2-b648-5bdf7c2af1b9\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-06-06T11:48:06.5155873-07:00\",\r\n \"endTime\": \"2022-06-06T11:57:07.533099-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b6874457-b752-42a1-bb44-ea7d6a61b7cd\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/galleries/galleryPsTestGallery4805/images/galleryPsTestGalleryImage8904/versions/1.0.0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY5MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ4MDUvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4OTA0L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/galleries/galleryPsTestGallery3299/images/galleryPsTestGalleryImage3057/versions/1.0.0?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTMyOTkvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzMDU3L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -3294,10 +3230,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" + "1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712,1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712" ], "x-ms-request-id": [ - "47bdcd52-70c2-413b-bfe4-4d44eb19f42a" + "1de75614-f17e-4deb-ad7d-39a1fed21071" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -3307,19 +3243,19 @@ "11976" ], "x-ms-correlation-request-id": [ - "932d3d4d-888d-4208-844c-f7a0ac46de34" + "0cf802ad-cec6-4d8a-b091-030df70ad204" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T020135Z:932d3d4d-888d-4208-844c-f7a0ac46de34" + "WESTUS:20220606T185709Z:0cf802ad-cec6-4d8a-b091-030df70ad204" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 02:01:35 GMT" + "Mon, 06 Jun 2022 18:57:09 GMT" ], "Content-Length": [ - "1151" + "1226" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3328,26 +3264,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/galleries/galleryPsTestGallery4805/images/galleryPsTestGalleryImage8904/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2022-04-06T01:52:34.7764633+00:00\",\r\n \"endOfLifeDate\": \"2022-04-16T00:00:00+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/images/psTestSourceImage3821\"\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}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/galleries/galleryPsTestGallery3299/images/galleryPsTestGalleryImage3057/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2022-06-06T11:48:06.5312046-07:00\",\r\n \"endOfLifeDate\": \"2022-06-16T00: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/galleryPsTestRg7790/providers/Microsoft.Compute/images/psTestSourceImage9921\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"safetyProfile\": {\r\n \"reportedForPolicyViolation\": false\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/galleries/galleryPsTestGallery4805/images/galleryPsTestGalleryImage8904/versions/1.0.0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY5MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ4MDUvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4OTA0L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/galleries/galleryPsTestGallery3299/images/galleryPsTestGalleryImage3057/versions/1.0.0?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTMyOTkvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzMDU3L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a6e193d9-a29e-4da0-a7f5-b2edd2186280" + "7dcaa9ee-2a88-4ea9-aba1-9fa6e235d5b5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -3364,10 +3300,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" + "1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712,1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712" ], "x-ms-request-id": [ - "6e34efbc-44a8-47a6-a1db-231c4db7128a" + "7827fee2-497f-4230-8180-d42ed768d286" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -3377,19 +3313,19 @@ "11975" ], "x-ms-correlation-request-id": [ - "a34f885a-88cf-457c-a3f9-a3dd9a629437" + "5df4e466-022d-442d-b19b-5dda9797e41f" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T020135Z:a34f885a-88cf-457c-a3f9-a3dd9a629437" + "WESTUS:20220606T185709Z:5df4e466-022d-442d-b19b-5dda9797e41f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 02:01:35 GMT" + "Mon, 06 Jun 2022 18:57:09 GMT" ], "Content-Length": [ - "1151" + "1226" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3398,20 +3334,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/galleries/galleryPsTestGallery4805/images/galleryPsTestGalleryImage8904/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2022-04-06T01:52:34.7764633+00:00\",\r\n \"endOfLifeDate\": \"2022-04-16T00:00:00+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/images/psTestSourceImage3821\"\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}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/galleries/galleryPsTestGallery3299/images/galleryPsTestGalleryImage3057/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2022-06-06T11:48:06.5312046-07:00\",\r\n \"endOfLifeDate\": \"2022-06-16T00: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/galleryPsTestRg7790/providers/Microsoft.Compute/images/psTestSourceImage9921\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"safetyProfile\": {\r\n \"reportedForPolicyViolation\": false\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/galleries/galleryPsTestGallery4805/images/galleryPsTestGalleryImage8904/versions/1.0.0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY5MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ4MDUvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4OTA0L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/galleries/galleryPsTestGallery3299/images/galleryPsTestGalleryImage3057/versions/1.0.0?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTMyOTkvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzMDU3L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -3428,10 +3364,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" + "1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712,1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712" ], "x-ms-request-id": [ - "80e792f8-e91d-4097-8ac5-79ba43f050f1" + "0568f89d-dd17-41a8-a84a-252f12b9d86d" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -3441,19 +3377,19 @@ "11970" ], "x-ms-correlation-request-id": [ - "92ba85ef-dce8-45ad-8b8e-06c4b005b591" + "126ed448-2e59-4ff0-b413-f52b28d2e746" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T020435Z:92ba85ef-dce8-45ad-8b8e-06c4b005b591" + "WESTUS:20220606T190011Z:126ed448-2e59-4ff0-b413-f52b28d2e746" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 02:04:35 GMT" + "Mon, 06 Jun 2022 19:00:11 GMT" ], "Content-Length": [ - "1151" + "1226" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3462,26 +3398,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/galleries/galleryPsTestGallery4805/images/galleryPsTestGalleryImage8904/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2022-04-06T01:52:34.7764633+00:00\",\r\n \"endOfLifeDate\": \"2022-07-15T00:00:00+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/images/psTestSourceImage3821\"\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}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/galleries/galleryPsTestGallery3299/images/galleryPsTestGalleryImage3057/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2022-06-06T11:48:06.5312046-07:00\",\r\n \"endOfLifeDate\": \"2022-09-14T00: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/galleryPsTestRg7790/providers/Microsoft.Compute/images/psTestSourceImage9921\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"safetyProfile\": {\r\n \"reportedForPolicyViolation\": false\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/galleries/galleryPsTestGallery4805/images/galleryPsTestGalleryImage8904/versions/1.0.0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY5MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ4MDUvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4OTA0L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/galleries/galleryPsTestGallery3299/images/galleryPsTestGalleryImage3057/versions/1.0.0?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTMyOTkvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzMDU3L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3bd5897b-e8e1-4202-9f87-f2efec5bf09b" + "8a66c26f-c2e7-4493-8534-5328a12fc058" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -3498,10 +3434,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" + "1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712,1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712" ], "x-ms-request-id": [ - "8513dc1e-7620-4519-ad3e-246b1e8491e6" + "047daef3-25cb-4fd7-b11c-9a314ac451d3" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -3511,19 +3447,19 @@ "11969" ], "x-ms-correlation-request-id": [ - "1ff159ce-57c8-4dff-8912-72d1e1c1efc4" + "6282c175-3e0c-4fdf-9538-5a7e902d7476" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T020435Z:1ff159ce-57c8-4dff-8912-72d1e1c1efc4" + "WESTUS:20220606T190011Z:6282c175-3e0c-4fdf-9538-5a7e902d7476" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 02:04:35 GMT" + "Mon, 06 Jun 2022 19:00:11 GMT" ], "Content-Length": [ - "1151" + "1226" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3532,26 +3468,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/galleries/galleryPsTestGallery4805/images/galleryPsTestGalleryImage8904/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2022-04-06T01:52:34.7764633+00:00\",\r\n \"endOfLifeDate\": \"2022-07-15T00:00:00+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/images/psTestSourceImage3821\"\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}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/galleries/galleryPsTestGallery3299/images/galleryPsTestGalleryImage3057/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2022-06-06T11:48:06.5312046-07:00\",\r\n \"endOfLifeDate\": \"2022-09-14T00: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/galleryPsTestRg7790/providers/Microsoft.Compute/images/psTestSourceImage9921\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"safetyProfile\": {\r\n \"reportedForPolicyViolation\": false\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/galleries/galleryPsTestGallery4805/images/galleryPsTestGalleryImage8904/versions/1.0.0?$expand=ReplicationStatus&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY5MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ4MDUvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4OTA0L3ZlcnNpb25zLzEuMC4wPyRleHBhbmQ9UmVwbGljYXRpb25TdGF0dXMmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/galleries/galleryPsTestGallery3299/images/galleryPsTestGalleryImage3057/versions/1.0.0?$expand=ReplicationStatus&api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTMyOTkvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzMDU3L3ZlcnNpb25zLzEuMC4wPyRleHBhbmQ9UmVwbGljYXRpb25TdGF0dXMmYXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "68a8444e-0644-4736-af3e-5e5cf66cd8a8" + "f0ba618c-5d82-47f1-a65e-c6ae8a4d5b7b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -3568,10 +3504,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" + "1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712,1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712" ], "x-ms-request-id": [ - "fcc18d9b-e7cb-4369-a5b6-17e3878797c0" + "87b19c33-c0dd-43ff-87a0-ada313de8c15" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -3581,19 +3517,19 @@ "11974" ], "x-ms-correlation-request-id": [ - "caf8d3a1-cb18-4c18-af11-fcde3879d937" + "6c0aea01-7cdb-40c5-b1cf-9d25f5cbb71b" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T020135Z:caf8d3a1-cb18-4c18-af11-fcde3879d937" + "WESTUS:20220606T185710Z:6c0aea01-7cdb-40c5-b1cf-9d25f5cbb71b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 02:01:35 GMT" + "Mon, 06 Jun 2022 18:57:10 GMT" ], "Content-Length": [ - "1369" + "1444" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3602,20 +3538,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/galleries/galleryPsTestGallery4805/images/galleryPsTestGalleryImage8904/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2022-04-06T01:52:34.7764633+00:00\",\r\n \"endOfLifeDate\": \"2022-04-16T00:00:00+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/images/psTestSourceImage3821\"\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 \"progress\": 100,\r\n \"region\": \"eastus2\",\r\n \"state\": \"Completed\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/galleries/galleryPsTestGallery3299/images/galleryPsTestGalleryImage3057/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2022-06-06T11:48:06.5312046-07:00\",\r\n \"endOfLifeDate\": \"2022-06-16T00: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/galleryPsTestRg7790/providers/Microsoft.Compute/images/psTestSourceImage9921\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"safetyProfile\": {\r\n \"reportedForPolicyViolation\": false\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"replicationStatus\": {\r\n \"aggregatedState\": \"Completed\",\r\n \"summary\": [\r\n {\r\n \"progress\": 100,\r\n \"region\": \"eastus2\",\r\n \"state\": \"Completed\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/b740ac9d-3845-43d2-bd6e-57ec00fcac79?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iNzQwYWM5ZC0zODQ1LTQzZDItYmQ2ZS01N2VjMDBmY2FjNzk/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/751a5ada-d6c2-4a9e-9b29-bebd4c05ec6f?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83NTFhNWFkYS1kNmMyLTRhOWUtOWIyOS1iZWJkNGMwNWVjNmY/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -3629,38 +3565,38 @@ "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4177" + "Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4130" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" + "1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712,1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712" ], "x-ms-request-id": [ - "d9d305fa-5bf4-498a-85ba-fd6bc64c3b2b" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "e3663db3-0cec-4c1f-8fe6-0981a87af54b" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], "x-ms-correlation-request-id": [ - "85080808-7f0f-409f-900a-b93aef426eed" + "fb078b61-2455-491a-8853-8d2a3665d1f9" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T020235Z:85080808-7f0f-409f-900a-b93aef426eed" + "WESTUS:20220606T185810Z:fb078b61-2455-491a-8853-8d2a3665d1f9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 02:02:34 GMT" + "Mon, 06 Jun 2022 18:58:10 GMT" ], "Content-Length": [ - "134" + "133" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3669,20 +3605,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-06T02:01:35.5251084+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b740ac9d-3845-43d2-bd6e-57ec00fcac79\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-06-06T11:57:10.314347-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"751a5ada-d6c2-4a9e-9b29-bebd4c05ec6f\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/b740ac9d-3845-43d2-bd6e-57ec00fcac79?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iNzQwYWM5ZC0zODQ1LTQzZDItYmQ2ZS01N2VjMDBmY2FjNzk/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/751a5ada-d6c2-4a9e-9b29-bebd4c05ec6f?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83NTFhNWFkYS1kNmMyLTRhOWUtOWIyOS1iZWJkNGMwNWVjNmY/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -3696,16 +3632,16 @@ "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4175" + "Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4127" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" + "1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712,1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712" ], "x-ms-request-id": [ - "60c4803a-2020-4ce4-851a-efb656534717" + "94b9a0e4-24c7-4d6c-9202-6537d86e9acb" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -3715,19 +3651,19 @@ "11972" ], "x-ms-correlation-request-id": [ - "cd5482be-240d-4808-820b-295aabe61cc8" + "553f6da7-5c28-4762-b7d2-17a6308280ac" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T020335Z:cd5482be-240d-4808-820b-295aabe61cc8" + "WESTUS:20220606T185910Z:553f6da7-5c28-4762-b7d2-17a6308280ac" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 02:03:35 GMT" + "Mon, 06 Jun 2022 18:59:10 GMT" ], "Content-Length": [ - "134" + "133" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3736,20 +3672,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-06T02:01:35.5251084+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b740ac9d-3845-43d2-bd6e-57ec00fcac79\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-06-06T11:57:10.314347-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"751a5ada-d6c2-4a9e-9b29-bebd4c05ec6f\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/b740ac9d-3845-43d2-bd6e-57ec00fcac79?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iNzQwYWM5ZC0zODQ1LTQzZDItYmQ2ZS01N2VjMDBmY2FjNzk/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/751a5ada-d6c2-4a9e-9b29-bebd4c05ec6f?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83NTFhNWFkYS1kNmMyLTRhOWUtOWIyOS1iZWJkNGMwNWVjNmY/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -3760,16 +3696,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4173" + "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4135" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" + "1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712,1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712" ], "x-ms-request-id": [ - "0eb7893a-2fa0-43a6-9b28-6d08767f60b2" + "b5d27119-16c6-4f1a-8772-b369b05a2027" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -3779,19 +3715,19 @@ "11971" ], "x-ms-correlation-request-id": [ - "bc4cf28a-b1a1-45a0-bc32-6f385f9bbbf1" + "01d55d64-304e-47b9-b177-47ac77d23bc7" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T020435Z:bc4cf28a-b1a1-45a0-bc32-6f385f9bbbf1" + "WESTUS:20220606T190011Z:01d55d64-304e-47b9-b177-47ac77d23bc7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 02:04:35 GMT" + "Mon, 06 Jun 2022 19:00:10 GMT" ], "Content-Length": [ - "184" + "183" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3800,26 +3736,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-06T02:01:35.5251084+00:00\",\r\n \"endTime\": \"2022-04-06T02:04:05.7011737+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b740ac9d-3845-43d2-bd6e-57ec00fcac79\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-06-06T11:57:10.314347-07:00\",\r\n \"endTime\": \"2022-06-06T11:59:40.4236506-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"751a5ada-d6c2-4a9e-9b29-bebd4c05ec6f\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/galleries/galleryPsTestGallery4805/images/galleryPsTestGalleryImage8904/versions?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY5MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ4MDUvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4OTA0L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/galleries/galleryPsTestGallery3299/images/galleryPsTestGalleryImage3057/versions?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTMyOTkvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzMDU3L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f505c95f-88ee-4a07-b6e4-44309a69966f" + "b102b874-887b-47e9-9654-74e1bdc500bd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -3829,97 +3765,67 @@ "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ - "994da5e3-9824-46c5-9113-9603b3c62b77", - "62bb1aef-979f-43e1-b88e-ad588b1e65b3", - "c6d50dd7-2efa-4698-b182-fd13625d6874", - "78b9ee83-201e-49be-9c24-dd2da22af9a3", - "b14988bd-f0e5-41b8-9be0-8568413ec768", - "03fa3760-96de-4c0b-91b0-3f490defb441", - "0d7e001b-d83a-47af-959e-ac0e9ea5e7cb", - "b99173c8-14a6-49f6-9e85-a6ecd8056a07", - "78a77ee9-d03e-43cd-9b44-8b20ceb7a96b", - "e5a027bb-99ca-4b7e-a4af-c0b0e856ef25", - "9522196e-bf55-49c2-b918-72913a753840", - "6456a037-2cf9-4120-9ffc-fa4d8ced2171", - "cbec3857-8189-4771-8d3b-3cee943b8c22", - "fe7f857f-7cfa-46e6-9af6-ef3783d62593", - "03743dfc-2cc7-47db-8f1f-1aa1937d41e7", - "9398505e-0471-4f94-988f-a3e7c36b34fe", - "3a6091ee-190f-425e-90bc-f89933767624", - "4c0e853a-1172-4a8d-b476-611eee89626b", - "44b68f5d-8555-4922-823d-cf109757f157", - "eabc0f5e-5e39-4549-a849-927f023420e3", - "43b34279-5c2e-45ba-a2db-63b1de14d75d", - "69553da3-8447-441f-b3cd-c6fdc1ba7d1e", - "6410736d-0de1-4f30-8392-e4aee0273f73", - "c13006d3-51e2-40b2-abbd-80c11ea2860e", - "e7de1f73-c54f-48dd-a524-df6d02212975", - "bd99b68a-7306-4942-b62b-05b7c318c410", - "d49c2dba-384a-4f5d-bee2-13f4436e67f5", - "923eda1b-f8b4-4363-8f1d-f0d3b95ef2a6", - "d86f3b81-2108-4147-89dd-bfc017cf19ce", - "c7d6d62d-ec24-42ae-8345-f1e7ac3d89e9", - "3ba0c8b4-736a-4341-abdd-f916d09fa858", - "a5b8e80f-806e-4bd5-94d8-f173694dd97c", - "de3498e2-cafa-475b-8e5f-17d8d3506968", - "6fe5c562-a155-408d-953a-2420507dbdc3", - "559f2551-bc74-4e1d-a968-232feb585c86", - "f9f6870c-42e2-4658-a8bb-08ed91a0cc97", - "3bfe8b51-b817-4436-a5ad-440fcae0b674", - "0dcf0a3d-f8e0-4d20-b38d-b0276ec7b1dc" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListGalleryImageVersionsInGalleryImage3Min;1499,Microsoft.Compute/ListGalleryImageVersionsInGalleryImage30Min;9999" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712,1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712" ], "x-ms-request-id": [ - "bed5053c-df3a-49fa-bd2c-e454598a509b" + "ce4d41d9-2942-4307-83b2-cc2d599e99e9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" ], "x-ms-correlation-request-id": [ - "bed5053c-df3a-49fa-bd2c-e454598a509b" + "4c1de3ac-24d9-44e9-bb9e-c6f9618161d0" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T020436Z:bed5053c-df3a-49fa-bd2c-e454598a509b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20220606T190011Z:4c1de3ac-24d9-44e9-bb9e-c6f9618161d0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 02:04:35 GMT" + "Mon, 06 Jun 2022 19:00:11 GMT" + ], + "Content-Length": [ + "1395" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "900" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/galleries/galleryPsTestGallery4805/images/galleryPsTestGalleryImage8904/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2022-04-06T01:52:34.7764633+00:00\",\r\n \"endOfLifeDate\": \"2022-07-15T00:00:00+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/images/psTestSourceImage3821\"\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/galleries/galleryPsTestGallery3299/images/galleryPsTestGalleryImage3057/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2022-06-06T11:48:06.5312046-07:00\",\r\n \"endOfLifeDate\": \"2022-09-14T00: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/galleryPsTestRg7790/providers/Microsoft.Compute/images/psTestSourceImage9921\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"safetyProfile\": {\r\n \"reportedForPolicyViolation\": false\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/galleries/galleryPsTestGallery4805/images/galleryPsTestGalleryImage8904/versions?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY5MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ4MDUvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4OTA0L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/galleries/galleryPsTestGallery3299/images/galleryPsTestGalleryImage3057/versions?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTMyOTkvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzMDU3L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5aba4788-8262-4041-a193-4c629b2631b5" + "f194f40e-e6e4-4d6d-9465-f52f70f044b1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -3929,97 +3835,67 @@ "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ - "1b87f784-04f0-4730-a937-144bc8a1f90e", - "9759171c-8a6b-485b-b32e-47d9815264af", - "83f7614f-0a55-4387-93aa-579c00f2bc51", - "73dc2dfc-766a-49c0-aefb-fd30651b788b", - "106a0cc2-e7d7-481e-9b86-4b5f5f0d3315", - "ab6f0de2-e854-4d30-8b82-2a88d9095d22", - "fc84da53-eddb-4820-b9a7-2dbbe9b10c68", - "04b9f5e3-a04f-417b-98ac-ae8710362962", - "9e872a22-14b6-4d2f-9ecf-ed9535ed7d90", - "00a91b44-f2f6-4ff3-8307-1bd21d400ee8", - "102c7df1-bdd5-4b53-a39d-99308cd7679a", - "c2e18d42-118a-4ee1-85d6-02b14f539d2d", - "d8103f02-8c16-469a-86a0-153c81621bb3", - "fe4ed7a6-5273-48fa-83f6-9b2c09564b18", - "a0d6b3ba-3359-42ad-a4f5-90645ab6242c", - "cb99f30f-6aa7-4ebd-9f98-25854355a7e5", - "50a8ba26-9df5-4111-8fb7-34fa63f27e04", - "9f47c48d-bb3c-4aea-8494-3d4ef0f2dfb0", - "7fa11e1f-e400-453a-81f3-72506bb3b406", - "d728b73e-2129-4d76-a6f0-7f52e53c1373", - "2a93dafc-3d00-4ebc-8003-2ba1c4b305c3", - "c712a3a6-97d6-416d-a190-5668946e2aa7", - "b86b6476-543b-4fc4-92db-432afbac7141", - "df6b61dc-2a7c-4faf-b5ef-54c040cb9c2a", - "3a006615-b06c-4cff-9579-2ab517b10403", - "c57dca72-0ddf-43ac-b90c-260acd860319", - "6e127855-937d-431c-a94e-0961ded9ad08", - "cb3bb9dc-c716-4438-bcd8-1369c251f0a4", - "16a5a7b2-8574-4e3a-878a-da7d329c7847", - "9ddd0f26-ea0e-4fbc-bcef-cdabe7402d0d", - "1fdc4755-e8a1-4609-8dd0-94216999099d", - "d1150a63-a8af-4ee8-94c8-6b0a6336a4b4", - "af7c58e4-4aa8-40ac-9355-d00162674b6d", - "1afddc46-1524-4b04-8b2f-f27c64aa92e5", - "555e130a-3755-4299-8692-b018f6abbfd9", - "25aa2b3f-4f90-457b-a1cb-c014460a7a30", - "216e02f6-ff32-4885-aacc-2a4ecaf22125", - "693fc39e-715e-4999-acbf-7fb41530e2a7" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListGalleryImageVersionsInGalleryImage3Min;1498,Microsoft.Compute/ListGalleryImageVersionsInGalleryImage30Min;9998" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712,1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712" ], "x-ms-request-id": [ - "2c36af05-7eb1-48cb-9d44-7a7ccfae79a0" + "6c8aa985-c631-4ad6-84dc-0fc5fb8ef830" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" ], "x-ms-correlation-request-id": [ - "2c36af05-7eb1-48cb-9d44-7a7ccfae79a0" + "c2f22ead-f0aa-4f93-b4a9-5006bb7a0a89" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T020637Z:2c36af05-7eb1-48cb-9d44-7a7ccfae79a0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20220606T190212Z:c2f22ead-f0aa-4f93-b4a9-5006bb7a0a89" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 02:06:36 GMT" + "Mon, 06 Jun 2022 19:02:12 GMT" + ], + "Content-Length": [ + "19" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "12" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/galleries/galleryPsTestGallery4805/images/galleryPsTestGalleryImage8904/versions/1.0.0?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY5MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ4MDUvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4OTA0L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/galleries/galleryPsTestGallery3299/images/galleryPsTestGalleryImage3057/versions/1.0.0?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTMyOTkvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzMDU3L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf8dff84-418e-44de-8475-e329c810f72b" + "aa051dee-5647-42b8-a007-0760f20026e1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -4030,13 +3906,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/076d691f-f914-4e59-bfe0-55a2814bde76?monitor=true&api-version=2021-10-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/4cae0889-2420-4fb1-9243-03eb1ee9fb09?monitor=true&api-version=2022-01-03" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/076d691f-f914-4e59-bfe0-55a2814bde76?api-version=2021-10-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/4cae0889-2420-4fb1-9243-03eb1ee9fb09?api-version=2022-01-03" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/DeleteGalleryImageVersion3Min;149,Microsoft.Compute/DeleteGalleryImageVersion30Min;999" @@ -4045,10 +3921,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" + "1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712,1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712" ], "x-ms-request-id": [ - "076d691f-f914-4e59-bfe0-55a2814bde76" + "4cae0889-2420-4fb1-9243-03eb1ee9fb09" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4058,16 +3934,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "9f2c46e9-72ea-4fa1-8297-4f2374413d00" + "01ace5cb-53a3-410e-b120-a0de6e85bce6" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T020436Z:9f2c46e9-72ea-4fa1-8297-4f2374413d00" + "WESTUS:20220606T190012Z:01ace5cb-53a3-410e-b120-a0de6e85bce6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 02:04:36 GMT" + "Mon, 06 Jun 2022 19:00:11 GMT" ], "Expires": [ "-1" @@ -4080,16 +3956,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/076d691f-f914-4e59-bfe0-55a2814bde76?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wNzZkNjkxZi1mOTE0LTRlNTktYmZlMC01NWEyODE0YmRlNzY/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/4cae0889-2420-4fb1-9243-03eb1ee9fb09?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy80Y2FlMDg4OS0yNDIwLTRmYjEtOTI0My0wM2ViMWVlOWZiMDk/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -4103,16 +3979,16 @@ "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4171" + "Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4132" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" + "1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712,1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712" ], "x-ms-request-id": [ - "753895c3-67ca-47fb-9c9f-ee635e0a1ff4" + "2872d2cf-c6fd-44e8-99ef-b3f970be63eb" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4122,16 +3998,16 @@ "11967" ], "x-ms-correlation-request-id": [ - "1b4c0bc6-efad-4f24-83f2-54980346c8b3" + "40ecf295-f759-4e59-b809-0c1d77a1afd3" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T020536Z:1b4c0bc6-efad-4f24-83f2-54980346c8b3" + "WESTUS:20220606T190112Z:40ecf295-f759-4e59-b809-0c1d77a1afd3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 02:05:36 GMT" + "Mon, 06 Jun 2022 19:01:12 GMT" ], "Content-Length": [ "134" @@ -4143,20 +4019,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-06T02:04:36.3269819+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"076d691f-f914-4e59-bfe0-55a2814bde76\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-06-06T12:00:11.9392547-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4cae0889-2420-4fb1-9243-03eb1ee9fb09\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/076d691f-f914-4e59-bfe0-55a2814bde76?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wNzZkNjkxZi1mOTE0LTRlNTktYmZlMC01NWEyODE0YmRlNzY/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/4cae0889-2420-4fb1-9243-03eb1ee9fb09?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy80Y2FlMDg4OS0yNDIwLTRmYjEtOTI0My0wM2ViMWVlOWZiMDk/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -4167,16 +4043,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4169" + "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4130" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" + "1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712,1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712" ], "x-ms-request-id": [ - "55cc7d97-fec7-484a-ae6f-24b23214db80" + "d4cc3904-b02d-4042-aa57-1fd1121f2516" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4186,16 +4062,16 @@ "11966" ], "x-ms-correlation-request-id": [ - "0965a0e8-1518-428f-9eab-4cfdc62a331e" + "5ae75663-3d24-4fcb-8311-ed5eff5d3b1f" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T020636Z:0965a0e8-1518-428f-9eab-4cfdc62a331e" + "WESTUS:20220606T190212Z:5ae75663-3d24-4fcb-8311-ed5eff5d3b1f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 02:06:35 GMT" + "Mon, 06 Jun 2022 19:02:12 GMT" ], "Content-Length": [ "184" @@ -4207,20 +4083,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-06T02:04:36.3269819+00:00\",\r\n \"endTime\": \"2022-04-06T02:06:06.5951162+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"076d691f-f914-4e59-bfe0-55a2814bde76\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-06-06T12:00:11.9392547-07:00\",\r\n \"endTime\": \"2022-06-06T12:01:42.1738496-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4cae0889-2420-4fb1-9243-03eb1ee9fb09\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/076d691f-f914-4e59-bfe0-55a2814bde76?monitor=true&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wNzZkNjkxZi1mOTE0LTRlNTktYmZlMC01NWEyODE0YmRlNzY/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/4cae0889-2420-4fb1-9243-03eb1ee9fb09?monitor=true&api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy80Y2FlMDg4OS0yNDIwLTRmYjEtOTI0My0wM2ViMWVlOWZiMDk/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDEtMDM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -4231,16 +4107,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4168" + "Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4129" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" + "1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712,1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712" ], "x-ms-request-id": [ - "9979c4c8-d96c-4ce6-894e-3a146b321a27" + "cc72ddf5-cc2d-4400-bbce-d93ce0a78825" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4250,16 +4126,16 @@ "11965" ], "x-ms-correlation-request-id": [ - "94953b64-8d2c-41ef-8eb4-558528dbca7a" + "70933776-e95b-4df5-81b4-364b0a3c396a" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T020636Z:94953b64-8d2c-41ef-8eb4-558528dbca7a" + "WESTUS:20220606T190212Z:70933776-e95b-4df5-81b4-364b0a3c396a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 02:06:35 GMT" + "Mon, 06 Jun 2022 19:02:12 GMT" ], "Expires": [ "-1" @@ -4272,22 +4148,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/images/psTestSourceImage3821?api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY5MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTM4MjE/YXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/images/psTestSourceImage9921?api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTk5MjE/YXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8522d8f9-0300-48d2-b95c-ec549b7af435" + "53181c11-b09f-40a7-be5a-68f1ccc6dc29" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -4298,10 +4174,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/48d5143e-baf9-4fd9-9cc4-954944dda2a0?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&monitor=true&api-version=2022-03-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/f0f5fc2c-454e-4758-86b6-0881ac6d5cc2?p=0b6b958b-08c9-4eca-a759-7e84a44d7832&monitor=true&api-version=2022-03-01" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/48d5143e-baf9-4fd9-9cc4-954944dda2a0?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-03-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/f0f5fc2c-454e-4758-86b6-0881ac6d5cc2?p=0b6b958b-08c9-4eca-a759-7e84a44d7832&api-version=2022-03-01" ], "Azure-AsyncNotification": [ "Enabled" @@ -4313,7 +4189,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "48d5143e-baf9-4fd9-9cc4-954944dda2a0" + "f0f5fc2c-454e-4758-86b6-0881ac6d5cc2" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4323,16 +4199,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "f1a08ffb-3816-4145-81be-76dc787e7ca1" + "7117bdc6-a02a-4222-b822-15abbc522a10" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T021138Z:f1a08ffb-3816-4145-81be-76dc787e7ca1" + "WESTCENTRALUS:20220606T190714Z:7117bdc6-a02a-4222-b822-15abbc522a10" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 02:11:37 GMT" + "Mon, 06 Jun 2022 19:07:13 GMT" ], "Expires": [ "-1" @@ -4345,22 +4221,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/images/psTestSourceImage3821?api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY5MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTM4MjE/YXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/images/psTestSourceImage9921?api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTk5MjE/YXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8556deb6-2d11-4272-bcc6-a6ae64c02913" + "8b608c01-034f-41a8-a7ea-02ea692b8fcf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -4374,13 +4250,13 @@ "14994" ], "x-ms-request-id": [ - "8df52b85-2ca9-40ae-a0ea-7ba4db93e13a" + "24d5f665-3ff2-4d65-b63a-e76c8c2de365" ], "x-ms-correlation-request-id": [ - "8df52b85-2ca9-40ae-a0ea-7ba4db93e13a" + "24d5f665-3ff2-4d65-b63a-e76c8c2de365" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T021420Z:8df52b85-2ca9-40ae-a0ea-7ba4db93e13a" + "WESTCENTRALUS:20220606T190927Z:24d5f665-3ff2-4d65-b63a-e76c8c2de365" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4389,7 +4265,7 @@ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 02:14:19 GMT" + "Mon, 06 Jun 2022 19:09:27 GMT" ], "Expires": [ "-1" @@ -4399,16 +4275,16 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/48d5143e-baf9-4fd9-9cc4-954944dda2a0?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzQ4ZDUxNDNlLWJhZjktNGZkOS05Y2M0LTk1NDk0NGRkYTJhMD9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZhcGktdmVyc2lvbj0yMDIyLTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/f0f5fc2c-454e-4758-86b6-0881ac6d5cc2?p=0b6b958b-08c9-4eca-a759-7e84a44d7832&api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2YwZjVmYzJjLTQ1NGUtNDc1OC04NmI2LTA4ODFhYzZkNWNjMj9wPTBiNmI5NThiLTA4YzktNGVjYS1hNzU5LTdlODRhNDRkNzgzMiZhcGktdmVyc2lvbj0yMDIyLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -4419,13 +4295,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29967" + "Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29893" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "13eb44c6-f27c-41e8-a5ee-05ad1bf751b2" + "afa71d87-40fa-4719-9029-fcb89b221ae4" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4435,19 +4311,19 @@ "11999" ], "x-ms-correlation-request-id": [ - "aca7f841-d9dc-4158-bf5e-fd77bbd89b6a" + "fd0c38e3-d4e4-4f36-a942-a0abdf8a7f09" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T021208Z:aca7f841-d9dc-4158-bf5e-fd77bbd89b6a" + "WESTCENTRALUS:20220606T190744Z:fd0c38e3-d4e4-4f36-a942-a0abdf8a7f09" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 02:12:08 GMT" + "Mon, 06 Jun 2022 19:07:43 GMT" ], "Content-Length": [ - "184" + "183" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4456,20 +4332,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-06T02:11:38.3665798+00:00\",\r\n \"endTime\": \"2022-04-06T02:11:48.4920363+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"48d5143e-baf9-4fd9-9cc4-954944dda2a0\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-06-06T12:07:14.355126-07:00\",\r\n \"endTime\": \"2022-06-06T12:07:19.4489107-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f0f5fc2c-454e-4758-86b6-0881ac6d5cc2\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/48d5143e-baf9-4fd9-9cc4-954944dda2a0?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&monitor=true&api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzQ4ZDUxNDNlLWJhZjktNGZkOS05Y2M0LTk1NDk0NGRkYTJhMD9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZtb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/f0f5fc2c-454e-4758-86b6-0881ac6d5cc2?p=0b6b958b-08c9-4eca-a759-7e84a44d7832&monitor=true&api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2YwZjVmYzJjLTQ1NGUtNDc1OC04NmI2LTA4ODFhYzZkNWNjMj9wPTBiNmI5NThiLTA4YzktNGVjYS1hNzU5LTdlODRhNDRkNzgzMiZtb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -4480,13 +4356,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29966" + "Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29892" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0bdab0cd-7d97-45cb-bef9-1fc17b643abe" + "68c67183-c194-4533-8889-2838d99a646c" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4496,16 +4372,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "8722ec9c-1d1f-4b30-b2c9-16cbf318b4f1" + "842d8bd0-982b-4b4c-9d20-6fc56c6603f5" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T021208Z:8722ec9c-1d1f-4b30-b2c9-16cbf318b4f1" + "WESTCENTRALUS:20220606T190744Z:842d8bd0-982b-4b4c-9d20-6fc56c6603f5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 02:12:08 GMT" + "Mon, 06 Jun 2022 19:07:43 GMT" ], "Expires": [ "-1" @@ -4518,22 +4394,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/virtualMachines/vm5926?api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY5MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTU5MjY/YXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/virtualMachines/vm743?api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTc0Mz9hcGktdmVyc2lvbj0yMDIyLTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e343a49b-98aa-4a30-bf34-cef39d77b093" + "ca50f7ee-1d69-4f8a-aa8f-8330c38a3582" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -4544,13 +4420,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/5bd691bf-bd99-4738-b590-e36734147042?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&monitor=true&api-version=2022-03-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/9f92fa71-d5aa-4b0f-b4b7-de1874fd92db?p=0b6b958b-08c9-4eca-a759-7e84a44d7832&monitor=true&api-version=2022-03-01" ], "Retry-After": [ "10" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/5bd691bf-bd99-4738-b590-e36734147042?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-03-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/9f92fa71-d5aa-4b0f-b4b7-de1874fd92db?p=0b6b958b-08c9-4eca-a759-7e84a44d7832&api-version=2022-03-01" ], "Azure-AsyncNotification": [ "Enabled" @@ -4562,7 +4438,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5bd691bf-bd99-4738-b590-e36734147042" + "9f92fa71-d5aa-4b0f-b4b7-de1874fd92db" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4572,16 +4448,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "0be64b97-f846-4084-8527-81784743f73b" + "a82efd50-30e8-4d48-a479-ec9baf982f37" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T021208Z:0be64b97-f846-4084-8527-81784743f73b" + "WESTCENTRALUS:20220606T190745Z:a82efd50-30e8-4d48-a479-ec9baf982f37" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 02:12:08 GMT" + "Mon, 06 Jun 2022 19:07:44 GMT" ], "Expires": [ "-1" @@ -4594,22 +4470,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/virtualMachines/vm5926?api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY5MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTU5MjY/YXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/virtualMachines/vm743?api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTc0Mz9hcGktdmVyc2lvbj0yMDIyLTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e373a521-5dbe-4f93-889e-2d8cbe88de3e" + "b4bad676-9e78-4f0a-b6ed-47a66f8a07b6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -4623,13 +4499,13 @@ "14995" ], "x-ms-request-id": [ - "178379c4-b01b-4242-a65a-15c00c27ed3d" + "eccc5820-6584-405c-acec-fe4897acf546" ], "x-ms-correlation-request-id": [ - "178379c4-b01b-4242-a65a-15c00c27ed3d" + "eccc5820-6584-405c-acec-fe4897acf546" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T021420Z:178379c4-b01b-4242-a65a-15c00c27ed3d" + "WESTCENTRALUS:20220606T190927Z:eccc5820-6584-405c-acec-fe4897acf546" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4638,7 +4514,7 @@ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 02:14:19 GMT" + "Mon, 06 Jun 2022 19:09:27 GMT" ], "Expires": [ "-1" @@ -4648,16 +4524,16 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/5bd691bf-bd99-4738-b590-e36734147042?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzViZDY5MWJmLWJkOTktNDczOC1iNTkwLWUzNjczNDE0NzA0Mj9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZhcGktdmVyc2lvbj0yMDIyLTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/9f92fa71-d5aa-4b0f-b4b7-de1874fd92db?p=0b6b958b-08c9-4eca-a759-7e84a44d7832&api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzlmOTJmYTcxLWQ1YWEtNGIwZi1iNGI3LWRlMTg3NGZkOTJkYj9wPTBiNmI5NThiLTA4YzktNGVjYS1hNzU5LTdlODRhNDRkNzgzMiZhcGktdmVyc2lvbj0yMDIyLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -4671,13 +4547,13 @@ "30" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29965" + "Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29891" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ca484234-410c-469a-83b5-df4944a59af0" + "cc29afda-0c09-4b5d-acd3-e15ced169154" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4687,16 +4563,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "5ab8f3fd-0f27-44f9-9997-365e9e6ac92d" + "d8a3a103-949a-4e62-982f-67c655ba42fc" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T021218Z:5ab8f3fd-0f27-44f9-9997-365e9e6ac92d" + "WESTCENTRALUS:20220606T190755Z:d8a3a103-949a-4e62-982f-67c655ba42fc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 02:12:18 GMT" + "Mon, 06 Jun 2022 19:07:54 GMT" ], "Content-Length": [ "134" @@ -4708,20 +4584,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-06T02:12:08.5866663+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5bd691bf-bd99-4738-b590-e36734147042\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-06-06T12:07:45.0271939-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9f92fa71-d5aa-4b0f-b4b7-de1874fd92db\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/5bd691bf-bd99-4738-b590-e36734147042?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzViZDY5MWJmLWJkOTktNDczOC1iNTkwLWUzNjczNDE0NzA0Mj9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZhcGktdmVyc2lvbj0yMDIyLTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/9f92fa71-d5aa-4b0f-b4b7-de1874fd92db?p=0b6b958b-08c9-4eca-a759-7e84a44d7832&api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzlmOTJmYTcxLWQ1YWEtNGIwZi1iNGI3LWRlMTg3NGZkOTJkYj9wPTBiNmI5NThiLTA4YzktNGVjYS1hNzU5LTdlODRhNDRkNzgzMiZhcGktdmVyc2lvbj0yMDIyLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -4732,13 +4608,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29964" + "Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29888" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ec84fad2-c31d-4512-8696-339a758073f9" + "3975fccf-97cb-40c1-992e-608570d19099" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4748,77 +4624,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "7af0e495-f355-4b1f-baed-cf4192ee8339" + "acdb7a93-4f44-4738-98a0-2e1bcc9a15ad" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T021248Z:7af0e495-f355-4b1f-baed-cf4192ee8339" + "WESTCENTRALUS:20220606T190825Z:acdb7a93-4f44-4738-98a0-2e1bcc9a15ad" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 02:12:48 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-06T02:12:08.5866663+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5bd691bf-bd99-4738-b590-e36734147042\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/5bd691bf-bd99-4738-b590-e36734147042?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzViZDY5MWJmLWJkOTktNDczOC1iNTkwLWUzNjczNDE0NzA0Mj9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZhcGktdmVyc2lvbj0yMDIyLTAzLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.21.47003", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29963" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "94f03318-ebcb-44d1-96ca-732e442ae677" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-correlation-request-id": [ - "fa6a4b60-83c5-42d2-98dd-ac12991a3e4a" - ], - "x-ms-routing-request-id": [ - "EASTUS2:20220406T021318Z:fa6a4b60-83c5-42d2-98dd-ac12991a3e4a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 06 Apr 2022 02:13:17 GMT" + "Mon, 06 Jun 2022 19:08:24 GMT" ], "Content-Length": [ "184" @@ -4830,20 +4645,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-06T02:12:08.5866663+00:00\",\r\n \"endTime\": \"2022-04-06T02:12:52.0261226+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5bd691bf-bd99-4738-b590-e36734147042\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-06-06T12:07:45.0271939-07:00\",\r\n \"endTime\": \"2022-06-06T12:08:20.1992901-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9f92fa71-d5aa-4b0f-b4b7-de1874fd92db\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/5bd691bf-bd99-4738-b590-e36734147042?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&monitor=true&api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzViZDY5MWJmLWJkOTktNDczOC1iNTkwLWUzNjczNDE0NzA0Mj9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZtb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/9f92fa71-d5aa-4b0f-b4b7-de1874fd92db?p=0b6b958b-08c9-4eca-a759-7e84a44d7832&monitor=true&api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzlmOTJmYTcxLWQ1YWEtNGIwZi1iNGI3LWRlMTg3NGZkOTJkYj9wPTBiNmI5NThiLTA4YzktNGVjYS1hNzU5LTdlODRhNDRkNzgzMiZtb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -4854,32 +4669,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29962" + "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29887" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "06f9dd4b-08de-41f6-9a5b-b49a7bd87ec6" + "d417c88a-8987-4891-9614-9361da933e36" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11995" ], "x-ms-correlation-request-id": [ - "94ee36a0-9c9a-4ce1-a04f-d0dcff4a035b" + "22270c8f-9d47-44c7-b812-7e4af01573a5" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T021318Z:94ee36a0-9c9a-4ce1-a04f-d0dcff4a035b" + "WESTCENTRALUS:20220606T190825Z:22270c8f-9d47-44c7-b812-7e4af01573a5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 02:13:18 GMT" + "Mon, 06 Jun 2022 19:08:24 GMT" ], "Expires": [ "-1" @@ -4892,22 +4707,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/galleries/galleryPsTestGallery4805/images/galleryPsTestGalleryImage8904?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY5MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ4MDUvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4OTA0P2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/galleries/galleryPsTestGallery3299/images/galleryPsTestGalleryImage3057?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTMyOTkvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzMDU3P2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "23a9463c-1cc8-4538-9de4-559fbd914651" + "04a20b55-9d3f-4030-a46a-eaa39948297e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -4918,10 +4733,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/4a06a856-63c1-49c7-b331-ff5479db5b07?monitor=true&api-version=2021-10-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/c174483a-f173-448b-9b82-f79692473c77?monitor=true&api-version=2022-01-03" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/4a06a856-63c1-49c7-b331-ff5479db5b07?api-version=2021-10-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/c174483a-f173-448b-9b82-f79692473c77?api-version=2022-01-03" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/DeleteGalleryImage3Min;49,Microsoft.Compute/DeleteGalleryImage30Min;299" @@ -4930,10 +4745,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" + "1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712,1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712" ], "x-ms-request-id": [ - "4a06a856-63c1-49c7-b331-ff5479db5b07" + "c174483a-f173-448b-9b82-f79692473c77" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4943,16 +4758,16 @@ "14997" ], "x-ms-correlation-request-id": [ - "44f5a9eb-5565-4398-95a7-e58f0dcec4eb" + "5c05a8cc-9a6b-465d-8353-15cb4ef50b27" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T021318Z:44f5a9eb-5565-4398-95a7-e58f0dcec4eb" + "WESTCENTRALUS:20220606T190826Z:5c05a8cc-9a6b-465d-8353-15cb4ef50b27" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 02:13:18 GMT" + "Mon, 06 Jun 2022 19:08:25 GMT" ], "Expires": [ "-1" @@ -4965,16 +4780,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/4a06a856-63c1-49c7-b331-ff5479db5b07?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy80YTA2YTg1Ni02M2MxLTQ5YzctYjMzMS1mZjU0NzlkYjViMDc/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/c174483a-f173-448b-9b82-f79692473c77?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9jMTc0NDgzYS1mMTczLTQ0OGItOWI4Mi1mNzk2OTI0NzNjNzc/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -4985,38 +4800,38 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4165" + "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4134" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" + "1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712,1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712" ], "x-ms-request-id": [ - "cf0afce5-0810-40ff-9db9-ea6baff9a9e2" + "840ee418-96fc-47cf-b9d5-bfec7d7577c1" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11994" ], "x-ms-correlation-request-id": [ - "6cb0bd85-fc03-404c-89dc-9eb38d026796" + "f3b71bd5-8e19-49c7-bf2a-a247c22579b8" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T021349Z:6cb0bd85-fc03-404c-89dc-9eb38d026796" + "WESTCENTRALUS:20220606T190856Z:f3b71bd5-8e19-49c7-bf2a-a247c22579b8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 02:13:48 GMT" + "Mon, 06 Jun 2022 19:08:56 GMT" ], "Content-Length": [ - "184" + "183" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5025,20 +4840,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-06T02:13:18.9502945+00:00\",\r\n \"endTime\": \"2022-04-06T02:13:19.1690471+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4a06a856-63c1-49c7-b331-ff5479db5b07\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-06-06T12:08:26.0651262-07:00\",\r\n \"endTime\": \"2022-06-06T12:08:26.268229-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c174483a-f173-448b-9b82-f79692473c77\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/4a06a856-63c1-49c7-b331-ff5479db5b07?monitor=true&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy80YTA2YTg1Ni02M2MxLTQ5YzctYjMzMS1mZjU0NzlkYjViMDc/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/c174483a-f173-448b-9b82-f79692473c77?monitor=true&api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9jMTc0NDgzYS1mMTczLTQ0OGItOWI4Mi1mNzk2OTI0NzNjNzc/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDEtMDM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -5049,35 +4864,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4164" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4133" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" + "1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712,1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712" ], "x-ms-request-id": [ - "63804ae4-72e8-475c-bd2e-04096b4e3611" + "6022a1ad-f487-43a9-a75f-d122fd562a6c" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11993" ], "x-ms-correlation-request-id": [ - "3c4d33e6-5c1c-4eae-a94c-9a791d386fd6" + "c8480d9a-f170-429f-97dc-1629f9d6571a" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T021349Z:3c4d33e6-5c1c-4eae-a94c-9a791d386fd6" + "WESTCENTRALUS:20220606T190856Z:c8480d9a-f170-429f-97dc-1629f9d6571a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 02:13:48 GMT" + "Mon, 06 Jun 2022 19:08:56 GMT" ], "Expires": [ "-1" @@ -5090,22 +4905,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg6934/providers/Microsoft.Compute/galleries/galleryPsTestGallery4805?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY5MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ4MDU/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7790/providers/Microsoft.Compute/galleries/galleryPsTestGallery3299?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc3OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTMyOTk/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "16c66d30-6e83-467e-8291-81b290435510" + "8affdb41-96fd-4d68-b17e-bfff01168464" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -5116,22 +4931,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/2b73d7fb-77f4-4af6-90e2-7c6c3b72ff60?monitor=true&api-version=2021-10-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/7a12ba98-b858-4fe0-ba35-45cf00c26ad6?monitor=true&api-version=2022-01-03" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/2b73d7fb-77f4-4af6-90e2-7c6c3b72ff60?api-version=2021-10-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/7a12ba98-b858-4fe0-ba35-45cf00c26ad6?api-version=2022-01-03" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;299" + "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;899" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" + "1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712,1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712" ], "x-ms-request-id": [ - "2b73d7fb-77f4-4af6-90e2-7c6c3b72ff60" + "7a12ba98-b858-4fe0-ba35-45cf00c26ad6" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -5141,16 +4956,16 @@ "14996" ], "x-ms-correlation-request-id": [ - "7a937a4a-b32c-4370-b4d8-4ad3fd69ce21" + "07975caa-38bf-4a94-aed4-ee6062519017" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T021349Z:7a937a4a-b32c-4370-b4d8-4ad3fd69ce21" + "WESTCENTRALUS:20220606T190856Z:07975caa-38bf-4a94-aed4-ee6062519017" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 02:13:49 GMT" + "Mon, 06 Jun 2022 19:08:56 GMT" ], "Expires": [ "-1" @@ -5163,16 +4978,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/2b73d7fb-77f4-4af6-90e2-7c6c3b72ff60?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yYjczZDdmYi03N2Y0LTRhZjYtOTBlMi03YzZjM2I3MmZmNjA/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/7a12ba98-b858-4fe0-ba35-45cf00c26ad6?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83YTEyYmE5OC1iODU4LTRmZTAtYmEzNS00NWNmMDBjMjZhZDY/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -5183,35 +4998,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4162" + "Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4130" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" + "1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712,1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712" ], "x-ms-request-id": [ - "20d66a8b-9518-4c98-95aa-23af2546f24b" + "777640ef-956a-473a-8727-c61da5e69147" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11992" ], "x-ms-correlation-request-id": [ - "5bd6b237-4888-433b-9e36-077e71f3a6c2" + "379f1523-6fb5-4e15-935c-4a1509ae98b6" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T021419Z:5bd6b237-4888-433b-9e36-077e71f3a6c2" + "WESTCENTRALUS:20220606T190926Z:379f1523-6fb5-4e15-935c-4a1509ae98b6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 02:14:19 GMT" + "Mon, 06 Jun 2022 19:09:26 GMT" ], "Content-Length": [ "183" @@ -5223,20 +5038,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-04-06T02:13:49.1229627+00:00\",\r\n \"endTime\": \"2022-04-06T02:13:49.919859+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2b73d7fb-77f4-4af6-90e2-7c6c3b72ff60\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-06-06T12:08:56.6901281-07:00\",\r\n \"endTime\": \"2022-06-06T12:08:56.815124-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7a12ba98-b858-4fe0-ba35-45cf00c26ad6\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/2b73d7fb-77f4-4af6-90e2-7c6c3b72ff60?monitor=true&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yYjczZDdmYi03N2Y0LTRhZjYtOTBlMi03YzZjM2I3MmZmNjA/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/7a12ba98-b858-4fe0-ba35-45cf00c26ad6?monitor=true&api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83YTEyYmE5OC1iODU4LTRmZTAtYmEzNS00NWNmMDBjMjZhZDY/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDEtMDM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.47003", + "FxVersion/4.700.22.21202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/56.0.0" ] }, "ResponseHeaders": { @@ -5247,35 +5062,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4161" + "Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4129" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" + "1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712,1dd04696-ef54-4aec-bada-944b3b397491_132696876439481712" ], "x-ms-request-id": [ - "ef325173-3d05-460f-851e-c5e6c23368f2" + "e8f8ec1a-74b3-48f7-8fb8-416dcf0d1165" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11991" ], "x-ms-correlation-request-id": [ - "f621dcbb-703f-4e2c-82d8-4e56046f3225" + "0bc94402-443a-48c0-bcba-51f11cd9c24b" ], "x-ms-routing-request-id": [ - "EASTUS2:20220406T021419Z:f621dcbb-703f-4e2c-82d8-4e56046f3225" + "WESTCENTRALUS:20220606T190926Z:0bc94402-443a-48c0-bcba-51f11cd9c24b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 06 Apr 2022 02:14:19 GMT" + "Mon, 06 Jun 2022 19:09:26 GMT" ], "Expires": [ "-1" @@ -5290,36 +5105,36 @@ ], "Names": { "GalleryImageVersion_CRUD_Tests": [ - "galleryPsTestRg6934", - "psTestSourceImage3821", - "galleryPsTestGallery4805", - "galleryPsTestGalleryImage8904" + "galleryPsTestRg7790", + "psTestSourceImage9921", + "galleryPsTestGallery3299", + "galleryPsTestGalleryImage3057" ], "CreateCRPImage": [ - "saforgallery9181", - "asforgallery6912" + "saforgallery2623", + "asforgallery3688" ], "CreatePublicIP": [ - "pip377", - "dn9360" + "pip3526", + "dn9312" ], "CreateVNET": [ - "vn7674", - "sn9051" + "vn8412", + "sn5849" ], "CreateNIC": [ - "nic9665", - "ip3298" + "nic1685", + "ip4169" ], "CreateDefaultVMInput": [ - "crptestar3321", - "crptestar6140", - "crptestar8066", - "vm5926", - "Microsoft.Compute/virtualMachines6903" + "crptestar1744", + "crptestar8627", + "crptestar5754", + "vm743", + "Microsoft.Compute/virtualMachines1531" ] }, "Variables": { - "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871" + "SubscriptionId": "97f78232-382b-46a7-8a72-964d692c4f3f" } } \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryImage_CRUD_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryImage_CRUD_Tests.json index e7d3c26fb4514..afa18ee09b499 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryImage_CRUD_Tests.json +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryImage_CRUD_Tests.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg9802?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk4MDI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/galleryPsTestRg716?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzcxNj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f6e43036-cccc-4111-abc5-9d4ed3356cd0" + "e9bd29d4-9b0f-4074-9794-4411e2db7ac9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", + "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ @@ -29,9 +29,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 24 Dec 2021 12:12:19 GMT" - ], "Pragma": [ "no-cache" ], @@ -39,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "fac8037f-418d-463b-bd8f-1aeba2aee001" + "bfb9cb6d-62a9-4b48-9e36-953ff001d1c2" ], "x-ms-correlation-request-id": [ - "fac8037f-418d-463b-bd8f-1aeba2aee001" + "bfb9cb6d-62a9-4b48-9e36-953ff001d1c2" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220121T012938Z:fac8037f-418d-463b-bd8f-1aeba2aee001" + "SOUTHCENTRALUS:20220311T002727Z:bfb9cb6d-62a9-4b48-9e36-953ff001d1c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -54,7 +51,7 @@ "nosniff" ], "Date": [ - "Fri, 21 Jan 2022 01:29:38 GMT" + "Fri, 11 Mar 2022 00:27:26 GMT" ], "Content-Length": [ "190" @@ -66,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9802\",\r\n \"name\": \"galleryPsTestRg9802\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg716\",\r\n \"name\": \"galleryPsTestRg716\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9802/providers/Microsoft.Compute/galleries/galleryPsTestGallery8615?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg2MTU/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg716/providers/Microsoft.Compute/galleries/galleryPsTestGallery1768?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTc2OD9hcGktdmVyc2lvbj0yMDIyLTAxLTAz", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\"\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c54e1c7e-4af6-4e26-812f-8971ea12b105" + "71e47b80-d3a8-498d-90b2-e7507ea137d7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -98,30 +95,23 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 24 Dec 2021 12:12:20 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/eastus2/capsOperations/33a66ad8-942c-4db1-b5d2-0e2e08eef57d?api-version=2021-10-01" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/a953e56c-2354-4887-a1f4-87be97632f32?api-version=2022-01-03" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateUpdateGallery3Min;47,Microsoft.Compute/CreateUpdateGallery30Min;296" + "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;294" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264,1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264" + "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" ], "x-ms-request-id": [ - "33a66ad8-942c-4db1-b5d2-0e2e08eef57d" + "a953e56c-2354-4887-a1f4-87be97632f32" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -131,19 +121,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "743b730d-eca3-48ae-a118-3480b829a4ca" + "cf780255-f503-4065-8997-87ad50eb148a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220121T012942Z:743b730d-eca3-48ae-a118-3480b829a4ca" + "SOUTHCENTRALUS:20220311T002731Z:cf780255-f503-4065-8997-87ad50eb148a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 21 Jan 2022 01:29:41 GMT" + "Fri, 11 Mar 2022 00:27:30 GMT" ], "Content-Length": [ - "508" + "507" ], "Content-Type": [ "application/json; charset=utf-8" @@ -152,47 +142,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8615\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9802/providers/Microsoft.Compute/galleries/galleryPsTestGallery8615\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8615\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery1768\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg716/providers/Microsoft.Compute/galleries/galleryPsTestGallery1768\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY1768\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/33a66ad8-942c-4db1-b5d2-0e2e08eef57d?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zM2E2NmFkOC05NDJjLTRkYjEtYjVkMi0wZTJlMDhlZWY1N2Q/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/a953e56c-2354-4887-a1f4-87be97632f32?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hOTUzZTU2Yy0yMzU0LTQ4ODctYTFmNC04N2JlOTc2MzJmMzI/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 24 Dec 2021 12:12:49 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4188" + "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4148" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264,1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264" + "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" ], "x-ms-request-id": [ - "e307b00e-772d-482a-9564-6914fd5cef51" + "4b3316dd-0a77-402a-9961-a2b67e9355d6" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -202,16 +185,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "bf21a462-437b-4fa7-92b8-a12a48b6477c" + "eb19e665-a8f6-4bcb-8f76-a587f60f11f4" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220121T013012Z:bf21a462-437b-4fa7-92b8-a12a48b6477c" + "SOUTHCENTRALUS:20220311T002801Z:eb19e665-a8f6-4bcb-8f76-a587f60f11f4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 21 Jan 2022 01:30:11 GMT" + "Fri, 11 Mar 2022 00:28:01 GMT" ], "Content-Length": [ "184" @@ -223,47 +206,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-01-20T17:29:41.6466062-08:00\",\r\n \"endTime\": \"2022-01-20T17:29:41.7403559-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"33a66ad8-942c-4db1-b5d2-0e2e08eef57d\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-03-10T18:27:30.8160437-06:00\",\r\n \"endTime\": \"2022-03-10T18:27:30.8941415-06:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a953e56c-2354-4887-a1f4-87be97632f32\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9802/providers/Microsoft.Compute/galleries/galleryPsTestGallery8615?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg2MTU/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg716/providers/Microsoft.Compute/galleries/galleryPsTestGallery1768?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTc2OD9hcGktdmVyc2lvbj0yMDIyLTAxLTAz", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 24 Dec 2021 12:12:49 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;337,Microsoft.Compute/GetGallery30Min;2479" + "Microsoft.Compute/GetGallery3Min;341,Microsoft.Compute/GetGallery30Min;2423" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264,1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264" + "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" ], "x-ms-request-id": [ - "5ecef308-e7e3-4a01-94c6-56b82213c326" + "6d938881-a69e-4637-8134-ba1fa659fdd7" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -273,19 +249,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "b1ba2ff1-1256-400f-9498-4614d21706d7" + "17b0b49c-ba88-4a73-b7b5-b22c8ab4097a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220121T013012Z:b1ba2ff1-1256-400f-9498-4614d21706d7" + "SOUTHCENTRALUS:20220311T002801Z:17b0b49c-ba88-4a73-b7b5-b22c8ab4097a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 21 Jan 2022 01:30:11 GMT" + "Fri, 11 Mar 2022 00:28:01 GMT" ], "Content-Length": [ - "509" + "508" ], "Content-Type": [ "application/json; charset=utf-8" @@ -294,26 +270,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8615\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9802/providers/Microsoft.Compute/galleries/galleryPsTestGallery8615\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8615\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery1768\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg716/providers/Microsoft.Compute/galleries/galleryPsTestGallery1768\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY1768\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9802/providers/Microsoft.Compute/galleries/galleryPsTestGallery8615/images/galleryPsTestGalleryImage7883?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg2MTUvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U3ODgzP2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg716/providers/Microsoft.Compute/galleries/galleryPsTestGallery1768/images/galleryPsTestGalleryImage3222?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTc2OC9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTMyMjI/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "PUT", "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\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0e0836cc-95c9-4659-92ff-844ce03bcf9c" + "eaa911b3-5374-4b29-b44f-2aaad6417d3c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -326,30 +302,23 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 24 Dec 2021 12:12:50 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/eastus2/capsOperations/1662aa95-75d6-4e34-a314-c581caa6c4b2?api-version=2021-10-01" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/a2d94d26-0cdc-446f-8133-2e6e966bd6d8?api-version=2022-01-03" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;749" + "Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;746" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264,1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264" + "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" ], "x-ms-request-id": [ - "1662aa95-75d6-4e34-a314-c581caa6c4b2" + "a2d94d26-0cdc-446f-8133-2e6e966bd6d8" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -359,19 +328,19 @@ "1198" ], "x-ms-correlation-request-id": [ - "6555ac6c-c98f-40b4-8c17-485f130f5699" + "d8d2df17-b9f2-4312-8fd3-11a25f4c38a6" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220121T013014Z:6555ac6c-c98f-40b4-8c17-485f130f5699" + "SOUTHCENTRALUS:20220311T002802Z:d8d2df17-b9f2-4312-8fd3-11a25f4c38a6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 21 Jan 2022 01:30:13 GMT" + "Fri, 11 Mar 2022 00:28:02 GMT" ], "Content-Length": [ - "674" + "673" ], "Content-Type": [ "application/json; charset=utf-8" @@ -380,26 +349,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage7883\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9802/providers/Microsoft.Compute/galleries/galleryPsTestGallery8615/images/galleryPsTestGalleryImage7883\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\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}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage3222\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg716/providers/Microsoft.Compute/galleries/galleryPsTestGallery1768/images/galleryPsTestGalleryImage3222\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\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/galleryPsTestRg9802/providers/Microsoft.Compute/galleries/galleryPsTestGallery8615/images/galleryPsTestGalleryImage7883?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg2MTUvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U3ODgzP2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg716/providers/Microsoft.Compute/galleries/galleryPsTestGallery1768/images/galleryPsTestGalleryImage3222?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTc2OC9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTMyMjI/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "PUT", "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\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5cd1c678-742f-441e-864f-6fc9d54e9cd9" + "6610f6d3-6b29-42e7-a20c-40533a933b86" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -412,30 +381,23 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 24 Dec 2021 12:13:20 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/eastus2/capsOperations/c7e9bfcc-eedb-4038-a761-052edd12f67f?api-version=2021-10-01" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/f8a6b03f-432f-438f-8d5b-2337bc037ceb?api-version=2022-01-03" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateUpdateGalleryImage3Min;148,Microsoft.Compute/CreateUpdateGalleryImage30Min;748" + "Microsoft.Compute/CreateUpdateGalleryImage3Min;148,Microsoft.Compute/CreateUpdateGalleryImage30Min;745" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264,1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264" + "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" ], "x-ms-request-id": [ - "c7e9bfcc-eedb-4038-a761-052edd12f67f" + "f8a6b03f-432f-438f-8d5b-2337bc037ceb" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -445,19 +407,19 @@ "1197" ], "x-ms-correlation-request-id": [ - "4af00736-159f-41a6-b9d1-72ccce445e60" + "1dbbb354-9cf2-4448-b578-f2a8be0268af" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220121T013044Z:4af00736-159f-41a6-b9d1-72ccce445e60" + "SOUTHCENTRALUS:20220311T002834Z:1dbbb354-9cf2-4448-b578-f2a8be0268af" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 21 Jan 2022 01:30:44 GMT" + "Fri, 11 Mar 2022 00:28:34 GMT" ], "Content-Length": [ - "656" + "655" ], "Content-Type": [ "application/json; charset=utf-8" @@ -466,47 +428,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage7883\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9802/providers/Microsoft.Compute/galleries/galleryPsTestGallery8615/images/galleryPsTestGalleryImage7883\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\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}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage3222\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg716/providers/Microsoft.Compute/galleries/galleryPsTestGallery1768/images/galleryPsTestGalleryImage3222\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\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/eastus2/capsOperations/1662aa95-75d6-4e34-a314-c581caa6c4b2?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8xNjYyYWE5NS03NWQ2LTRlMzQtYTMxNC1jNTgxY2FhNmM0YjI/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/a2d94d26-0cdc-446f-8133-2e6e966bd6d8?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hMmQ5NGQyNi0wY2RjLTQ0NmYtODEzMy0yZTZlOTY2YmQ2ZDg/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 24 Dec 2021 12:13:20 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4186" + "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4146" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264,1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264" + "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" ], "x-ms-request-id": [ - "d8b3c391-dd66-41d7-a74d-e4ecb23fb5d3" + "4ddf5447-dc61-4538-acc2-505377349882" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -516,16 +471,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "4167f419-42a0-44ae-bc41-d64bce99078e" + "963fc1c6-763b-49d9-88fa-35cb19406517" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220121T013044Z:4167f419-42a0-44ae-bc41-d64bce99078e" + "SOUTHCENTRALUS:20220311T002833Z:963fc1c6-763b-49d9-88fa-35cb19406517" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 21 Jan 2022 01:30:43 GMT" + "Fri, 11 Mar 2022 00:28:32 GMT" ], "Content-Length": [ "184" @@ -537,47 +492,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-01-20T17:30:13.5222646-08:00\",\r\n \"endTime\": \"2022-01-20T17:30:13.6786826-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1662aa95-75d6-4e34-a314-c581caa6c4b2\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-03-10T18:28:02.4418648-06:00\",\r\n \"endTime\": \"2022-03-10T18:28:02.5199988-06:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a2d94d26-0cdc-446f-8133-2e6e966bd6d8\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9802/providers/Microsoft.Compute/galleries/galleryPsTestGallery8615/images/galleryPsTestGalleryImage7883?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg2MTUvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U3ODgzP2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg716/providers/Microsoft.Compute/galleries/galleryPsTestGallery1768/images/galleryPsTestGalleryImage3222?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTc2OC9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTMyMjI/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 24 Dec 2021 12:13:20 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2996" + "Microsoft.Compute/GetGalleryImage3Min;592,Microsoft.Compute/GetGalleryImage30Min;2934" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264,1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264" + "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" ], "x-ms-request-id": [ - "f5566d20-5b3f-4d28-9aa5-8488300d94bb" + "8481373b-87aa-40df-b01f-bd44f107a5ba" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -587,19 +535,19 @@ "11996" ], "x-ms-correlation-request-id": [ - "734deaa8-a428-478c-9346-3333596e937f" + "c88a6cdf-31ae-40be-8eba-2fedf2133bbc" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220121T013044Z:734deaa8-a428-478c-9346-3333596e937f" + "SOUTHCENTRALUS:20220311T002833Z:c88a6cdf-31ae-40be-8eba-2fedf2133bbc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 21 Jan 2022 01:30:44 GMT" + "Fri, 11 Mar 2022 00:28:33 GMT" ], "Content-Length": [ - "675" + "674" ], "Content-Type": [ "application/json; charset=utf-8" @@ -608,53 +556,46 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage7883\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9802/providers/Microsoft.Compute/galleries/galleryPsTestGallery8615/images/galleryPsTestGalleryImage7883\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\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}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage3222\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg716/providers/Microsoft.Compute/galleries/galleryPsTestGallery1768/images/galleryPsTestGalleryImage3222\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\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/galleryPsTestRg9802/providers/Microsoft.Compute/galleries/galleryPsTestGallery8615/images/galleryPsTestGalleryImage7883?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg2MTUvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U3ODgzP2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg716/providers/Microsoft.Compute/galleries/galleryPsTestGallery1768/images/galleryPsTestGalleryImage3222?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTc2OC9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTMyMjI/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18443c2e-0469-4dad-b944-f5c738e6ef67" + "bbe16ed8-ba8f-4d21-8ddd-ec1646d3b651" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 24 Dec 2021 12:13:20 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImage3Min;595,Microsoft.Compute/GetGalleryImage30Min;2995" + "Microsoft.Compute/GetGalleryImage3Min;591,Microsoft.Compute/GetGalleryImage30Min;2933" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264,1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264" + "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" ], "x-ms-request-id": [ - "b9bace70-298a-461e-a957-51905c289092" + "4989c83d-4402-4234-a511-c62dd9f214f3" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -664,19 +605,19 @@ "11995" ], "x-ms-correlation-request-id": [ - "df2608c0-2a14-4153-9333-3a995ae3526c" + "8eafc3be-0a86-47f0-8496-6b6f43ab5b06" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220121T013044Z:df2608c0-2a14-4153-9333-3a995ae3526c" + "SOUTHCENTRALUS:20220311T002833Z:8eafc3be-0a86-47f0-8496-6b6f43ab5b06" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 21 Jan 2022 01:30:44 GMT" + "Fri, 11 Mar 2022 00:28:33 GMT" ], "Content-Length": [ - "675" + "674" ], "Content-Type": [ "application/json; charset=utf-8" @@ -685,47 +626,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage7883\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9802/providers/Microsoft.Compute/galleries/galleryPsTestGallery8615/images/galleryPsTestGalleryImage7883\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\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}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage3222\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg716/providers/Microsoft.Compute/galleries/galleryPsTestGallery1768/images/galleryPsTestGalleryImage3222\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\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/galleryPsTestRg9802/providers/Microsoft.Compute/galleries/galleryPsTestGallery8615/images/galleryPsTestGalleryImage7883?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg2MTUvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U3ODgzP2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg716/providers/Microsoft.Compute/galleries/galleryPsTestGallery1768/images/galleryPsTestGalleryImage3222?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTc2OC9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTMyMjI/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 24 Dec 2021 12:13:50 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImage3Min;591,Microsoft.Compute/GetGalleryImage30Min;2991" + "Microsoft.Compute/GetGalleryImage3Min;587,Microsoft.Compute/GetGalleryImage30Min;2928" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264,1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264" + "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" ], "x-ms-request-id": [ - "cafae1bb-c7ec-47fa-b988-e4a80508f679" + "9b97f33f-7b85-488d-811d-0fba4d165f8f" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -735,19 +669,19 @@ "11993" ], "x-ms-correlation-request-id": [ - "a9073eba-ac0a-4388-90f0-1a38a6385458" + "6fe8bf50-c97d-48f1-b0e9-e1fd38e84b5a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220121T013114Z:a9073eba-ac0a-4388-90f0-1a38a6385458" + "SOUTHCENTRALUS:20220311T002904Z:6fe8bf50-c97d-48f1-b0e9-e1fd38e84b5a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 21 Jan 2022 01:31:13 GMT" + "Fri, 11 Mar 2022 00:29:04 GMT" ], "Content-Length": [ - "657" + "656" ], "Content-Type": [ "application/json; charset=utf-8" @@ -756,53 +690,46 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage7883\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9802/providers/Microsoft.Compute/galleries/galleryPsTestGallery8615/images/galleryPsTestGalleryImage7883\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\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}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage3222\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg716/providers/Microsoft.Compute/galleries/galleryPsTestGallery1768/images/galleryPsTestGalleryImage3222\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\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/galleryPsTestRg9802/providers/Microsoft.Compute/galleries/galleryPsTestGallery8615/images/galleryPsTestGalleryImage7883?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg2MTUvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U3ODgzP2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg716/providers/Microsoft.Compute/galleries/galleryPsTestGallery1768/images/galleryPsTestGalleryImage3222?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTc2OC9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTMyMjI/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ce33e499-6453-4323-8b06-651d3110613f" + "4b566bfd-b9f1-46e2-971f-9671e018b8a3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 24 Dec 2021 12:13:50 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImage3Min;590,Microsoft.Compute/GetGalleryImage30Min;2990" + "Microsoft.Compute/GetGalleryImage3Min;585,Microsoft.Compute/GetGalleryImage30Min;2926" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264,1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264" + "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" ], "x-ms-request-id": [ - "d913f788-6cb6-4fdd-913a-7584cc9fa16c" + "16e29afb-ab55-4416-8ccd-87d17e93e608" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -812,19 +739,19 @@ "11992" ], "x-ms-correlation-request-id": [ - "92e56bf3-0424-4065-a0b3-d739b1ac205b" + "c124f949-182d-413c-b790-401cf02d589c" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220121T013114Z:92e56bf3-0424-4065-a0b3-d739b1ac205b" + "SOUTHCENTRALUS:20220311T002904Z:c124f949-182d-413c-b790-401cf02d589c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 21 Jan 2022 01:31:13 GMT" + "Fri, 11 Mar 2022 00:29:04 GMT" ], "Content-Length": [ - "657" + "656" ], "Content-Type": [ "application/json; charset=utf-8" @@ -833,47 +760,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage7883\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9802/providers/Microsoft.Compute/galleries/galleryPsTestGallery8615/images/galleryPsTestGalleryImage7883\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\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}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage3222\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg716/providers/Microsoft.Compute/galleries/galleryPsTestGallery1768/images/galleryPsTestGalleryImage3222\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\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/eastus2/capsOperations/c7e9bfcc-eedb-4038-a761-052edd12f67f?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9jN2U5YmZjYy1lZWRiLTQwMzgtYTc2MS0wNTJlZGQxMmY2N2Y/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/f8a6b03f-432f-438f-8d5b-2337bc037ceb?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mOGE2YjAzZi00MzJmLTQzOGYtOGQ1Yi0yMzM3YmMwMzdjZWI/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 24 Dec 2021 12:13:50 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4184" + "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4144" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264,1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264" + "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" ], "x-ms-request-id": [ - "88df7ec7-2127-479f-a045-7229cd969c28" + "64f00c24-eb1d-47e3-93a9-f78aa3d9350f" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -883,16 +803,16 @@ "11994" ], "x-ms-correlation-request-id": [ - "bc5b4d67-e467-479f-8de5-19135e887880" + "b297a573-de43-4f88-a7c8-4b2422ef48bf" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220121T013114Z:bc5b4d67-e467-479f-8de5-19135e887880" + "SOUTHCENTRALUS:20220311T002904Z:b297a573-de43-4f88-a7c8-4b2422ef48bf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 21 Jan 2022 01:31:13 GMT" + "Fri, 11 Mar 2022 00:29:04 GMT" ], "Content-Length": [ "184" @@ -904,102 +824,86 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-01-20T17:30:44.6166278-08:00\",\r\n \"endTime\": \"2022-01-20T17:30:44.6635086-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c7e9bfcc-eedb-4038-a761-052edd12f67f\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-03-10T18:28:34.5051769-06:00\",\r\n \"endTime\": \"2022-03-10T18:28:34.5369163-06:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f8a6b03f-432f-438f-8d5b-2337bc037ceb\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9802/providers/Microsoft.Compute/galleries/galleryPsTestGallery8615/images?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg2MTUvaW1hZ2VzP2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg716/providers/Microsoft.Compute/galleries/galleryPsTestGallery1768/images?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTc2OC9pbWFnZXM/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f519fb2f-eb65-4f75-9ed9-c2e2ea19857b" + "ab4cdf74-da24-4279-9449-57f217ebe37c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 24 Dec 2021 12:13:51 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "ad20875c-877e-4dbc-b7a3-6af257a40a6b", - "ffe7455a-0b21-4a9e-a0ff-092afd389106", - "731e9ca9-8a2c-4013-8a9e-e19c7cc4af41", - "5f9fda43-58b0-4a82-836b-63517898c776", - "25cdfbbc-1c0c-472f-b97f-d5a009f7ab30", - "8be16a49-b3eb-4b3b-8c08-cbe56ca6a198", - "784ab6d8-aa68-473e-8f03-8dbaa365554d", - "b490e8e7-c869-4b49-a051-155add565b9a", - "f6a7f9f9-119b-464c-91b9-293df6f3e6b0", - "b4ee24a2-b998-4c93-9721-4582786c3629", - "b3a7be9a-15bc-4b08-b125-0c12e8d923a5", - "3bc56acb-4c05-4b40-8d79-0cc55905353d", - "686b614f-985f-4aaf-b340-9c01d3230de1", - "07c889c9-65b0-48d5-b647-b17795ca1f84", - "9a239210-1f9f-4e7b-8e8a-e15b26afc890", - "96286bfc-f7ab-40ef-85bd-b603e5ac9841", - "0778a9b5-e0e2-4d83-b087-0c57b5eb908d", - "9f7c6c31-5c1d-4d6c-aadb-fcff9d6221bf", - "0545ec04-96ce-4706-bcd1-7f63518be9cb", - "243e99f3-a01d-4e40-9dd9-b0070de9ec77", - "4af92893-fa62-4326-a11b-66f2fdb95f72", - "39324091-d257-4121-8500-3317be4b578a", - "4338eea2-e962-4196-8c3c-f16c17735b62", - "2d4b05ec-7756-4d8a-9e5e-4aa762d3ce16", - "ed11a27b-fc7f-42da-be27-10e468d7841e", - "97a4e8fd-f42f-4726-9c81-1e8a2c5f6fee", - "e4513893-588d-4e16-a748-2050ddc7dc16", - "71fccca4-af3a-4a25-8bc9-2f0ce3db1158", - "11a2ac58-7023-4a3e-be00-05609989c15d", - "740cbdcb-9a26-4448-be7f-6c91af0a07a4", - "28e6e4b0-16ac-4e49-881b-7e0b33c63dc2", - "4f2c44f1-569d-49f5-b504-b6d11ff716e5", - "b419657e-b1d0-4ad0-8c45-d98fa5981989", - "5ddd4316-6e7c-444b-a1a9-1290fbf16a07", - "32a45ebc-2d58-4562-b476-67ab40ddb467", - "20a5988a-1dfa-4399-8ca9-1b4161c5a227", - "bef0bade-fc8e-4f00-a4aa-9152e64316cd", - "3239b873-a3cf-484c-801b-4916cbe02e74", - "653bf4ff-83b2-4327-ae5d-c56a6a5c6f22", - "d5a841e9-49fc-4097-afd3-14d689e5eb5d", - "3454ec3a-be4a-45b4-ba13-ed5e93a4c4cd", - "d2909dc3-6dfa-44ef-847f-8c7866d43869", - "fd1910af-cce5-49c0-b851-70f2af4d1606", - "89e7da3e-115b-4c41-a8c9-8d90ea5aad95", - "56f5fed9-b450-4360-b459-697f96eda345", - "6e3187d1-3258-47c2-a026-cc6862b4c36c", - "2809d3f5-5731-4d87-a66f-911c4ba415d4", - "18b4bc7d-0f23-4f1f-b135-7bbee91c3d0f", - "d8c85f2e-7c6d-4835-b0fa-e1096dd167e7", - "71cc3692-8033-4e32-b669-9cdc446ce601", - "82d5d418-93b9-452a-a1c3-5c2588f2426b" + "0a5e6cc0-3b8c-4fb1-a78a-6f9cd378efab", + "b0047b75-b56f-47d9-ae30-1586fdeaa262", + "14bac75b-29d3-4337-8633-8960ff309fab", + "4a0e1939-13c4-4ca5-b5ff-5ef3fe270b03", + "cc7f8650-ba4d-4abb-abdd-96e6864518cc", + "33b1a623-0f0c-4d16-ac9f-75b052daa25e", + "6d7295c7-8c5a-4eaa-b4db-6170ad2fc712", + "30ee7a9a-c963-4961-882e-c64f8aecc566", + "405e75d1-f9a4-41f0-8a50-77abe6374a3c", + "5409c964-9bd0-4716-9e00-cf869ed7db31", + "dd21c037-8853-44a8-94ae-a8167db43089", + "33800938-4626-4a49-b61c-70c299c1518c", + "5b975257-d74d-4706-a277-0c18d059cdf6", + "d3103f2a-8da9-45c3-b50a-d25288713745", + "49f73276-d495-418b-84ca-0336605741a9", + "90f37225-c5b8-4654-babd-d114f3c8f31c", + "4cdf0afa-e86a-4ee7-9582-e0b039287508", + "f1556071-f7d4-4300-a124-f6f6cd69e95c", + "08573553-dbf8-4d6a-a835-6c9c9839a110", + "c6589077-a5af-4866-850c-efc905bea201", + "66cf5b61-8541-485e-9b37-633500cfc36b", + "c8958321-9598-42d0-b1f9-fd0f246ee9f4", + "d4652804-73d3-47ab-9428-1dc0735f960d", + "cef7751c-9dcd-4c04-b0ea-44897c70fb1d", + "d7f30aec-b208-40c1-a5eb-dad1deab0c29", + "03882103-7f0a-49a0-a36c-7da86e7d06f1", + "716b6c5e-3185-4b20-aa8c-a2c3c76e946b", + "25ee0cdc-e575-4d1a-b4ab-a788196e4f07", + "e7a6ef0d-beec-4e30-a50f-3b7898d14ebe", + "bc616851-005f-41b5-ba5a-5b1e7b08f41b", + "ed88680e-7f23-4bfa-9a32-b84877686fdc", + "7ffff69d-2bfa-4dce-ae74-7a3ca6e99269", + "75ce8464-ebcd-405d-9278-e3e4cae651a3", + "6d7beae0-ae4f-45b2-b974-75163d1d084f", + "5af70148-c79f-4ed2-bc04-e3c454ce1429", + "94db6c29-0b2e-4d2b-b60e-e190afb36aee", + "7b8ffb78-3390-44b5-afa5-cb893f2dbff8", + "c0f611da-ccb9-4884-81d0-4e28ca2da825" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], "x-ms-request-id": [ - "4befae05-93ab-41ca-ba1b-8d930233c60c" + "163d52cd-c241-4c2b-a356-d2f7fc603bc7" ], "x-ms-correlation-request-id": [ - "4befae05-93ab-41ca-ba1b-8d930233c60c" + "163d52cd-c241-4c2b-a356-d2f7fc603bc7" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220121T013116Z:4befae05-93ab-41ca-ba1b-8d930233c60c" + "SOUTHCENTRALUS:20220311T002906Z:163d52cd-c241-4c2b-a356-d2f7fc603bc7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1008,7 +912,7 @@ "nosniff" ], "Date": [ - "Fri, 21 Jan 2022 01:31:16 GMT" + "Fri, 11 Mar 2022 00:29:05 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1017,105 +921,89 @@ "-1" ], "Content-Length": [ - "556" + "1223" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"galleryPsTestGalleryImage7883\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9802/providers/Microsoft.Compute/galleries/galleryPsTestGallery8615/images/galleryPsTestGalleryImage7883\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"galleryPsTestGalleryImage3222\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg716/providers/Microsoft.Compute/galleries/galleryPsTestGallery1768/images/galleryPsTestGalleryImage3222\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\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 \"nextLink\": \"https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg716/providers/Microsoft.Compute/galleries/galleryPsTestGallery1768/images?api-version=2022-01-03&%24skiptoken=3ZXRboIwFIbfpderBZmUmJil0cYxHRgKMbtEPLpmQklbzDbjuw%2fUqz1C79uT8%2bX83zkX1MC3Xcvmy6DpBYm0yF85EzkTMUNT9Glta6aE1GVTHqGGxo7K307DqFI1Md3OVFq2VqrGEAjoxPf2FAfBLsTPIQ1xFIUHDEAnu6ry%2fIj6RINRna5gqVXXGnIsTyfQPxuTg7HZkfohabU6yz1oQ95lpZVRBzuaq7rtLDyeS%2fj3cXmv4tMwIrLu%2bzQvZSvxuS%2fSdzYbe%2bMx9nzsBegJbbnIeZGlG%2b4qXSFcJFulWR%2fLIZ0u0s1ZwhZs8M5FumLl7OBuYHGycHNZskLkGVvHd%2fFcjecb27BkuAsuujfnyTBCN49CkmZb9uFsLuP0tllcjebAVYjARevEli948nDPPcDr9Q8%3d\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9802/providers/Microsoft.Compute/galleries/galleryPsTestGallery8615/images?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg2MTUvaW1hZ2VzP2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg716/providers/Microsoft.Compute/galleries/galleryPsTestGallery1768/images?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTc2OC9pbWFnZXM/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f375b632-78bd-4c38-abad-e76568d8d687" + "08d74337-e3eb-47b9-adf7-962ebfb9877c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 24 Dec 2021 12:14:22 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "0e0ac73b-5231-433c-b062-c5f6c56da9bd", - "93a76cf2-154c-46c9-93a5-a944e8252377", - "cd4f18c0-8489-4a9a-bb1c-6311cbe18bcd", - "1ea597c8-45c7-48ff-9e98-71be3b9b7918", - "9d5fb637-c8e7-4542-9e98-49e833af76d2", - "80d3a147-36db-480f-af8a-88d8373fbfce", - "98c0920f-240e-482b-b87a-e1d2181619d5", - "1200983e-327a-4730-b98b-411d5e5fcd03", - "35b5b166-5214-4d1b-ade2-c673a403818b", - "1642a7d6-fe3a-4608-a511-27ebc0544ac1", - "40906762-7902-4ad0-9f85-045568206123", - "b5e2e547-ca75-4776-a3ec-cee4f53a1bd0", - "78019280-e202-4193-922d-de3a44750a94", - "4f6e185e-5965-4f15-aa77-aeebe4501f70", - "f3f6f368-447d-44aa-802a-f64ad5e62168", - "d4cb977c-e2ad-4609-b28a-e55a2c806e78", - "619a60f5-8286-4c30-b4d5-5ee1b554357d", - "9d43dc26-4d68-4af7-9772-8066e0536302", - "e9237c2e-b54e-423e-ac4c-5614a5dcc5eb", - "49b665b9-7526-49a8-a2d0-a908d4edd6d1", - "6281f4fa-adb8-47c7-8a02-2bd47285917c", - "8e229520-5d46-4c5a-8606-39d3ec72f345", - "78994dc7-f9da-4eb4-8912-0e31e42f9d0d", - "4e44ca8f-0bf7-4972-9956-86d008b86590", - "de003468-eb5a-482c-8ea6-ced2746f1828", - "b6f5cf35-7ac3-4ddd-b45c-23b7c16a2334", - "75d75f9f-5241-4ecb-85aa-7c91944884b9", - "4684302a-148d-4012-a170-e4f4b5b6ef79", - "3eba6ce4-4a2d-4276-9b40-e4f366b30f60", - "7d8708ee-9e0b-489d-85ea-f1a09082fd99", - "d32a9f31-bde2-4af2-b99f-e446bae277d3", - "86f288d5-ae38-406f-83f9-25ed80697e4f", - "cf1130e0-a0d6-4470-b0e8-3d86c01161ad", - "9a0881db-f9eb-43db-8cb8-6c7dd355083b", - "067d196e-c23b-4cc0-b42c-71b2ec0aaa4f", - "2c290e97-9df5-4a2d-9f98-69e375bb61e2", - "04192aa9-2c7c-4a0b-8cea-16a9edd9eae1", - "825438b8-7c1a-4ee8-a8f2-87ae20bd0f44", - "e306239d-39a4-4e82-867f-54b39f04593b", - "b1a552e1-4458-4a5f-88a5-1a75f92bb6d7", - "e99e9591-b981-4a26-be48-0a76b1bd1d59", - "67d5b0a8-88f9-4558-bb20-30483277d1c5", - "bf558e5a-c5fd-490e-b2e5-e47d282a2a99", - "148bfafa-449f-44a2-85bf-cbd81f37d5e1", - "e9c65e48-e219-4213-bbf0-1ede31a8ed2d", - "d4760a16-7de7-4258-a317-4b18754a0dd0", - "1df3561f-03a1-4b37-8c8e-055c331c04c9", - "fd60f943-18f2-4157-b781-a0546a2c9dbd", - "789a8d5e-f761-452a-a32d-802ea4508558", - "11bf555a-3e73-4e46-90ff-6107ec5a4f45", - "71120857-935b-4e6c-859b-55ec87a04c54" + "ef9356b4-472b-4912-8f39-4918b1e32019", + "6f3549ed-c864-46b7-9e1c-67e0de2675db", + "a51632e6-6e18-40c9-a0c2-8787f9909465", + "cd0c0e32-0308-4576-8ab8-1fb278f80989", + "bac90192-abc9-4760-bda3-af1dec89b6a6", + "f21c9774-0dfe-47d8-bc95-cf8206a99001", + "d40ecd7d-d106-4cf5-8761-1a7388dcbdbf", + "f0f176ea-1ac1-447e-8740-83a79ff6b3a1", + "7a8dbf96-dd8e-4f90-ab5b-7bc8a05d2575", + "2dd1d22e-deea-4dd5-8cdb-39d2ce8cbc76", + "3ceee148-e316-45df-a753-2e3b0d9979d3", + "bdbdf189-b11a-4305-b169-cdaaf718c290", + "7701f505-0845-4f35-90cd-7a36776a32f4", + "dfc87a55-20b8-4ad3-9a81-7d5e1cd6c2dc", + "b2c3a0d8-306a-442b-804c-1f26ce33c063", + "53bbd2dc-2978-4fd5-9099-2e8d3bfe69f7", + "2ec190fb-49f2-4f87-bd96-55f48d618d99", + "cdacc76c-013b-4a2e-8778-45c0fdb50b29", + "b3992174-9c29-4afa-bb72-e4e217cb96c5", + "36ffd6a0-b40b-40f0-a319-5b73bb3b3b55", + "24c31e4a-e057-4919-9aa7-624b9f7bdca5", + "64ae60c0-6a8f-4112-8a57-99403133ce41", + "d1dfa5aa-eca2-4841-beb8-c4500957fea9", + "d99dff48-c56f-4c68-af15-0bcfacdc7498", + "0351b309-7824-40ac-8d63-733e432227ef", + "8fb95c2f-0d2b-4511-a43c-125683cd71c1", + "4214e51d-b231-42da-8834-8bc7e64bed06", + "cf35d16d-7db5-4695-9ad8-a4d4f8af2e81", + "e959a45a-5439-4f34-bd63-7ba939bcb090", + "3c10ce5e-cda0-43a7-b9de-079f07e24106", + "a43366f3-6d1c-46c5-88bc-961e22f9463b", + "a97ac4c6-3217-4b71-8d29-51318092911d", + "9b378702-57c4-4713-b13b-3b7e0699710a", + "258dd4b3-4740-4a19-8899-5411ffb7c11f", + "5b3c6810-58ff-444a-830d-f0a59112c62a", + "40c879e2-bdf3-4108-8763-db3318fc12e0", + "1f782b09-0cae-434a-9365-0ed32dfb7e76", + "842faec2-7483-435b-bd83-d9a1ac185de5" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], "x-ms-request-id": [ - "f63703b1-441a-4da6-8019-14aadeeb580f" + "93ba7e18-e222-4708-bf59-53fb62d49273" ], "x-ms-correlation-request-id": [ - "f63703b1-441a-4da6-8019-14aadeeb580f" + "93ba7e18-e222-4708-bf59-53fb62d49273" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220121T013147Z:f63703b1-441a-4da6-8019-14aadeeb580f" + "SOUTHCENTRALUS:20220311T002937Z:93ba7e18-e222-4708-bf59-53fb62d49273" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1124,64 +1012,64 @@ "nosniff" ], "Date": [ - "Fri, 21 Jan 2022 01:31:46 GMT" + "Fri, 11 Mar 2022 00:29:37 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "680" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg716/providers/Microsoft.Compute/galleries/galleryPsTestGallery1768/images?api-version=2022-01-03&%24skiptoken=3ZXRboIwFIbfpderBZmUmJil0cYxHRgKMbtEPLpmQklbzDbjuw%2fUqz1C79uT8%2bX83zkX1MC3Xcvmy6DpBYm0yF85EzkTMUNT9Glta6aE1GVTHqGGxo7K307DqFI1Md3OVFq2VqrGEAjoxPf2FAfBLsTPIQ1xFIUHDEAnu6ry%2fIj6RINRna5gqVXXGnIsTyfQPxuTg7HZkfohabU6yz1oQ95lpZVRBzuaq7rtLDyeS%2fj3cXmv4tMwIrLu%2bzQvZSvxuS%2fSdzYbe%2bMx9nzsBegJbbnIeZGlG%2b4qXSFcJFulWR%2fLIZ0u0s1ZwhZs8M5FumLl7OBuYHGycHNZskLkGVvHd%2fFcjecb27BkuAsuujfnyTBCN49CkmZb9uFsLuP0tllcjebAVYjARevEli948nDPPcDr9Q8%3d\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9802/providers/Microsoft.Compute/galleries/galleryPsTestGallery8615/images/galleryPsTestGalleryImage7883?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg2MTUvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U3ODgzP2FwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg716/providers/Microsoft.Compute/galleries/galleryPsTestGallery1768/images/galleryPsTestGalleryImage3222?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTc2OC9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTMyMjI/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cbba9e2f-dd0e-41b5-b6d1-e25236c5de6e" + "8ed4a88a-16e4-4b2a-9bd4-ad5ff38ff993" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 24 Dec 2021 12:13:51 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/243715d4-edcd-4b15-9ebd-4390eb5d40a4?monitor=true&api-version=2021-10-01" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/be34c56b-659d-4a0e-ae20-1a39f9471575?monitor=true&api-version=2022-01-03" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/243715d4-edcd-4b15-9ebd-4390eb5d40a4?api-version=2021-10-01" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/be34c56b-659d-4a0e-ae20-1a39f9471575?api-version=2022-01-03" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/DeleteGalleryImage3Min;49,Microsoft.Compute/DeleteGalleryImage30Min;299" + "Microsoft.Compute/DeleteGalleryImage3Min;49,Microsoft.Compute/DeleteGalleryImage30Min;297" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264,1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264" + "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" ], "x-ms-request-id": [ - "243715d4-edcd-4b15-9ebd-4390eb5d40a4" + "be34c56b-659d-4a0e-ae20-1a39f9471575" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1191,62 +1079,58 @@ "14999" ], "x-ms-correlation-request-id": [ - "736fd0e3-28df-44bf-9da0-9e16daca4e98" + "0e28fdc7-a265-491a-9eeb-f050b347f623" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220121T013116Z:736fd0e3-28df-44bf-9da0-9e16daca4e98" + "SOUTHCENTRALUS:20220311T002906Z:0e28fdc7-a265-491a-9eeb-f050b347f623" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 21 Jan 2022 01:31:16 GMT" + "Fri, 11 Mar 2022 00:29:05 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/243715d4-edcd-4b15-9ebd-4390eb5d40a4?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yNDM3MTVkNC1lZGNkLTRiMTUtOWViZC00MzkwZWI1ZDQwYTQ/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/be34c56b-659d-4a0e-ae20-1a39f9471575?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iZTM0YzU2Yi02NTlkLTRhMGUtYWUyMC0xYTM5Zjk0NzE1NzU/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 24 Dec 2021 12:14:22 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4182" + "Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4142" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264,1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264" + "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" ], "x-ms-request-id": [ - "9540f4d0-34b2-4e98-842e-73f64d516230" + "19cac86e-6f76-41c2-aa51-f46ade863ffd" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1256,19 +1140,19 @@ "11990" ], "x-ms-correlation-request-id": [ - "20adf6c5-001b-4b1d-af69-a61d7cfd090d" + "8cd9b549-e351-492a-8cfc-9c3adfe300d6" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220121T013146Z:20adf6c5-001b-4b1d-af69-a61d7cfd090d" + "SOUTHCENTRALUS:20220311T002936Z:8cd9b549-e351-492a-8cfc-9c3adfe300d6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 21 Jan 2022 01:31:45 GMT" + "Fri, 11 Mar 2022 00:29:36 GMT" ], "Content-Length": [ - "184" + "183" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1277,47 +1161,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-01-20T17:31:16.6172483-08:00\",\r\n \"endTime\": \"2022-01-20T17:31:16.7422409-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"243715d4-edcd-4b15-9ebd-4390eb5d40a4\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-03-10T18:29:06.584118-06:00\",\r\n \"endTime\": \"2022-03-10T18:29:06.7091471-06:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"be34c56b-659d-4a0e-ae20-1a39f9471575\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/243715d4-edcd-4b15-9ebd-4390eb5d40a4?monitor=true&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yNDM3MTVkNC1lZGNkLTRiMTUtOWViZC00MzkwZWI1ZDQwYTQ/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/be34c56b-659d-4a0e-ae20-1a39f9471575?monitor=true&api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iZTM0YzU2Yi02NTlkLTRhMGUtYWUyMC0xYTM5Zjk0NzE1NzU/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDEtMDM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 24 Dec 2021 12:14:22 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4181" + "Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4141" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264,1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264" + "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" ], "x-ms-request-id": [ - "9ebc0805-c914-424d-99f8-4edcdc138451" + "4edb2e1d-0d6e-4828-9c20-e22ad3eca9ef" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1327,70 +1204,70 @@ "11989" ], "x-ms-correlation-request-id": [ - "21157637-5710-48df-b14b-65c539732bdd" + "6c8361af-ad23-4a30-b305-396c41f9c419" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220121T013146Z:21157637-5710-48df-b14b-65c539732bdd" + "SOUTHCENTRALUS:20220311T002937Z:6c8361af-ad23-4a30-b305-396c41f9c419" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 21 Jan 2022 01:31:46 GMT" + "Fri, 11 Mar 2022 00:29:36 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9802/providers/Microsoft.Compute/galleries/galleryPsTestGallery8615?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg2MTU/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg716/providers/Microsoft.Compute/galleries/galleryPsTestGallery1768?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTc2OD9hcGktdmVyc2lvbj0yMDIyLTAxLTAz", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2cf3a05f-ce8e-45e2-b570-2e3b3816f63b" + "ec4a3c42-1a4f-4ca1-977b-de90b8760946" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 24 Dec 2021 12:14:23 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/5da35f74-5dd5-41b9-b3dd-08e9f2638327?monitor=true&api-version=2021-10-01" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/605c9513-b465-4c4a-8b94-4d63040441d2?monitor=true&api-version=2022-01-03" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/5da35f74-5dd5-41b9-b3dd-08e9f2638327?api-version=2021-10-01" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/605c9513-b465-4c4a-8b94-4d63040441d2?api-version=2022-01-03" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;897" + "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;295" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264,1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264" + "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" ], "x-ms-request-id": [ - "5da35f74-5dd5-41b9-b3dd-08e9f2638327" + "605c9513-b465-4c4a-8b94-4d63040441d2" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1400,62 +1277,58 @@ "14998" ], "x-ms-correlation-request-id": [ - "254e2cca-ebeb-4a34-a17b-8efae87e663e" + "368f775b-f61b-4b87-88a5-4cdbd323af44" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220121T013147Z:254e2cca-ebeb-4a34-a17b-8efae87e663e" + "SOUTHCENTRALUS:20220311T002938Z:368f775b-f61b-4b87-88a5-4cdbd323af44" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 21 Jan 2022 01:31:46 GMT" + "Fri, 11 Mar 2022 00:29:37 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/5da35f74-5dd5-41b9-b3dd-08e9f2638327?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy81ZGEzNWY3NC01ZGQ1LTQxYjktYjNkZC0wOGU5ZjI2MzgzMjc/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/605c9513-b465-4c4a-8b94-4d63040441d2?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy82MDVjOTUxMy1iNDY1LTRjNGEtOGI5NC00ZDYzMDQwNDQxZDI/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 24 Dec 2021 12:14:53 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4179" + "Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4147" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264,1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264" + "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" ], "x-ms-request-id": [ - "2ff29c37-29e4-4ef7-a43b-7660a688b85c" + "9e813db2-88e3-4448-b243-499be998bfce" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1465,16 +1338,16 @@ "11987" ], "x-ms-correlation-request-id": [ - "4c8a190d-9c2d-4204-b938-2ea03106893b" + "ab3f15ea-7471-4d37-998f-841ba76c9154" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220121T013217Z:4c8a190d-9c2d-4204-b938-2ea03106893b" + "SOUTHCENTRALUS:20220311T003008Z:ab3f15ea-7471-4d37-998f-841ba76c9154" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 21 Jan 2022 01:32:17 GMT" + "Fri, 11 Mar 2022 00:30:07 GMT" ], "Content-Length": [ "184" @@ -1486,47 +1359,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-01-20T17:31:47.6803275-08:00\",\r\n \"endTime\": \"2022-01-20T17:31:47.7897302-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5da35f74-5dd5-41b9-b3dd-08e9f2638327\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-03-10T18:29:38.1630757-06:00\",\r\n \"endTime\": \"2022-03-10T18:29:38.2724534-06:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"605c9513-b465-4c4a-8b94-4d63040441d2\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/5da35f74-5dd5-41b9-b3dd-08e9f2638327?monitor=true&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy81ZGEzNWY3NC01ZGQ1LTQxYjktYjNkZC0wOGU5ZjI2MzgzMjc/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/605c9513-b465-4c4a-8b94-4d63040441d2?monitor=true&api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy82MDVjOTUxMy1iNDY1LTRjNGEtOGI5NC00ZDYzMDQwNDQxZDI/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDEtMDM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 24 Dec 2021 12:14:53 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4178" + "Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4146" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264,1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264" + "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" ], "x-ms-request-id": [ - "0f453ef2-3fca-46bb-aab3-6cf7aea63d8c" + "a0268a7c-44e6-4972-bb90-6d8ba9bc2672" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1536,19 +1402,22 @@ "11986" ], "x-ms-correlation-request-id": [ - "ed454660-312c-4a37-b58a-3656b30804e3" + "03fd5ef3-6129-4398-8130-195c92fb5189" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220121T013217Z:ed454660-312c-4a37-b58a-3656b30804e3" + "SOUTHCENTRALUS:20220311T003008Z:03fd5ef3-6129-4398-8130-195c92fb5189" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 21 Jan 2022 01:32:17 GMT" + "Fri, 11 Mar 2022 00:30:07 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -1557,12 +1426,12 @@ ], "Names": { "GalleryImage_CRUD_Tests": [ - "galleryPsTestRg9802", - "galleryPsTestGallery8615", - "galleryPsTestGalleryImage7883" + "galleryPsTestRg716", + "galleryPsTestGallery1768", + "galleryPsTestGalleryImage3222" ] }, "Variables": { - "SubscriptionId": "97f78232-382b-46a7-8a72-964d692c4f3f" + "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871" } } \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_CRUD_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_CRUD_Tests.json index c1c13f192fe9b..03e5bd9ce7fed 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_CRUD_Tests.json +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_CRUD_Tests.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg3643?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NDM/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/galleryPsTestRg348?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0OD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "84aafe67-002a-4a4d-9f55-175d5a118d7b" + "33d835d8-7c40-4fde-b505-463fc96485f0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", + "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ @@ -29,9 +29,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 24 Dec 2021 12:54:57 GMT" - ], "Pragma": [ "no-cache" ], @@ -39,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "de7f784a-12fb-4121-a74d-1b2f7643de1f" + "d44640d4-3d69-4d0c-bb33-aea5b6198239" ], "x-ms-correlation-request-id": [ - "de7f784a-12fb-4121-a74d-1b2f7643de1f" + "d44640d4-3d69-4d0c-bb33-aea5b6198239" ], "x-ms-routing-request-id": [ - "WESTUS:20220121T012646Z:de7f784a-12fb-4121-a74d-1b2f7643de1f" + "SOUTHCENTRALUS:20220311T001716Z:d44640d4-3d69-4d0c-bb33-aea5b6198239" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -54,10 +51,10 @@ "nosniff" ], "Date": [ - "Fri, 21 Jan 2022 01:26:46 GMT" + "Fri, 11 Mar 2022 00:17:15 GMT" ], "Content-Length": [ - "192" + "190" ], "Content-Type": [ "application/json; charset=utf-8" @@ -66,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3643\",\r\n \"name\": \"galleryPsTestRg3643\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg348\",\r\n \"name\": \"galleryPsTestRg348\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3643/providers/Microsoft.Compute/galleries/galleryPsTestGallery7245?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTcyNDU/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg348/providers/Microsoft.Compute/galleries/galleryPsTestGallery8016?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODAxNj9hcGktdmVyc2lvbj0yMDIyLTAxLTAz", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\"\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b1931f8b-7cab-4974-92e2-583e0db65160" + "e19e5e85-0725-4fec-b1ec-0000fa3bebe0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -98,30 +95,23 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 24 Dec 2021 12:54:56 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/eastus2/capsOperations/93a39921-f9be-429b-bfdb-36126f2e38f1?api-version=2021-10-01" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/62a78a21-27ba-40c0-84cf-3e1de967e339?api-version=2022-01-03" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299" + "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;297" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264,1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264" + "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" ], "x-ms-request-id": [ - "93a39921-f9be-429b-bfdb-36126f2e38f1" + "62a78a21-27ba-40c0-84cf-3e1de967e339" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -131,19 +121,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "2988cfd2-880a-4ac2-8fd1-f93cfc22c92a" + "899959cd-fa3d-4a9c-9c22-4d8088610512" ], "x-ms-routing-request-id": [ - "WESTUS:20220121T012650Z:2988cfd2-880a-4ac2-8fd1-f93cfc22c92a" + "SOUTHCENTRALUS:20220311T001719Z:899959cd-fa3d-4a9c-9c22-4d8088610512" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 21 Jan 2022 01:26:49 GMT" + "Fri, 11 Mar 2022 00:17:19 GMT" ], "Content-Length": [ - "508" + "507" ], "Content-Type": [ "application/json; charset=utf-8" @@ -152,26 +142,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery7245\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3643/providers/Microsoft.Compute/galleries/galleryPsTestGallery7245\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY7245\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8016\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg348/providers/Microsoft.Compute/galleries/galleryPsTestGallery8016\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY8016\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3643/providers/Microsoft.Compute/galleries/galleryPsTestGallery7245?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTcyNDU/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg348/providers/Microsoft.Compute/galleries/galleryPsTestGallery8016?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODAxNj9hcGktdmVyc2lvbj0yMDIyLTAxLTAz", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is an updated description\"\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c217e4e8-a19e-41fe-af78-af62ce843354" + "51bbeb81-5ba0-4a40-bd6c-52314c46d083" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -184,30 +174,23 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 24 Dec 2021 12:55:27 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/eastus2/capsOperations/f7af2000-46ee-4bdd-bdb2-3dd4762c9a24?api-version=2021-10-01" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/7c513601-4efa-4d2e-ac84-1f5696950e5d?api-version=2022-01-03" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateUpdateGallery3Min;48,Microsoft.Compute/CreateUpdateGallery30Min;298" + "Microsoft.Compute/CreateUpdateGallery3Min;48,Microsoft.Compute/CreateUpdateGallery30Min;296" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264,1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264" + "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" ], "x-ms-request-id": [ - "f7af2000-46ee-4bdd-bdb2-3dd4762c9a24" + "7c513601-4efa-4d2e-ac84-1f5696950e5d" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -217,19 +200,19 @@ "1198" ], "x-ms-correlation-request-id": [ - "63b150a6-5689-4643-b4c9-848f4c53556f" + "7d1d5a52-a00e-48ee-b22c-f286f1ceafca" ], "x-ms-routing-request-id": [ - "WESTUS:20220121T012720Z:63b150a6-5689-4643-b4c9-848f4c53556f" + "SOUTHCENTRALUS:20220311T001750Z:7d1d5a52-a00e-48ee-b22c-f286f1ceafca" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 21 Jan 2022 01:27:20 GMT" + "Fri, 11 Mar 2022 00:17:49 GMT" ], "Content-Length": [ - "503" + "502" ], "Content-Type": [ "application/json; charset=utf-8" @@ -238,47 +221,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery7245\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3643/providers/Microsoft.Compute/galleries/galleryPsTestGallery7245\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY7245\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8016\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg348/providers/Microsoft.Compute/galleries/galleryPsTestGallery8016\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY8016\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/93a39921-f9be-429b-bfdb-36126f2e38f1?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy85M2EzOTkyMS1mOWJlLTQyOWItYmZkYi0zNjEyNmYyZTM4ZjE/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/62a78a21-27ba-40c0-84cf-3e1de967e339?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy82MmE3OGEyMS0yN2JhLTQwYzAtODRjZi0zZTFkZTk2N2UzMzk/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 24 Dec 2021 12:55:27 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4198" + "Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4160" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264,1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264" + "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" ], "x-ms-request-id": [ - "11ea16f3-5979-420e-b0b6-aa13df8e2e3a" + "b79dfbbe-89ec-4c1c-8fae-a613b557d2f2" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -288,16 +264,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "72d5e0da-453b-486e-a8f0-37961502a223" + "0c698c3e-36b4-441f-9dda-4769a5067105" ], "x-ms-routing-request-id": [ - "WESTUS:20220121T012720Z:72d5e0da-453b-486e-a8f0-37961502a223" + "SOUTHCENTRALUS:20220311T001750Z:0c698c3e-36b4-441f-9dda-4769a5067105" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 21 Jan 2022 01:27:19 GMT" + "Fri, 11 Mar 2022 00:17:49 GMT" ], "Content-Length": [ "184" @@ -309,47 +285,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-01-20T17:26:49.4864686-08:00\",\r\n \"endTime\": \"2022-01-20T17:26:49.7051918-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"93a39921-f9be-429b-bfdb-36126f2e38f1\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-03-10T18:17:19.5188206-06:00\",\r\n \"endTime\": \"2022-03-10T18:17:19.7219278-06:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"62a78a21-27ba-40c0-84cf-3e1de967e339\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3643/providers/Microsoft.Compute/galleries/galleryPsTestGallery7245?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTcyNDU/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg348/providers/Microsoft.Compute/galleries/galleryPsTestGallery8016?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODAxNj9hcGktdmVyc2lvbj0yMDIyLTAxLTAz", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 24 Dec 2021 12:55:27 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2496" + "Microsoft.Compute/GetGallery3Min;343,Microsoft.Compute/GetGallery30Min;2446" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264,1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264" + "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" ], "x-ms-request-id": [ - "2a129a70-3007-40bb-be8a-167ee06d4b03" + "ea2132a9-4c4f-4116-b60c-f306ebe86d72" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -359,19 +328,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "d1a44d3e-ced5-45b8-807b-4f72ebb51183" + "22eb03a6-8624-4b4a-b3f0-e22d13d14d67" ], "x-ms-routing-request-id": [ - "WESTUS:20220121T012720Z:d1a44d3e-ced5-45b8-807b-4f72ebb51183" + "SOUTHCENTRALUS:20220311T001750Z:22eb03a6-8624-4b4a-b3f0-e22d13d14d67" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 21 Jan 2022 01:27:19 GMT" + "Fri, 11 Mar 2022 00:17:49 GMT" ], "Content-Length": [ - "509" + "508" ], "Content-Type": [ "application/json; charset=utf-8" @@ -380,53 +349,46 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery7245\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3643/providers/Microsoft.Compute/galleries/galleryPsTestGallery7245\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY7245\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8016\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg348/providers/Microsoft.Compute/galleries/galleryPsTestGallery8016\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY8016\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3643/providers/Microsoft.Compute/galleries/galleryPsTestGallery7245?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTcyNDU/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg348/providers/Microsoft.Compute/galleries/galleryPsTestGallery8016?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODAxNj9hcGktdmVyc2lvbj0yMDIyLTAxLTAz", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "28a8e53b-3a9a-4f0a-b333-77ee487364d5" + "794928fe-38ba-488f-aaaa-9047617494b1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 24 Dec 2021 12:55:27 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;345,Microsoft.Compute/GetGallery30Min;2495" + "Microsoft.Compute/GetGallery3Min;342,Microsoft.Compute/GetGallery30Min;2445" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264,1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264" + "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" ], "x-ms-request-id": [ - "1fe20eee-63e9-49cc-a6a8-17bbcab3b6bd" + "5b118ee3-08ed-46de-a5da-636f7690057b" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -436,19 +398,19 @@ "11997" ], "x-ms-correlation-request-id": [ - "50815b8f-f34f-4177-bff5-f8ea8debde09" + "5707d051-3092-4d80-8040-e78d169386d0" ], "x-ms-routing-request-id": [ - "WESTUS:20220121T012720Z:50815b8f-f34f-4177-bff5-f8ea8debde09" + "SOUTHCENTRALUS:20220311T001750Z:5707d051-3092-4d80-8040-e78d169386d0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 21 Jan 2022 01:27:19 GMT" + "Fri, 11 Mar 2022 00:17:49 GMT" ], "Content-Length": [ - "509" + "508" ], "Content-Type": [ "application/json; charset=utf-8" @@ -457,47 +419,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery7245\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3643/providers/Microsoft.Compute/galleries/galleryPsTestGallery7245\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY7245\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8016\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg348/providers/Microsoft.Compute/galleries/galleryPsTestGallery8016\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY8016\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3643/providers/Microsoft.Compute/galleries/galleryPsTestGallery7245?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTcyNDU/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg348/providers/Microsoft.Compute/galleries/galleryPsTestGallery8016?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODAxNj9hcGktdmVyc2lvbj0yMDIyLTAxLTAz", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 24 Dec 2021 12:55:27 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;344,Microsoft.Compute/GetGallery30Min;2494" + "Microsoft.Compute/GetGallery3Min;341,Microsoft.Compute/GetGallery30Min;2444" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264,1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264" + "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" ], "x-ms-request-id": [ - "8fd3e428-3d46-415b-8f5a-2c5743984f26" + "3dcfe128-0b19-484b-8dbd-56c7dd3c14fb" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -507,19 +462,19 @@ "11996" ], "x-ms-correlation-request-id": [ - "fb7cafcd-7644-4b7c-a832-02d49dc4c56d" + "94a03c73-2fed-4ffd-916b-6c7336570bc7" ], "x-ms-routing-request-id": [ - "WESTUS:20220121T012720Z:fb7cafcd-7644-4b7c-a832-02d49dc4c56d" + "SOUTHCENTRALUS:20220311T001750Z:94a03c73-2fed-4ffd-916b-6c7336570bc7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 21 Jan 2022 01:27:20 GMT" + "Fri, 11 Mar 2022 00:17:50 GMT" ], "Content-Length": [ - "503" + "502" ], "Content-Type": [ "application/json; charset=utf-8" @@ -528,53 +483,46 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery7245\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3643/providers/Microsoft.Compute/galleries/galleryPsTestGallery7245\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY7245\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8016\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg348/providers/Microsoft.Compute/galleries/galleryPsTestGallery8016\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY8016\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3643/providers/Microsoft.Compute/galleries/galleryPsTestGallery7245?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTcyNDU/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg348/providers/Microsoft.Compute/galleries/galleryPsTestGallery8016?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODAxNj9hcGktdmVyc2lvbj0yMDIyLTAxLTAz", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "89b450ef-a954-49d8-b2c2-7e023d0d5b63" + "5502bb0f-cba6-43e8-9cac-4945f46c9c9f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 24 Dec 2021 12:55:27 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;343,Microsoft.Compute/GetGallery30Min;2493" + "Microsoft.Compute/GetGallery3Min;339,Microsoft.Compute/GetGallery30Min;2442" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264,1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264" + "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" ], "x-ms-request-id": [ - "273b35f1-ffd7-4ab2-ad27-67e597132f32" + "e48fca56-c9ce-4837-a3aa-e28c71f24fbf" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -584,19 +532,19 @@ "11995" ], "x-ms-correlation-request-id": [ - "0cd15e9a-0c59-476b-9750-02f7f9d7e649" + "bc043028-2695-4c7c-bba3-ee191b1bc5fc" ], "x-ms-routing-request-id": [ - "WESTUS:20220121T012720Z:0cd15e9a-0c59-476b-9750-02f7f9d7e649" + "SOUTHCENTRALUS:20220311T001750Z:bc043028-2695-4c7c-bba3-ee191b1bc5fc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 21 Jan 2022 01:27:20 GMT" + "Fri, 11 Mar 2022 00:17:50 GMT" ], "Content-Length": [ - "503" + "502" ], "Content-Type": [ "application/json; charset=utf-8" @@ -605,25 +553,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery7245\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3643/providers/Microsoft.Compute/galleries/galleryPsTestGallery7245\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY7245\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8016\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg348/providers/Microsoft.Compute/galleries/galleryPsTestGallery8016\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY8016\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg3643New?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NDNOZXc/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/galleryPsTestRg348New?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0OE5ldz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c8d0ead0-e062-490a-8923-c144dd338fe1" + "993aec59-9e98-44ad-b5c7-f627ee797a9d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", + "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ @@ -637,9 +585,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 24 Dec 2021 12:55:28 GMT" - ], "Pragma": [ "no-cache" ], @@ -647,13 +592,13 @@ "1198" ], "x-ms-request-id": [ - "de317de7-1ba9-45ab-86a3-98df96c5585b" + "fc08adc4-dc7a-42f7-b236-765ed3228c04" ], "x-ms-correlation-request-id": [ - "de317de7-1ba9-45ab-86a3-98df96c5585b" + "fc08adc4-dc7a-42f7-b236-765ed3228c04" ], "x-ms-routing-request-id": [ - "WESTUS:20220121T012721Z:de317de7-1ba9-45ab-86a3-98df96c5585b" + "SOUTHCENTRALUS:20220311T001751Z:fc08adc4-dc7a-42f7-b236-765ed3228c04" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -662,10 +607,10 @@ "nosniff" ], "Date": [ - "Fri, 21 Jan 2022 01:27:20 GMT" + "Fri, 11 Mar 2022 00:17:51 GMT" ], "Content-Length": [ - "198" + "196" ], "Content-Type": [ "application/json; charset=utf-8" @@ -674,26 +619,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3643New\",\r\n \"name\": \"galleryPsTestRg3643New\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg348New\",\r\n \"name\": \"galleryPsTestRg348New\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3643New/providers/Microsoft.Compute/galleries/galleryPsTestGallery7245New?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NDNOZXcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTcyNDVOZXc/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg348New/providers/Microsoft.Compute/galleries/galleryPsTestGallery8016New?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0OE5ldy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODAxNk5ldz9hcGktdmVyc2lvbj0yMDIyLTAxLTAz", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is an updated description\"\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fa06ba3a-df83-4a36-b0e3-50e6ab5e844e" + "e3bd4122-0a87-4475-97a1-53a2ef8e0722" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -706,30 +651,23 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 24 Dec 2021 12:55:37 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/eastus2/capsOperations/06d4fa51-ae16-4a54-b3d6-19cde3e87809?api-version=2021-10-01" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/13fa2e75-c155-4344-a02f-3d492665e0ea?api-version=2022-01-03" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateUpdateGallery3Min;47,Microsoft.Compute/CreateUpdateGallery30Min;297" + "Microsoft.Compute/CreateUpdateGallery3Min;47,Microsoft.Compute/CreateUpdateGallery30Min;295" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264,1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264" + "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" ], "x-ms-request-id": [ - "06d4fa51-ae16-4a54-b3d6-19cde3e87809" + "13fa2e75-c155-4344-a02f-3d492665e0ea" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -739,19 +677,19 @@ "1197" ], "x-ms-correlation-request-id": [ - "344a9c8c-cb4a-4571-9eb3-d5fb9ef0c8b4" + "64606a46-f237-43e6-a84f-34625f2452d0" ], "x-ms-routing-request-id": [ - "WESTUS:20220121T012733Z:344a9c8c-cb4a-4571-9eb3-d5fb9ef0c8b4" + "SOUTHCENTRALUS:20220311T001802Z:64606a46-f237-43e6-a84f-34625f2452d0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 21 Jan 2022 01:27:32 GMT" + "Fri, 11 Mar 2022 00:18:01 GMT" ], "Content-Length": [ - "514" + "513" ], "Content-Type": [ "application/json; charset=utf-8" @@ -760,47 +698,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery7245New\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3643New/providers/Microsoft.Compute/galleries/galleryPsTestGallery7245New\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY7245NEW\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8016New\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg348New/providers/Microsoft.Compute/galleries/galleryPsTestGallery8016New\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY8016NEW\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/06d4fa51-ae16-4a54-b3d6-19cde3e87809?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wNmQ0ZmE1MS1hZTE2LTRhNTQtYjNkNi0xOWNkZTNlODc4MDk/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/13fa2e75-c155-4344-a02f-3d492665e0ea?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8xM2ZhMmU3NS1jMTU1LTQzNDQtYTAyZi0zZDQ5MjY2NWUwZWE/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 24 Dec 2021 12:56:07 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4196" + "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4157" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264,1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264" + "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" ], "x-ms-request-id": [ - "4072f53c-ac54-430e-9a72-92e23564df7e" + "59510f19-6ce6-43d8-aec3-2f691b38eadd" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -810,16 +741,16 @@ "11994" ], "x-ms-correlation-request-id": [ - "a3e37baf-2813-4884-9932-f07f453a5b19" + "8067a661-71f6-472e-9fd6-39fd97857ea8" ], "x-ms-routing-request-id": [ - "WESTUS:20220121T012803Z:a3e37baf-2813-4884-9932-f07f453a5b19" + "SOUTHCENTRALUS:20220311T001832Z:8067a661-71f6-472e-9fd6-39fd97857ea8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 21 Jan 2022 01:28:02 GMT" + "Fri, 11 Mar 2022 00:18:31 GMT" ], "Content-Length": [ "184" @@ -831,47 +762,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-01-20T17:27:32.5035135-08:00\",\r\n \"endTime\": \"2022-01-20T17:27:32.5973113-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"06d4fa51-ae16-4a54-b3d6-19cde3e87809\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-03-10T18:18:01.9886761-06:00\",\r\n \"endTime\": \"2022-03-10T18:18:02.0824154-06:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"13fa2e75-c155-4344-a02f-3d492665e0ea\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3643New/providers/Microsoft.Compute/galleries/galleryPsTestGallery7245New?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NDNOZXcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTcyNDVOZXc/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg348New/providers/Microsoft.Compute/galleries/galleryPsTestGallery8016New?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0OE5ldy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODAxNk5ldz9hcGktdmVyc2lvbj0yMDIyLTAxLTAz", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 24 Dec 2021 12:56:07 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;336,Microsoft.Compute/GetGallery30Min;2486" + "Microsoft.Compute/GetGallery3Min;335,Microsoft.Compute/GetGallery30Min;2436" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264,1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264" + "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" ], "x-ms-request-id": [ - "c9120874-168a-4dd2-9e14-8aff7b5b01b4" + "46c89306-e1ec-4626-9007-d5b29b15296e" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -881,19 +805,19 @@ "11993" ], "x-ms-correlation-request-id": [ - "93a84e39-c86b-4f7a-b62d-014df0c383ff" + "ee3f81b4-19fb-4a05-93a2-98522a5cc6b5" ], "x-ms-routing-request-id": [ - "WESTUS:20220121T012803Z:93a84e39-c86b-4f7a-b62d-014df0c383ff" + "SOUTHCENTRALUS:20220311T001832Z:ee3f81b4-19fb-4a05-93a2-98522a5cc6b5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 21 Jan 2022 01:28:02 GMT" + "Fri, 11 Mar 2022 00:18:31 GMT" ], "Content-Length": [ - "515" + "514" ], "Content-Type": [ "application/json; charset=utf-8" @@ -902,42 +826,35 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery7245New\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3643New/providers/Microsoft.Compute/galleries/galleryPsTestGallery7245New\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY7245NEW\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8016New\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg348New/providers/Microsoft.Compute/galleries/galleryPsTestGallery8016New\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY8016NEW\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3643/providers/Microsoft.Compute/galleries?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg348/providers/Microsoft.Compute/galleries?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aafb44c1-7d35-4296-81f0-6d7ce65e006c" + "4bf3df31-66ff-4d0c-88f1-690361d000c3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 24 Dec 2021 12:56:07 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/ListGalleryInResourceGroup3Min;99,Microsoft.Compute/ListGalleryInResourceGroup30Min;999" ], @@ -945,10 +862,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264,1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264" + "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" ], "x-ms-request-id": [ - "ebde6700-875b-4173-b79e-ca2d3321d257" + "7a276b45-4f0d-4502-ab1a-7d8c812934d4" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -958,19 +875,19 @@ "11992" ], "x-ms-correlation-request-id": [ - "6d3c2c48-f4f0-45d2-9519-eb098e03b267" + "e0a3798d-23da-44c4-bde4-9f2ae839993b" ], "x-ms-routing-request-id": [ - "WESTUS:20220121T012803Z:6d3c2c48-f4f0-45d2-9519-eb098e03b267" + "SOUTHCENTRALUS:20220311T001833Z:e0a3798d-23da-44c4-bde4-9f2ae839993b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 21 Jan 2022 01:28:02 GMT" + "Fri, 11 Mar 2022 00:18:32 GMT" ], "Content-Length": [ - "580" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -979,35 +896,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"galleryPsTestGallery7245\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG3643/providers/Microsoft.Compute/galleries/galleryPsTestGallery7245\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY7245\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"galleryPsTestGallery8016\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/GALLERYPSTESTRG348/providers/Microsoft.Compute/galleries/galleryPsTestGallery8016\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY8016\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3643/providers/Microsoft.Compute/galleries?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg348/providers/Microsoft.Compute/galleries?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6c4844b5-b02e-4efc-a967-acad64115be3" + "e07abe94-6b6a-410c-a83b-ef5af2ec823e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 24 Dec 2021 12:57:09 GMT" - ], "Pragma": [ "no-cache" ], @@ -1015,13 +929,13 @@ "11986" ], "x-ms-request-id": [ - "839d0129-d981-4083-9a0b-0bcb2ae6221a" + "6708f431-c97a-4ad0-8c3c-ebe8679e8322" ], "x-ms-correlation-request-id": [ - "839d0129-d981-4083-9a0b-0bcb2ae6221a" + "6708f431-c97a-4ad0-8c3c-ebe8679e8322" ], "x-ms-routing-request-id": [ - "WESTUS:20220121T012905Z:839d0129-d981-4083-9a0b-0bcb2ae6221a" + "SOUTHCENTRALUS:20220311T001935Z:6708f431-c97a-4ad0-8c3c-ebe8679e8322" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1030,77 +944,62 @@ "nosniff" ], "Date": [ - "Fri, 21 Jan 2022 01:29:05 GMT" + "Fri, 11 Mar 2022 00:19:34 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "12" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/galleries?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9nYWxsZXJpZXM/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/galleries?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9nYWxsZXJpZXM/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "af3b8ebf-bb36-48db-887f-73491dd231af" + "8fe1a689-625c-44bd-b1d2-165c8091e289" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 24 Dec 2021 12:56:08 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "5df2651c-aaab-47f2-9720-5772b2a132aa", - "6d28c437-fd82-42c3-b7c0-5d52a0e6ec93", - "bce2cb1d-ca3a-4a88-9837-8ef92db70dce", - "40152814-5061-414a-b4f7-df2ed9d5d0cf", - "cdfd77b4-e354-470f-84aa-4fd347d7baae", - "8b7cc932-1b70-4b29-a00f-733d97ce8f8c", - "b694ad1b-f7ea-4c20-a6f6-ed82b102be1c", - "2c4b9956-fdc7-4d50-ac5d-09517e49aa5b", - "550d7788-33bd-4414-9c25-4607cd7be940", - "8623b986-78c3-4c0d-86a3-e6c39821dd62", - "bb7c4bb8-1901-4eaf-a5d3-468f38aa40fd", - "72b07c33-9bde-46d7-9684-33d45a9aeeb0", - "1b0fb81e-d876-4d74-8d2a-755a1cdde674", - "c7446cc6-f3fc-44ac-9ded-a7ce71c3f4e0", - "7b69b1af-702d-4ce7-b952-166fbecad6bb", - "6162f6c4-245d-47c4-be8f-88d264754517", - "ae079561-5514-41cc-9701-b16cce68e180" + "8850c441-8987-4672-9687-7bea4cc46b87", + "a713e8ac-c9a5-4a64-9d41-ded62ded8d97" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], "x-ms-request-id": [ - "2e160780-d4c1-4a62-a03f-33b7f2530a73" + "4dacf6e0-b9bc-4fe8-919c-a9375c6e6584" ], "x-ms-correlation-request-id": [ - "2e160780-d4c1-4a62-a03f-33b7f2530a73" + "4dacf6e0-b9bc-4fe8-919c-a9375c6e6584" ], "x-ms-routing-request-id": [ - "WESTUS:20220121T012804Z:2e160780-d4c1-4a62-a03f-33b7f2530a73" + "SOUTHCENTRALUS:20220311T001833Z:4dacf6e0-b9bc-4fe8-919c-a9375c6e6584" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1109,7 +1008,7 @@ "nosniff" ], "Date": [ - "Fri, 21 Jan 2022 01:28:03 GMT" + "Fri, 11 Mar 2022 00:18:32 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1118,58 +1017,55 @@ "-1" ], "Content-Length": [ - "50922" + "3691" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"gallerykrwovetyskkj\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-1-20-2022-PRODWESTCENTRALUS/providers/Microsoft.Compute/galleries/gallerykrwovetyskkj\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYKRWOVETYSKKJ\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerykzsjzqdjebdg\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-1-20-2022-PRODWESTCENTRALUS/providers/Microsoft.Compute/galleries/gallerykzsjzqdjebdg\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYKZSJZQDJEBDG\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerymnmlrjintkgp\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-1-20-2022-PRODWESTCENTRALUS/providers/Microsoft.Compute/galleries/gallerymnmlrjintkgp\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYMNMLRJINTKGP\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"jerchgallery\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/JERCHTEST/providers/Microsoft.Compute/galleries/jerchgallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-JERCHGALLERY\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Community\",\r\n \"communityGalleryInfo\": {\r\n \"communityGalleryEnabled\": false,\r\n \"publisherUri\": \"www.jerry.com\",\r\n \"publisherContact\": \"jerry@jerry.com\",\r\n \"eula\": \"jerryeula\",\r\n \"publicNames\": [\r\n \"jerryprefix-c9c47214-35f8-4746-bf7a-9533bc7f6b87\"\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"softDeletePolicy\": {\r\n \"isSoftDeleteEnabled\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"longlivedgalwcus\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYWCUS/providers/Microsoft.Compute/galleries/longlivedgalwcus\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEDGALWCUS\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"softDeletePolicy\": {\r\n \"isSoftDeleteEnabled\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"newgal\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYSCUS/providers/Microsoft.Compute/galleries/newgal\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-NEWGAL\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"longlivedcommunitygal\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYWCUS/providers/Microsoft.Compute/galleries/longlivedcommunitygal\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEDCOMMUNITYGAL\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Community\",\r\n \"communityGalleryInfo\": {\r\n \"communityGalleryEnabled\": true,\r\n \"publisherUri\": \"sig.microsoft.com\",\r\n \"publisherContact\": \"sig@microsoft.com\",\r\n \"eula\": \"https:sig.com/licensingagreement\",\r\n \"publicNames\": [\r\n \"sigcrpbvt-d27c1111-7783-4305-9e54-5935ef039018\"\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"softDeletePolicy\": {\r\n \"isSoftDeleteEnabled\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery1396\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG1344/providers/Microsoft.Compute/galleries/galleryPsTestGallery1396\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY1396\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery2393\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG1498/providers/Microsoft.Compute/galleries/galleryPsTestGallery2393\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY2393\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery7245\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG3643/providers/Microsoft.Compute/galleries/galleryPsTestGallery7245\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY7245\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery7245New\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG3643NEW/providers/Microsoft.Compute/galleries/galleryPsTestGallery7245New\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY7245NEW\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery1060\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG4931/providers/Microsoft.Compute/galleries/galleryPsTestGallery1060\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY1060\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery4214\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG5385/providers/Microsoft.Compute/galleries/galleryPsTestGallery4214\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY4214\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery8723\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG5403/providers/Microsoft.Compute/galleries/galleryPsTestGallery8723\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8723\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery2382\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG5631/providers/Microsoft.Compute/galleries/galleryPsTestGallery2382\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY2382\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"softDeletePolicy\": {\r\n \"isSoftDeleteEnabled\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery8237\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG5644/providers/Microsoft.Compute/galleries/galleryPsTestGallery8237\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8237\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"softDeletePolicy\": {\r\n \"isSoftDeleteEnabled\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery1543\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG6193/providers/Microsoft.Compute/galleries/galleryPsTestGallery1543\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY1543\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"softDeletePolicy\": {\r\n \"isSoftDeleteEnabled\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery6594\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG6583/providers/Microsoft.Compute/galleries/galleryPsTestGallery6594\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY6594\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery1139\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG8162/providers/Microsoft.Compute/galleries/galleryPsTestGallery1139\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY1139\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery9002\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG861/providers/Microsoft.Compute/galleries/galleryPsTestGallery9002\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY9002\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery6950\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG8671/providers/Microsoft.Compute/galleries/galleryPsTestGallery6950\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY6950\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"softDeletePolicy\": {\r\n \"isSoftDeleteEnabled\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery5754\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG9127/providers/Microsoft.Compute/galleries/galleryPsTestGallery5754\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY5754\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery2082\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG955/providers/Microsoft.Compute/galleries/galleryPsTestGallery2082\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY2082\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery8748\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG9611/providers/Microsoft.Compute/galleries/galleryPsTestGallery8748\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8748\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery7697\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG9701/providers/Microsoft.Compute/galleries/galleryPsTestGallery7697\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY7697\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"softDeletePolicy\": {\r\n \"isSoftDeleteEnabled\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery5452\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG2221/providers/Microsoft.Compute/galleries/galleryPsTestGallery5452\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY5452\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery2813\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG2383/providers/Microsoft.Compute/galleries/galleryPsTestGallery2813\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY2813\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery1535\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG2561/providers/Microsoft.Compute/galleries/galleryPsTestGallery1535\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY1535\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery2290\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG3320/providers/Microsoft.Compute/galleries/galleryPsTestGallery2290\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY2290\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery7072\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG3950/providers/Microsoft.Compute/galleries/galleryPsTestGallery7072\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY7072\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery6097\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG5384/providers/Microsoft.Compute/galleries/galleryPsTestGallery6097\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY6097\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery6736\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG5735/providers/Microsoft.Compute/galleries/galleryPsTestGallery6736\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY6736\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery2697\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG5937/providers/Microsoft.Compute/galleries/galleryPsTestGallery2697\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY2697\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery4873\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG7379/providers/Microsoft.Compute/galleries/galleryPsTestGallery4873\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY4873\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery5395\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG7539/providers/Microsoft.Compute/galleries/galleryPsTestGallery5395\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY5395\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery9652\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG768/providers/Microsoft.Compute/galleries/galleryPsTestGallery9652\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY9652\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery4074\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG7763/providers/Microsoft.Compute/galleries/galleryPsTestGallery4074\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY4074\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery8638\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG7993/providers/Microsoft.Compute/galleries/galleryPsTestGallery8638\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8638\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery9035\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG8001/providers/Microsoft.Compute/galleries/galleryPsTestGallery9035\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY9035\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery5554\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG8037/providers/Microsoft.Compute/galleries/galleryPsTestGallery5554\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY5554\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery8307\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG8405/providers/Microsoft.Compute/galleries/galleryPsTestGallery8307\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8307\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery9682\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG8649/providers/Microsoft.Compute/galleries/galleryPsTestGallery9682\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY9682\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery8732\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG9198/providers/Microsoft.Compute/galleries/galleryPsTestGallery8732\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8732\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery3722\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG9909/providers/Microsoft.Compute/galleries/galleryPsTestGallery3722\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY3722\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery7310\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG9915/providers/Microsoft.Compute/galleries/galleryPsTestGallery7310\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY7310\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"jerchprivategallery\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/JERCHTEST/providers/Microsoft.Compute/galleries/jerchprivategallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-JERCHPRIVATEGALLERY\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Private\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"softDeletePolicy\": {\r\n \"isSoftDeleteEnabled\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"sigtiptest\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYWESTUS/providers/Microsoft.Compute/galleries/sigtiptest\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-SIGTIPTEST\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"sig_test_aus\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/SIG_TEST/providers/Microsoft.Compute/galleries/sig_test_aus\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-SIG_TEST_AUS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"myGalleryHaHa20191004\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/TEMPRG2/providers/Microsoft.Compute/galleries/myGalleryHaHa20191004\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"description\": \"This is the gallery description.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-MYGALLERYHAHA20191004\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"diskrptestd7ambf84xi\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/DISKRPTESTWIRXA/providers/Microsoft.Compute/galleries/diskrptestd7ambf84xi\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-DISKRPTESTD7AMBF84XI\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"DiskLonglivedGallerycanadacentral\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDSIGDISKRGINCANADACENTRAL/providers/Microsoft.Compute/galleries/DiskLonglivedGallerycanadacentral\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-DISKLONGLIVEDGALLERYCANADACENTRAL\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"disklonglivedgalleryIncanadacentral\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGRUNNINGRG-CANADACENTRAL/providers/Microsoft.Compute/galleries/disklonglivedgalleryIncanadacentral\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-DISKLONGLIVEDGALLERYINCANADACENTRAL\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"softDeletePolicy\": {\r\n \"isSoftDeleteEnabled\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"disklonglivedgalleryInukwest\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGRUNNINGRG-UKWEST/providers/Microsoft.Compute/galleries/disklonglivedgalleryInukwest\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"ukwest\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-DISKLONGLIVEDGALLERYINUKWEST\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"softDeletePolicy\": {\r\n \"isSoftDeleteEnabled\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"gallerymsmeqjcqyhnb\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-1-20-2022-PRODWESTUS2/providers/Microsoft.Compute/galleries/gallerymsmeqjcqyhnb\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYMSMEQJCQYHNB\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryvohzdfzuspyj\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-1-20-2022-PRODWESTUS2/providers/Microsoft.Compute/galleries/galleryvohzdfzuspyj\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYVOHZDFZUSPYJ\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryghnaygwfybdc\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-24.11.2021-PRODWESTUS2/providers/Microsoft.Compute/galleries/galleryghnaygwfybdc\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYGHNAYGWFYBDC\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"softDeletePolicy\": {\r\n \"isSoftDeleteEnabled\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"longlivedgallery\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYAZURESUPPORTRG/providers/Microsoft.Compute/galleries/longlivedgallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus2\",\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 \"name\": \"diskrptest2afdd8mefdwjx\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/DISKRPTESTWWMQE/providers/Microsoft.Compute/galleries/diskrptest2afdd8mefdwjx\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-DISKRPTEST2AFDD8MEFDWJX\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"disklonglivedgalleryIncanadaeast\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGRUNNINGRG-CANADAEAST/providers/Microsoft.Compute/galleries/disklonglivedgalleryIncanadaeast\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-DISKLONGLIVEDGALLERYINCANADAEAST\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"softDeletePolicy\": {\r\n \"isSoftDeleteEnabled\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"longlivedcrpgallery\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LOGLIVEDGALLERYSOUTHINDIA/providers/Microsoft.Compute/galleries/longlivedcrpgallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southindia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"description\": \"shared to non-existent subscriptions and tenants\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEDCRPGALLERY\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"softDeletePolicy\": {\r\n \"isSoftDeleteEnabled\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"diskrptestlfi2pvwb\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/DISKRPTESTLDYOG/providers/Microsoft.Compute/galleries/diskrptestlfi2pvwb\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-DISKRPTESTLFI2PVWB\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"disklonglivedgalleryInaustraliasoutheast\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGRUNNINGRG-AUSTRALIASOUTHEAST/providers/Microsoft.Compute/galleries/disklonglivedgalleryInaustraliasoutheast\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-DISKLONGLIVEDGALLERYINAUSTRALIASOUTHEAST\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"softDeletePolicy\": {\r\n \"isSoftDeleteEnabled\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"BlobToSIGCrossRegion\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/TIREGAN/providers/Microsoft.Compute/galleries/BlobToSIGCrossRegion\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-BLOBTOSIGCROSSREGION\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"softDeletePolicy\": {\r\n \"isSoftDeleteEnabled\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"galleryiwcdzcdytyeq\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-1-20-2022-PRODUAECENTRAL/providers/Microsoft.Compute/galleries/galleryiwcdzcdytyeq\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"uaecentral\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYIWCDZCDYTYEQ\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Community\",\r\n \"communityGalleryInfo\": {\r\n \"communityGalleryEnabled\": false,\r\n \"publisherUri\": \"www.sigcapsbvt.com\",\r\n \"publisherContact\": \"sigcapsbvt@microsoft.com\",\r\n \"eula\": \"sigcapsbvteula\",\r\n \"publicNames\": [\r\n \"sigcapsbvt-c6358738-b53c-4090-b35d-2f36a33325af\"\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryknttvgxgqaui\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-1-20-2022-PRODUAECENTRAL/providers/Microsoft.Compute/galleries/galleryknttvgxgqaui\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"uaecentral\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYKNTTVGXGQAUI\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryomdqzrqsipza\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-1-20-2022-PRODUAECENTRAL/providers/Microsoft.Compute/galleries/galleryomdqzrqsipza\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"uaecentral\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYOMDQZRQSIPZA\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryzpufbvpxjbfk\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-1-20-2022-PRODUAECENTRAL/providers/Microsoft.Compute/galleries/galleryzpufbvpxjbfk\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"uaecentral\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYZPUFBVPXJBFK\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Community\",\r\n \"communityGalleryInfo\": {\r\n \"communityGalleryEnabled\": false,\r\n \"publisherUri\": \"BVTPublisherUri\",\r\n \"publisherContact\": \"PIR@microsoft.com\",\r\n \"eula\": \"BVTeula\",\r\n \"publicNames\": [\r\n \"PIRBVT-ed0e88ca-c419-47e7-a5ae-d42aa68c5bad\"\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryjqdethyiqazk\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-9-22-2020-PRODUAECENTRAL/providers/Microsoft.Compute/galleries/galleryjqdethyiqazk\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"uaecentral\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYJQDETHYIQAZK\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"Cg1\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/AZCLI/providers/Microsoft.Compute/galleries/Cg1\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-CG1\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Community\",\r\n \"communityGalleryInfo\": {\r\n \"communityGalleryEnabled\": false,\r\n \"publisherUri\": \"uri\",\r\n \"publisherContact\": \"kansun@microsoft.com\",\r\n \"eula\": \"eula\",\r\n \"publicNames\": [\r\n \"SigCommunity-14cd8b97-2d84-4081-babe-6990ed708e61\"\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"softDeletePolicy\": {\r\n \"isSoftDeleteEnabled\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"SoftDeleteGallery\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/AZCLI/providers/Microsoft.Compute/galleries/SoftDeleteGallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-SOFTDELETEGALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"softDeletePolicy\": {\r\n \"isSoftDeleteEnabled\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"SoftDeleteGallery2\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/AZCLI/providers/Microsoft.Compute/galleries/SoftDeleteGallery2\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-SOFTDELETEGALLERY2\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryghfxoibbxlfy\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-1-10-2022-PRODEASTUS2EUAP/providers/Microsoft.Compute/galleries/galleryghfxoibbxlfy\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYGHFXOIBBXLFY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryuisskuetnnka\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-1-10-2022-PRODEASTUS2EUAP/providers/Microsoft.Compute/galleries/galleryuisskuetnnka\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYUISSKUETNNKA\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryTest1\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CLITEST/providers/Microsoft.Compute/galleries/galleryTest1\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYTEST1\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery2975\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG3906/providers/Microsoft.Compute/galleries/galleryPsTestGallery2975\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\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 \"name\": \"galleryPsTestGallery8333\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG9881/providers/Microsoft.Compute/galleries/galleryPsTestGallery8333\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\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 \"name\": \"grlianTrustedLaunchGallery\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GRLIANRG/providers/Microsoft.Compute/galleries/grlianTrustedLaunchGallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"TrustedLaunch Gallery.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GRLIANTRUSTEDLAUNCHGALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"softDeletePolicy\": {\r\n \"isSoftDeleteEnabled\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"portaltvmtestgallery\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GRLIANRG/providers/Microsoft.Compute/galleries/portaltvmtestgallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"TrustedLaunch Gallery.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-PORTALTVMTESTGALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"tvmgalleryeastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GRLIANRG/providers/Microsoft.Compute/galleries/tvmgalleryeastus2euap\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"Gallery for TVM VMGS replication integration testing.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-TVMGALLERYEASTUS2EUAP\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"softDeletePolicy\": {\r\n \"isSoftDeleteEnabled\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"galleryajyfvrtonhir\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEAIB/providers/Microsoft.Compute/galleries/galleryajyfvrtonhir\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYAJYFVRTONHIR\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"softDeletePolicy\": {\r\n \"isSoftDeleteEnabled\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"galleryeunhuepslxcf\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERY/providers/Microsoft.Compute/galleries/galleryeunhuepslxcf\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYEUNHUEPSLXCF\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"softDeletePolicy\": {\r\n \"isSoftDeleteEnabled\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"galleryomllzohdanoi\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERY/providers/Microsoft.Compute/galleries/galleryomllzohdanoi\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYOMLLZOHDANOI\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Community\",\r\n \"communityGalleryInfo\": {\r\n \"communityGalleryEnabled\": true,\r\n \"publisherUri\": \"BVTPublisherUri\",\r\n \"publisherContact\": \"PIR@microsoft.com\",\r\n \"eula\": \"BVTeula\",\r\n \"publicNames\": [\r\n \"PIRBVT-be33c2b1-4a04-43e3-a151-1997fb3e8048\"\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"longlivedgal\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERY/providers/Microsoft.Compute/galleries/longlivedgal\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\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 \"name\": \"mygalleryForCrp97f7\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERY/providers/Microsoft.Compute/galleries/mygalleryForCrp97f7\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-MYGALLERYFORCRP97F7\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"mygalleryForCrpEastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERY/providers/Microsoft.Compute/galleries/mygalleryForCrpEastus2euap\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\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 \"name\": \"galleryrjsyocgtjsyo\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYCENTRALUSEUAP/providers/Microsoft.Compute/galleries/galleryrjsyocgtjsyo\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYRJSYOCGTJSYO\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Private\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"softDeletePolicy\": {\r\n \"isSoftDeleteEnabled\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"galleryururgbqlyndb\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYCENTRALUSEUAP/providers/Microsoft.Compute/galleries/galleryururgbqlyndb\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYURURGBQLYNDB\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Private\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"softDeletePolicy\": {\r\n \"isSoftDeleteEnabled\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"longlivedcommunitygallery\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYWCUS/providers/Microsoft.Compute/galleries/longlivedcommunitygallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEDCOMMUNITYGALLERY\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Community\",\r\n \"communityGalleryInfo\": {\r\n \"communityGalleryEnabled\": false,\r\n \"publisherUri\": \"sig.microsoft.com\",\r\n \"publisherContact\": \"sig@microsoft.com\",\r\n \"eula\": \"https:sig.com/licensingagreement\",\r\n \"publicNames\": [\r\n \"sigcrpbvt-fac85efa-b341-4587-893a-2bcd61b165b8\"\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"softDeletePolicy\": {\r\n \"isSoftDeleteEnabled\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"TVMTestGallery\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDTRUSTEDVMRG/providers/Microsoft.Compute/galleries/TVMTestGallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"TrustedVM gallery test in Canary.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-TVMTESTGALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"blobAsSourceGallery2\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVERGEASTUS2EUAP/providers/Microsoft.Compute/galleries/blobAsSourceGallery2\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-BLOBASSOURCEGALLERY2\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"softDeletePolicy\": {\r\n \"isSoftDeleteEnabled\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"gallery1euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/RGEUAP/providers/Microsoft.Compute/galleries/gallery1euap\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\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 \"name\": \"communitygallery\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/TEMPJERCH/providers/Microsoft.Compute/galleries/communitygallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-COMMUNITYGALLERY\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Community\",\r\n \"communityGalleryInfo\": {\r\n \"communityGalleryEnabled\": false,\r\n \"publisherUri\": \"jerry.com\",\r\n \"publisherContact\": \"jerry@microsoft.com\",\r\n \"eula\": \"https:jerry.com/licensingagreement\",\r\n \"publicNames\": [\r\n \"jerryprefix-8b936a64-0ab5-475f-aac7-4a64e11b0ca4\"\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"softDeletePolicy\": {\r\n \"isSoftDeleteEnabled\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"sharedgallery\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/TEMPJERCH/providers/Microsoft.Compute/galleries/sharedgallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-SHAREDGALLERY\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"softDeletePolicy\": {\r\n \"isSoftDeleteEnabled\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"grlianTestGalleryUniqueName\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GRLIANRG/providers/Microsoft.Compute/galleries/grlianTestGalleryUniqueName\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"description\": \"My Private Gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GRLIANTESTGALLERYUNIQUENAME\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"grlianTestGalleryUniqueNameT15\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GRLIANRG/providers/Microsoft.Compute/galleries/grlianTestGalleryUniqueNameT15\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"description\": \"My Private Gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GRLIANTESTGALLERYUNIQUENAMET15\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryhabbxuvvmxfk\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYCENTRALUSEUAP/providers/Microsoft.Compute/galleries/galleryhabbxuvvmxfk\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYHABBXUVVMXFK\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Community\",\r\n \"communityGalleryInfo\": {\r\n \"communityGalleryEnabled\": false,\r\n \"publisherUri\": \"BVTPublisherUri\",\r\n \"publisherContact\": \"PIR@microsoft.com\",\r\n \"eula\": \"BVTeula\",\r\n \"publicNames\": [\r\n \"PIRBVT-574135f2-d5fb-4554-9969-d586b5e6f9d3\"\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"softDeletePolicy\": {\r\n \"isSoftDeleteEnabled\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"galleryikfyrxotgunj\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYCENTRALUSEUAP/providers/Microsoft.Compute/galleries/galleryikfyrxotgunj\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYIKFYRXOTGUNJ\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Community\",\r\n \"communityGalleryInfo\": {\r\n \"communityGalleryEnabled\": true,\r\n \"publisherUri\": \"BVTPublisherUri\",\r\n \"publisherContact\": \"PIR@microsoft.com\",\r\n \"eula\": \"BVTeula\",\r\n \"publicNames\": [\r\n \"PIRBVT-6c64f11e-ad23-4737-a58a-4f3c85acadbf\"\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"softDeletePolicy\": {\r\n \"isSoftDeleteEnabled\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"galleryptgajqxwsiaq\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYCENTRALUSEUAP/providers/Microsoft.Compute/galleries/galleryptgajqxwsiaq\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPTGAJQXWSIAQ\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"softDeletePolicy\": {\r\n \"isSoftDeleteEnabled\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"longlivegalleryaieclugdxmkj\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYCENTRALUSEUAP/providers/Microsoft.Compute/galleries/longlivegalleryaieclugdxmkj\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYAIECLUGDXMKJ\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"softDeletePolicy\": {\r\n \"isSoftDeleteEnabled\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"longlivegallerybdpozhziodpi\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYCENTRALUSEUAP/providers/Microsoft.Compute/galleries/longlivegallerybdpozhziodpi\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYBDPOZHZIODPI\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"softDeletePolicy\": {\r\n \"isSoftDeleteEnabled\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"longlivegallerybdzacoodldwm\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYCENTRALUSEUAP/providers/Microsoft.Compute/galleries/longlivegallerybdzacoodldwm\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYBDZACOODLDWM\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"softDeletePolicy\": {\r\n \"isSoftDeleteEnabled\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"longlivegalleryfojnvv\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYCENTRALUSEUAP/providers/Microsoft.Compute/galleries/longlivegalleryfojnvv\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"longlivegalleryhqrkopuxbqbb\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYCENTRALUSEUAP/providers/Microsoft.Compute/galleries/longlivegalleryhqrkopuxbqbb\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYHQRKOPUXBQBB\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"softDeletePolicy\": {\r\n \"isSoftDeleteEnabled\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"longlivegalleryjrummdyrwubk\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYCENTRALUSEUAP/providers/Microsoft.Compute/galleries/longlivegalleryjrummdyrwubk\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYJRUMMDYRWUBK\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"softDeletePolicy\": {\r\n \"isSoftDeleteEnabled\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"longlivegallerymwblrilmsgqu\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYCENTRALUSEUAP/providers/Microsoft.Compute/galleries/longlivegallerymwblrilmsgqu\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYMWBLRILMSGQU\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"softDeletePolicy\": {\r\n \"isSoftDeleteEnabled\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"longlivegalleryypmgaxojplve\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYCENTRALUSEUAP/providers/Microsoft.Compute/galleries/longlivegalleryypmgaxojplve\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYYPMGAXOJPLVE\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"softDeletePolicy\": {\r\n \"isSoftDeleteEnabled\": false\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"canarydrillsig\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/SIGCANARYDRDRILL/providers/Microsoft.Compute/galleries/canarydrillsig\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-CANARYDRILLSIG\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"galleryPsTestGallery8118\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/GALLERYPSTESTRG2255/providers/Microsoft.Compute/galleries/galleryPsTestGallery8118\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY8118\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery8016\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/GALLERYPSTESTRG348/providers/Microsoft.Compute/galleries/galleryPsTestGallery8016\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY8016\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery8016New\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/GALLERYPSTESTRG348NEW/providers/Microsoft.Compute/galleries/galleryPsTestGallery8016New\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY8016NEW\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery3886\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/GALLERYPSTESTRG5065/providers/Microsoft.Compute/galleries/galleryPsTestGallery3886\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY3886\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery1300\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/GALLERYPSTESTRG8249/providers/Microsoft.Compute/galleries/galleryPsTestGallery1300\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY1300\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerysdktest\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/RGFORSDKTESTRESOURCES/providers/Microsoft.Compute/galleries/gallerysdktest\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYSDKTEST\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gal\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/THEO_TEMP/providers/Microsoft.Compute/galleries/gal\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GAL\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryName\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/THEO_TEMP/providers/Microsoft.Compute/galleries/galleryName\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYNAME\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"sigTemp\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/THEO_TEMP/providers/Microsoft.Compute/galleries/sigTemp\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-SIGTEMP\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"softDeletePolicy\": {\r\n \"isSoftDeleteEnabled\": false\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3643/providers/Microsoft.Compute/galleries/galleryPsTestGallery7245?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTcyNDU/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg348/providers/Microsoft.Compute/galleries/galleryPsTestGallery8016?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODAxNj9hcGktdmVyc2lvbj0yMDIyLTAxLTAz", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c469c8d-39bc-4728-88ab-6c90c62c2ff0" + "e855d27e-3201-4421-a606-222cee4540a5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 24 Dec 2021 12:56:08 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a22e6a7b-1313-4722-a8e8-9beaaaf74371?monitor=true&api-version=2021-10-01" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/a28e8c82-950f-47da-93b2-f9f619741214?monitor=true&api-version=2022-01-03" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a22e6a7b-1313-4722-a8e8-9beaaaf74371?api-version=2021-10-01" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/a28e8c82-950f-47da-93b2-f9f619741214?api-version=2022-01-03" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;899" + "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;298" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264,1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264" + "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" ], "x-ms-request-id": [ - "a22e6a7b-1313-4722-a8e8-9beaaaf74371" + "a28e8c82-950f-47da-93b2-f9f619741214" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1179,62 +1075,58 @@ "14999" ], "x-ms-correlation-request-id": [ - "eb110da7-787b-45bc-9f07-e616ead4bd11" + "5e29f5bb-3d93-4b30-87d3-82506320a546" ], "x-ms-routing-request-id": [ - "WESTUS:20220121T012804Z:eb110da7-787b-45bc-9f07-e616ead4bd11" + "SOUTHCENTRALUS:20220311T001833Z:5e29f5bb-3d93-4b30-87d3-82506320a546" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 21 Jan 2022 01:28:04 GMT" + "Fri, 11 Mar 2022 00:18:33 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a22e6a7b-1313-4722-a8e8-9beaaaf74371?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hMjJlNmE3Yi0xMzEzLTQ3MjItYThlOC05YmVhYWFmNzQzNzE/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/a28e8c82-950f-47da-93b2-f9f619741214?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hMjhlOGM4Mi05NTBmLTQ3ZGEtOTNiMi1mOWY2MTk3NDEyMTQ/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 24 Dec 2021 12:56:39 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4194" + "Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4154" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264,1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264" + "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" ], "x-ms-request-id": [ - "192012da-7885-4f8c-9b25-c11f1207c2e9" + "175b9d45-0bb1-43a2-9bab-6fbd30b5b693" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1244,19 +1136,19 @@ "11990" ], "x-ms-correlation-request-id": [ - "70dc1d22-cdcd-4411-8bf7-80ec7e64f8db" + "4018e581-53a7-4e97-87f7-d35fba6ea813" ], "x-ms-routing-request-id": [ - "WESTUS:20220121T012835Z:70dc1d22-cdcd-4411-8bf7-80ec7e64f8db" + "SOUTHCENTRALUS:20220311T001904Z:4018e581-53a7-4e97-87f7-d35fba6ea813" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 21 Jan 2022 01:28:34 GMT" + "Fri, 11 Mar 2022 00:19:03 GMT" ], "Content-Length": [ - "183" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1265,47 +1157,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-01-20T17:28:04.894793-08:00\",\r\n \"endTime\": \"2022-01-20T17:28:05.0041697-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a22e6a7b-1313-4722-a8e8-9beaaaf74371\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-03-10T18:18:33.9269689-06:00\",\r\n \"endTime\": \"2022-03-10T18:18:34.0363512-06:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a28e8c82-950f-47da-93b2-f9f619741214\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a22e6a7b-1313-4722-a8e8-9beaaaf74371?monitor=true&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hMjJlNmE3Yi0xMzEzLTQ3MjItYThlOC05YmVhYWFmNzQzNzE/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/a28e8c82-950f-47da-93b2-f9f619741214?monitor=true&api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hMjhlOGM4Mi05NTBmLTQ3ZGEtOTNiMi1mOWY2MTk3NDEyMTQ/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDEtMDM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 24 Dec 2021 12:56:39 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4193" + "Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4153" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264,1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264" + "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" ], "x-ms-request-id": [ - "e92a5288-9d33-4de5-ba3b-5e8939bde51d" + "315a1def-9f9c-49b9-a5de-f44b17bf0e12" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1315,70 +1200,70 @@ "11989" ], "x-ms-correlation-request-id": [ - "f2901edb-5d27-40d2-beb0-5e972d0c7d82" + "f0d48f86-edbc-42a4-be36-f9d2db5d0718" ], "x-ms-routing-request-id": [ - "WESTUS:20220121T012835Z:f2901edb-5d27-40d2-beb0-5e972d0c7d82" + "SOUTHCENTRALUS:20220311T001904Z:f0d48f86-edbc-42a4-be36-f9d2db5d0718" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 21 Jan 2022 01:28:35 GMT" + "Fri, 11 Mar 2022 00:19:03 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3643New/providers/Microsoft.Compute/galleries/galleryPsTestGallery7245New?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NDNOZXcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTcyNDVOZXc/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg348New/providers/Microsoft.Compute/galleries/galleryPsTestGallery8016New?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0OE5ldy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODAxNk5ldz9hcGktdmVyc2lvbj0yMDIyLTAxLTAz", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "539b1cab-4366-4144-86bd-e59ed41fd3a4" + "44c7dba2-3249-4050-be0e-886290964807" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 24 Dec 2021 12:56:39 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/92f55793-0044-464d-9243-0170a39da7a7?monitor=true&api-version=2021-10-01" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/a49863d5-7e06-4049-8b0d-fd725c048cc7?monitor=true&api-version=2022-01-03" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/92f55793-0044-464d-9243-0170a39da7a7?api-version=2021-10-01" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/a49863d5-7e06-4049-8b0d-fd725c048cc7?api-version=2022-01-03" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/DeleteGallery3Min;48,Microsoft.Compute/DeleteGallery30Min;898" + "Microsoft.Compute/DeleteGallery3Min;47,Microsoft.Compute/DeleteGallery30Min;296" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264,1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264" + "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" ], "x-ms-request-id": [ - "92f55793-0044-464d-9243-0170a39da7a7" + "a49863d5-7e06-4049-8b0d-fd725c048cc7" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1388,62 +1273,58 @@ "14998" ], "x-ms-correlation-request-id": [ - "a57d5cba-781d-4c56-8f26-9511d2a55527" + "91c63a2a-94cf-4e8c-a388-c989812f20eb" ], "x-ms-routing-request-id": [ - "WESTUS:20220121T012835Z:a57d5cba-781d-4c56-8f26-9511d2a55527" + "SOUTHCENTRALUS:20220311T001904Z:91c63a2a-94cf-4e8c-a388-c989812f20eb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 21 Jan 2022 01:28:35 GMT" + "Fri, 11 Mar 2022 00:19:03 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/92f55793-0044-464d-9243-0170a39da7a7?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy85MmY1NTc5My0wMDQ0LTQ2NGQtOTI0My0wMTcwYTM5ZGE3YTc/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/a49863d5-7e06-4049-8b0d-fd725c048cc7?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hNDk4NjNkNS03ZTA2LTQwNDktOGIwZC1mZDcyNWMwNDhjYzc/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 24 Dec 2021 12:57:09 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4191" + "Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4150" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264,1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264" + "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" ], "x-ms-request-id": [ - "a32f3067-dcc6-43ca-9aff-b56c74f6f84f" + "fe52487c-a328-4f94-88c7-33253403f539" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1453,16 +1334,16 @@ "11988" ], "x-ms-correlation-request-id": [ - "b707e198-7c53-41a1-a042-ab8cd5e6f8bb" + "59c546bd-9ec9-4ae8-b900-f8f1d6f804c7" ], "x-ms-routing-request-id": [ - "WESTUS:20220121T012905Z:b707e198-7c53-41a1-a042-ab8cd5e6f8bb" + "SOUTHCENTRALUS:20220311T001934Z:59c546bd-9ec9-4ae8-b900-f8f1d6f804c7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 21 Jan 2022 01:29:05 GMT" + "Fri, 11 Mar 2022 00:19:33 GMT" ], "Content-Length": [ "184" @@ -1474,47 +1355,40 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-01-20T17:28:35.5047694-08:00\",\r\n \"endTime\": \"2022-01-20T17:28:35.5985255-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"92f55793-0044-464d-9243-0170a39da7a7\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-03-10T18:19:04.5059223-06:00\",\r\n \"endTime\": \"2022-03-10T18:19:04.5996447-06:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a49863d5-7e06-4049-8b0d-fd725c048cc7\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/92f55793-0044-464d-9243-0170a39da7a7?monitor=true&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy85MmY1NTc5My0wMDQ0LTQ2NGQtOTI0My0wMTcwYTM5ZGE3YTc/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/a49863d5-7e06-4049-8b0d-fd725c048cc7?monitor=true&api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hNDk4NjNkNS03ZTA2LTQwNDktOGIwZC1mZDcyNWMwNDhjYzc/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDEtMDM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/50.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 24 Dec 2021 12:57:09 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4190" + "Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;4149" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264,1dd04696-ef54-4aec-bada-944b3b397491_132640733051794264" + "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287" ], "x-ms-request-id": [ - "ad4a5cd5-ec5d-41e8-b49f-ec7ba7cba96d" + "2c42d1b0-c592-48bc-90af-bcd3eebaae63" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1524,19 +1398,22 @@ "11987" ], "x-ms-correlation-request-id": [ - "1e89d708-0c24-4195-a6a1-a4effd99d49e" + "62efc915-d845-403a-b3c6-7a99cafbffa2" ], "x-ms-routing-request-id": [ - "WESTUS:20220121T012905Z:1e89d708-0c24-4195-a6a1-a4effd99d49e" + "SOUTHCENTRALUS:20220311T001934Z:62efc915-d845-403a-b3c6-7a99cafbffa2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 21 Jan 2022 01:29:05 GMT" + "Fri, 11 Mar 2022 00:19:34 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -1545,11 +1422,11 @@ ], "Names": { "Gallery_CRUD_Tests": [ - "galleryPsTestRg3643", - "galleryPsTestGallery7245" + "galleryPsTestRg348", + "galleryPsTestGallery8016" ] }, "Variables": { - "SubscriptionId": "97f78232-382b-46a7-8a72-964d692c4f3f" + "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871" } } \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_SharingToCommunity_CRUD_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_SharingToCommunity_CRUD_Tests.json index 25033d6ce27ab..c0650fcff6660 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_SharingToCommunity_CRUD_Tests.json +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_SharingToCommunity_CRUD_Tests.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/galleryPsTestRg2508?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1MDg/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg7660?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc2NjA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e630beab-e2d4-4073-bfb5-a21dd0a064ae" + "7027e503-ea8e-4e0e-aa65-53b48a81fd2e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "129da22a-1e37-4cb8-976c-e2a728fb659a" + "6f6ec2b6-accb-4d84-acd9-b7da6197af49" ], "x-ms-correlation-request-id": [ - "129da22a-1e37-4cb8-976c-e2a728fb659a" + "6f6ec2b6-accb-4d84-acd9-b7da6197af49" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220129T021515Z:129da22a-1e37-4cb8-976c-e2a728fb659a" + "WESTCENTRALUS:20220309T192824Z:6f6ec2b6-accb-4d84-acd9-b7da6197af49" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Sat, 29 Jan 2022 02:15:14 GMT" + "Wed, 09 Mar 2022 19:28:24 GMT" ], "Content-Length": [ "192" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg2508\",\r\n \"name\": \"galleryPsTestRg2508\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7660\",\r\n \"name\": \"galleryPsTestRg7660\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg2508/providers/Microsoft.Compute/galleries/galleryPsTestGallery6523?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTY1MjM/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7660/providers/Microsoft.Compute/galleries/galleryPsTestGallery6512?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc2NjAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTY1MTI/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"sharingProfile\": {\r\n \"permissions\": \"Community\",\r\n \"communityGalleryInfo\": {\r\n \"publisherUri\": \"PsTestUri\",\r\n \"publisherContact\": \"SIG@microsoft.com\",\r\n \"eula\": \"PsEual\",\r\n \"publicNamePrefix\": \"PsTestCg\"\r\n }\r\n }\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ed8cd6e9-9961-4821-88ee-17fcbcb8147f" + "5fb25d95-c087-4e2d-997c-55da819b8c64" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,7 +99,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/70ac7e28-2b6e-4c2f-b839-6c96ed60d099?api-version=2021-10-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/3e6e01f4-332a-4db8-afd0-f46bf60b40ef?api-version=2022-01-03" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299" @@ -108,10 +108,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143,a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143" + "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420" ], "x-ms-request-id": [ - "70ac7e28-2b6e-4c2f-b839-6c96ed60d099" + "3e6e01f4-332a-4db8-afd0-f46bf60b40ef" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -121,16 +121,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "fd678f87-344a-41c6-9590-776ba1e2a03f" + "e6fc0014-885e-47ce-95be-176dfdfb62c3" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220129T021518Z:fd678f87-344a-41c6-9590-776ba1e2a03f" + "WESTCENTRALUS:20220309T192827Z:e6fc0014-885e-47ce-95be-176dfdfb62c3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 29 Jan 2022 02:15:17 GMT" + "Wed, 09 Mar 2022 19:28:27 GMT" ], "Content-Length": [ "872" @@ -142,20 +142,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery6523\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg2508/providers/Microsoft.Compute/galleries/galleryPsTestGallery6523\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY6523\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Community\",\r\n \"communityGalleryInfo\": {\r\n \"communityGalleryEnabled\": false,\r\n \"publisherUri\": \"PsTestUri\",\r\n \"publisherContact\": \"SIG@microsoft.com\",\r\n \"eula\": \"PsEual\",\r\n \"publicNames\": [\r\n \"PsTestCg-9a49c1f9-549a-423f-ba71-6915217c296b\"\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery6512\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7660/providers/Microsoft.Compute/galleries/galleryPsTestGallery6512\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY6512\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Community\",\r\n \"communityGalleryInfo\": {\r\n \"communityGalleryEnabled\": false,\r\n \"publisherUri\": \"PsTestUri\",\r\n \"publisherContact\": \"SIG@microsoft.com\",\r\n \"eula\": \"PsEual\",\r\n \"publicNames\": [\r\n \"PsTestCg-e641bddb-3c91-4485-8fad-a5f5a566f490\"\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/70ac7e28-2b6e-4c2f-b839-6c96ed60d099?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83MGFjN2UyOC0yYjZlLTRjMmYtYjgzOS02Yzk2ZWQ2MGQwOTk/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/3e6e01f4-332a-4db8-afd0-f46bf60b40ef?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zZTZlMDFmNC0zMzJhLTRkYjgtYWZkMC1mNDZiZjYwYjQwZWY/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { @@ -172,10 +172,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143,a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143" + "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420" ], "x-ms-request-id": [ - "631a65d1-a0f0-45a2-ad5c-9335e14ef648" + "9d429075-d21e-45b8-8582-ccd1ed7fd02e" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -185,16 +185,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "ae81b37c-8332-4351-8421-085f4cc6cec2" + "790a2fa6-6339-4a7c-b0c8-f44899b7a412" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220129T021548Z:ae81b37c-8332-4351-8421-085f4cc6cec2" + "WESTCENTRALUS:20220309T192857Z:790a2fa6-6339-4a7c-b0c8-f44899b7a412" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 29 Jan 2022 02:15:47 GMT" + "Wed, 09 Mar 2022 19:28:57 GMT" ], "Content-Length": [ "184" @@ -206,20 +206,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-01-28T20:15:17.6346577-06:00\",\r\n \"endTime\": \"2022-01-28T20:15:17.8690109-06:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"70ac7e28-2b6e-4c2f-b839-6c96ed60d099\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-03-09T11:28:27.2057576-08:00\",\r\n \"endTime\": \"2022-03-09T11:28:27.4558262-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3e6e01f4-332a-4db8-afd0-f46bf60b40ef\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg2508/providers/Microsoft.Compute/galleries/galleryPsTestGallery6523?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTY1MjM/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7660/providers/Microsoft.Compute/galleries/galleryPsTestGallery6512?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc2NjAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTY1MTI/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { @@ -230,16 +230,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;345,Microsoft.Compute/GetGallery30Min;2495" + "Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2496" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143,a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143" + "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420" ], "x-ms-request-id": [ - "50295a20-1c79-41d9-bccf-f316d48941fd" + "bb4d244b-a087-41fe-b3f5-af7f227a9cc4" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -249,16 +249,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "8b6ed3c3-8d83-43ca-b48a-7030c30e4554" + "ee56aff3-b9fd-4da2-be5e-fc24fc9ded1c" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220129T021548Z:8b6ed3c3-8d83-43ca-b48a-7030c30e4554" + "WESTCENTRALUS:20220309T192858Z:ee56aff3-b9fd-4da2-be5e-fc24fc9ded1c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 29 Jan 2022 02:15:47 GMT" + "Wed, 09 Mar 2022 19:28:57 GMT" ], "Content-Length": [ "873" @@ -270,26 +270,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery6523\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg2508/providers/Microsoft.Compute/galleries/galleryPsTestGallery6523\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY6523\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Community\",\r\n \"communityGalleryInfo\": {\r\n \"communityGalleryEnabled\": false,\r\n \"publisherUri\": \"PsTestUri\",\r\n \"publisherContact\": \"SIG@microsoft.com\",\r\n \"eula\": \"PsEual\",\r\n \"publicNames\": [\r\n \"PsTestCg-9a49c1f9-549a-423f-ba71-6915217c296b\"\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery6512\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7660/providers/Microsoft.Compute/galleries/galleryPsTestGallery6512\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY6512\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Community\",\r\n \"communityGalleryInfo\": {\r\n \"communityGalleryEnabled\": false,\r\n \"publisherUri\": \"PsTestUri\",\r\n \"publisherContact\": \"SIG@microsoft.com\",\r\n \"eula\": \"PsEual\",\r\n \"publicNames\": [\r\n \"PsTestCg-e641bddb-3c91-4485-8fad-a5f5a566f490\"\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg2508/providers/Microsoft.Compute/galleries/galleryPsTestGallery6523?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTY1MjM/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7660/providers/Microsoft.Compute/galleries/galleryPsTestGallery6512?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc2NjAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTY1MTI/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fcec62aa-d7a4-4940-a159-57b5771702f9" + "9b3777e6-0081-4aed-8820-af14fa4ba508" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { @@ -300,16 +300,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;344,Microsoft.Compute/GetGallery30Min;2494" + "Microsoft.Compute/GetGallery3Min;345,Microsoft.Compute/GetGallery30Min;2495" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143,a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143" + "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420" ], "x-ms-request-id": [ - "37d01d2b-9b18-4bde-8503-3e7d89ece927" + "23ba7f1c-53b0-4f69-a88c-7cde61325955" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -319,16 +319,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "fd5d0c50-633c-4848-a19a-724495648167" + "0b63a5cb-096c-4f69-b360-908c0005604b" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220129T021548Z:fd5d0c50-633c-4848-a19a-724495648167" + "WESTCENTRALUS:20220309T192858Z:0b63a5cb-096c-4f69-b360-908c0005604b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 29 Jan 2022 02:15:47 GMT" + "Wed, 09 Mar 2022 19:28:58 GMT" ], "Content-Length": [ "873" @@ -340,26 +340,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery6523\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg2508/providers/Microsoft.Compute/galleries/galleryPsTestGallery6523\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY6523\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Community\",\r\n \"communityGalleryInfo\": {\r\n \"communityGalleryEnabled\": false,\r\n \"publisherUri\": \"PsTestUri\",\r\n \"publisherContact\": \"SIG@microsoft.com\",\r\n \"eula\": \"PsEual\",\r\n \"publicNames\": [\r\n \"PsTestCg-9a49c1f9-549a-423f-ba71-6915217c296b\"\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery6512\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7660/providers/Microsoft.Compute/galleries/galleryPsTestGallery6512\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY6512\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Community\",\r\n \"communityGalleryInfo\": {\r\n \"communityGalleryEnabled\": false,\r\n \"publisherUri\": \"PsTestUri\",\r\n \"publisherContact\": \"SIG@microsoft.com\",\r\n \"eula\": \"PsEual\",\r\n \"publicNames\": [\r\n \"PsTestCg-e641bddb-3c91-4485-8fad-a5f5a566f490\"\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg2508/providers/Microsoft.Compute/galleries/galleryPsTestGallery6523/share?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTY1MjMvc2hhcmU/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7660/providers/Microsoft.Compute/galleries/galleryPsTestGallery6512/share?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc2NjAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTY1MTIvc2hhcmU/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"operationType\": \"EnableCommunity\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "65424817-fdc1-4c1a-913c-a6a1469f7151" + "6018aae2-10c2-49c1-98d2-fac18b899eab" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -376,22 +376,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/e1fafd9f-e933-42e6-842d-6b4b8c245813?monitor=true&api-version=2021-10-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/c6eeba4d-2c57-4f6f-ba76-b31d1c25a858?monitor=true&api-version=2022-01-03" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/e1fafd9f-e933-42e6-842d-6b4b8c245813?api-version=2021-10-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/c6eeba4d-2c57-4f6f-ba76-b31d1c25a858?api-version=2022-01-03" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/PostShareGallery3Min;9,Microsoft.Compute/PostShareGallery30Min;59" + "Microsoft.Compute/PostShareGallery3Min;29,Microsoft.Compute/PostShareGallery30Min;119" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143,a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143" + "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420" ], "x-ms-request-id": [ - "e1fafd9f-e933-42e6-842d-6b4b8c245813" + "c6eeba4d-2c57-4f6f-ba76-b31d1c25a858" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -401,16 +401,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "8e34f52c-a9e4-4354-8b25-c5462c20613c" + "f8250122-3cfb-4d80-a3e0-7b778e6936ee" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220129T021548Z:8e34f52c-a9e4-4354-8b25-c5462c20613c" + "WESTCENTRALUS:20220309T192858Z:f8250122-3cfb-4d80-a3e0-7b778e6936ee" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 29 Jan 2022 02:15:48 GMT" + "Wed, 09 Mar 2022 19:28:58 GMT" ], "Expires": [ "-1" @@ -423,22 +423,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg2508/providers/Microsoft.Compute/galleries/galleryPsTestGallery6523/share?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTY1MjMvc2hhcmU/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7660/providers/Microsoft.Compute/galleries/galleryPsTestGallery6512/share?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc2NjAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTY1MTIvc2hhcmU/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"operationType\": \"Reset\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c6f799db-0367-48b9-ac19-8d06163537d7" + "08222b88-2684-4bef-af71-049376475a5a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -455,22 +455,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/2729b5c6-80dc-4be7-8195-e3716335b5f1?monitor=true&api-version=2021-10-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/635bc13c-d77a-431f-abd6-c36413d259a8?monitor=true&api-version=2022-01-03" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/2729b5c6-80dc-4be7-8195-e3716335b5f1?api-version=2021-10-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/635bc13c-d77a-431f-abd6-c36413d259a8?api-version=2022-01-03" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/PostShareGallery3Min;8,Microsoft.Compute/PostShareGallery30Min;58" + "Microsoft.Compute/PostShareGallery3Min;28,Microsoft.Compute/PostShareGallery30Min;118" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143,a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143" + "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420" ], "x-ms-request-id": [ - "2729b5c6-80dc-4be7-8195-e3716335b5f1" + "635bc13c-d77a-431f-abd6-c36413d259a8" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -480,16 +480,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "c8c61ab0-f22f-48eb-bb8a-5694b34655ff" + "2693cd05-0de3-4db8-b0ff-5c0a2ee08887" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220129T021619Z:c8c61ab0-f22f-48eb-bb8a-5694b34655ff" + "WESTCENTRALUS:20220309T192929Z:2693cd05-0de3-4db8-b0ff-5c0a2ee08887" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 29 Jan 2022 02:16:18 GMT" + "Wed, 09 Mar 2022 19:29:28 GMT" ], "Expires": [ "-1" @@ -502,16 +502,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/e1fafd9f-e933-42e6-842d-6b4b8c245813?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lMWZhZmQ5Zi1lOTMzLTQyZTYtODQyZC02YjRiOGMyNDU4MTM/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/c6eeba4d-2c57-4f6f-ba76-b31d1c25a858?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9jNmVlYmE0ZC0yYzU3LTRmNmYtYmE3Ni1iMzFkMWMyNWE4NTg/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { @@ -528,10 +528,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143,a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143" + "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420" ], "x-ms-request-id": [ - "677466aa-f7b9-454b-9d78-8aff7c41905c" + "8d424c60-d30a-40ee-ad3c-1b2174f3a778" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -541,16 +541,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "8fdc9b96-6f33-46b2-8d7c-4348312dcea0" + "9bbec5bc-19b9-427d-b809-cdb76f97dae6" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220129T021618Z:8fdc9b96-6f33-46b2-8d7c-4348312dcea0" + "WESTCENTRALUS:20220309T192928Z:9bbec5bc-19b9-427d-b809-cdb76f97dae6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 29 Jan 2022 02:16:17 GMT" + "Wed, 09 Mar 2022 19:29:28 GMT" ], "Content-Length": [ "184" @@ -562,20 +562,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-01-28T20:15:48.5264849-06:00\",\r\n \"endTime\": \"2022-01-28T20:15:49.6984064-06:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e1fafd9f-e933-42e6-842d-6b4b8c245813\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-03-09T11:28:58.4559576-08:00\",\r\n \"endTime\": \"2022-03-09T11:28:59.5966229-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c6eeba4d-2c57-4f6f-ba76-b31d1c25a858\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/e1fafd9f-e933-42e6-842d-6b4b8c245813?monitor=true&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lMWZhZmQ5Zi1lOTMzLTQyZTYtODQyZC02YjRiOGMyNDU4MTM/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/c6eeba4d-2c57-4f6f-ba76-b31d1c25a858?monitor=true&api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9jNmVlYmE0ZC0yYzU3LTRmNmYtYmE3Ni1iMzFkMWMyNWE4NTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDEtMDM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { @@ -592,10 +592,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143,a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143" + "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420" ], "x-ms-request-id": [ - "0a0ee04c-187b-416b-9195-936f87f057d5" + "d92423f0-7a91-4d91-a585-48e69d1f072b" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -605,16 +605,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "b48ae7d4-9298-4680-bda7-cc24c363643c" + "65e01395-8d69-407e-b907-3b487b631681" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220129T021618Z:b48ae7d4-9298-4680-bda7-cc24c363643c" + "WESTCENTRALUS:20220309T192928Z:65e01395-8d69-407e-b907-3b487b631681" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 29 Jan 2022 02:16:18 GMT" + "Wed, 09 Mar 2022 19:29:28 GMT" ], "Expires": [ "-1" @@ -627,22 +627,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg2508/providers/Microsoft.Compute/galleries/galleryPsTestGallery6523?api-version=2021-10-01&$select=Permissions", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTY1MjM/YXBpLXZlcnNpb249MjAyMS0xMC0wMSYkc2VsZWN0PVBlcm1pc3Npb25z", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7660/providers/Microsoft.Compute/galleries/galleryPsTestGallery6512?api-version=2022-01-03&$select=Permissions", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc2NjAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTY1MTI/YXBpLXZlcnNpb249MjAyMi0wMS0wMyYkc2VsZWN0PVBlcm1pc3Npb25z", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "80e2f699-8f23-41fd-acce-93b35dabab08" + "0e98c31d-a9ad-4aaa-bf92-8145bedda598" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { @@ -653,16 +653,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;343,Microsoft.Compute/GetGallery30Min;2493" + "Microsoft.Compute/GetGallery3Min;344,Microsoft.Compute/GetGallery30Min;2494" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143,a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143" + "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420" ], "x-ms-request-id": [ - "12f8f52c-5668-4de7-8dbe-e5b96d37875a" + "58c4fc4c-75b1-411d-921b-845ac3e5ce30" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -672,16 +672,16 @@ "11994" ], "x-ms-correlation-request-id": [ - "3497ecc7-6be0-4b25-a078-89b69bc60c16" + "4b2b3877-7b8d-4316-9a6c-1c3691d81d0c" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220129T021618Z:3497ecc7-6be0-4b25-a078-89b69bc60c16" + "WESTCENTRALUS:20220309T192928Z:4b2b3877-7b8d-4316-9a6c-1c3691d81d0c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 29 Jan 2022 02:16:18 GMT" + "Wed, 09 Mar 2022 19:29:28 GMT" ], "Content-Length": [ "872" @@ -693,20 +693,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery6523\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg2508/providers/Microsoft.Compute/galleries/galleryPsTestGallery6523\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY6523\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Community\",\r\n \"communityGalleryInfo\": {\r\n \"communityGalleryEnabled\": true,\r\n \"publisherUri\": \"PsTestUri\",\r\n \"publisherContact\": \"SIG@microsoft.com\",\r\n \"eula\": \"PsEual\",\r\n \"publicNames\": [\r\n \"PsTestCg-9a49c1f9-549a-423f-ba71-6915217c296b\"\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery6512\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7660/providers/Microsoft.Compute/galleries/galleryPsTestGallery6512\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY6512\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Community\",\r\n \"communityGalleryInfo\": {\r\n \"communityGalleryEnabled\": true,\r\n \"publisherUri\": \"PsTestUri\",\r\n \"publisherContact\": \"SIG@microsoft.com\",\r\n \"eula\": \"PsEual\",\r\n \"publicNames\": [\r\n \"PsTestCg-e641bddb-3c91-4485-8fad-a5f5a566f490\"\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/2729b5c6-80dc-4be7-8195-e3716335b5f1?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yNzI5YjVjNi04MGRjLTRiZTctODE5NS1lMzcxNjMzNWI1ZjE/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/635bc13c-d77a-431f-abd6-c36413d259a8?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy82MzViYzEzYy1kNzdhLTQzMWYtYWJkNi1jMzY0MTNkMjU5YTg/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { @@ -723,10 +723,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143,a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143" + "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420" ], "x-ms-request-id": [ - "855a60f0-14a2-44b5-a721-baca3d523bb1" + "8d39224f-4aa8-4d57-afa6-2d3615232b40" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -736,19 +736,19 @@ "11993" ], "x-ms-correlation-request-id": [ - "8740892f-0684-4d41-b3f3-cba45012ab70" + "9e9ab28e-7959-4fac-a28c-7237bd1a3399" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220129T021649Z:8740892f-0684-4d41-b3f3-cba45012ab70" + "WESTCENTRALUS:20220309T192959Z:9e9ab28e-7959-4fac-a28c-7237bd1a3399" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 29 Jan 2022 02:16:49 GMT" + "Wed, 09 Mar 2022 19:29:58 GMT" ], "Content-Length": [ - "183" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -757,20 +757,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-01-28T20:16:19.183946-06:00\",\r\n \"endTime\": \"2022-01-28T20:16:19.5120888-06:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2729b5c6-80dc-4be7-8195-e3716335b5f1\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-03-09T11:29:29.0342534-08:00\",\r\n \"endTime\": \"2022-03-09T11:29:29.3623817-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"635bc13c-d77a-431f-abd6-c36413d259a8\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/2729b5c6-80dc-4be7-8195-e3716335b5f1?monitor=true&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yNzI5YjVjNi04MGRjLTRiZTctODE5NS1lMzcxNjMzNWI1ZjE/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/635bc13c-d77a-431f-abd6-c36413d259a8?monitor=true&api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy82MzViYzEzYy1kNzdhLTQzMWYtYWJkNi1jMzY0MTNkMjU5YTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDEtMDM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { @@ -787,10 +787,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143,a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143" + "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420" ], "x-ms-request-id": [ - "c3289b0b-04f7-4fb1-98d8-4f9ea52a1178" + "b8821262-2a16-4334-840a-90f18c35b354" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -800,16 +800,16 @@ "11992" ], "x-ms-correlation-request-id": [ - "feb9291f-72fc-412d-917b-4f84dc044e07" + "9facdf10-1289-44ff-be29-c96aee4aa29b" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220129T021649Z:feb9291f-72fc-412d-917b-4f84dc044e07" + "WESTCENTRALUS:20220309T192959Z:9facdf10-1289-44ff-be29-c96aee4aa29b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 29 Jan 2022 02:16:49 GMT" + "Wed, 09 Mar 2022 19:29:58 GMT" ], "Expires": [ "-1" @@ -822,22 +822,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg2508/providers/Microsoft.Compute/galleries/galleryPsTestGallery6523?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTY1MjM/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7660/providers/Microsoft.Compute/galleries/galleryPsTestGallery6512?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc2NjAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTY1MTI/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e8cced03-404f-4195-8995-1bb646e561bd" + "2ad7db57-dc7d-49fb-b852-cff4ad94d217" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { @@ -848,22 +848,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/8287829b-bbab-43d4-958f-d8fd5f362063?monitor=true&api-version=2021-10-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/59a5590e-957c-4284-8458-8857d7cacb39?monitor=true&api-version=2022-01-03" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/8287829b-bbab-43d4-958f-d8fd5f362063?api-version=2021-10-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/59a5590e-957c-4284-8458-8857d7cacb39?api-version=2022-01-03" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;299" + "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;899" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143,a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143" + "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420" ], "x-ms-request-id": [ - "8287829b-bbab-43d4-958f-d8fd5f362063" + "59a5590e-957c-4284-8458-8857d7cacb39" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -873,16 +873,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "8443061c-e92a-4956-9a76-7f882283e2c0" + "c27ab730-66b1-4cf9-a5c4-2e5126c91f00" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220129T021649Z:8443061c-e92a-4956-9a76-7f882283e2c0" + "WESTCENTRALUS:20220309T192959Z:c27ab730-66b1-4cf9-a5c4-2e5126c91f00" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 29 Jan 2022 02:16:49 GMT" + "Wed, 09 Mar 2022 19:29:59 GMT" ], "Expires": [ "-1" @@ -895,16 +895,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/8287829b-bbab-43d4-958f-d8fd5f362063?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy84Mjg3ODI5Yi1iYmFiLTQzZDQtOTU4Zi1kOGZkNWYzNjIwNjM/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/59a5590e-957c-4284-8458-8857d7cacb39?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy81OWE1NTkwZS05NTdjLTQyODQtODQ1OC04ODU3ZDdjYWNiMzk/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { @@ -921,10 +921,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143,a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143" + "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420" ], "x-ms-request-id": [ - "2037fcea-89ac-4586-b404-8bcfcd78a89b" + "f48c7abc-9f3e-4ed0-bf27-0d49b36b1444" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -934,19 +934,19 @@ "11991" ], "x-ms-correlation-request-id": [ - "df8be096-bc8c-44dd-ac48-8db1b8e1ecbd" + "ec6dbd50-e356-4492-8b17-960b5df714c7" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220129T021720Z:df8be096-bc8c-44dd-ac48-8db1b8e1ecbd" + "WESTCENTRALUS:20220309T193029Z:ec6dbd50-e356-4492-8b17-960b5df714c7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 29 Jan 2022 02:17:19 GMT" + "Wed, 09 Mar 2022 19:30:29 GMT" ], "Content-Length": [ - "181" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -955,20 +955,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-01-28T20:16:49.77895-06:00\",\r\n \"endTime\": \"2022-01-28T20:16:49.888304-06:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8287829b-bbab-43d4-958f-d8fd5f362063\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-03-09T11:29:59.7063048-08:00\",\r\n \"endTime\": \"2022-03-09T11:29:59.8312991-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"59a5590e-957c-4284-8458-8857d7cacb39\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/8287829b-bbab-43d4-958f-d8fd5f362063?monitor=true&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy84Mjg3ODI5Yi1iYmFiLTQzZDQtOTU4Zi1kOGZkNWYzNjIwNjM/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/59a5590e-957c-4284-8458-8857d7cacb39?monitor=true&api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy81OWE1NTkwZS05NTdjLTQyODQtODQ1OC04ODU3ZDdjYWNiMzk/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDEtMDM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { @@ -985,10 +985,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143,a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143" + "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420" ], "x-ms-request-id": [ - "c218fb73-fd77-4c51-94ba-b96ea7d587e4" + "49a9a87d-169c-46c3-b260-921dc008fc05" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -998,16 +998,16 @@ "11990" ], "x-ms-correlation-request-id": [ - "9876c955-bc96-4785-adec-5c8b6f0da553" + "be0d17b4-0b1c-47f6-83ca-a1e9c34f4f75" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220129T021720Z:9876c955-bc96-4785-adec-5c8b6f0da553" + "WESTCENTRALUS:20220309T193030Z:be0d17b4-0b1c-47f6-83ca-a1e9c34f4f75" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 29 Jan 2022 02:17:19 GMT" + "Wed, 09 Mar 2022 19:30:29 GMT" ], "Expires": [ "-1" @@ -1020,19 +1020,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/galleryPsTestRg2508?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1MDg/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg7660?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc2NjA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4521df46-4ab5-4521-90f5-0ea30f308b9e" + "a286224d-dccd-40ae-8cc1-b60decc60590" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -1046,7 +1046,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkcyNTA4LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkc3NjYwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" ], "Retry-After": [ "15" @@ -1055,13 +1055,13 @@ "14999" ], "x-ms-request-id": [ - "5227a50f-e470-4790-93fc-810a540d9dda" + "ac0a7516-f40d-41e6-a816-3ae9b65a3398" ], "x-ms-correlation-request-id": [ - "5227a50f-e470-4790-93fc-810a540d9dda" + "ac0a7516-f40d-41e6-a816-3ae9b65a3398" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220129T021720Z:5227a50f-e470-4790-93fc-810a540d9dda" + "WESTCENTRALUS:20220309T193031Z:ac0a7516-f40d-41e6-a816-3ae9b65a3398" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1070,7 +1070,7 @@ "nosniff" ], "Date": [ - "Sat, 29 Jan 2022 02:17:20 GMT" + "Wed, 09 Mar 2022 19:30:30 GMT" ], "Expires": [ "-1" @@ -1083,13 +1083,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkcyNTA4LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIUVV4TVJWSlpVRk5VUlZOVVVrY3lOVEE0TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkc3NjYwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIUVV4TVJWSlpVRk5VUlZOVVVrYzNOall3TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -1106,13 +1106,13 @@ "11999" ], "x-ms-request-id": [ - "1719093a-51a1-44c0-8bde-056d41e5f974" + "60554602-79f2-4c46-9d7d-c8d892ba3815" ], "x-ms-correlation-request-id": [ - "1719093a-51a1-44c0-8bde-056d41e5f974" + "60554602-79f2-4c46-9d7d-c8d892ba3815" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220129T021736Z:1719093a-51a1-44c0-8bde-056d41e5f974" + "WESTCENTRALUS:20220309T193046Z:60554602-79f2-4c46-9d7d-c8d892ba3815" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1121,7 +1121,7 @@ "nosniff" ], "Date": [ - "Sat, 29 Jan 2022 02:17:35 GMT" + "Wed, 09 Mar 2022 19:30:45 GMT" ], "Expires": [ "-1" @@ -1134,13 +1134,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkcyNTA4LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIUVV4TVJWSlpVRk5VUlZOVVVrY3lOVEE0TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkc3NjYwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIUVV4TVJWSlpVRk5VUlZOVVVrYzNOall3TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -1157,13 +1157,13 @@ "11998" ], "x-ms-request-id": [ - "e1973b08-41c1-4ada-9362-e2839846f5b8" + "f710789c-a679-4816-ba60-00604edac19f" ], "x-ms-correlation-request-id": [ - "e1973b08-41c1-4ada-9362-e2839846f5b8" + "f710789c-a679-4816-ba60-00604edac19f" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220129T021736Z:e1973b08-41c1-4ada-9362-e2839846f5b8" + "WESTCENTRALUS:20220309T193046Z:f710789c-a679-4816-ba60-00604edac19f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1172,7 +1172,7 @@ "nosniff" ], "Date": [ - "Sat, 29 Jan 2022 02:17:35 GMT" + "Wed, 09 Mar 2022 19:30:45 GMT" ], "Expires": [ "-1" @@ -1187,11 +1187,11 @@ ], "Names": { "Gallery_SharingToCommunity_CRUD_Tests": [ - "galleryPsTestRg2508", - "galleryPsTestGallery6523" + "galleryPsTestRg7660", + "galleryPsTestGallery6512" ] }, "Variables": { - "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871" + "SubscriptionId": "97f78232-382b-46a7-8a72-964d692c4f3f" } } \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_SharingToSubscriptionAndTenant_CRUD_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_SharingToSubscriptionAndTenant_CRUD_Tests.json index e7c5e6beb63cb..987cf2a145065 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_SharingToSubscriptionAndTenant_CRUD_Tests.json +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_SharingToSubscriptionAndTenant_CRUD_Tests.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/galleryPsTestRg4963?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ5NjM/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg2620?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI2MjA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "dddca2ae-cdcf-40cc-ae45-253ff55f2408" + "10644c5f-248b-438b-8e56-bacd1214b38b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "738280bf-e345-47ac-925d-1b304df8e017" + "5aa9e85d-2c56-4e3e-9aa1-7f4ef836b623" ], "x-ms-correlation-request-id": [ - "738280bf-e345-47ac-925d-1b304df8e017" + "5aa9e85d-2c56-4e3e-9aa1-7f4ef836b623" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220128T233336Z:738280bf-e345-47ac-925d-1b304df8e017" + "WESTUS:20220309T064341Z:5aa9e85d-2c56-4e3e-9aa1-7f4ef836b623" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Fri, 28 Jan 2022 23:33:36 GMT" + "Wed, 09 Mar 2022 06:43:41 GMT" ], "Content-Length": [ "192" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg4963\",\r\n \"name\": \"galleryPsTestRg4963\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2620\",\r\n \"name\": \"galleryPsTestRg2620\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg4963/providers/Microsoft.Compute/galleries/galleryPsTestGallery7828?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTc4Mjg/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2620/providers/Microsoft.Compute/galleries/galleryPsTestGallery6165?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI2MjAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTYxNjU/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n }\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9c13669f-2e56-4445-836b-a22ee3ee88fc" + "fa806dc2-2c8c-4f6c-88a6-db2c3431f643" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,7 +99,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/074b3366-7cfa-4cc7-8174-c8b577918666?api-version=2021-10-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/6f56969d-e5c7-4c1b-a383-d664d201bb6e?api-version=2022-01-03" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299" @@ -108,10 +108,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143,a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143" + "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420" ], "x-ms-request-id": [ - "074b3366-7cfa-4cc7-8174-c8b577918666" + "6f56969d-e5c7-4c1b-a383-d664d201bb6e" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -121,16 +121,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "912632b5-44fe-44ee-b435-5aca7bfd49cc" + "1af947ad-acb7-4447-b7f8-076e23d6aa24" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220128T233339Z:912632b5-44fe-44ee-b435-5aca7bfd49cc" + "WESTUS:20220309T064345Z:1af947ad-acb7-4447-b7f8-076e23d6aa24" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 28 Jan 2022 23:33:38 GMT" + "Wed, 09 Mar 2022 06:43:44 GMT" ], "Content-Length": [ "572" @@ -142,20 +142,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery7828\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg4963/providers/Microsoft.Compute/galleries/galleryPsTestGallery7828\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY7828\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery6165\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2620/providers/Microsoft.Compute/galleries/galleryPsTestGallery6165\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY6165\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/074b3366-7cfa-4cc7-8174-c8b577918666?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wNzRiMzM2Ni03Y2ZhLTRjYzctODE3NC1jOGI1Nzc5MTg2NjY/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/6f56969d-e5c7-4c1b-a383-d664d201bb6e?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy82ZjU2OTY5ZC1lNWM3LTRjMWItYTM4My1kNjY0ZDIwMWJiNmU/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { @@ -172,32 +172,32 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143,a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143" + "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420" ], "x-ms-request-id": [ - "70490bb4-f51d-4b40-91f5-d5fecff223f9" + "3f6ba42c-182a-45c6-88ad-6bd89e276979" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11995" ], "x-ms-correlation-request-id": [ - "4aae8ffb-9c04-4980-a7c8-4771321d9bd8" + "25a73726-292f-4134-8fd1-c9a95394af80" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220128T233409Z:4aae8ffb-9c04-4980-a7c8-4771321d9bd8" + "WESTUS:20220309T064415Z:25a73726-292f-4134-8fd1-c9a95394af80" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 28 Jan 2022 23:34:08 GMT" + "Wed, 09 Mar 2022 06:44:14 GMT" ], "Content-Length": [ - "184" + "183" ], "Content-Type": [ "application/json; charset=utf-8" @@ -206,20 +206,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-01-28T17:33:39.3008706-06:00\",\r\n \"endTime\": \"2022-01-28T17:33:41.2228223-06:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"074b3366-7cfa-4cc7-8174-c8b577918666\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-03-08T22:43:44.5777537-08:00\",\r\n \"endTime\": \"2022-03-08T22:43:46.609012-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"6f56969d-e5c7-4c1b-a383-d664d201bb6e\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg4963/providers/Microsoft.Compute/galleries/galleryPsTestGallery7828?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTc4Mjg/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2620/providers/Microsoft.Compute/galleries/galleryPsTestGallery6165?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI2MjAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTYxNjU/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { @@ -236,29 +236,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143,a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143" + "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420" ], "x-ms-request-id": [ - "c19cc512-8c3f-4cb4-9bbe-091a732d40cb" + "3420e44c-63d0-40d3-81a7-261e360b8857" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11994" ], "x-ms-correlation-request-id": [ - "55edd6b6-8cce-4a92-8420-bf2718e2466b" + "1bb9faec-7339-45b7-a077-57369aa47173" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220128T233410Z:55edd6b6-8cce-4a92-8420-bf2718e2466b" + "WESTUS:20220309T064415Z:1bb9faec-7339-45b7-a077-57369aa47173" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 28 Jan 2022 23:34:09 GMT" + "Wed, 09 Mar 2022 06:44:14 GMT" ], "Content-Length": [ "573" @@ -270,26 +270,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery7828\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg4963/providers/Microsoft.Compute/galleries/galleryPsTestGallery7828\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY7828\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery6165\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2620/providers/Microsoft.Compute/galleries/galleryPsTestGallery6165\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY6165\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg4963/providers/Microsoft.Compute/galleries/galleryPsTestGallery7828?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTc4Mjg/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2620/providers/Microsoft.Compute/galleries/galleryPsTestGallery6165?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI2MjAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTYxNjU/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7b7085d2-7629-46b7-bdcb-443a16ecfb59" + "4459da64-d68c-4948-8582-9a3269101343" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { @@ -306,29 +306,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143,a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143" + "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420" ], "x-ms-request-id": [ - "15c33aad-894f-46cf-ae6a-19150bc9b770" + "71f0f333-f0d1-457b-85b3-8347e3b56bd6" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11993" ], "x-ms-correlation-request-id": [ - "89d74dc2-1b53-4f76-902f-579b4dae0bb3" + "a5e550e3-bd2d-40fd-aeac-d1d121d160b1" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220128T233410Z:89d74dc2-1b53-4f76-902f-579b4dae0bb3" + "WESTUS:20220309T064415Z:a5e550e3-bd2d-40fd-aeac-d1d121d160b1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 28 Jan 2022 23:34:09 GMT" + "Wed, 09 Mar 2022 06:44:14 GMT" ], "Content-Length": [ "573" @@ -340,26 +340,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery7828\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg4963/providers/Microsoft.Compute/galleries/galleryPsTestGallery7828\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY7828\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery6165\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2620/providers/Microsoft.Compute/galleries/galleryPsTestGallery6165\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY6165\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg4963/providers/Microsoft.Compute/galleries/galleryPsTestGallery7828/share?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTc4Mjgvc2hhcmU/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2620/providers/Microsoft.Compute/galleries/galleryPsTestGallery6165/share?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI2MjAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTYxNjUvc2hhcmU/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"operationType\": \"Add\",\r\n \"groups\": [\r\n {\r\n \"type\": \"AADTenants\",\r\n \"ids\": [\r\n \"583d66a9-0041-4999-8838-75baece101d5\"\r\n ]\r\n },\r\n {\r\n \"type\": \"Subscriptions\",\r\n \"ids\": [\r\n \"640c5810-13bf-4b82-b94d-f38c2565e3bc\"\r\n ]\r\n }\r\n ]\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0675797d-c704-4d2a-a9ea-5b19a36b9e2a" + "71599f0e-5b6a-421d-836a-2acede17fb7e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -376,22 +376,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/078eaf5f-3312-4e28-82e2-3631c1cd00f5?monitor=true&api-version=2021-10-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/977ecd99-785e-4971-a2b6-d25a34208695?monitor=true&api-version=2022-01-03" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/078eaf5f-3312-4e28-82e2-3631c1cd00f5?api-version=2021-10-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/977ecd99-785e-4971-a2b6-d25a34208695?api-version=2022-01-03" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/PostShareGallery3Min;9,Microsoft.Compute/PostShareGallery30Min;59" + "Microsoft.Compute/PostShareGallery3Min;29,Microsoft.Compute/PostShareGallery30Min;119" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143,a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143" + "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420" ], "x-ms-request-id": [ - "078eaf5f-3312-4e28-82e2-3631c1cd00f5" + "977ecd99-785e-4971-a2b6-d25a34208695" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -401,16 +401,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "a53a2803-3c90-4cac-9b94-7b022f00dab8" + "5cb6d3a3-8913-41e4-b64b-1aafa942333f" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220128T233410Z:a53a2803-3c90-4cac-9b94-7b022f00dab8" + "WESTUS:20220309T064415Z:5cb6d3a3-8913-41e4-b64b-1aafa942333f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 28 Jan 2022 23:34:09 GMT" + "Wed, 09 Mar 2022 06:44:15 GMT" ], "Expires": [ "-1" @@ -423,22 +423,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg4963/providers/Microsoft.Compute/galleries/galleryPsTestGallery7828/share?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTc4Mjgvc2hhcmU/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2620/providers/Microsoft.Compute/galleries/galleryPsTestGallery6165/share?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI2MjAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTYxNjUvc2hhcmU/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"operationType\": \"Reset\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "53fab424-6ed8-4333-aa02-ae5c2a54132f" + "75af3a0e-478d-4ffb-9ddb-57c38de5ac3a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -455,22 +455,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/db7695df-7593-4db7-aef8-233321a9b47b?monitor=true&api-version=2021-10-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/ffa68feb-47ff-4d8b-9847-3cbabe570b2a?monitor=true&api-version=2022-01-03" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/db7695df-7593-4db7-aef8-233321a9b47b?api-version=2021-10-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/ffa68feb-47ff-4d8b-9847-3cbabe570b2a?api-version=2022-01-03" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/PostShareGallery3Min;8,Microsoft.Compute/PostShareGallery30Min;58" + "Microsoft.Compute/PostShareGallery3Min;28,Microsoft.Compute/PostShareGallery30Min;118" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143,a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143" + "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420" ], "x-ms-request-id": [ - "db7695df-7593-4db7-aef8-233321a9b47b" + "ffa68feb-47ff-4d8b-9847-3cbabe570b2a" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -480,16 +480,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "e1ecb1ad-1982-4ed4-97d7-3fa8224931bb" + "1a5b26ad-d4a9-42c7-944e-9f004e4cae78" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220128T233441Z:e1ecb1ad-1982-4ed4-97d7-3fa8224931bb" + "WESTUS:20220309T064446Z:1a5b26ad-d4a9-42c7-944e-9f004e4cae78" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 28 Jan 2022 23:34:41 GMT" + "Wed, 09 Mar 2022 06:44:46 GMT" ], "Expires": [ "-1" @@ -502,16 +502,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/078eaf5f-3312-4e28-82e2-3631c1cd00f5?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wNzhlYWY1Zi0zMzEyLTRlMjgtODJlMi0zNjMxYzFjZDAwZjU/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/977ecd99-785e-4971-a2b6-d25a34208695?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy85NzdlY2Q5OS03ODVlLTQ5NzEtYTJiNi1kMjVhMzQyMDg2OTU/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { @@ -528,29 +528,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143,a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143" + "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420" ], "x-ms-request-id": [ - "573fbfd1-0923-48a7-8561-3edf078f2ed7" + "a538a172-6f82-4bcc-b4f2-c39778abac84" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11992" ], "x-ms-correlation-request-id": [ - "490263f0-8f13-4d86-91e7-25aa90e105c8" + "a3d37df0-4c3d-405d-a4a8-8766904be620" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220128T233440Z:490263f0-8f13-4d86-91e7-25aa90e105c8" + "WESTUS:20220309T064446Z:a3d37df0-4c3d-405d-a4a8-8766904be620" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 28 Jan 2022 23:34:40 GMT" + "Wed, 09 Mar 2022 06:44:45 GMT" ], "Content-Length": [ "184" @@ -562,20 +562,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-01-28T17:34:10.4427556-06:00\",\r\n \"endTime\": \"2022-01-28T17:34:13.6460085-06:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"078eaf5f-3312-4e28-82e2-3631c1cd00f5\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-03-08T22:44:15.8746507-08:00\",\r\n \"endTime\": \"2022-03-08T22:44:19.3434007-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"977ecd99-785e-4971-a2b6-d25a34208695\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/078eaf5f-3312-4e28-82e2-3631c1cd00f5?monitor=true&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wNzhlYWY1Zi0zMzEyLTRlMjgtODJlMi0zNjMxYzFjZDAwZjU/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/977ecd99-785e-4971-a2b6-d25a34208695?monitor=true&api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy85NzdlY2Q5OS03ODVlLTQ5NzEtYTJiNi1kMjVhMzQyMDg2OTU/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDEtMDM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { @@ -592,29 +592,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143,a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143" + "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420" ], "x-ms-request-id": [ - "87c670ee-d4f5-4ec3-a04d-ccc8d0310bd5" + "85c70141-705b-467c-8f6f-e1ca28b81bea" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11991" ], "x-ms-correlation-request-id": [ - "a5364e71-e6a8-4f86-aa1c-74ca8694711b" + "11fdf704-4204-4651-bbdc-6d6165f64fb9" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220128T233440Z:a5364e71-e6a8-4f86-aa1c-74ca8694711b" + "WESTUS:20220309T064446Z:11fdf704-4204-4651-bbdc-6d6165f64fb9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 28 Jan 2022 23:34:40 GMT" + "Wed, 09 Mar 2022 06:44:46 GMT" ], "Expires": [ "-1" @@ -627,22 +627,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg4963/providers/Microsoft.Compute/galleries/galleryPsTestGallery7828?api-version=2021-10-01&$select=Permissions", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTc4Mjg/YXBpLXZlcnNpb249MjAyMS0xMC0wMSYkc2VsZWN0PVBlcm1pc3Npb25z", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2620/providers/Microsoft.Compute/galleries/galleryPsTestGallery6165?api-version=2022-01-03&$select=Permissions", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI2MjAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTYxNjU/YXBpLXZlcnNpb249MjAyMi0wMS0wMyYkc2VsZWN0PVBlcm1pc3Npb25z", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b69f88f-bb73-4c3c-8e0a-af81c4b5bc7f" + "2238da37-40f3-47c6-af21-c58e1f817eee" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { @@ -659,29 +659,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143,a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143" + "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420" ], "x-ms-request-id": [ - "cf70bd36-b022-4f41-a3f8-08d876eaca03" + "28e2d572-58d1-4b5d-be1c-087657672d74" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11990" ], "x-ms-correlation-request-id": [ - "c6556656-fa40-465b-8d61-c4235fd93606" + "5ac19f2e-58d4-47c7-b32b-369ab20e8803" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220128T233440Z:c6556656-fa40-465b-8d61-c4235fd93606" + "WESTUS:20220309T064446Z:5ac19f2e-58d4-47c7-b32b-369ab20e8803" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 28 Jan 2022 23:34:40 GMT" + "Wed, 09 Mar 2022 06:44:46 GMT" ], "Content-Length": [ "886" @@ -693,20 +693,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery7828\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg4963/providers/Microsoft.Compute/galleries/galleryPsTestGallery7828\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY7828\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\",\r\n \"groups\": [\r\n {\r\n \"type\": \"Subscriptions\",\r\n \"ids\": [\r\n \"640c5810-13bf-4b82-b94d-f38c2565e3bc\"\r\n ]\r\n },\r\n {\r\n \"type\": \"AADTenants\",\r\n \"ids\": [\r\n \"583d66a9-0041-4999-8838-75baece101d5\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery6165\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2620/providers/Microsoft.Compute/galleries/galleryPsTestGallery6165\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY6165\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\",\r\n \"groups\": [\r\n {\r\n \"type\": \"Subscriptions\",\r\n \"ids\": [\r\n \"640c5810-13bf-4b82-b94d-f38c2565e3bc\"\r\n ]\r\n },\r\n {\r\n \"type\": \"AADTenants\",\r\n \"ids\": [\r\n \"583d66a9-0041-4999-8838-75baece101d5\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/db7695df-7593-4db7-aef8-233321a9b47b?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9kYjc2OTVkZi03NTkzLTRkYjctYWVmOC0yMzMzMjFhOWI0N2I/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/ffa68feb-47ff-4d8b-9847-3cbabe570b2a?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mZmE2OGZlYi00N2ZmLTRkOGItOTg0Ny0zY2JhYmU1NzBiMmE/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { @@ -723,29 +723,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143,a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143" + "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420" ], "x-ms-request-id": [ - "e65903f3-5a23-457c-968d-cbc43506bf9b" + "1cdef25c-765f-4fb2-8bd5-56b6525f1613" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11989" ], "x-ms-correlation-request-id": [ - "26aac6a9-ab7e-4665-8f2f-a6c2d55d7bab" + "a1b3f28d-f3b0-48f0-ad93-5567d1082f52" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220128T233511Z:26aac6a9-ab7e-4665-8f2f-a6c2d55d7bab" + "WESTUS:20220309T064516Z:a1b3f28d-f3b0-48f0-ad93-5567d1082f52" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 28 Jan 2022 23:35:10 GMT" + "Wed, 09 Mar 2022 06:45:16 GMT" ], "Content-Length": [ "184" @@ -757,20 +757,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-01-28T17:34:41.0533451-06:00\",\r\n \"endTime\": \"2022-01-28T17:34:41.3814763-06:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"db7695df-7593-4db7-aef8-233321a9b47b\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-03-08T22:44:46.5152846-08:00\",\r\n \"endTime\": \"2022-03-08T22:44:46.8902758-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ffa68feb-47ff-4d8b-9847-3cbabe570b2a\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/db7695df-7593-4db7-aef8-233321a9b47b?monitor=true&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9kYjc2OTVkZi03NTkzLTRkYjctYWVmOC0yMzMzMjFhOWI0N2I/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/ffa68feb-47ff-4d8b-9847-3cbabe570b2a?monitor=true&api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mZmE2OGZlYi00N2ZmLTRkOGItOTg0Ny0zY2JhYmU1NzBiMmE/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDEtMDM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { @@ -787,29 +787,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143,a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143" + "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420" ], "x-ms-request-id": [ - "eeab3f0c-504d-4aed-a358-61479b0a105b" + "6bfc4367-4d54-4b49-b10d-e32c958274c5" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11988" ], "x-ms-correlation-request-id": [ - "6bde202c-b068-4cb5-a791-9c92c9d04e14" + "bdbcadfb-c9d4-44b9-ba7c-d0f7854cdc5c" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220128T233511Z:6bde202c-b068-4cb5-a791-9c92c9d04e14" + "WESTUS:20220309T064516Z:bdbcadfb-c9d4-44b9-ba7c-d0f7854cdc5c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 28 Jan 2022 23:35:11 GMT" + "Wed, 09 Mar 2022 06:45:16 GMT" ], "Expires": [ "-1" @@ -822,22 +822,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg4963/providers/Microsoft.Compute/galleries/galleryPsTestGallery7828?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTc4Mjg/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2620/providers/Microsoft.Compute/galleries/galleryPsTestGallery6165?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI2MjAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTYxNjU/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "38a6aa84-737c-46c3-afe8-b3b60e250c3c" + "30427c29-5bfc-41b7-af89-c19cd1e47daa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { @@ -848,22 +848,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/56834f08-bf30-4f9c-8153-23951703f346?monitor=true&api-version=2021-10-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/cc78463e-075a-470c-8573-dbf6578678c3?monitor=true&api-version=2022-01-03" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/56834f08-bf30-4f9c-8153-23951703f346?api-version=2021-10-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/cc78463e-075a-470c-8573-dbf6578678c3?api-version=2022-01-03" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;299" + "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;899" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143,a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143" + "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420" ], "x-ms-request-id": [ - "56834f08-bf30-4f9c-8153-23951703f346" + "cc78463e-075a-470c-8573-dbf6578678c3" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -873,16 +873,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "713ba86b-080c-4274-b643-714ce475a753" + "f909f911-924b-4292-854e-e16bd90a5cd5" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220128T233512Z:713ba86b-080c-4274-b643-714ce475a753" + "WESTUS:20220309T064517Z:f909f911-924b-4292-854e-e16bd90a5cd5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 28 Jan 2022 23:35:12 GMT" + "Wed, 09 Mar 2022 06:45:17 GMT" ], "Expires": [ "-1" @@ -895,16 +895,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/56834f08-bf30-4f9c-8153-23951703f346?api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy81NjgzNGYwOC1iZjMwLTRmOWMtODE1My0yMzk1MTcwM2YzNDY/YXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/cc78463e-075a-470c-8573-dbf6578678c3?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9jYzc4NDYzZS0wNzVhLTQ3MGMtODU3My1kYmY2NTc4Njc4YzM/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { @@ -921,32 +921,32 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143,a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143" + "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420" ], "x-ms-request-id": [ - "061b4d41-fcbb-46c3-be98-3c5c32f2b49c" + "e1f7ed3b-ce3e-4c9e-905e-9a77ededf75b" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11987" ], "x-ms-correlation-request-id": [ - "0796de7e-d94f-4c68-be79-be49d4126ebd" + "2ba6bab1-5201-4cac-8cff-28d4bc78eeaf" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220128T233542Z:0796de7e-d94f-4c68-be79-be49d4126ebd" + "WESTUS:20220309T064548Z:2ba6bab1-5201-4cac-8cff-28d4bc78eeaf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 28 Jan 2022 23:35:42 GMT" + "Wed, 09 Mar 2022 06:45:47 GMT" ], "Content-Length": [ - "182" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -955,20 +955,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-01-28T17:35:11.601419-06:00\",\r\n \"endTime\": \"2022-01-28T17:35:12.460832-06:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"56834f08-bf30-4f9c-8153-23951703f346\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-03-08T22:45:17.1715596-08:00\",\r\n \"endTime\": \"2022-03-08T22:45:18.0309041-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"cc78463e-075a-470c-8573-dbf6578678c3\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/56834f08-bf30-4f9c-8153-23951703f346?monitor=true&api-version=2021-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy81NjgzNGYwOC1iZjMwLTRmOWMtODE1My0yMzk1MTcwM2YzNDY/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjEtMTAtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/cc78463e-075a-470c-8573-dbf6578678c3?monitor=true&api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9jYzc4NDYzZS0wNzVhLTQ3MGMtODU3My1kYmY2NTc4Njc4YzM/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDEtMDM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/52.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { @@ -985,29 +985,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143,a129388d-91d6-4310-81e1-d02ce40a61ca_132846394026103143" + "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420" ], "x-ms-request-id": [ - "b0e43233-3e18-47d0-839a-e9775a0f9582" + "41c121a5-328b-4607-9d45-26dc72a2a84e" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11986" ], "x-ms-correlation-request-id": [ - "414d7f57-f052-441b-bf55-9080867291ec" + "646e16bf-5204-40a0-b73d-eba96ce47eaa" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220128T233542Z:414d7f57-f052-441b-bf55-9080867291ec" + "WESTUS:20220309T064548Z:646e16bf-5204-40a0-b73d-eba96ce47eaa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 28 Jan 2022 23:35:42 GMT" + "Wed, 09 Mar 2022 06:45:47 GMT" ], "Expires": [ "-1" @@ -1020,19 +1020,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/galleryPsTestRg4963?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzQ5NjM/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg2620?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI2MjA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "db1075b0-da0a-4f61-a438-f850d90016d4" + "87a42817-845d-4d41-a5f3-8ced63e69aad" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -1046,7 +1046,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkc0OTYzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkcyNjIwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" ], "Retry-After": [ "15" @@ -1055,13 +1055,13 @@ "14999" ], "x-ms-request-id": [ - "20bebd29-305c-4628-aecd-ebc0eb787fcf" + "cfb6bb1d-7977-4aa2-9af1-253318be80d6" ], "x-ms-correlation-request-id": [ - "20bebd29-305c-4628-aecd-ebc0eb787fcf" + "cfb6bb1d-7977-4aa2-9af1-253318be80d6" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220128T233543Z:20bebd29-305c-4628-aecd-ebc0eb787fcf" + "WESTUS:20220309T064550Z:cfb6bb1d-7977-4aa2-9af1-253318be80d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1070,7 +1070,7 @@ "nosniff" ], "Date": [ - "Fri, 28 Jan 2022 23:35:42 GMT" + "Wed, 09 Mar 2022 06:45:50 GMT" ], "Expires": [ "-1" @@ -1083,13 +1083,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkc0OTYzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIUVV4TVJWSlpVRk5VUlZOVVVrYzBPVFl6TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkcyNjIwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIUVV4TVJWSlpVRk5VUlZOVVVrY3lOakl3TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -1102,17 +1102,23 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkcyNjIwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-request-id": [ - "123e1257-dfa5-4c49-a28f-313ea6f9bd30" + "0875bea7-c082-4010-9f4b-9065ba9b3be3" ], "x-ms-correlation-request-id": [ - "123e1257-dfa5-4c49-a28f-313ea6f9bd30" + "0875bea7-c082-4010-9f4b-9065ba9b3be3" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220128T233558Z:123e1257-dfa5-4c49-a28f-313ea6f9bd30" + "WESTUS:20220309T064605Z:0875bea7-c082-4010-9f4b-9065ba9b3be3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1121,7 +1127,7 @@ "nosniff" ], "Date": [ - "Fri, 28 Jan 2022 23:35:57 GMT" + "Wed, 09 Mar 2022 06:46:05 GMT" ], "Expires": [ "-1" @@ -1131,16 +1137,16 @@ ] }, "ResponseBody": "", - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkc0OTYzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIUVV4TVJWSlpVRk5VUlZOVVVrYzBPVFl6TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkcyNjIwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIUVV4TVJWSlpVRk5VUlZOVVVrY3lOakl3TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.21.56803", + "FxVersion/4.700.22.11601", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.22000", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -1153,17 +1159,239 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkcyNjIwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-request-id": [ - "cb573133-3bef-4d97-98d3-9fa75da14efd" + "9d0e5e78-aab4-4e8d-bcda-1cdf305f8055" + ], + "x-ms-correlation-request-id": [ + "9d0e5e78-aab4-4e8d-bcda-1cdf305f8055" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220309T064620Z:9d0e5e78-aab4-4e8d-bcda-1cdf305f8055" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 09 Mar 2022 06:46:20 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkcyNjIwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIUVV4TVJWSlpVRk5VUlZOVVVrY3lOakl3TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.11601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkcyNjIwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "0f461a64-acaf-4905-a3e4-b171bf7a334d" + ], + "x-ms-correlation-request-id": [ + "0f461a64-acaf-4905-a3e4-b171bf7a334d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220309T064635Z:0f461a64-acaf-4905-a3e4-b171bf7a334d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 09 Mar 2022 06:46:35 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkcyNjIwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIUVV4TVJWSlpVRk5VUlZOVVVrY3lOakl3TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.11601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkcyNjIwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "151440eb-6e1e-4073-9a11-a1ce000fb03c" + ], + "x-ms-correlation-request-id": [ + "151440eb-6e1e-4073-9a11-a1ce000fb03c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220309T064651Z:151440eb-6e1e-4073-9a11-a1ce000fb03c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 09 Mar 2022 06:46:50 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkcyNjIwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIUVV4TVJWSlpVRk5VUlZOVVVrY3lOakl3TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.11601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "70cdc694-f32e-49ef-b778-bf95feab098a" + ], + "x-ms-correlation-request-id": [ + "70cdc694-f32e-49ef-b778-bf95feab098a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220309T064706Z:70cdc694-f32e-49ef-b778-bf95feab098a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 09 Mar 2022 06:47:06 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkcyNjIwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIUVV4TVJWSlpVRk5VUlZOVVVrY3lOakl3TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.11601", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "c40e7b19-da59-4ea7-9d8f-636bd0572583" ], "x-ms-correlation-request-id": [ - "cb573133-3bef-4d97-98d3-9fa75da14efd" + "c40e7b19-da59-4ea7-9d8f-636bd0572583" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20220128T233558Z:cb573133-3bef-4d97-98d3-9fa75da14efd" + "WESTUS:20220309T064706Z:c40e7b19-da59-4ea7-9d8f-636bd0572583" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1172,7 +1400,7 @@ "nosniff" ], "Date": [ - "Fri, 28 Jan 2022 23:35:57 GMT" + "Wed, 09 Mar 2022 06:47:06 GMT" ], "Expires": [ "-1" @@ -1187,11 +1415,11 @@ ], "Names": { "Gallery_SharingToSubscriptionAndTenant_CRUD_Tests": [ - "galleryPsTestRg4963", - "galleryPsTestGallery7828" + "galleryPsTestRg2620", + "galleryPsTestGallery6165" ] }, "Variables": { - "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871" + "SubscriptionId": "97f78232-382b-46a7-8a72-964d692c4f3f" } } \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/SharedGalleryTests/SharedGalleryImageVersion_GetAndList_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/SharedGalleryTests/SharedGalleryImageVersion_GetAndList_Tests.json index c24c7cd381fc1..a1361b02f993e 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/SharedGalleryTests/SharedGalleryImageVersion_GetAndList_Tests.json +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/SharedGalleryTests/SharedGalleryImageVersion_GetAndList_Tests.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/images/jmaesscc/versions/1.0.0?api-version=2021-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlYvaW1hZ2VzL2ptYWVzc2NjL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjEtMDctMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/images/jmaesscc/versions/1.0.0?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlYvaW1hZ2VzL2ptYWVzc2NjL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3bda61ad-1b76-4b3c-8225-e02c541d5b85" + "e878367b-2a52-41a2-bd46-9c354172777e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/48.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { @@ -30,10 +30,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132702286352652809" + "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132902158476019100" ], "x-ms-request-id": [ - "b9e2ef6e-dacb-438b-9147-525d0de33ce5" + "09f571d4-6f98-4641-9983-f0ea1456354e" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -43,19 +43,19 @@ "11999" ], "x-ms-correlation-request-id": [ - "7d52bd98-5318-4c4f-9cb7-8a19914c9c87" + "07db66b4-c884-4bbb-afdd-592b87c4694c" ], "x-ms-routing-request-id": [ - "EASTUS2:20210727T042724Z:7d52bd98-5318-4c4f-9cb7-8a19914c9c87" + "WESTUS:20220309T064017Z:07db66b4-c884-4bbb-afdd-592b87c4694c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 27 Jul 2021 04:27:24 GMT" + "Wed, 09 Mar 2022 06:40:17 GMT" ], "Content-Length": [ - "287" + "444" ], "Content-Type": [ "application/json; charset=utf-8" @@ -64,26 +64,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"identifier\": {\r\n \"uniqueId\": \"/SharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/Images/jmaesscc/Versions/1.0.0\"\r\n },\r\n \"properties\": {\r\n \"publishedDate\": \"2021-01-28T04:14:24.4218083+00:00\"\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"identifier\": {\r\n \"uniqueId\": \"/SharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/Images/jmaesscc/Versions/1.0.0\"\r\n },\r\n \"properties\": {\r\n \"publishedDate\": \"2021-01-27T20:14:24.4218083-08:00\",\r\n \"excludeFromLatest\": false,\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"diskSizeGB\": 29,\r\n \"hostCaching\": \"None\"\r\n }\r\n }\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"1.0.0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/images/jmaesscc/versions?api-version=2021-07-01&sharedTo=tenant", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlYvaW1hZ2VzL2ptYWVzc2NjL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjEtMDctMDEmc2hhcmVkVG89dGVuYW50", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/images/jmaesscc/versions?api-version=2022-01-03&sharedTo=tenant", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlYvaW1hZ2VzL2ptYWVzc2NjL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjItMDEtMDMmc2hhcmVkVG89dGVuYW50", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d0c216a4-ae75-4539-8799-1ab3653ad169" + "2284f67d-2a60-40f8-b2dc-f1ab0c1941ee" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/48.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { @@ -97,10 +97,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132702286352652809" + "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132902158476019100" ], "x-ms-request-id": [ - "92170531-ad15-4bc8-96e7-8bf6bde63ee8" + "f1695c69-9a68-4d82-964d-5950fc10268e" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -110,19 +110,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "1cdec280-0e8e-481e-a229-106639bedf9e" + "68e901f2-1cf4-431e-acd0-7a3e42cfc3f7" ], "x-ms-routing-request-id": [ - "EASTUS2:20210727T042724Z:1cdec280-0e8e-481e-a229-106639bedf9e" + "WESTUS:20220309T064017Z:68e901f2-1cf4-431e-acd0-7a3e42cfc3f7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 27 Jul 2021 04:27:24 GMT" + "Wed, 09 Mar 2022 06:40:17 GMT" ], "Content-Length": [ - "352" + "537" ], "Content-Type": [ "application/json; charset=utf-8" @@ -131,26 +131,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"identifier\": {\r\n \"uniqueId\": \"/SharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/Images/jmaesscc/Versions/1.0.0\"\r\n },\r\n \"properties\": {\r\n \"publishedDate\": \"2021-01-28T04:14:24.4218083+00:00\"\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"1.0.0\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"identifier\": {\r\n \"uniqueId\": \"/SharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/Images/jmaesscc/Versions/1.0.0\"\r\n },\r\n \"properties\": {\r\n \"publishedDate\": \"2021-01-27T20:14:24.4218083-08:00\",\r\n \"excludeFromLatest\": false,\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"diskSizeGB\": 29,\r\n \"hostCaching\": \"None\"\r\n }\r\n }\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"1.0.0\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/images/jmaesscc/versions?api-version=2021-07-01&sharedTo=tenant", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlYvaW1hZ2VzL2ptYWVzc2NjL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjEtMDctMDEmc2hhcmVkVG89dGVuYW50", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/images/jmaesscc/versions?api-version=2022-01-03&sharedTo=tenant", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlYvaW1hZ2VzL2ptYWVzc2NjL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjItMDEtMDMmc2hhcmVkVG89dGVuYW50", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "67df02a3-4d4d-4916-bea5-3c5c31173595" + "9e5fe271-e412-485f-8c0b-c02d4ff9b62b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/48.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { @@ -164,10 +164,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132702286352652809" + "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132902158476019100" ], "x-ms-request-id": [ - "d1c7538b-179a-44b8-a80a-f89a3c4fefba" + "f27a5b1c-34da-45f3-9644-efcb7559196a" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -177,19 +177,19 @@ "11996" ], "x-ms-correlation-request-id": [ - "fb60580d-b999-46a5-91f1-de82230d3421" + "c58ff935-793b-4b7a-a168-e8a7d1b763cb" ], "x-ms-routing-request-id": [ - "EASTUS2:20210727T042724Z:fb60580d-b999-46a5-91f1-de82230d3421" + "WESTUS:20220309T064018Z:c58ff935-793b-4b7a-a168-e8a7d1b763cb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 27 Jul 2021 04:27:24 GMT" + "Wed, 09 Mar 2022 06:40:17 GMT" ], "Content-Length": [ - "352" + "537" ], "Content-Type": [ "application/json; charset=utf-8" @@ -198,26 +198,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"identifier\": {\r\n \"uniqueId\": \"/SharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/Images/jmaesscc/Versions/1.0.0\"\r\n },\r\n \"properties\": {\r\n \"publishedDate\": \"2021-01-28T04:14:24.4218083+00:00\"\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"1.0.0\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"identifier\": {\r\n \"uniqueId\": \"/SharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/Images/jmaesscc/Versions/1.0.0\"\r\n },\r\n \"properties\": {\r\n \"publishedDate\": \"2021-01-27T20:14:24.4218083-08:00\",\r\n \"excludeFromLatest\": false,\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"diskSizeGB\": 29,\r\n \"hostCaching\": \"None\"\r\n }\r\n }\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"1.0.0\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/images/jmaesscc/versions?api-version=2021-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlYvaW1hZ2VzL2ptYWVzc2NjL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjEtMDctMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/images/jmaesscc/versions?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlYvaW1hZ2VzL2ptYWVzc2NjL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5fb03dac-b256-480b-94de-a6649b5784ba" + "8e71505b-1351-49b9-8235-9f1b0d7676e9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/48.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { @@ -231,10 +231,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132702286352652809" + "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132902158476019100" ], "x-ms-request-id": [ - "6106ea8c-c682-4099-a864-800f35c32a08" + "877ae672-b1cf-4273-92cd-3dc07b89741f" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -244,19 +244,19 @@ "11997" ], "x-ms-correlation-request-id": [ - "ee713e7c-5c99-4ab2-a2c8-05277b15e715" + "29da8474-179d-4f08-84e9-bb0fe952ac15" ], "x-ms-routing-request-id": [ - "EASTUS2:20210727T042724Z:ee713e7c-5c99-4ab2-a2c8-05277b15e715" + "WESTUS:20220309T064017Z:29da8474-179d-4f08-84e9-bb0fe952ac15" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 27 Jul 2021 04:27:24 GMT" + "Wed, 09 Mar 2022 06:40:17 GMT" ], "Content-Length": [ - "352" + "537" ], "Content-Type": [ "application/json; charset=utf-8" @@ -265,12 +265,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"identifier\": {\r\n \"uniqueId\": \"/SharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/Images/jmaesscc/Versions/1.0.0\"\r\n },\r\n \"properties\": {\r\n \"publishedDate\": \"2021-01-28T04:14:24.4218083+00:00\"\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"1.0.0\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"identifier\": {\r\n \"uniqueId\": \"/SharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/Images/jmaesscc/Versions/1.0.0\"\r\n },\r\n \"properties\": {\r\n \"publishedDate\": \"2021-01-27T20:14:24.4218083-08:00\",\r\n \"excludeFromLatest\": false,\r\n \"storageProfile\": {\r\n \"osDiskImage\": {\r\n \"diskSizeGB\": 29,\r\n \"hostCaching\": \"None\"\r\n }\r\n }\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"1.0.0\"\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871" + "SubscriptionId": "97f78232-382b-46a7-8a72-964d692c4f3f" } } \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/SharedGalleryTests/SharedGalleryImage_GetAndList_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/SharedGalleryTests/SharedGalleryImage_GetAndList_Tests.json index 705572757c932..b874537bc2f26 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/SharedGalleryTests/SharedGalleryImage_GetAndList_Tests.json +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/SharedGalleryTests/SharedGalleryImage_GetAndList_Tests.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/images/jmaesscc?api-version=2021-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlYvaW1hZ2VzL2ptYWVzc2NjP2FwaS12ZXJzaW9uPTIwMjEtMDctMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/images/jmaesscc?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlYvaW1hZ2VzL2ptYWVzc2NjP2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b4068ce-62f8-4dc6-991e-cb2df5becc19" + "a1faa739-a24c-4153-a0b6-f72b68650194" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/48.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { @@ -30,10 +30,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132702286352652809" + "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132902158476019100" ], "x-ms-request-id": [ - "aed22119-ed1f-4710-9847-8be693562e22" + "8b8779fc-b09b-4972-88fb-89a611074f4c" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -43,16 +43,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "fe72d1ef-72f2-46c8-8e2e-0693283f8d72" + "9bd7d3e4-667a-4e63-b32b-a8c18d6841b3" ], "x-ms-routing-request-id": [ - "EASTUS2:20210727T042723Z:fe72d1ef-72f2-46c8-8e2e-0693283f8d72" + "WESTUS:20220309T064014Z:9bd7d3e4-667a-4e63-b32b-a8c18d6841b3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 27 Jul 2021 04:27:23 GMT" + "Wed, 09 Mar 2022 06:40:14 GMT" ], "Content-Length": [ "476" @@ -68,22 +68,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/images?api-version=2021-07-01&sharedTo=tenant", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlYvaW1hZ2VzP2FwaS12ZXJzaW9uPTIwMjEtMDctMDEmc2hhcmVkVG89dGVuYW50", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/images?api-version=2022-01-03&sharedTo=tenant", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlYvaW1hZ2VzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDMmc2hhcmVkVG89dGVuYW50", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7651f1de-26dd-4b88-85cc-bd067a649038" + "10774bc7-59f4-498f-8541-9d80521fbd24" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/48.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { @@ -97,10 +97,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132702286352652809" + "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132902158476019100" ], "x-ms-request-id": [ - "be21ff9b-b063-4e17-a3f6-7fda6ead7512" + "f02fd1e4-4359-4de6-828a-688a776b79e9" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -110,16 +110,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "2f7b77e1-ad8d-4dbf-966b-7eefdc8725f2" + "629b5353-99f0-4dc1-8332-805bb955cc6a" ], "x-ms-routing-request-id": [ - "EASTUS2:20210727T042723Z:2f7b77e1-ad8d-4dbf-966b-7eefdc8725f2" + "WESTUS:20220309T064014Z:629b5353-99f0-4dc1-8332-805bb955cc6a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 27 Jul 2021 04:27:23 GMT" + "Wed, 09 Mar 2022 06:40:14 GMT" ], "Content-Length": [ "577" @@ -135,22 +135,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/images?api-version=2021-07-01&sharedTo=tenant", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlYvaW1hZ2VzP2FwaS12ZXJzaW9uPTIwMjEtMDctMDEmc2hhcmVkVG89dGVuYW50", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/images?api-version=2022-01-03&sharedTo=tenant", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlYvaW1hZ2VzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDMmc2hhcmVkVG89dGVuYW50", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "93b6fd41-32b0-4f9a-b7f8-4d3c455f37c7" + "2f2d04ae-b480-4396-9857-ba0ce05a561e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/48.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { @@ -164,10 +164,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132702286352652809" + "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132902158476019100" ], "x-ms-request-id": [ - "605d6154-2d03-4445-9ea8-a25fba17b8e6" + "c408f066-0aa2-4617-85c1-a40957657cd8" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -177,16 +177,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "978692bc-a330-48e6-9e84-edeadac10cf5" + "a7fb0c2e-1058-4c97-adc6-f820d675a6b5" ], "x-ms-routing-request-id": [ - "EASTUS2:20210727T042723Z:978692bc-a330-48e6-9e84-edeadac10cf5" + "WESTUS:20220309T064014Z:a7fb0c2e-1058-4c97-adc6-f820d675a6b5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 27 Jul 2021 04:27:23 GMT" + "Wed, 09 Mar 2022 06:40:14 GMT" ], "Content-Length": [ "577" @@ -202,22 +202,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/images?api-version=2021-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlYvaW1hZ2VzP2FwaS12ZXJzaW9uPTIwMjEtMDctMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/images?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlYvaW1hZ2VzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "72b81a2b-1946-4ef8-8e00-29dd67336131" + "fb3c575f-c66b-47c3-9ba6-00c2443ce69d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/48.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { @@ -231,10 +231,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132702286352652809" + "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132902158476019100" ], "x-ms-request-id": [ - "70a096cd-a0af-4ea5-ab21-881be10db189" + "1345c841-8f03-411c-88d8-3f13854386c3" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -244,16 +244,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "f01affcd-a4e7-4820-88cc-97215d6d1414" + "2d2b8619-c2dc-4915-9d6d-40dc872f6878" ], "x-ms-routing-request-id": [ - "EASTUS2:20210727T042723Z:f01affcd-a4e7-4820-88cc-97215d6d1414" + "WESTUS:20220309T064014Z:2d2b8619-c2dc-4915-9d6d-40dc872f6878" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 27 Jul 2021 04:27:23 GMT" + "Wed, 09 Mar 2022 06:40:14 GMT" ], "Content-Length": [ "577" @@ -271,6 +271,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871" + "SubscriptionId": "97f78232-382b-46a7-8a72-964d692c4f3f" } } \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/SharedGalleryTests/SharedGallery_GetAndList_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/SharedGalleryTests/SharedGallery_GetAndList_Tests.json index a5af94b8ba9ce..fa34a12868bad 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/SharedGalleryTests/SharedGallery_GetAndList_Tests.json +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/SharedGalleryTests/SharedGallery_GetAndList_Tests.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV?api-version=2021-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlY/YXBpLXZlcnNpb249MjAyMS0wNy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlY/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "47742f05-2735-48cb-be38-2ac12c1b60cc" + "5a71a399-e1f1-4e06-b013-d2ee6f23e2c9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/48.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { @@ -30,10 +30,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132702286352652809" + "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132895603710570547" ], "x-ms-request-id": [ - "093e82d9-98c7-47c8-b5a7-949ea613c28c" + "229ef5e9-02d8-415a-86cf-b2fe622e8c54" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -43,16 +43,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "cebae7d1-2aec-470b-8e8a-e5d83ea456e4" + "5137bd40-9f89-408c-a215-a774e6de3f60" ], "x-ms-routing-request-id": [ - "EASTUS2:20210727T042724Z:cebae7d1-2aec-470b-8e8a-e5d83ea456e4" + "WESTUS:20220316T015514Z:5137bd40-9f89-408c-a215-a774e6de3f60" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 27 Jul 2021 04:27:23 GMT" + "Wed, 16 Mar 2022 01:55:13 GMT" ], "Content-Length": [ "226" @@ -68,22 +68,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries?api-version=2021-07-01&sharedTo=tenant", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzP2FwaS12ZXJzaW9uPTIwMjEtMDctMDEmc2hhcmVkVG89dGVuYW50", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries?api-version=2022-01-03&sharedTo=tenant", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDMmc2hhcmVkVG89dGVuYW50", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b4ad981f-baba-42a9-8772-25344525b8f5" + "afd0ba22-5f75-4d7c-afcf-27417495637e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/48.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { @@ -97,10 +97,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "0ac215da-9fa3-417d-b10f-e2e37ecff6d1_132707842214964837" + "74657d10-ae84-4ba1-9987-bf2190e52342_132880360530032567" ], "x-ms-request-id": [ - "818283d1-20b6-4ce7-882e-7fe96800bf8e" + "0b311d1d-90d1-45dc-bf52-e44fb74b60f8" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -110,16 +110,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "88190893-21f5-45bc-95dd-56caf821436a" + "a2bbbc41-25f3-4491-954c-ca2d6a1ffb35" ], "x-ms-routing-request-id": [ - "EASTUS2:20210727T042724Z:88190893-21f5-45bc-95dd-56caf821436a" + "WESTUS:20220316T015514Z:a2bbbc41-25f3-4491-954c-ca2d6a1ffb35" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 27 Jul 2021 04:27:23 GMT" + "Wed, 16 Mar 2022 01:55:14 GMT" ], "Content-Length": [ "279" @@ -135,22 +135,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries?api-version=2021-07-01&sharedTo=tenant", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzP2FwaS12ZXJzaW9uPTIwMjEtMDctMDEmc2hhcmVkVG89dGVuYW50", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries?api-version=2022-01-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d081f63e-3ca8-4373-bd52-72bef311f7f7" + "c5de8d4c-7b97-460f-a0fa-aaf7bf0480d4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/48.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0" ] }, "ResponseHeaders": { @@ -164,77 +164,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "0ac215da-9fa3-417d-b10f-e2e37ecff6d1_132707842214964837" + "74657d10-ae84-4ba1-9987-bf2190e52342_132880360530032567" ], "x-ms-request-id": [ - "3f2cee8e-3936-408b-b246-ade1a87ec118" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-correlation-request-id": [ - "571fe09e-5022-46c2-bcca-19cf6dee6c02" - ], - "x-ms-routing-request-id": [ - "EASTUS2:20210727T042724Z:571fe09e-5022-46c2-bcca-19cf6dee6c02" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 27 Jul 2021 04:27:23 GMT" - ], - "Content-Length": [ - "279" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"identifier\": {\r\n \"uniqueId\": \"/SharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV\"\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries?api-version=2021-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzP2FwaS12ZXJzaW9uPTIwMjEtMDctMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f0bd7022-7936-42b5-83b0-71eee4528b93" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29518.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/48.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "0ac215da-9fa3-417d-b10f-e2e37ecff6d1_132707842214964837" - ], - "x-ms-request-id": [ - "76140309-ead6-486e-9672-5c27e2a340cf" + "72d49584-fd4f-4b45-96e3-04258468e78a" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -244,19 +177,19 @@ "11997" ], "x-ms-correlation-request-id": [ - "5bf13484-9993-47a1-a58c-89e5a046864d" + "231d8c7c-cd12-43ab-9fc8-a6d189ebd9a4" ], "x-ms-routing-request-id": [ - "EASTUS2:20210727T042724Z:5bf13484-9993-47a1-a58c-89e5a046864d" + "WESTUS:20220316T015514Z:231d8c7c-cd12-43ab-9fc8-a6d189ebd9a4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 27 Jul 2021 04:27:23 GMT" + "Wed, 16 Mar 2022 01:55:14 GMT" ], "Content-Length": [ - "279" + "526" ], "Content-Type": [ "application/json; charset=utf-8" @@ -265,12 +198,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"identifier\": {\r\n \"uniqueId\": \"/SharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV\"\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"identifier\": {\r\n \"uniqueId\": \"/SharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV\"\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV\"\r\n },\r\n {\r\n \"identifier\": {\r\n \"uniqueId\": \"/SharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEDGALWCUS\"\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEDGALWCUS\"\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871" + "SubscriptionId": "97f78232-382b-46a7-8a72-964d692c4f3f" } } \ No newline at end of file