diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/AzSdk.RP.props b/sdk/compute/Microsoft.Azure.Management.Compute/AzSdk.RP.props
index bccff85b596b..a121d26e6a76 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-08-01;Compute_2022-07-02;Compute_2022-04-04;Compute_2022-03-02;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
+ Compute-2022-08-01;Compute_2022-07-02;Compute_2022-04-04;Compute_2022-03-02;Compute_2022-03-01;Compute_2021-11-01;Compute_2021-03-01;Compute_2021-07-01;Compute_2021-12-01;Compute_2022-03-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/GalleryApplicationVersion.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/GalleryApplicationVersion.cs
new file mode 100644
index 000000000000..d95153dffdb2
--- /dev/null
+++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/GalleryApplicationVersion.cs
@@ -0,0 +1,24 @@
+using System.Collections.Generic;
+
+namespace Microsoft.Azure.Management.Compute.Models
+{
+ public partial class GalleryApplicationVersion
+ {
+ public GalleryApplicationVersion(
+ string location,
+ GalleryApplicationVersionPublishingProfile publishingProfile,
+ string id,
+ string name,
+ string type,
+ IDictionary tags,
+ string provisioningState,
+ ReplicationStatus replicationStatus = default(ReplicationStatus))
+ : base(location, id, name, type, tags)
+ {
+ PublishingProfile = publishingProfile;
+ ProvisioningState = provisioningState;
+ ReplicationStatus = replicationStatus;
+ CustomInit();
+ }
+ }
+}
diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/GalleryApplicationVersionUpdate.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/GalleryApplicationVersionUpdate.cs
new file mode 100644
index 000000000000..c1aea2411a2e
--- /dev/null
+++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/GalleryApplicationVersionUpdate.cs
@@ -0,0 +1,23 @@
+using System.Collections.Generic;
+
+namespace Microsoft.Azure.Management.Compute.Models
+{
+ public partial class GalleryApplicationVersionUpdate
+ {
+ GalleryApplicationVersionUpdate(
+ GalleryApplicationVersionPublishingProfile publishingProfile,
+ string id,
+ string name,
+ string type,
+ IDictionary tags,
+ string provisioningState,
+ ReplicationStatus replicationStatus = default(ReplicationStatus))
+ : base(id, name, type, tags)
+ {
+ PublishingProfile = publishingProfile;
+ ProvisioningState = provisioningState;
+ ReplicationStatus = replicationStatus;
+ CustomInit();
+ }
+ }
+}
diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/GalleryImageVersion.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/GalleryImageVersion.cs
new file mode 100644
index 000000000000..942304685c12
--- /dev/null
+++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/GalleryImageVersion.cs
@@ -0,0 +1,26 @@
+using System.Collections.Generic;
+
+namespace Microsoft.Azure.Management.Compute.Models
+{
+ public partial class GalleryImageVersion
+ {
+ public GalleryImageVersion(
+ string location,
+ GalleryImageVersionStorageProfile storageProfile,
+ string id,
+ string name,
+ string type,
+ IDictionary tags,
+ GalleryImageVersionPublishingProfile publishingProfile,
+ string provisioningState,
+ ReplicationStatus replicationStatus)
+ : base(location, id, name, type, tags)
+ {
+ PublishingProfile = publishingProfile;
+ ProvisioningState = provisioningState;
+ StorageProfile = storageProfile;
+ ReplicationStatus = replicationStatus;
+ CustomInit();
+ }
+ }
+}
diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/GalleryImageVersionUpdate.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/GalleryImageVersionUpdate.cs
new file mode 100644
index 000000000000..d658af6c2bf3
--- /dev/null
+++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/GalleryImageVersionUpdate.cs
@@ -0,0 +1,25 @@
+using System.Collections.Generic;
+
+namespace Microsoft.Azure.Management.Compute.Models
+{
+ public partial class GalleryImageVersionUpdate
+ {
+ public GalleryImageVersionUpdate(
+ GalleryImageVersionStorageProfile storageProfile,
+ string id,
+ string name,
+ string type,
+ IDictionary tags,
+ GalleryImageVersionPublishingProfile publishingProfile,
+ string provisioningState,
+ ReplicationStatus replicationStatus)
+ : base(id, name, type, tags)
+ {
+ PublishingProfile = publishingProfile;
+ ProvisioningState = provisioningState;
+ StorageProfile = storageProfile;
+ ReplicationStatus = replicationStatus;
+ 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 aca425211ae0..013f821aab47 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 = "2022-01-03";
+ string apiVersion = "2022-03-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 ae3a9012dd99..ba9d415062da 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 = "2022-01-03";
+ string apiVersion = "2022-03-03";
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
@@ -316,7 +316,7 @@ internal CommunityGalleryImageVersionsOperations(ComputeManagementClient client)
{
throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageName");
}
- string apiVersion = "2022-01-03";
+ string apiVersion = "2022-03-03";
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
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 45392d981068..2d539e9fe29a 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 = "2022-01-03";
+ string apiVersion = "2022-03-03";
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
@@ -297,7 +297,7 @@ internal CommunityGalleryImagesOperations(ComputeManagementClient client)
{
throw new ValidationException(ValidationRules.CannotBeNull, "publicGalleryName");
}
- string apiVersion = "2022-01-03";
+ string apiVersion = "2022-03-03";
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
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 f6976a3c43f1..b0d8c2d6a189 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 = "2022-01-03";
+ string apiVersion = "2022-03-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 = "2022-01-03";
+ string apiVersion = "2022-03-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 = "2022-01-03";
+ string apiVersion = "2022-03-03";
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
@@ -756,7 +756,7 @@ internal GalleriesOperations(ComputeManagementClient client)
{
gallery.Validate();
}
- string apiVersion = "2022-01-03";
+ string apiVersion = "2022-03-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 = "2022-01-03";
+ string apiVersion = "2022-03-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 = "2022-01-03";
+ string apiVersion = "2022-03-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 837474b39ecd..c27cb3bed150 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 = "2022-01-03";
+ string apiVersion = "2022-03-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 = "2022-01-03";
+ string apiVersion = "2022-03-03";
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
@@ -656,7 +656,7 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client)
{
galleryApplicationVersion.Validate();
}
- string apiVersion = "2022-01-03";
+ string apiVersion = "2022-03-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 = "2022-01-03";
+ string apiVersion = "2022-03-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 = "2022-01-03";
+ string apiVersion = "2022-03-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 0fc03e143abb..0b417c20c00f 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 = "2022-01-03";
+ string apiVersion = "2022-03-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 = "2022-01-03";
+ string apiVersion = "2022-03-03";
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
@@ -602,7 +602,7 @@ internal GalleryApplicationsOperations(ComputeManagementClient client)
{
galleryApplication.Validate();
}
- string apiVersion = "2022-01-03";
+ string apiVersion = "2022-03-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 = "2022-01-03";
+ string apiVersion = "2022-03-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 = "2022-01-03";
+ string apiVersion = "2022-03-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 ea6728a47d11..3774e9c0f557 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 = "2022-01-03";
+ string apiVersion = "2022-03-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 = "2022-01-03";
+ string apiVersion = "2022-03-03";
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
@@ -650,7 +650,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client)
{
galleryImageVersion.Validate();
}
- string apiVersion = "2022-01-03";
+ string apiVersion = "2022-03-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 = "2022-01-03";
+ string apiVersion = "2022-03-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 = "2022-01-03";
+ string apiVersion = "2022-03-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 66290d0397d5..7b73a486abf7 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 = "2022-01-03";
+ string apiVersion = "2022-03-03";
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
@@ -342,6 +342,218 @@ internal GalleryImagesOperations(ComputeManagementClient client)
return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false);
}
+ ///
+ /// Retrieves information about the latest image version in the Gallery Image.
+ ///
+ ///
+ /// The name of the resource group.
+ ///
+ ///
+ /// The name of the Shared Image Gallery from which the Image Definitions are
+ /// to be retrieved.
+ ///
+ ///
+ /// The name of the gallery image definition to be retrieved.
+ ///
+ ///
+ /// The location to query for the latest version name.
+ ///
+ ///
+ /// 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> GetLatestVersionNameWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, string location = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
+ {
+ if (Client.SubscriptionId == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId");
+ }
+ if (resourceGroupName == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName");
+ }
+ if (galleryName == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "galleryName");
+ }
+ if (galleryImageName == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageName");
+ }
+ string apiVersion = "2022-03-03";
+ // Tracing
+ bool _shouldTrace = ServiceClientTracing.IsEnabled;
+ string _invocationId = null;
+ if (_shouldTrace)
+ {
+ _invocationId = ServiceClientTracing.NextInvocationId.ToString();
+ Dictionary tracingParameters = new Dictionary();
+ tracingParameters.Add("resourceGroupName", resourceGroupName);
+ tracingParameters.Add("galleryName", galleryName);
+ tracingParameters.Add("galleryImageName", galleryImageName);
+ tracingParameters.Add("apiVersion", apiVersion);
+ tracingParameters.Add("location", location);
+ tracingParameters.Add("cancellationToken", cancellationToken);
+ ServiceClientTracing.Enter(_invocationId, this, "GetLatestVersionName", tracingParameters);
+ }
+ // Construct URL
+ var _baseUrl = Client.BaseUri.AbsoluteUri;
+ var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/images/{galleryImageName}/latestVersionName").ToString();
+ _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId));
+ _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName));
+ _url = _url.Replace("{galleryName}", System.Uri.EscapeDataString(galleryName));
+ _url = _url.Replace("{galleryImageName}", System.Uri.EscapeDataString(galleryImageName));
+ List _queryParameters = new List();
+ if (apiVersion != null)
+ {
+ _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion)));
+ }
+ if (location != null)
+ {
+ _queryParameters.Add(string.Format("location={0}", System.Uri.EscapeDataString(location)));
+ }
+ 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 gallery image definitions in a gallery.
///
@@ -387,7 +599,7 @@ internal GalleryImagesOperations(ComputeManagementClient client)
{
throw new ValidationException(ValidationRules.CannotBeNull, "galleryName");
}
- string apiVersion = "2022-01-03";
+ string apiVersion = "2022-03-03";
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
@@ -602,7 +814,7 @@ internal GalleryImagesOperations(ComputeManagementClient client)
{
galleryImage.Validate();
}
- string apiVersion = "2022-01-03";
+ string apiVersion = "2022-03-03";
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
@@ -858,7 +1070,7 @@ internal GalleryImagesOperations(ComputeManagementClient client)
{
throw new ValidationException(ValidationRules.CannotBeNull, "galleryImage");
}
- string apiVersion = "2022-01-03";
+ string apiVersion = "2022-03-03";
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
@@ -1066,7 +1278,7 @@ internal GalleryImagesOperations(ComputeManagementClient client)
{
throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageName");
}
- string apiVersion = "2022-01-03";
+ string apiVersion = "2022-03-03";
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImagesOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImagesOperationsExtensions.cs
index 578c096bffa6..5b8574a00b06 100644
--- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImagesOperationsExtensions.cs
+++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImagesOperationsExtensions.cs
@@ -230,6 +230,60 @@ public static void Delete(this IGalleryImagesOperations operations, string resou
(await operations.DeleteWithHttpMessagesAsync(resourceGroupName, galleryName, galleryImageName, null, cancellationToken).ConfigureAwait(false)).Dispose();
}
+ ///
+ /// Retrieves information about the latest image version in the Gallery Image.
+ ///
+ ///
+ /// The operations group for this extension method.
+ ///
+ ///
+ /// The name of the resource group.
+ ///
+ ///
+ /// The name of the Shared Image Gallery from which the Image Definitions are
+ /// to be retrieved.
+ ///
+ ///
+ /// The name of the gallery image definition to be retrieved.
+ ///
+ ///
+ /// The location to query for the latest version name.
+ ///
+ public static LatestGalleryImageVersion GetLatestVersionName(this IGalleryImagesOperations operations, string resourceGroupName, string galleryName, string galleryImageName, string location = default(string))
+ {
+ return operations.GetLatestVersionNameAsync(resourceGroupName, galleryName, galleryImageName, location).GetAwaiter().GetResult();
+ }
+
+ ///
+ /// Retrieves information about the latest image version in the Gallery Image.
+ ///
+ ///
+ /// The operations group for this extension method.
+ ///
+ ///
+ /// The name of the resource group.
+ ///
+ ///
+ /// The name of the Shared Image Gallery from which the Image Definitions are
+ /// to be retrieved.
+ ///
+ ///
+ /// The name of the gallery image definition to be retrieved.
+ ///
+ ///
+ /// The location to query for the latest version name.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ public static async Task GetLatestVersionNameAsync(this IGalleryImagesOperations operations, string resourceGroupName, string galleryName, string galleryImageName, string location = default(string), CancellationToken cancellationToken = default(CancellationToken))
+ {
+ using (var _result = await operations.GetLatestVersionNameWithHttpMessagesAsync(resourceGroupName, galleryName, galleryImageName, location, null, cancellationToken).ConfigureAwait(false))
+ {
+ return _result.Body;
+ }
+ }
+
///
/// List gallery image definitions in a gallery.
///
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 a85c3afeeb02..06b157a1bf5d 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 = "2022-01-03";
+ string apiVersion = "2022-03-03";
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IGalleryImagesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IGalleryImagesOperations.cs
index bfe8aaf91f55..cdda5ed5dc65 100644
--- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IGalleryImagesOperations.cs
+++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IGalleryImagesOperations.cs
@@ -149,6 +149,39 @@ public partial interface IGalleryImagesOperations
///
Task DeleteWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
///
+ /// Retrieves information about the latest image version in the Gallery
+ /// Image.
+ ///
+ ///
+ /// The name of the resource group.
+ ///
+ ///
+ /// The name of the Shared Image Gallery from which the Image
+ /// Definitions are to be retrieved.
+ ///
+ ///
+ /// The name of the gallery image definition to be retrieved.
+ ///
+ ///
+ /// The location to query for the latest version name.
+ ///
+ ///
+ /// 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> GetLatestVersionNameWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, string location = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
+ ///
/// List gallery image definitions in a gallery.
///
///
diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryApplication.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryApplication.cs
index b491fe0fabb2..ab76da02efee 100644
--- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryApplication.cs
+++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryApplication.cs
@@ -56,7 +56,10 @@ public GalleryApplication()
/// The end of life date of the gallery
/// Application Definition. This property can be used for
/// decommissioning purposes. This property is updatable.
- public GalleryApplication(string location, OperatingSystemTypes supportedOSType, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string description = default(string), string eula = default(string), string privacyStatementUri = default(string), string releaseNoteUri = default(string), System.DateTime? endOfLifeDate = default(System.DateTime?))
+ /// A list of custom actions that can be
+ /// performed with all of the Gallery Application Versions within this
+ /// Gallery Application.
+ public GalleryApplication(string location, OperatingSystemTypes supportedOSType, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string description = default(string), string eula = default(string), string privacyStatementUri = default(string), string releaseNoteUri = default(string), System.DateTime? endOfLifeDate = default(System.DateTime?), IList customActions = default(IList))
: base(location, id, name, type, tags)
{
Description = description;
@@ -65,6 +68,7 @@ public GalleryApplication()
ReleaseNoteUri = releaseNoteUri;
EndOfLifeDate = endOfLifeDate;
SupportedOSType = supportedOSType;
+ CustomActions = customActions;
CustomInit();
}
@@ -118,6 +122,14 @@ public GalleryApplication()
[JsonProperty(PropertyName = "properties.supportedOSType")]
public OperatingSystemTypes SupportedOSType { get; set; }
+ ///
+ /// Gets or sets a list of custom actions that can be performed with
+ /// all of the Gallery Application Versions within this Gallery
+ /// Application.
+ ///
+ [JsonProperty(PropertyName = "properties.customActions")]
+ public IList CustomActions { get; set; }
+
///
/// Validate the object.
///
@@ -127,6 +139,16 @@ public GalleryApplication()
public override void Validate()
{
base.Validate();
+ if (CustomActions != null)
+ {
+ foreach (var element in CustomActions)
+ {
+ if (element != null)
+ {
+ element.Validate();
+ }
+ }
+ }
}
}
}
diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryApplicationCustomAction.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryApplicationCustomAction.cs
new file mode 100644
index 000000000000..a6178fc0c813
--- /dev/null
+++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryApplicationCustomAction.cs
@@ -0,0 +1,114 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.Compute.Models
+{
+ using Microsoft.Rest;
+ using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
+ using System.Linq;
+
+ ///
+ /// A custom action that can be performed with a Gallery Application
+ /// Version.
+ ///
+ public partial class GalleryApplicationCustomAction
+ {
+ ///
+ /// Initializes a new instance of the GalleryApplicationCustomAction
+ /// class.
+ ///
+ public GalleryApplicationCustomAction()
+ {
+ CustomInit();
+ }
+
+ ///
+ /// Initializes a new instance of the GalleryApplicationCustomAction
+ /// class.
+ ///
+ /// The name of the custom action. Must be unique
+ /// within the Gallery Application Version.
+ /// The script to run when executing this custom
+ /// action.
+ /// Description to help the users understand
+ /// what this custom action does.
+ /// The parameters that this custom action
+ /// uses
+ public GalleryApplicationCustomAction(string name, string script, string description = default(string), IList parameters = default(IList))
+ {
+ Name = name;
+ Script = script;
+ Description = description;
+ Parameters = parameters;
+ CustomInit();
+ }
+
+ ///
+ /// An initialization method that performs custom operations like setting defaults
+ ///
+ partial void CustomInit();
+
+ ///
+ /// Gets or sets the name of the custom action. Must be unique within
+ /// the Gallery Application Version.
+ ///
+ [JsonProperty(PropertyName = "name")]
+ public string Name { get; set; }
+
+ ///
+ /// Gets or sets the script to run when executing this custom action.
+ ///
+ [JsonProperty(PropertyName = "script")]
+ public string Script { get; set; }
+
+ ///
+ /// Gets or sets description to help the users understand what this
+ /// custom action does.
+ ///
+ [JsonProperty(PropertyName = "description")]
+ public string Description { get; set; }
+
+ ///
+ /// Gets or sets the parameters that this custom action uses
+ ///
+ [JsonProperty(PropertyName = "parameters")]
+ public IList Parameters { get; set; }
+
+ ///
+ /// Validate the object.
+ ///
+ ///
+ /// Thrown if validation fails
+ ///
+ public virtual void Validate()
+ {
+ if (Name == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "Name");
+ }
+ if (Script == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "Script");
+ }
+ if (Parameters != null)
+ {
+ foreach (var element in Parameters)
+ {
+ if (element != null)
+ {
+ element.Validate();
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryApplicationCustomActionParameter.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryApplicationCustomActionParameter.cs
new file mode 100644
index 000000000000..d648b8b98969
--- /dev/null
+++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryApplicationCustomActionParameter.cs
@@ -0,0 +1,114 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.Compute.Models
+{
+ using Microsoft.Rest;
+ using Newtonsoft.Json;
+ using System.Linq;
+
+ ///
+ /// The definition of a parameter that can be passed to a custom action of
+ /// a Gallery Application Version.
+ ///
+ public partial class GalleryApplicationCustomActionParameter
+ {
+ ///
+ /// Initializes a new instance of the
+ /// GalleryApplicationCustomActionParameter class.
+ ///
+ public GalleryApplicationCustomActionParameter()
+ {
+ CustomInit();
+ }
+
+ ///
+ /// Initializes a new instance of the
+ /// GalleryApplicationCustomActionParameter class.
+ ///
+ /// The name of the custom action. Must be unique
+ /// within the Gallery Application Version.
+ /// Indicates whether this parameter must be
+ /// passed when running the custom action.
+ /// Specifies the type of the custom action
+ /// parameter. Possible values are: String, ConfigurationDataBlob or
+ /// LogOutputBlob. Possible values include: 'String',
+ /// 'ConfigurationDataBlob', 'LogOutputBlob'
+ /// The default value of the parameter.
+ /// Only applies to string types
+ /// A description to help users understand
+ /// what this parameter means
+ public GalleryApplicationCustomActionParameter(string name, bool? required = default(bool?), GalleryApplicationCustomActionParameterType? type = default(GalleryApplicationCustomActionParameterType?), string defaultValue = default(string), string description = default(string))
+ {
+ Name = name;
+ Required = required;
+ Type = type;
+ DefaultValue = defaultValue;
+ Description = description;
+ CustomInit();
+ }
+
+ ///
+ /// An initialization method that performs custom operations like setting defaults
+ ///
+ partial void CustomInit();
+
+ ///
+ /// Gets or sets the name of the custom action. Must be unique within
+ /// the Gallery Application Version.
+ ///
+ [JsonProperty(PropertyName = "name")]
+ public string Name { get; set; }
+
+ ///
+ /// Gets or sets indicates whether this parameter must be passed when
+ /// running the custom action.
+ ///
+ [JsonProperty(PropertyName = "required")]
+ public bool? Required { get; set; }
+
+ ///
+ /// Gets or sets specifies the type of the custom action parameter.
+ /// Possible values are: String, ConfigurationDataBlob or
+ /// LogOutputBlob. Possible values include: 'String',
+ /// 'ConfigurationDataBlob', 'LogOutputBlob'
+ ///
+ [JsonProperty(PropertyName = "type")]
+ public GalleryApplicationCustomActionParameterType? Type { get; set; }
+
+ ///
+ /// Gets or sets the default value of the parameter. Only applies to
+ /// string types
+ ///
+ [JsonProperty(PropertyName = "defaultValue")]
+ public string DefaultValue { get; set; }
+
+ ///
+ /// Gets or sets a description to help users understand what this
+ /// parameter means
+ ///
+ [JsonProperty(PropertyName = "description")]
+ public string Description { get; set; }
+
+ ///
+ /// Validate the object.
+ ///
+ ///
+ /// Thrown if validation fails
+ ///
+ public virtual void Validate()
+ {
+ if (Name == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "Name");
+ }
+ }
+ }
+}
diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryApplicationCustomActionParameterType.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryApplicationCustomActionParameterType.cs
new file mode 100644
index 000000000000..0a63b3ebcddb
--- /dev/null
+++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryApplicationCustomActionParameterType.cs
@@ -0,0 +1,66 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.Compute.Models
+{
+ using Newtonsoft.Json;
+ using Newtonsoft.Json.Converters;
+ using System.Runtime;
+ using System.Runtime.Serialization;
+
+ ///
+ /// Defines values for GalleryApplicationCustomActionParameterType.
+ ///
+ [JsonConverter(typeof(StringEnumConverter))]
+ public enum GalleryApplicationCustomActionParameterType
+ {
+ [EnumMember(Value = "String")]
+ String,
+ [EnumMember(Value = "ConfigurationDataBlob")]
+ ConfigurationDataBlob,
+ [EnumMember(Value = "LogOutputBlob")]
+ LogOutputBlob
+ }
+ internal static class GalleryApplicationCustomActionParameterTypeEnumExtension
+ {
+ internal static string ToSerializedValue(this GalleryApplicationCustomActionParameterType? value)
+ {
+ return value == null ? null : ((GalleryApplicationCustomActionParameterType)value).ToSerializedValue();
+ }
+
+ internal static string ToSerializedValue(this GalleryApplicationCustomActionParameterType value)
+ {
+ switch( value )
+ {
+ case GalleryApplicationCustomActionParameterType.String:
+ return "String";
+ case GalleryApplicationCustomActionParameterType.ConfigurationDataBlob:
+ return "ConfigurationDataBlob";
+ case GalleryApplicationCustomActionParameterType.LogOutputBlob:
+ return "LogOutputBlob";
+ }
+ return null;
+ }
+
+ internal static GalleryApplicationCustomActionParameterType? ParseGalleryApplicationCustomActionParameterType(this string value)
+ {
+ switch( value )
+ {
+ case "String":
+ return GalleryApplicationCustomActionParameterType.String;
+ case "ConfigurationDataBlob":
+ return GalleryApplicationCustomActionParameterType.ConfigurationDataBlob;
+ case "LogOutputBlob":
+ return GalleryApplicationCustomActionParameterType.LogOutputBlob;
+ }
+ return null;
+ }
+ }
+}
diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryApplicationUpdate.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryApplicationUpdate.cs
index 0e9d84805aeb..8ca99d559aef 100644
--- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryApplicationUpdate.cs
+++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryApplicationUpdate.cs
@@ -55,7 +55,10 @@ public GalleryApplicationUpdate()
/// The end of life date of the gallery
/// Application Definition. This property can be used for
/// decommissioning purposes. This property is updatable.
- public GalleryApplicationUpdate(OperatingSystemTypes supportedOSType, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string description = default(string), string eula = default(string), string privacyStatementUri = default(string), string releaseNoteUri = default(string), System.DateTime? endOfLifeDate = default(System.DateTime?))
+ /// A list of custom actions that can be
+ /// performed with all of the Gallery Application Versions within this
+ /// Gallery Application.
+ public GalleryApplicationUpdate(OperatingSystemTypes supportedOSType, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string description = default(string), string eula = default(string), string privacyStatementUri = default(string), string releaseNoteUri = default(string), System.DateTime? endOfLifeDate = default(System.DateTime?), IList customActions = default(IList))
: base(id, name, type, tags)
{
Description = description;
@@ -64,6 +67,7 @@ public GalleryApplicationUpdate()
ReleaseNoteUri = releaseNoteUri;
EndOfLifeDate = endOfLifeDate;
SupportedOSType = supportedOSType;
+ CustomActions = customActions;
CustomInit();
}
@@ -117,6 +121,14 @@ public GalleryApplicationUpdate()
[JsonProperty(PropertyName = "properties.supportedOSType")]
public OperatingSystemTypes SupportedOSType { get; set; }
+ ///
+ /// Gets or sets a list of custom actions that can be performed with
+ /// all of the Gallery Application Versions within this Gallery
+ /// Application.
+ ///
+ [JsonProperty(PropertyName = "properties.customActions")]
+ public IList CustomActions { get; set; }
+
///
/// Validate the object.
///
@@ -125,6 +137,16 @@ public GalleryApplicationUpdate()
///
public virtual void Validate()
{
+ if (CustomActions != null)
+ {
+ foreach (var element in CustomActions)
+ {
+ if (element != null)
+ {
+ element.Validate();
+ }
+ }
+ }
}
}
}
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 2fd878ba87c7..5ee29c949334 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
@@ -43,10 +43,11 @@ public GalleryApplicationVersion()
/// 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))
+ public GalleryApplicationVersion(string location, GalleryApplicationVersionPublishingProfile publishingProfile, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), GalleryApplicationVersionSafetyProfile safetyProfile = default(GalleryApplicationVersionSafetyProfile), string provisioningState = default(string), ReplicationStatus replicationStatus = default(ReplicationStatus))
: base(location, id, name, type, tags)
{
PublishingProfile = publishingProfile;
+ SafetyProfile = safetyProfile;
ProvisioningState = provisioningState;
ReplicationStatus = replicationStatus;
CustomInit();
@@ -62,6 +63,11 @@ public GalleryApplicationVersion()
[JsonProperty(PropertyName = "properties.publishingProfile")]
public GalleryApplicationVersionPublishingProfile PublishingProfile { get; set; }
+ ///
+ ///
+ [JsonProperty(PropertyName = "properties.safetyProfile")]
+ public GalleryApplicationVersionSafetyProfile SafetyProfile { get; set; }
+
///
/// Gets possible values include: 'Creating', 'Updating', 'Failed',
/// 'Succeeded', 'Deleting', 'Migrating'
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 291fc4cdaea3..25a5c2bc6b8e 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
@@ -64,7 +64,9 @@ public GalleryApplicationVersionPublishingProfile()
/// 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), UserArtifactSettings settings = default(UserArtifactSettings), IDictionary advancedSettings = default(IDictionary), bool? enableHealthCheck = default(bool?))
+ /// A list of custom actions that can be
+ /// performed with this Gallery Application Version.
+ 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?), IList customActions = default(IList))
: base(targetRegions, replicaCount, excludeFromLatest, publishedDate, endOfLifeDate, storageAccountType, replicationMode, targetExtendedLocations)
{
Source = source;
@@ -72,6 +74,7 @@ public GalleryApplicationVersionPublishingProfile()
Settings = settings;
AdvancedSettings = advancedSettings;
EnableHealthCheck = enableHealthCheck;
+ CustomActions = customActions;
CustomInit();
}
@@ -109,6 +112,13 @@ public GalleryApplicationVersionPublishingProfile()
[JsonProperty(PropertyName = "enableHealthCheck")]
public bool? EnableHealthCheck { get; set; }
+ ///
+ /// Gets or sets a list of custom actions that can be performed with
+ /// this Gallery Application Version.
+ ///
+ [JsonProperty(PropertyName = "customActions")]
+ public IList CustomActions { get; set; }
+
///
/// Validate the object.
///
@@ -129,6 +139,16 @@ public virtual void Validate()
{
ManageActions.Validate();
}
+ if (CustomActions != null)
+ {
+ foreach (var element in CustomActions)
+ {
+ if (element != null)
+ {
+ element.Validate();
+ }
+ }
+ }
}
}
}
diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryApplicationVersionSafetyProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryApplicationVersionSafetyProfile.cs
new file mode 100644
index 000000000000..b9b05b5032cc
--- /dev/null
+++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryApplicationVersionSafetyProfile.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;
+
+ ///
+ /// The safety profile of the Gallery Application Version.
+ ///
+ public partial class GalleryApplicationVersionSafetyProfile : GalleryArtifactSafetyProfileBase
+ {
+ ///
+ /// Initializes a new instance of the
+ /// GalleryApplicationVersionSafetyProfile class.
+ ///
+ public GalleryApplicationVersionSafetyProfile()
+ {
+ CustomInit();
+ }
+
+ ///
+ /// Initializes a new instance of the
+ /// GalleryApplicationVersionSafetyProfile class.
+ ///
+ /// Indicates whether
+ /// or not removing this Gallery Image Version from replicated regions
+ /// is allowed.
+ public GalleryApplicationVersionSafetyProfile(bool? allowDeletionOfReplicatedLocations = default(bool?))
+ : base(allowDeletionOfReplicatedLocations)
+ {
+ 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/GalleryApplicationVersionUpdate.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryApplicationVersionUpdate.cs
index 4f62d714eac0..3c6b3c2b4605 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
@@ -44,10 +44,11 @@ public GalleryApplicationVersionUpdate()
/// 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))
+ public GalleryApplicationVersionUpdate(GalleryApplicationVersionPublishingProfile publishingProfile, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), GalleryApplicationVersionSafetyProfile safetyProfile = default(GalleryApplicationVersionSafetyProfile), string provisioningState = default(string), ReplicationStatus replicationStatus = default(ReplicationStatus))
: base(id, name, type, tags)
{
PublishingProfile = publishingProfile;
+ SafetyProfile = safetyProfile;
ProvisioningState = provisioningState;
ReplicationStatus = replicationStatus;
CustomInit();
@@ -63,6 +64,11 @@ public GalleryApplicationVersionUpdate()
[JsonProperty(PropertyName = "properties.publishingProfile")]
public GalleryApplicationVersionPublishingProfile PublishingProfile { get; set; }
+ ///
+ ///
+ [JsonProperty(PropertyName = "properties.safetyProfile")]
+ public GalleryApplicationVersionSafetyProfile SafetyProfile { get; set; }
+
///
/// Gets possible values include: 'Creating', 'Updating', 'Failed',
/// 'Succeeded', 'Deleting', 'Migrating'
diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryArtifactSafetyProfileBase.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryArtifactSafetyProfileBase.cs
new file mode 100644
index 000000000000..0a28b357a54c
--- /dev/null
+++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryArtifactSafetyProfileBase.cs
@@ -0,0 +1,56 @@
+//
+// 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 safety profile of the Gallery Artifact Version.
+ ///
+ public partial class GalleryArtifactSafetyProfileBase
+ {
+ ///
+ /// Initializes a new instance of the GalleryArtifactSafetyProfileBase
+ /// class.
+ ///
+ public GalleryArtifactSafetyProfileBase()
+ {
+ CustomInit();
+ }
+
+ ///
+ /// Initializes a new instance of the GalleryArtifactSafetyProfileBase
+ /// class.
+ ///
+ /// Indicates whether
+ /// or not removing this Gallery Image Version from replicated regions
+ /// is allowed.
+ public GalleryArtifactSafetyProfileBase(bool? allowDeletionOfReplicatedLocations = default(bool?))
+ {
+ AllowDeletionOfReplicatedLocations = allowDeletionOfReplicatedLocations;
+ CustomInit();
+ }
+
+ ///
+ /// An initialization method that performs custom operations like setting defaults
+ ///
+ partial void CustomInit();
+
+ ///
+ /// Gets or sets indicates whether or not removing this Gallery Image
+ /// Version from replicated regions is allowed.
+ ///
+ [JsonProperty(PropertyName = "allowDeletionOfReplicatedLocations")]
+ public bool? AllowDeletionOfReplicatedLocations { get; set; }
+
+ }
+}
diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryArtifactVersionFullSource.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryArtifactVersionFullSource.cs
new file mode 100644
index 000000000000..ec186dabb581
--- /dev/null
+++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryArtifactVersionFullSource.cs
@@ -0,0 +1,60 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.Compute.Models
+{
+ using Newtonsoft.Json;
+ using System.Linq;
+
+ ///
+ /// The source of the gallery artifact version.
+ ///
+ public partial class GalleryArtifactVersionFullSource : GalleryArtifactVersionSource
+ {
+ ///
+ /// Initializes a new instance of the GalleryArtifactVersionFullSource
+ /// class.
+ ///
+ public GalleryArtifactVersionFullSource()
+ {
+ CustomInit();
+ }
+
+ ///
+ /// Initializes a new instance of the GalleryArtifactVersionFullSource
+ /// class.
+ ///
+ /// The id of the gallery artifact version source. Can
+ /// specify a disk uri, snapshot uri, user image or storage account
+ /// resource.
+ /// The resource Id of the source
+ /// Community Gallery Image. Only required when using Community
+ /// Gallery Image as a source.
+ public GalleryArtifactVersionFullSource(string id = default(string), string communityGalleryImageId = default(string))
+ : base(id)
+ {
+ CommunityGalleryImageId = communityGalleryImageId;
+ CustomInit();
+ }
+
+ ///
+ /// An initialization method that performs custom operations like setting defaults
+ ///
+ partial void CustomInit();
+
+ ///
+ /// Gets or sets the resource Id of the source Community Gallery Image.
+ /// Only required when using Community Gallery Image as a source.
+ ///
+ [JsonProperty(PropertyName = "communityGalleryImageId")]
+ public string CommunityGalleryImageId { get; set; }
+
+ }
+}
diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryArtifactVersionSource.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryArtifactVersionSource.cs
index ebe95fdfc09b..baa59334f2ab 100644
--- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryArtifactVersionSource.cs
+++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryArtifactVersionSource.cs
@@ -34,12 +34,9 @@ public GalleryArtifactVersionSource()
/// The id of the gallery artifact version source. Can
/// specify a disk uri, snapshot uri, user image or storage account
/// resource.
- /// The uri of the gallery artifact version source.
- /// Currently used to specify vhd/blob source.
- public GalleryArtifactVersionSource(string id = default(string), string uri = default(string))
+ public GalleryArtifactVersionSource(string id = default(string))
{
Id = id;
- Uri = uri;
CustomInit();
}
@@ -56,12 +53,5 @@ public GalleryArtifactVersionSource()
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
- ///
- /// Gets or sets the uri of the gallery artifact version source.
- /// Currently used to specify vhd/blob source.
- ///
- [JsonProperty(PropertyName = "uri")]
- public string Uri { get; set; }
-
}
}
diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryDataDiskImage.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryDataDiskImage.cs
index dded924670dd..e82d5fb31abc 100644
--- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryDataDiskImage.cs
+++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryDataDiskImage.cs
@@ -38,7 +38,7 @@ public GalleryDataDiskImage()
/// The host caching of the disk. Valid
/// values are 'None', 'ReadOnly', and 'ReadWrite'. Possible values
/// include: 'None', 'ReadOnly', 'ReadWrite'
- public GalleryDataDiskImage(int lun, int? sizeInGB = default(int?), HostCaching? hostCaching = default(HostCaching?), GalleryArtifactVersionSource source = default(GalleryArtifactVersionSource))
+ public GalleryDataDiskImage(int lun, int? sizeInGB = default(int?), HostCaching? hostCaching = default(HostCaching?), GalleryDiskImageSource source = default(GalleryDiskImageSource))
: base(sizeInGB, hostCaching, source)
{
Lun = lun;
diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryDiskImage.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryDiskImage.cs
index 24fa155c0709..d8b0768b28f3 100644
--- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryDiskImage.cs
+++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryDiskImage.cs
@@ -34,7 +34,7 @@ public GalleryDiskImage()
/// The host caching of the disk. Valid
/// values are 'None', 'ReadOnly', and 'ReadWrite'. Possible values
/// include: 'None', 'ReadOnly', 'ReadWrite'
- public GalleryDiskImage(int? sizeInGB = default(int?), HostCaching? hostCaching = default(HostCaching?), GalleryArtifactVersionSource source = default(GalleryArtifactVersionSource))
+ public GalleryDiskImage(int? sizeInGB = default(int?), HostCaching? hostCaching = default(HostCaching?), GalleryDiskImageSource source = default(GalleryDiskImageSource))
{
SizeInGB = sizeInGB;
HostCaching = hostCaching;
@@ -64,7 +64,7 @@ public GalleryDiskImage()
///
///
[JsonProperty(PropertyName = "source")]
- public GalleryArtifactVersionSource Source { get; set; }
+ public GalleryDiskImageSource Source { get; set; }
}
}
diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryDiskImageSource.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryDiskImageSource.cs
new file mode 100644
index 000000000000..6e39cb4745e4
--- /dev/null
+++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryDiskImageSource.cs
@@ -0,0 +1,68 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.Compute.Models
+{
+ using Newtonsoft.Json;
+ using System.Linq;
+
+ ///
+ /// The source for the disk image.
+ ///
+ public partial class GalleryDiskImageSource : GalleryArtifactVersionSource
+ {
+ ///
+ /// Initializes a new instance of the GalleryDiskImageSource class.
+ ///
+ public GalleryDiskImageSource()
+ {
+ CustomInit();
+ }
+
+ ///
+ /// Initializes a new instance of the GalleryDiskImageSource class.
+ ///
+ /// The id of the gallery artifact version source. Can
+ /// specify a disk uri, snapshot uri, user image or storage account
+ /// resource.
+ /// The uri of the gallery artifact version source.
+ /// Currently used to specify vhd/blob source.
+ /// The Storage Account Id that contains
+ /// the vhd blob being used as a source for this artifact
+ /// version.
+ public GalleryDiskImageSource(string id = default(string), string uri = default(string), string storageAccountId = default(string))
+ : base(id)
+ {
+ Uri = uri;
+ StorageAccountId = storageAccountId;
+ CustomInit();
+ }
+
+ ///
+ /// An initialization method that performs custom operations like setting defaults
+ ///
+ partial void CustomInit();
+
+ ///
+ /// Gets or sets the uri of the gallery artifact version source.
+ /// Currently used to specify vhd/blob source.
+ ///
+ [JsonProperty(PropertyName = "uri")]
+ public string Uri { get; set; }
+
+ ///
+ /// Gets or sets the Storage Account Id that contains the vhd blob
+ /// being used as a source for this artifact version.
+ ///
+ [JsonProperty(PropertyName = "storageAccountId")]
+ public string StorageAccountId { 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 da4d3fdb5d07..edb88b28fdbb 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
@@ -43,12 +43,13 @@ public GalleryImageVersion()
/// 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))
+ public GalleryImageVersion(string location, GalleryImageVersionStorageProfile storageProfile, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), GalleryImageVersionPublishingProfile publishingProfile = default(GalleryImageVersionPublishingProfile), string provisioningState = default(string), GalleryImageVersionSafetyProfile safetyProfile = default(GalleryImageVersionSafetyProfile), ReplicationStatus replicationStatus = default(ReplicationStatus))
: base(location, id, name, type, tags)
{
PublishingProfile = publishingProfile;
ProvisioningState = provisioningState;
StorageProfile = storageProfile;
+ SafetyProfile = safetyProfile;
ReplicationStatus = replicationStatus;
CustomInit();
}
@@ -75,6 +76,11 @@ public GalleryImageVersion()
[JsonProperty(PropertyName = "properties.storageProfile")]
public GalleryImageVersionStorageProfile StorageProfile { get; set; }
+ ///
+ ///
+ [JsonProperty(PropertyName = "properties.safetyProfile")]
+ public GalleryImageVersionSafetyProfile SafetyProfile { get; set; }
+
///
///
[JsonProperty(PropertyName = "properties.replicationStatus")]
diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageVersionSafetyProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageVersionSafetyProfile.cs
new file mode 100644
index 000000000000..c4dc2a6f2812
--- /dev/null
+++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageVersionSafetyProfile.cs
@@ -0,0 +1,71 @@
+//
+// 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 safety profile of the Gallery Image Version.
+ ///
+ public partial class GalleryImageVersionSafetyProfile : GalleryArtifactSafetyProfileBase
+ {
+ ///
+ /// Initializes a new instance of the GalleryImageVersionSafetyProfile
+ /// class.
+ ///
+ public GalleryImageVersionSafetyProfile()
+ {
+ CustomInit();
+ }
+
+ ///
+ /// Initializes a new instance of the GalleryImageVersionSafetyProfile
+ /// class.
+ ///
+ /// Indicates whether
+ /// or not removing this Gallery Image Version from replicated regions
+ /// is allowed.
+ /// Indicates whether this
+ /// image has been reported as violating Microsoft's policies.
+ /// A list of Policy Violations that
+ /// have been reported for this Gallery Image Version.
+ public GalleryImageVersionSafetyProfile(bool? allowDeletionOfReplicatedLocations = default(bool?), bool? reportedForPolicyViolation = default(bool?), IList policyViolations = default(IList))
+ : base(allowDeletionOfReplicatedLocations)
+ {
+ ReportedForPolicyViolation = reportedForPolicyViolation;
+ PolicyViolations = policyViolations;
+ CustomInit();
+ }
+
+ ///
+ /// An initialization method that performs custom operations like setting defaults
+ ///
+ partial void CustomInit();
+
+ ///
+ /// Gets indicates whether this image has been reported as violating
+ /// Microsoft's policies.
+ ///
+ [JsonProperty(PropertyName = "reportedForPolicyViolation")]
+ public bool? ReportedForPolicyViolation { get; private set; }
+
+ ///
+ /// Gets a list of Policy Violations that have been reported for this
+ /// Gallery Image Version.
+ ///
+ [JsonProperty(PropertyName = "policyViolations")]
+ public IList PolicyViolations { get; private set; }
+
+ }
+}
diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageVersionStorageProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageVersionStorageProfile.cs
index d25499181cbc..11eb18005aae 100644
--- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageVersionStorageProfile.cs
+++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageVersionStorageProfile.cs
@@ -34,7 +34,7 @@ public GalleryImageVersionStorageProfile()
/// class.
///
/// A list of data disk images.
- public GalleryImageVersionStorageProfile(GalleryArtifactVersionSource source = default(GalleryArtifactVersionSource), GalleryOSDiskImage osDiskImage = default(GalleryOSDiskImage), IList dataDiskImages = default(IList))
+ public GalleryImageVersionStorageProfile(GalleryArtifactVersionFullSource source = default(GalleryArtifactVersionFullSource), GalleryOSDiskImage osDiskImage = default(GalleryOSDiskImage), IList dataDiskImages = default(IList))
{
Source = source;
OsDiskImage = osDiskImage;
@@ -50,7 +50,7 @@ public GalleryImageVersionStorageProfile()
///
///
[JsonProperty(PropertyName = "source")]
- public GalleryArtifactVersionSource Source { get; set; }
+ public GalleryArtifactVersionFullSource Source { get; 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 08093be763e4..99e78b8d0b2f 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
@@ -42,12 +42,13 @@ public GalleryImageVersionUpdate()
/// 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))
+ public GalleryImageVersionUpdate(GalleryImageVersionStorageProfile storageProfile, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), GalleryImageVersionPublishingProfile publishingProfile = default(GalleryImageVersionPublishingProfile), string provisioningState = default(string), GalleryImageVersionSafetyProfile safetyProfile = default(GalleryImageVersionSafetyProfile), ReplicationStatus replicationStatus = default(ReplicationStatus))
: base(id, name, type, tags)
{
PublishingProfile = publishingProfile;
ProvisioningState = provisioningState;
StorageProfile = storageProfile;
+ SafetyProfile = safetyProfile;
ReplicationStatus = replicationStatus;
CustomInit();
}
@@ -74,6 +75,11 @@ public GalleryImageVersionUpdate()
[JsonProperty(PropertyName = "properties.storageProfile")]
public GalleryImageVersionStorageProfile StorageProfile { get; set; }
+ ///
+ ///
+ [JsonProperty(PropertyName = "properties.safetyProfile")]
+ public GalleryImageVersionSafetyProfile SafetyProfile { get; set; }
+
///
///
[JsonProperty(PropertyName = "properties.replicationStatus")]
diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryOSDiskImage.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryOSDiskImage.cs
index 88501804a832..ebfdc5930db6 100644
--- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryOSDiskImage.cs
+++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryOSDiskImage.cs
@@ -33,7 +33,7 @@ public GalleryOSDiskImage()
/// The host caching of the disk. Valid
/// values are 'None', 'ReadOnly', and 'ReadWrite'. Possible values
/// include: 'None', 'ReadOnly', 'ReadWrite'
- public GalleryOSDiskImage(int? sizeInGB = default(int?), HostCaching? hostCaching = default(HostCaching?), GalleryArtifactVersionSource source = default(GalleryArtifactVersionSource))
+ public GalleryOSDiskImage(int? sizeInGB = default(int?), HostCaching? hostCaching = default(HostCaching?), GalleryDiskImageSource source = default(GalleryDiskImageSource))
: base(sizeInGB, hostCaching, source)
{
CustomInit();
diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LatestGalleryImageVersion.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LatestGalleryImageVersion.cs
new file mode 100644
index 000000000000..a9d7710f2466
--- /dev/null
+++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LatestGalleryImageVersion.cs
@@ -0,0 +1,60 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.Compute.Models
+{
+ using Newtonsoft.Json;
+ using System.Linq;
+
+ ///
+ /// The gallery image version with latest version in a particular region.
+ ///
+ public partial class LatestGalleryImageVersion
+ {
+ ///
+ /// Initializes a new instance of the LatestGalleryImageVersion class.
+ ///
+ public LatestGalleryImageVersion()
+ {
+ CustomInit();
+ }
+
+ ///
+ /// Initializes a new instance of the LatestGalleryImageVersion class.
+ ///
+ /// The name of the latest version in
+ /// the region.
+ /// region of the Gallery Image Version.
+ public LatestGalleryImageVersion(string latestVersionName = default(string), string location = default(string))
+ {
+ LatestVersionName = latestVersionName;
+ Location = location;
+ CustomInit();
+ }
+
+ ///
+ /// An initialization method that performs custom operations like setting defaults
+ ///
+ partial void CustomInit();
+
+ ///
+ /// Gets or sets the name of the latest version in the region.
+ ///
+ [JsonProperty(PropertyName = "latestVersionName")]
+ public string LatestVersionName { get; set; }
+
+ ///
+ /// Gets or sets region of the Gallery Image Version.
+ ///
+ [JsonProperty(PropertyName = "location")]
+ public string Location { get; set; }
+
+ }
+}
diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PolicyViolation.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PolicyViolation.cs
new file mode 100644
index 000000000000..e359888274a2
--- /dev/null
+++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PolicyViolation.cs
@@ -0,0 +1,65 @@
+//
+// 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;
+
+ ///
+ /// A policy violation reported against a gallery artifact.
+ ///
+ public partial class PolicyViolation
+ {
+ ///
+ /// Initializes a new instance of the PolicyViolation class.
+ ///
+ public PolicyViolation()
+ {
+ CustomInit();
+ }
+
+ ///
+ /// Initializes a new instance of the PolicyViolation class.
+ ///
+ /// Describes the nature of the policy
+ /// violation. Possible values include: 'Other', 'ImageFlaggedUnsafe',
+ /// 'CopyrightValidation', 'IpTheft'
+ /// Describes specific details about why this
+ /// policy violation was reported.
+ public PolicyViolation(string category = default(string), string details = default(string))
+ {
+ Category = category;
+ Details = details;
+ CustomInit();
+ }
+
+ ///
+ /// An initialization method that performs custom operations like setting defaults
+ ///
+ partial void CustomInit();
+
+ ///
+ /// Gets or sets describes the nature of the policy violation. Possible
+ /// values include: 'Other', 'ImageFlaggedUnsafe',
+ /// 'CopyrightValidation', 'IpTheft'
+ ///
+ [JsonProperty(PropertyName = "category")]
+ public string Category { get; set; }
+
+ ///
+ /// Gets or sets describes specific details about why this policy
+ /// violation was reported.
+ ///
+ [JsonProperty(PropertyName = "details")]
+ public string Details { get; set; }
+
+ }
+}
diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PolicyViolationCategory.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PolicyViolationCategory.cs
new file mode 100644
index 000000000000..951ef2663c78
--- /dev/null
+++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PolicyViolationCategory.cs
@@ -0,0 +1,24 @@
+//
+// 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 PolicyViolationCategory.
+ ///
+ public static class PolicyViolationCategory
+ {
+ public const string Other = "Other";
+ public const string ImageFlaggedUnsafe = "ImageFlaggedUnsafe";
+ public const string CopyrightValidation = "CopyrightValidation";
+ public const string IpTheft = "IpTheft";
+ }
+}
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 c14816321204..9874402ac0c7 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
@@ -57,7 +57,11 @@ public SharedGalleryImage()
/// A list of gallery image features.
/// 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))
+ /// Privacy statement uri for the
+ /// current community gallery image.
+ /// End-user license agreement for the current
+ /// community gallery image.
+ public SharedGalleryImage(OperatingSystemTypes osType, OperatingSystemStateTypes osState, GalleryImageIdentifier identifier, string name = default(string), string location = default(string), string uniqueId = default(string), System.DateTime? endOfLifeDate = default(System.DateTime?), RecommendedMachineConfiguration recommended = default(RecommendedMachineConfiguration), Disallowed disallowed = default(Disallowed), string hyperVGeneration = default(string), IList features = default(IList), ImagePurchasePlan purchasePlan = default(ImagePurchasePlan), string architecture = default(string), string privacyStatementUri = default(string), string eula = default(string))
: base(name, location, uniqueId)
{
OsType = osType;
@@ -70,6 +74,8 @@ public SharedGalleryImage()
Features = features;
PurchasePlan = purchasePlan;
Architecture = architecture;
+ PrivacyStatementUri = privacyStatementUri;
+ Eula = eula;
CustomInit();
}
@@ -145,6 +151,20 @@ public SharedGalleryImage()
[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/TargetRegion.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/TargetRegion.cs
index beb83ddf8a43..21dd08696630 100644
--- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/TargetRegion.cs
+++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/TargetRegion.cs
@@ -38,12 +38,15 @@ public TargetRegion()
/// to be used to store the image. This property is not updatable.
/// Possible values include: 'Standard_LRS', 'Standard_ZRS',
/// 'Premium_LRS'
- public TargetRegion(string name, int? regionalReplicaCount = default(int?), string storageAccountType = default(string), EncryptionImages encryption = default(EncryptionImages))
+ /// Contains the flag setting to hide
+ /// an image when users specify version='latest'
+ public TargetRegion(string name, int? regionalReplicaCount = default(int?), string storageAccountType = default(string), EncryptionImages encryption = default(EncryptionImages), bool? excludeFromLatest = default(bool?))
{
Name = name;
RegionalReplicaCount = regionalReplicaCount;
StorageAccountType = storageAccountType;
Encryption = encryption;
+ ExcludeFromLatest = excludeFromLatest;
CustomInit();
}
@@ -78,6 +81,13 @@ public TargetRegion()
[JsonProperty(PropertyName = "encryption")]
public EncryptionImages Encryption { get; set; }
+ ///
+ /// Gets or sets contains the flag setting to hide an image when users
+ /// specify version='latest'
+ ///
+ [JsonProperty(PropertyName = "excludeFromLatest")]
+ public bool? ExcludeFromLatest { get; set; }
+
///
/// Validate the object.
///
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 d4872f5011e6..ae96bd825776 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", "2022-04-04"),
new Tuple("Compute", "CloudServices", "2022-04-04"),
new Tuple("Compute", "CloudServicesUpdateDomain", "2022-04-04"),
- new Tuple("Compute", "CommunityGalleries", "2022-01-03"),
- new Tuple("Compute", "CommunityGalleryImageVersions", "2022-01-03"),
- new Tuple("Compute", "CommunityGalleryImages", "2022-01-03"),
+ new Tuple("Compute", "CommunityGalleries", "2022-03-03"),
+ new Tuple("Compute", "CommunityGalleryImageVersions", "2022-03-03"),
+ new Tuple("Compute", "CommunityGalleryImages", "2022-03-03"),
new Tuple("Compute", "DedicatedHostGroups", "2022-03-01"),
new Tuple("Compute", "DedicatedHosts", "2022-03-01"),
new Tuple("Compute", "DiskAccesses", "2022-07-02"),
new Tuple("Compute", "DiskEncryptionSets", "2022-07-02"),
new Tuple("Compute", "DiskRestorePoint", "2022-07-02"),
new Tuple("Compute", "Disks", "2022-07-02"),
- 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", "Galleries", "2022-03-03"),
+ new Tuple("Compute", "GalleryApplicationVersions", "2022-03-03"),
+ new Tuple("Compute", "GalleryApplications", "2022-03-03"),
+ new Tuple("Compute", "GalleryImageVersions", "2022-03-03"),
+ new Tuple("Compute", "GalleryImages", "2022-03-03"),
+ new Tuple("Compute", "GallerySharingProfile", "2022-03-03"),
new Tuple("Compute", "Images", "2022-08-01"),
new Tuple("Compute", "LogAnalytics", "2022-08-01"),
new Tuple("Compute", "Operations", "2022-08-01"),
@@ -49,9 +49,9 @@ public static IEnumerable> ApiInfo_ComputeManageme
new Tuple("Compute", "ResourceSkus", "2021-07-01"),
new Tuple("Compute", "RestorePointCollections", "2022-08-01"),
new Tuple("Compute", "RestorePoints", "2022-08-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", "SharedGalleries", "2022-03-03"),
+ new Tuple("Compute", "SharedGalleryImageVersions", "2022-03-03"),
+ new Tuple("Compute", "SharedGalleryImages", "2022-03-03"),
new Tuple("Compute", "Snapshots", "2022-07-02"),
new Tuple("Compute", "SshPublicKeys", "2022-08-01"),
new Tuple("Compute", "Usage", "2022-08-01"),
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 7c1142a96618..1cb36dc80d0e 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 = "2022-01-03";
+ string apiVersion = "2022-03-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 = "2022-01-03";
+ string apiVersion = "2022-03-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 abc4b12fa441..9449c48ea63c 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 = "2022-01-03";
+ string apiVersion = "2022-03-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 = "2022-01-03";
+ string apiVersion = "2022-03-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 99a4f931acf2..551ff6fdcc26 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 = "2022-01-03";
+ string apiVersion = "2022-03-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 = "2022-01-03";
+ string apiVersion = "2022-03-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 965cf1364ce9..7cd8b20d715a 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,13 +9,18 @@
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.
- 58.0.0
+ 59.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 e502ec5969a2..67e56a529047 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("58.0.0")]
-[assembly: AssemblyFileVersion("58.0.0")]
+[assembly: AssemblyVersion("59.0.0")]
+[assembly: AssemblyFileVersion("59.0.0")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
[assembly: AssemblyProduct("Microsoft Azure .NET SDK")]
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 f479a289bc6f..24852b557ec9 100644
--- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/GalleryTests.cs
+++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/GalleryTests.cs
@@ -270,7 +270,7 @@ public void GalleryApplication_CRUD_Tests()
m_CrpClient.Galleries.Delete(rgName, galleryName);
}
}
-
+
[Fact]
public void GalleryApplicationVersion_CRUD_Tests()
{
@@ -511,7 +511,7 @@ private void ValidateGallery(Gallery galleryIn, Gallery galleryOut)
private void ValidateSharingProfile(Gallery galleryIn, Gallery galleryOut, List groups)
{
- if(galleryIn.SharingProfile != null)
+ if (galleryIn.SharingProfile != null)
{
Assert.Equal(galleryIn.SharingProfile.Permissions, galleryOut.SharingProfile.Permissions);
Assert.Equal(groups.Count, galleryOut.SharingProfile.Groups.Count);
@@ -523,9 +523,9 @@ private void ValidateSharingProfile(Gallery galleryIn, Gallery galleryOut, List<
List outIds = sharingProfileGroup.Ids as List;
List inIds = null;
- foreach(SharingProfileGroup inGroup in groups)
+ foreach (SharingProfileGroup inGroup in groups)
{
- if(inGroup.Type == sharingProfileGroup.Type)
+ if (inGroup.Type == sharingProfileGroup.Type)
{
inIds = inGroup.Ids as List;
break;
@@ -535,7 +535,7 @@ private void ValidateSharingProfile(Gallery galleryIn, Gallery galleryOut, List<
Assert.NotNull(inIds);
Assert.Equal(inIds.Count, outIds.Count);
- for(int i = 0; i < inIds.Count; i++)
+ for (int i = 0; i < inIds.Count; i++)
{
Assert.Equal(outIds[i], inIds[i]);
}
@@ -571,7 +571,7 @@ private void ValidateGalleryImage(GalleryImage imageIn, GalleryImage imageOut)
{
Assert.Equal(imageIn.HyperVGeneration, imageOut.HyperVGeneration);
}
-
+
if (!string.IsNullOrEmpty(imageIn.Description))
{
Assert.Equal(imageIn.Description, imageOut.Description);
@@ -597,6 +597,14 @@ private void ValidateGalleryImageVersion(GalleryImageVersion imageVersionIn,
Assert.NotNull(imageVersionOut.PublishingProfile.EndOfLifeDate);
Assert.NotNull(imageVersionOut.PublishingProfile.PublishedDate);
Assert.NotNull(imageVersionOut.StorageProfile);
+ ValidateImageVersionSecurityProfile(imageVersionIn.SafetyProfile, imageVersionOut.SafetyProfile);
+ }
+
+ private void ValidateImageVersionSecurityProfile(
+ GalleryImageVersionSafetyProfile safetyProfileIn,
+ GalleryImageVersionSafetyProfile safetyProfileOut)
+ {
+ Assert.Equal(safetyProfileIn.AllowDeletionOfReplicatedLocations, safetyProfileOut.AllowDeletionOfReplicatedLocations);
}
private Gallery GetTestInputGallery()
@@ -664,6 +672,10 @@ private GalleryImageVersion GetTestInputGalleryImageVersion(string sourceImageId
return new GalleryImageVersion
{
Location = galleryHomeLocation,
+ SafetyProfile = new GalleryImageVersionSafetyProfile()
+ {
+ AllowDeletionOfReplicatedLocations = true
+ },
PublishingProfile = new GalleryImageVersionPublishingProfile
{
ReplicaCount = 1,
@@ -679,7 +691,7 @@ private GalleryImageVersion GetTestInputGalleryImageVersion(string sourceImageId
},
StorageProfile = new GalleryImageVersionStorageProfile
{
- Source = new GalleryArtifactVersionSource
+ Source = new GalleryArtifactVersionFullSource
{
Id = sourceImageId
}
@@ -768,12 +780,16 @@ private GalleryApplication GetTestInputGalleryApplication()
Description = "This is the gallery application description.",
};
}
-
+
private GalleryApplicationVersion GetTestInputGalleryApplicationVersion(string applicationMediaLink)
{
return new GalleryApplicationVersion
{
Location = galleryHomeLocation,
+ SafetyProfile = new GalleryApplicationVersionSafetyProfile()
+ {
+ AllowDeletionOfReplicatedLocations = true
+ },
PublishingProfile = new GalleryApplicationVersionPublishingProfile
{
Source = new UserArtifactSource
@@ -785,6 +801,26 @@ private GalleryApplicationVersion GetTestInputGalleryApplicationVersion(string a
Install = "powershell -command \"Expand-Archive -Path test.zip -DestinationPath C:\\package\"",
Remove = "del C:\\package "
},
+ CustomActions = new List()
+ {
+ new GalleryApplicationCustomAction()
+ {
+ Name = "testCustomAction",
+ Script = "powershell -command \"echo testCustomActionScript\"",
+ Description = "A test custom action",
+ Parameters = new List()
+ {
+ new GalleryApplicationCustomActionParameter()
+ {
+ Name = "testCustomActionParam",
+ Description = "A test custom action parameter",
+ Type = GalleryApplicationCustomActionParameterType.String,
+ DefaultValue = "paramDefaultValue",
+ Required = true,
+ }
+ }
+ }
+ },
Settings = new UserArtifactSettings
{
PackageFileName = "test.zip",
@@ -845,6 +881,7 @@ private void ValidateGalleryApplicationVersion(GalleryApplicationVersion applica
Assert.NotNull(applicationVersionOut.Id);
Assert.Equal(applicationVersionIn.PublishingProfile.Settings.PackageFileName, applicationVersionOut.PublishingProfile.Settings.PackageFileName);
Assert.Equal(applicationVersionIn.PublishingProfile.Settings.ConfigFileName, applicationVersionOut.PublishingProfile.Settings.ConfigFileName);
+ Assert.Equal(applicationVersionIn.SafetyProfile.AllowDeletionOfReplicatedLocations, applicationVersionOut.SafetyProfile.AllowDeletionOfReplicatedLocations);
IDictionary advancedSettingsIn = applicationVersionIn.PublishingProfile.AdvancedSettings;
IDictionary advancedSettingsOut = applicationVersionOut.PublishingProfile.AdvancedSettings;
Assert.Equal(advancedSettingsIn.Count, advancedSettingsOut.Count);
@@ -853,7 +890,32 @@ private void ValidateGalleryApplicationVersion(GalleryApplicationVersion applica
Assert.True(advancedSettingsOut.ContainsKey(kvp.Key));
Assert.Equal(kvp.Value, advancedSettingsOut[kvp.Key]);
}
+ ValidateCustomActions(applicationVersionIn.PublishingProfile.CustomActions, applicationVersionOut.PublishingProfile.CustomActions);
}
- }
-}
+ private void ValidateCustomActions(IList customActionsIn, IList customActionsOut)
+ {
+ Assert.Equal(customActionsIn.Count, customActionsOut.Count);
+ foreach (var customActionIn in customActionsIn)
+ {
+ var customActionOut = customActionsOut.First(a => a.Name == customActionIn.Name);
+ Assert.NotNull(customActionOut);
+ Assert.Equal(customActionIn.Script, customActionOut.Script);
+ Assert.Equal(customActionIn.Description, customActionOut.Description);
+
+ var parametersIn = customActionIn.Parameters;
+ var parametersOut = customActionOut.Parameters;
+ Assert.Equal(parametersIn.Count, parametersOut.Count);
+ foreach (var parameterIn in parametersIn)
+ {
+ var parameterOut = parametersOut.First(a => a.Name == parameterIn.Name);
+ Assert.NotNull(parameterOut);
+ Assert.Equal(parameterIn.DefaultValue, parameterOut.DefaultValue);
+ Assert.Equal(parameterIn.Description, parameterOut.Description);
+ Assert.Equal(parameterIn.Required, parameterOut.Required);
+ Assert.Equal(parameterIn.Type, parameterOut.Type);
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
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
index a04a1f193ba4..c0c6a3640566 100644
--- 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
@@ -1,22 +1,22 @@
{
"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",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2euap/communityGalleries/PIRBVT-6c64f11e-ad23-4737-a58a-4f3c85acadbf/images/communitygallerylrwah/versions/1.0.0?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvY29tbXVuaXR5R2FsbGVyaWVzL1BJUkJWVC02YzY0ZjExZS1hZDIzLTQ3MzctYTU4YS00ZjNjODVhY2FkYmYvaW1hZ2VzL2NvbW11bml0eWdhbGxlcnlscndhaC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDIyLTAzLTAz",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "77b9c875-57f0-4d64-8a5d-5dd48012a761"
+ "752b590a-e830-4d04-910d-7204742b8a16"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -30,29 +30,29 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "f409cccf-f8d5-4387-82a6-57ba86b3a582_132902163873453225"
+ "f409cccf-f8d5-4387-82a6-57ba86b3a582_133009362911882600"
],
"x-ms-request-id": [
- "393f4004-80e1-4c6f-a729-67cf4f0d4ccd"
+ "0581e119-d7f7-45b0-a399-6a1145fcc38c"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11999"
],
"x-ms-correlation-request-id": [
- "91d43956-303e-45c9-8bc8-df5d25b72f96"
+ "dee5379c-b9c4-4e8e-8791-06c2d4854909"
],
"x-ms-routing-request-id": [
- "WESTUS:20220309T063958Z:91d43956-303e-45c9-8bc8-df5d25b72f96"
+ "CENTRALUS:20220722T221021Z:dee5379c-b9c4-4e8e-8791-06c2d4854909"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 06:39:57 GMT"
+ "Fri, 22 Jul 2022 22:10:21 GMT"
],
"Content-Length": [
"445"
@@ -64,26 +64,26 @@
"-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}",
+ "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\": \"2022-04-22T19:16:00.0695549-04: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",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2euap/communityGalleries/PIRBVT-6c64f11e-ad23-4737-a58a-4f3c85acadbf/images/communitygallerylrwah/versions?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvY29tbXVuaXR5R2FsbGVyaWVzL1BJUkJWVC02YzY0ZjExZS1hZDIzLTQ3MzctYTU4YS00ZjNjODVhY2FkYmYvaW1hZ2VzL2NvbW11bml0eWdhbGxlcnlscndhaC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDIyLTAzLTAz",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "96d1bab1-5d9e-49af-b353-ab1d6c3469f5"
+ "18e05df1-d5d5-44af-a3a4-eb8a65dd4e31"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -97,29 +97,29 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "f409cccf-f8d5-4387-82a6-57ba86b3a582_132902163873453225"
+ "f409cccf-f8d5-4387-82a6-57ba86b3a582_133009362911882600"
],
"x-ms-request-id": [
- "b66b0742-91af-4c55-801c-62758acad35a"
+ "0e1dbe6f-2bb9-4d9c-a41e-67580d2f61d8"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11998"
],
"x-ms-correlation-request-id": [
- "d9c8dea8-3fc2-412e-8956-8b99bfa8c9d0"
+ "68e72f87-4f7f-4b59-8eb6-a736b9dc7800"
],
"x-ms-routing-request-id": [
- "WESTUS:20220309T063958Z:d9c8dea8-3fc2-412e-8956-8b99bfa8c9d0"
+ "CENTRALUS:20220722T221022Z:68e72f87-4f7f-4b59-8eb6-a736b9dc7800"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 06:39:58 GMT"
+ "Fri, 22 Jul 2022 22:10:22 GMT"
],
"Content-Length": [
"538"
@@ -131,12 +131,12 @@
"-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}",
+ "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\": \"2022-04-22T19:16:00.0695549-04: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"
+ "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871"
}
}
\ 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
index a9eed4b3d693..1f00a6434a93 100644
--- 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
@@ -1,22 +1,22 @@
{
"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",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2euap/communityGalleries/PIRBVT-6c64f11e-ad23-4737-a58a-4f3c85acadbf/images/communitygallerylrwah?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvY29tbXVuaXR5R2FsbGVyaWVzL1BJUkJWVC02YzY0ZjExZS1hZDIzLTQ3MzctYTU4YS00ZjNjODVhY2FkYmYvaW1hZ2VzL2NvbW11bml0eWdhbGxlcnlscndhaD9hcGktdmVyc2lvbj0yMDIyLTAzLTAz",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1ea467b3-bee3-4f8a-840c-cb685a925551"
+ "c8be4f90-f50f-495b-954a-f569c79be205"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -30,10 +30,10 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "f409cccf-f8d5-4387-82a6-57ba86b3a582_132947811814696538"
+ "f409cccf-f8d5-4387-82a6-57ba86b3a582_133009362911882600"
],
"x-ms-request-id": [
- "b6f0810a-f9cb-4bec-b96b-7bef8eea9731"
+ "6a3e3752-b46e-4532-9318-54a523fdc4fb"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -43,16 +43,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "bfc03955-bafd-4287-871e-4045180a6dbf"
+ "e3dbf976-9d66-41bd-9d50-e0e6fd1a9926"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220422T234553Z:bfc03955-bafd-4287-871e-4045180a6dbf"
+ "CENTRALUS:20220722T221028Z:e3dbf976-9d66-41bd-9d50-e0e6fd1a9926"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 22 Apr 2022 23:45:53 GMT"
+ "Fri, 22 Jul 2022 22:10:28 GMT"
],
"Content-Length": [
"584"
@@ -68,22 +68,22 @@
"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=",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2euap/communityGalleries/PIRBVT-6c64f11e-ad23-4737-a58a-4f3c85acadbf/images?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvY29tbXVuaXR5R2FsbGVyaWVzL1BJUkJWVC02YzY0ZjExZS1hZDIzLTQ3MzctYTU4YS00ZjNjODVhY2FkYmYvaW1hZ2VzP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3d9c311f-ab72-4396-88ae-51a66c42ecc8"
+ "ac8d9278-24a9-416d-8f09-dd1b2662c4fb"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -97,10 +97,10 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "f409cccf-f8d5-4387-82a6-57ba86b3a582_132947811814696538"
+ "f409cccf-f8d5-4387-82a6-57ba86b3a582_133009362911882600"
],
"x-ms-request-id": [
- "74adeedb-f74b-4b59-8888-a238ea50d678"
+ "5900688d-831c-4c96-932d-ef468b2679f7"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -110,16 +110,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "e151100a-8756-4bb6-a574-949b6d1e7b7f"
+ "56601196-6fb4-42bc-a96e-72d28a257287"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220422T234553Z:e151100a-8756-4bb6-a574-949b6d1e7b7f"
+ "CENTRALUS:20220722T221028Z:56601196-6fb4-42bc-a96e-72d28a257287"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 22 Apr 2022 23:45:53 GMT"
+ "Fri, 22 Jul 2022 22:10:28 GMT"
],
"Content-Length": [
"693"
@@ -137,6 +137,6 @@
],
"Names": {},
"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/CommunityGalleryTests/CommunityGallery_Get_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CommunityGalleryTests/CommunityGallery_Get_Tests.json
index 16d13c7f0694..77b394d69dcb 100644
--- 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
@@ -1,22 +1,22 @@
{
"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==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2euap/communityGalleries/PIRBVT-6c64f11e-ad23-4737-a58a-4f3c85acadbf?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvY29tbXVuaXR5R2FsbGVyaWVzL1BJUkJWVC02YzY0ZjExZS1hZDIzLTQ3MzctYTU4YS00ZjNjODVhY2FkYmY/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7ebb1a52-ae28-4f1f-81fe-562a8fde4176"
+ "5f9312de-dfd7-449c-bc12-08b565793eb1"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -30,10 +30,10 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "f409cccf-f8d5-4387-82a6-57ba86b3a582_132902163873453225"
+ "f409cccf-f8d5-4387-82a6-57ba86b3a582_133009362911882600"
],
"x-ms-request-id": [
- "bf8d26c8-00cb-4f25-b4cb-5002d4d1701d"
+ "67a01919-9cd1-4e52-959c-16f81bdc9448"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -43,16 +43,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "bf556bbf-a526-4fe1-9a7f-13359da8bb1e"
+ "9e3d995f-9a21-4964-9025-d5c8e1559bd5"
],
"x-ms-routing-request-id": [
- "WESTUS:20220309T063957Z:bf556bbf-a526-4fe1-9a7f-13359da8bb1e"
+ "CENTRALUS:20220722T221019Z:9e3d995f-9a21-4964-9025-d5c8e1559bd5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 06:39:57 GMT"
+ "Fri, 22 Jul 2022 22:10:19 GMT"
],
"Content-Length": [
"423"
@@ -70,6 +70,6 @@
],
"Names": {},
"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/GalleryApplicationVersion_CRUD_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryApplicationVersion_CRUD_Tests.json
index 34bcb9a12d93..897cc96f2d2c 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,19 +1,19 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourcegroups/galleryPsTestRg172?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE3Mj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg362?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2Mj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg172\": \"2022-04-19 01:03:55Z\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg362\": \"2022-08-13 00:48:01Z\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e76ae95b-8eab-4318-a74d-9d6078ed0e04"
+ "dda4f598-23d8-44f2-88b7-97e9ff13936f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19044",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
@@ -36,13 +36,13 @@
"1199"
],
"x-ms-request-id": [
- "2ccb0982-1689-474c-a4b8-ce81b1432214"
+ "1294f03a-8fc3-4c94-87eb-1d4938c2f2e3"
],
"x-ms-correlation-request-id": [
- "2ccb0982-1689-474c-a4b8-ce81b1432214"
+ "1294f03a-8fc3-4c94-87eb-1d4938c2f2e3"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T010357Z:2ccb0982-1689-474c-a4b8-ce81b1432214"
+ "WESTUS:20220813T004802Z:1294f03a-8fc3-4c94-87eb-1d4938c2f2e3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -51,7 +51,7 @@
"nosniff"
],
"Date": [
- "Tue, 19 Apr 2022 01:03:57 GMT"
+ "Sat, 13 Aug 2022 00:48:01 GMT"
],
"Content-Length": [
"243"
@@ -63,23 +63,23 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg362\",\r\n \"name\": \"galleryPsTestRg362\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg362\": \"2022-08-13 00:48:01Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/galleryPsTestRg172/providers/Microsoft.Storage/storageAccounts/saforgallery6712?api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3NhZm9yZ2FsbGVyeTY3MTI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg362/providers/Microsoft.Storage/storageAccounts/saforgallery9802?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3NhZm9yZ2FsbGVyeTk4MDI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
"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": [
- "7f5e1b12-1d97-449f-9858-1bf64b91541a"
+ "373f7a28-c270-46c9-aa37-89857b7d225a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19044",
"Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0"
@@ -99,13 +99,13 @@
"no-cache"
],
"Location": [
- "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"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Storage/locations/eastus2/asyncoperations/e03a8642-3fb0-45f7-9ffd-cf05470157c6?monitor=true&api-version=2015-06-15"
],
"Retry-After": [
"17"
],
"x-ms-request-id": [
- "1456c85a-f787-4ae3-bfd2-99299e7afe6f"
+ "e03a8642-3fb0-45f7-9ffd-cf05470157c6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -117,16 +117,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "03348b9d-231c-4f59-9d51-e67e6d8425fc"
+ "0360b5a5-df95-41bc-b3a4-bd1091c6463b"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T010405Z:03348b9d-231c-4f59-9d51-e67e6d8425fc"
+ "WESTUS:20220813T004806Z:0360b5a5-df95-41bc-b3a4-bd1091c6463b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Apr 2022 01:04:04 GMT"
+ "Sat, 13 Aug 2022 00:48:06 GMT"
],
"Content-Type": [
"text/plain; charset=utf-8"
@@ -142,13 +142,13 @@
"StatusCode": 202
},
{
- "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",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Storage/locations/eastus2/asyncoperations/e03a8642-3fb0-45f7-9ffd-cf05470157c6?monitor=true&api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMi9hc3luY29wZXJhdGlvbnMvZTAzYTg2NDItM2ZiMC00NWY3LTlmZmQtY2YwNTQ3MDE1N2M2P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19044",
"Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0"
@@ -161,14 +161,8 @@
"Pragma": [
"no-cache"
],
- "Location": [
- "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": [
- "0252d15e-1b85-43f7-b9fd-0f2939885043"
+ "7140c5fe-118a-48db-acc4-0321b30162e2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -180,73 +174,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "d2c9ff37-494f-4b88-943e-8cc72a4814bc"
- ],
- "x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T010422Z:d2c9ff37-494f-4b88-943e-8cc72a4814bc"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Tue, 19 Apr 2022 01:04:21 GMT"
- ],
- "Content-Type": [
- "text/plain; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "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.19044",
- "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "1c9f7492-d13e-4607-90f8-bcb35d4f4792"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
- ],
- "x-ms-correlation-request-id": [
- "279b793f-5e9c-40c5-abe1-b41475172bcc"
+ "afdd9f20-d1ae-430b-9f5f-08975974dbd1"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T010425Z:279b793f-5e9c-40c5-abe1-b41475172bcc"
+ "WESTUS:20220813T004823Z:afdd9f20-d1ae-430b-9f5f-08975974dbd1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Apr 2022 01:04:24 GMT"
+ "Sat, 13 Aug 2022 00:48:23 GMT"
],
"Content-Length": [
"89"
@@ -262,19 +199,19 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/galleryPsTestRg172/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg362/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7cac2973-8e96-4267-b778-8a8526858264"
+ "a57b0765-0c20-43df-8020-dbe7c9e1665b"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19044",
"Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0"
@@ -288,7 +225,7 @@
"no-cache"
],
"x-ms-request-id": [
- "5d1dabf8-b9b3-452f-a9f8-ccbaaf58f529"
+ "8ebcb5ea-2d46-4cf3-8082-e33af1555317"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -297,19 +234,19 @@
"Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11998"
],
"x-ms-correlation-request-id": [
- "ca936dfb-a0be-4c08-930c-5ecf2195c9f2"
+ "140c1b6a-2aed-4f93-a454-5e9d2dedca68"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T010435Z:ca936dfb-a0be-4c08-930c-5ecf2195c9f2"
+ "WESTUS:20220813T004833Z:140c1b6a-2aed-4f93-a454-5e9d2dedca68"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Apr 2022 01:04:35 GMT"
+ "Sat, 13 Aug 2022 00:48:33 GMT"
],
"Content-Length": [
"764"
@@ -321,23 +258,23 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg362/providers/Microsoft.Storage/storageAccounts/saforgallery9802\",\r\n \"name\": \"saforgallery9802\",\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-08-13T00:48:04.80476Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery9802.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery9802.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery9802.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery9802.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/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/galleryPsTestRg172/providers/Microsoft.Storage/storageAccounts/saforgallery6712?api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3NhZm9yZ2FsbGVyeTY3MTI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg362/providers/Microsoft.Storage/storageAccounts/saforgallery9802?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3NhZm9yZ2FsbGVyeTk4MDI/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "eec7c99e-ad45-4b21-a978-3c7750ad2cb3"
+ "a54b07a6-88b8-418c-8631-395349120f5c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19044",
"Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0"
@@ -351,7 +288,7 @@
"no-cache"
],
"x-ms-request-id": [
- "d4cf7c03-afbf-425d-8841-96d6ecabdd30"
+ "ab8f936c-d45c-4162-8388-f4e186fbc8c1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -360,19 +297,19 @@
"Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11997"
],
"x-ms-correlation-request-id": [
- "6fdfca40-8e0e-4880-9564-056edc6e3d14"
+ "b9c5ccd4-c866-4f53-9fc2-41c56b4bbd9e"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T010436Z:6fdfca40-8e0e-4880-9564-056edc6e3d14"
+ "WESTUS:20220813T004833Z:b9c5ccd4-c866-4f53-9fc2-41c56b4bbd9e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Apr 2022 01:04:35 GMT"
+ "Sat, 13 Aug 2022 00:48:33 GMT"
],
"Content-Length": [
"752"
@@ -384,23 +321,23 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg362/providers/Microsoft.Storage/storageAccounts/saforgallery9802\",\r\n \"name\": \"saforgallery9802\",\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-08-13T00:48:04.80476Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery9802.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery9802.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery9802.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery9802.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/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/galleryPsTestRg172/providers/Microsoft.Storage/storageAccounts/saforgallery6712/listKeys?api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3NhZm9yZ2FsbGVyeTY3MTIvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg362/providers/Microsoft.Storage/storageAccounts/saforgallery9802/listKeys?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3NhZm9yZ2FsbGVyeTk4MDIvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2c277d59-c04d-4acf-a1b7-deef07ddc742"
+ "684c4d3d-8299-4348-991d-bde08e14f166"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19044",
"Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0"
@@ -414,7 +351,7 @@
"no-cache"
],
"x-ms-request-id": [
- "26a8b7a6-28a8-4fae-a4a5-1e7f0e96d157"
+ "d544b8d6-66bc-499f-9703-c80aede484f9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -426,16 +363,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "f206cab2-06f2-40e0-ae7e-f0b684f5a1dc"
+ "a02fabbb-b516-4b6e-a12b-f4fe93d0ec3d"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T010436Z:f206cab2-06f2-40e0-ae7e-f0b684f5a1dc"
+ "WESTUS:20220813T004834Z:a02fabbb-b516-4b6e-a12b-f4fe93d0ec3d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Apr 2022 01:04:35 GMT"
+ "Sat, 13 Aug 2022 00:48:33 GMT"
],
"Content-Length": [
"197"
@@ -447,26 +384,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"key1\": \"Sanitized\",\r\n \"key2\": \"Sanitized\"\r\n}",
+ "ResponseBody": "{\r\n \"key1\": \"sanitized\",\r\n \"key2\": \"sanitized\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/galleryPsTestRg172/providers/Microsoft.Compute/galleries/galleryPsTestGallery1006?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTAwNj9hcGktdmVyc2lvbj0yMDIyLTAxLTAz",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg362/providers/Microsoft.Compute/galleries/galleryPsTestGallery1466?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTQ2Nj9hcGktdmVyc2lvbj0yMDIyLTAzLTAz",
"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": [
- "06da6987-ba09-4960-9d79-a4c9f26a8d40"
+ "8e400079-bff2-4970-832f-ad9f869d3606"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19044",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -483,19 +420,19 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "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"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/591bc930-b72b-48ed-bc71-83ec3fe5611e?api-version=2022-03-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": [
- "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "626027d7-5f55-4547-abba-9876df6f9870"
+ "591bc930-b72b-48ed-bc71-83ec3fe5611e"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -505,16 +442,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "e65c3775-5863-4f06-bf6d-d30f13f791cd"
+ "00cc968d-fb55-4f82-8363-8a9b6aa045c5"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T010439Z:e65c3775-5863-4f06-bf6d-d30f13f791cd"
+ "WESTCENTRALUS:20220813T004837Z:00cc968d-fb55-4f82-8363-8a9b6aa045c5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Apr 2022 01:04:38 GMT"
+ "Sat, 13 Aug 2022 00:48:36 GMT"
],
"Content-Length": [
"507"
@@ -526,20 +463,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery1466\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg362/providers/Microsoft.Compute/galleries/galleryPsTestGallery1466\",\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-GALLERYPSTESTGALLERY1466\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "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==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/591bc930-b72b-48ed-bc71-83ec3fe5611e?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy81OTFiYzkzMC1iNzJiLTQ4ZWQtYmM3MS04M2VjM2ZlNTYxMWU/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19044",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -550,16 +487,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4198"
+ "Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4154"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "c174c50a-c519-44e8-937b-09c0a49ff0b9"
+ "6d89162e-0468-42e8-8215-731a0c6f9399"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -569,16 +506,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "7110a2b6-6912-4248-9a11-028ef7c7d2b6"
+ "a0d8d4d5-c40d-40d5-a24d-3e8f28f86b2c"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T010509Z:7110a2b6-6912-4248-9a11-028ef7c7d2b6"
+ "WESTCENTRALUS:20220813T004907Z:a0d8d4d5-c40d-40d5-a24d-3e8f28f86b2c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Apr 2022 01:05:08 GMT"
+ "Sat, 13 Aug 2022 00:49:07 GMT"
],
"Content-Length": [
"184"
@@ -590,20 +527,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:48:36.7247332-07:00\",\r\n \"endTime\": \"2022-08-12T17:48:36.8028261-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"591bc930-b72b-48ed-bc71-83ec3fe5611e\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/galleryPsTestRg172/providers/Microsoft.Compute/galleries/galleryPsTestGallery1006?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTAwNj9hcGktdmVyc2lvbj0yMDIyLTAxLTAz",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg362/providers/Microsoft.Compute/galleries/galleryPsTestGallery1466?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTQ2Nj9hcGktdmVyc2lvbj0yMDIyLTAzLTAz",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19044",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -614,16 +551,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2496"
+ "Microsoft.Compute/GetGallery3Min;345,Microsoft.Compute/GetGallery30Min;2470"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "15e2d4a5-93ba-4567-a07a-b0352d6d0b54"
+ "159d4430-bb57-479e-8ba3-144eb109dfa1"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -633,16 +570,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "6827fd47-373b-4a59-9cc6-d9d96eff2753"
+ "345e32cb-c398-4bcb-a4be-1c7b08709835"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T010509Z:6827fd47-373b-4a59-9cc6-d9d96eff2753"
+ "WESTCENTRALUS:20220813T004907Z:345e32cb-c398-4bcb-a4be-1c7b08709835"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Apr 2022 01:05:09 GMT"
+ "Sat, 13 Aug 2022 00:49:07 GMT"
],
"Content-Length": [
"508"
@@ -654,26 +591,26 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery1466\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg362/providers/Microsoft.Compute/galleries/galleryPsTestGallery1466\",\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-GALLERYPSTESTGALLERY1466\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/galleryPsTestRg172/providers/Microsoft.Compute/galleries/galleryPsTestGallery1006/applications/galleryPsTestGalleryApplication2473?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTAwNi9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjI0NzM/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg362/providers/Microsoft.Compute/galleries/galleryPsTestGallery1466/applications/galleryPsTestGalleryApplication6135?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTQ2Ni9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjYxMzU/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"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\": \"eastus2\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0202a917-a26d-40fe-9d17-c070b919826f"
+ "746a905b-6f56-43aa-a772-dbad47b14268"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19044",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -690,16 +627,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/CreateUpdateGalleryApplication3Min;149,Microsoft.Compute/CreateUpdateGalleryApplication30Min;749"
+ "Microsoft.Compute/CreateUpdateGalleryApplication3Min;149,Microsoft.Compute/CreateUpdateGalleryApplication30Min;747"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "02ea695b-dcbf-4ef9-915e-313b80bfffa0"
+ "2fc1e6c2-62f6-4b52-8bf7-e75b0f2e08d7"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -709,16 +646,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "ba88c753-4cc0-4b5c-835f-b9ef2ba1c3d8"
+ "4fad163a-c2f6-45cb-875d-c6a2b4cffad1"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T010511Z:ba88c753-4cc0-4b5c-835f-b9ef2ba1c3d8"
+ "WESTCENTRALUS:20220813T004908Z:4fad163a-c2f6-45cb-875d-c6a2b4cffad1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Apr 2022 01:05:10 GMT"
+ "Sat, 13 Aug 2022 00:49:08 GMT"
],
"Content-Length": [
"627"
@@ -730,20 +667,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication6135\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg362/providers/Microsoft.Compute/galleries/galleryPsTestGallery1466/applications/galleryPsTestGalleryApplication6135\",\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/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/galleryPsTestRg172/providers/Microsoft.Compute/galleries/galleryPsTestGallery1006/applications/galleryPsTestGalleryApplication2473?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTAwNi9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjI0NzM/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg362/providers/Microsoft.Compute/galleries/galleryPsTestGallery1466/applications/galleryPsTestGalleryApplication6135?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTQ2Ni9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjYxMzU/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19044",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -754,16 +691,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetGalleryApplication3Min;298,Microsoft.Compute/GetGalleryApplication30Min;1998"
+ "Microsoft.Compute/GetGalleryApplication3Min;298,Microsoft.Compute/GetGalleryApplication30Min;1991"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "ec50a893-0e4f-4c53-81a5-d71ffe1f4af2"
+ "24e82584-401c-4d6b-ac58-e7d857d37d8b"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -773,16 +710,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "b2c16c0d-523f-4643-95c6-7530bec553d0"
+ "06bcbd15-f20c-41ab-b4d1-a541ca7540e2"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T010541Z:b2c16c0d-523f-4643-95c6-7530bec553d0"
+ "WESTCENTRALUS:20220813T004938Z:06bcbd15-f20c-41ab-b4d1-a541ca7540e2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Apr 2022 01:05:40 GMT"
+ "Sat, 13 Aug 2022 00:49:38 GMT"
],
"Content-Length": [
"627"
@@ -794,32 +731,32 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication6135\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg362/providers/Microsoft.Compute/galleries/galleryPsTestGallery1466/applications/galleryPsTestGalleryApplication6135\",\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/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==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg362/providers/Microsoft.Compute/galleries/galleryPsTestGallery1466/applications/galleryPsTestGalleryApplication6135/versions/1.0.0?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTQ2Ni9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjYxMzUvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "PUT",
- "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}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery9802.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=MX4Wv5fQ1N2u6QgIMF3Sh9sYekNvuztJlisO1r9hFz8%3D&st=2022-08-12T00%3A48%3A34Z&se=2022-08-15T00%3A48%3A34Z&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 \"customActions\": [\r\n {\r\n \"name\": \"testCustomAction\",\r\n \"script\": \"powershell -command \\\"echo testCustomActionScript\\\"\",\r\n \"description\": \"A test custom action\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"testCustomActionParam\",\r\n \"required\": true,\r\n \"type\": \"String\",\r\n \"defaultValue\": \"paramDefaultValue\",\r\n \"description\": \"A test custom action parameter\"\r\n }\r\n ]\r\n }\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-08-22T07:00:00Z\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"safetyProfile\": {\r\n \"allowDeletionOfReplicatedLocations\": true\r\n }\r\n },\r\n \"location\": \"eastus2\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "222c3b4b-0da9-48af-90ed-fb6ea77cd400"
+ "2fb6a370-549d-4e5e-8e7b-61b96acf1b41"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19044",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "1023"
+ "1623"
]
},
"ResponseHeaders": {
@@ -830,7 +767,7 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "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"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/0ada4acf-d8b7-431d-8564-650eee053900?api-version=2022-03-03"
],
"x-ms-ratelimit-remaining-resource": [
"Microsoft.Compute/CreateUpdateGalleryApplicationVersion3Min;149,Microsoft.Compute/CreateUpdateGalleryApplicationVersion30Min;749"
@@ -839,10 +776,10 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "e93aa3a9-3ba6-4ccb-ad1b-785b029f232a"
+ "0ada4acf-d8b7-431d-8564-650eee053900"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -852,19 +789,19 @@
"1197"
],
"x-ms-correlation-request-id": [
- "a2121a4b-df78-483c-8f52-8aeac047e2ca"
+ "6e890442-59a3-4b4a-aacf-3c29002b6e30"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T010542Z:a2121a4b-df78-483c-8f52-8aeac047e2ca"
+ "WESTCENTRALUS:20220813T004939Z:6e890442-59a3-4b4a-aacf-3c29002b6e30"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Apr 2022 01:05:41 GMT"
+ "Sat, 13 Aug 2022 00:49:39 GMT"
],
"Content-Length": [
- "1508"
+ "2108"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -873,32 +810,32 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg362/providers/Microsoft.Compute/galleries/galleryPsTestGallery1466/applications/galleryPsTestGalleryApplication6135/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://saforgallery9802.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=MX4Wv5fQ1N2u6QgIMF3Sh9sYekNvuztJlisO1r9hFz8%3D&st=2022-08-12T00%3A48%3A34Z&se=2022-08-15T00%3A48%3A34Z&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 \"customActions\": [\r\n {\r\n \"name\": \"testCustomAction\",\r\n \"script\": \"powershell -command \\\"echo testCustomActionScript\\\"\",\r\n \"description\": \"A test custom action\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"testCustomActionParam\",\r\n \"required\": true,\r\n \"type\": \"String\",\r\n \"defaultValue\": \"paramDefaultValue\",\r\n \"description\": \"A test custom action parameter\"\r\n }\r\n ]\r\n }\r\n ],\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-08-12T17:49:39.3657132-07:00\",\r\n \"endOfLifeDate\": \"2022-08-22T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"safetyProfile\": {\r\n \"allowDeletionOfReplicatedLocations\": true\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "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==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg362/providers/Microsoft.Compute/galleries/galleryPsTestGallery1466/applications/galleryPsTestGalleryApplication6135/versions/1.0.0?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTQ2Ni9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjYxMzUvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "PUT",
- "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}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery9802.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=MX4Wv5fQ1N2u6QgIMF3Sh9sYekNvuztJlisO1r9hFz8%3D&st=2022-08-12T00%3A48%3A34Z&se=2022-08-15T00%3A48%3A34Z&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 \"customActions\": [\r\n {\r\n \"name\": \"testCustomAction\",\r\n \"script\": \"powershell -command \\\"echo testCustomActionScript\\\"\",\r\n \"description\": \"A test custom action\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"testCustomActionParam\",\r\n \"required\": true,\r\n \"type\": \"String\",\r\n \"defaultValue\": \"paramDefaultValue\",\r\n \"description\": \"A test custom action parameter\"\r\n }\r\n ]\r\n }\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-11-20T08:00:00Z\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"safetyProfile\": {\r\n \"allowDeletionOfReplicatedLocations\": true\r\n }\r\n },\r\n \"location\": \"eastus2\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c6ee6004-5e33-45ce-8eaa-a21306aa308d"
+ "a8272238-382d-4bd7-95cf-9f596ffe2840"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19044",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "1023"
+ "1623"
]
},
"ResponseHeaders": {
@@ -909,7 +846,7 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "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"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/1f834461-75a0-4020-a400-f9e18ad699e7?api-version=2022-03-03"
],
"x-ms-ratelimit-remaining-resource": [
"Microsoft.Compute/CreateUpdateGalleryApplicationVersion3Min;149,Microsoft.Compute/CreateUpdateGalleryApplicationVersion30Min;748"
@@ -918,10 +855,10 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "605d3964-51e1-4f73-ad96-99b1d2ef2e28"
+ "1f834461-75a0-4020-a400-f9e18ad699e7"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -931,19 +868,19 @@
"1196"
],
"x-ms-correlation-request-id": [
- "b7a794c1-2598-481c-a9bf-7d24751f15f0"
+ "f07ed389-fed3-46d8-9acd-f72cc681198a"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T011014Z:b7a794c1-2598-481c-a9bf-7d24751f15f0"
+ "WESTCENTRALUS:20220813T005411Z:f07ed389-fed3-46d8-9acd-f72cc681198a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Apr 2022 01:10:13 GMT"
+ "Sat, 13 Aug 2022 00:54:10 GMT"
],
"Content-Length": [
- "1508"
+ "2108"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -952,20 +889,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg362/providers/Microsoft.Compute/galleries/galleryPsTestGallery1466/applications/galleryPsTestGalleryApplication6135/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://saforgallery9802.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=MX4Wv5fQ1N2u6QgIMF3Sh9sYekNvuztJlisO1r9hFz8%3D&st=2022-08-12T00%3A48%3A34Z&se=2022-08-15T00%3A48%3A34Z&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 \"customActions\": [\r\n {\r\n \"name\": \"testCustomAction\",\r\n \"script\": \"powershell -command \\\"echo testCustomActionScript\\\"\",\r\n \"description\": \"A test custom action\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"testCustomActionParam\",\r\n \"required\": true,\r\n \"type\": \"String\",\r\n \"defaultValue\": \"paramDefaultValue\",\r\n \"description\": \"A test custom action parameter\"\r\n }\r\n ]\r\n }\r\n ],\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-08-12T17:49:39.3657132-07:00\",\r\n \"endOfLifeDate\": \"2022-11-20T00:00:00-08:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"safetyProfile\": {\r\n \"allowDeletionOfReplicatedLocations\": true\r\n },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "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==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/0ada4acf-d8b7-431d-8564-650eee053900?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wYWRhNGFjZi1kOGI3LTQzMWQtODU2NC02NTBlZWUwNTM5MDA/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19044",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -976,16 +913,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4196"
+ "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4157"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "afddfa95-d89d-4a27-9ee8-0cf94836a03e"
+ "c57d95df-a2e7-41dc-a914-0309aa42bf6d"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -995,19 +932,19 @@
"11996"
],
"x-ms-correlation-request-id": [
- "8458000c-f13b-4c00-8986-4c2ec4ddf47f"
+ "9e26b8ab-465e-4d12-af39-a96891089c00"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T010612Z:8458000c-f13b-4c00-8986-4c2ec4ddf47f"
+ "WESTCENTRALUS:20220813T005009Z:9e26b8ab-465e-4d12-af39-a96891089c00"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Apr 2022 01:06:12 GMT"
+ "Sat, 13 Aug 2022 00:50:09 GMT"
],
"Content-Length": [
- "133"
+ "134"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1016,20 +953,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:49:39.3657132-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0ada4acf-d8b7-431d-8564-650eee053900\"\r\n}",
"StatusCode": 200
},
{
- "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==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/0ada4acf-d8b7-431d-8564-650eee053900?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wYWRhNGFjZi1kOGI3LTQzMWQtODU2NC02NTBlZWUwNTM5MDA/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19044",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -1040,16 +977,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4193"
+ "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4154"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "f1a0f4c1-c5e1-4648-9ee3-dc79026dc2af"
+ "673d1c45-a792-4004-a0eb-6dff4ae93e9f"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -1059,19 +996,19 @@
"11995"
],
"x-ms-correlation-request-id": [
- "bf093a08-630c-42b3-8aa7-bf79fefbf5a7"
+ "7c82644e-b0d9-4289-88cd-daef8ba6b86f"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T010642Z:bf093a08-630c-42b3-8aa7-bf79fefbf5a7"
+ "WESTCENTRALUS:20220813T005039Z:7c82644e-b0d9-4289-88cd-daef8ba6b86f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Apr 2022 01:06:42 GMT"
+ "Sat, 13 Aug 2022 00:50:39 GMT"
],
"Content-Length": [
- "133"
+ "134"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1080,20 +1017,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:49:39.3657132-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0ada4acf-d8b7-431d-8564-650eee053900\"\r\n}",
"StatusCode": 200
},
{
- "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==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/0ada4acf-d8b7-431d-8564-650eee053900?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wYWRhNGFjZi1kOGI3LTQzMWQtODU2NC02NTBlZWUwNTM5MDA/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19044",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -1104,16 +1041,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4190"
+ "Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4151"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "fe87335e-ced6-40ac-b4c4-7ff0bffa1837"
+ "dcf4c72b-cdf4-4238-8970-467856480845"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -1123,19 +1060,19 @@
"11994"
],
"x-ms-correlation-request-id": [
- "2dc7296d-3573-46af-8952-d75ad240e607"
+ "bcee5d93-3dfd-4366-99b5-3449d74d676e"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T010712Z:2dc7296d-3573-46af-8952-d75ad240e607"
+ "WESTCENTRALUS:20220813T005110Z:bcee5d93-3dfd-4366-99b5-3449d74d676e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Apr 2022 01:07:12 GMT"
+ "Sat, 13 Aug 2022 00:51:09 GMT"
],
"Content-Length": [
- "133"
+ "134"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1144,20 +1081,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:49:39.3657132-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0ada4acf-d8b7-431d-8564-650eee053900\"\r\n}",
"StatusCode": 200
},
{
- "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==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/0ada4acf-d8b7-431d-8564-650eee053900?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wYWRhNGFjZi1kOGI3LTQzMWQtODU2NC02NTBlZWUwNTM5MDA/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19044",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -1168,16 +1105,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4187"
+ "Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4148"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "e3085db7-0c27-425c-9726-c5c1bd8105cf"
+ "1a982f1e-8fd9-4ffc-8a03-eaa0a181bcdc"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -1187,19 +1124,19 @@
"11993"
],
"x-ms-correlation-request-id": [
- "a2198211-312a-4c21-8bda-e8faaab00295"
+ "3f04d738-9e6a-4ef6-9184-8b0382edd89c"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T010743Z:a2198211-312a-4c21-8bda-e8faaab00295"
+ "WESTCENTRALUS:20220813T005140Z:3f04d738-9e6a-4ef6-9184-8b0382edd89c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Apr 2022 01:07:42 GMT"
+ "Sat, 13 Aug 2022 00:51:39 GMT"
],
"Content-Length": [
- "133"
+ "134"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1208,20 +1145,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:49:39.3657132-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0ada4acf-d8b7-431d-8564-650eee053900\"\r\n}",
"StatusCode": 200
},
{
- "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==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/0ada4acf-d8b7-431d-8564-650eee053900?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wYWRhNGFjZi1kOGI3LTQzMWQtODU2NC02NTBlZWUwNTM5MDA/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19044",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -1232,16 +1169,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;4184"
+ "Microsoft.Compute/GetOperationStatus3Min;1186,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"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "be07db23-866d-4388-af96-3ff512aa6a29"
+ "f2fb30c1-8216-4e1b-8d57-f989df10e3ee"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -1251,19 +1188,19 @@
"11992"
],
"x-ms-correlation-request-id": [
- "6427b772-8829-400a-842f-554fa214405a"
+ "3cda4e74-e61b-43f8-95f4-65ad3887a882"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T010813Z:6427b772-8829-400a-842f-554fa214405a"
+ "WESTCENTRALUS:20220813T005210Z:3cda4e74-e61b-43f8-95f4-65ad3887a882"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Apr 2022 01:08:13 GMT"
+ "Sat, 13 Aug 2022 00:52:09 GMT"
],
"Content-Length": [
- "133"
+ "134"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1272,20 +1209,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:49:39.3657132-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0ada4acf-d8b7-431d-8564-650eee053900\"\r\n}",
"StatusCode": 200
},
{
- "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==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/0ada4acf-d8b7-431d-8564-650eee053900?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wYWRhNGFjZi1kOGI3LTQzMWQtODU2NC02NTBlZWUwNTM5MDA/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19044",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -1296,16 +1233,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4181"
+ "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4142"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "361e4867-1a85-435b-8872-d6f0e80151fe"
+ "eda25c8c-9e80-42e1-8562-c1ca44f95cb8"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -1315,19 +1252,19 @@
"11991"
],
"x-ms-correlation-request-id": [
- "f06dce3b-e8e2-458f-9992-0336a80200f0"
+ "e406ac73-4164-4315-bacc-816e741e8afd"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T010843Z:f06dce3b-e8e2-458f-9992-0336a80200f0"
+ "WESTCENTRALUS:20220813T005240Z:e406ac73-4164-4315-bacc-816e741e8afd"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Apr 2022 01:08:43 GMT"
+ "Sat, 13 Aug 2022 00:52:40 GMT"
],
"Content-Length": [
- "133"
+ "134"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1336,20 +1273,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:49:39.3657132-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0ada4acf-d8b7-431d-8564-650eee053900\"\r\n}",
"StatusCode": 200
},
{
- "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==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/0ada4acf-d8b7-431d-8564-650eee053900?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wYWRhNGFjZi1kOGI3LTQzMWQtODU2NC02NTBlZWUwNTM5MDA/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19044",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -1360,38 +1297,38 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4178"
+ "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4139"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "776b7b8c-fd5e-4094-9cf3-502df21f9348"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "e75c57f5-a1f0-4707-894c-d561eff119e7"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
"x-ms-correlation-request-id": [
- "a508816d-630b-4d50-8331-7f7b24ef95ee"
+ "9eeca07b-3b07-430c-ac62-83a020e148b3"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T010913Z:a508816d-630b-4d50-8331-7f7b24ef95ee"
+ "WESTCENTRALUS:20220813T005310Z:9eeca07b-3b07-430c-ac62-83a020e148b3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Apr 2022 01:09:12 GMT"
+ "Sat, 13 Aug 2022 00:53:10 GMT"
],
"Content-Length": [
- "133"
+ "134"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1400,20 +1337,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:49:39.3657132-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0ada4acf-d8b7-431d-8564-650eee053900\"\r\n}",
"StatusCode": 200
},
{
- "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==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/0ada4acf-d8b7-431d-8564-650eee053900?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wYWRhNGFjZi1kOGI3LTQzMWQtODU2NC02NTBlZWUwNTM5MDA/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19044",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -1424,38 +1361,38 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4175"
+ "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4136"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "390329dc-b269-4867-9b99-f00ad0015e86"
+ "895d4289-46ba-41d5-8031-3ea1c3d46fee"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
- ],
"x-ms-correlation-request-id": [
- "17c4e04a-0923-48be-bcb7-2998cad7e12f"
+ "754a2356-7d26-4cfe-b162-748045007949"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T010943Z:17c4e04a-0923-48be-bcb7-2998cad7e12f"
+ "WESTCENTRALUS:20220813T005340Z:754a2356-7d26-4cfe-b162-748045007949"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Apr 2022 01:09:43 GMT"
+ "Sat, 13 Aug 2022 00:53:40 GMT"
],
"Content-Length": [
- "133"
+ "134"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1464,20 +1401,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:49:39.3657132-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0ada4acf-d8b7-431d-8564-650eee053900\"\r\n}",
"StatusCode": 200
},
{
- "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==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/0ada4acf-d8b7-431d-8564-650eee053900?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wYWRhNGFjZi1kOGI3LTQzMWQtODU2NC02NTBlZWUwNTM5MDA/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19044",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -1488,16 +1425,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4172"
+ "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4133"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "1a40b625-3a89-437f-87df-29fcaae4e4e3"
+ "90e6c880-ffac-455e-9eca-47fcfb54e5c0"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -1507,19 +1444,19 @@
"11988"
],
"x-ms-correlation-request-id": [
- "d67a370a-19fd-4c73-afbf-df04347ac98f"
+ "8b1b982a-d459-43f5-8e56-49f2d67b8c0f"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T011013Z:d67a370a-19fd-4c73-afbf-df04347ac98f"
+ "WESTCENTRALUS:20220813T005410Z:8b1b982a-d459-43f5-8e56-49f2d67b8c0f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Apr 2022 01:10:12 GMT"
+ "Sat, 13 Aug 2022 00:54:10 GMT"
],
"Content-Length": [
- "183"
+ "184"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1528,20 +1465,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:49:39.3657132-07:00\",\r\n \"endTime\": \"2022-08-12T17:54:09.5078012-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0ada4acf-d8b7-431d-8564-650eee053900\"\r\n}",
"StatusCode": 200
},
{
- "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==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg362/providers/Microsoft.Compute/galleries/galleryPsTestGallery1466/applications/galleryPsTestGalleryApplication6135/versions/1.0.0?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTQ2Ni9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjYxMzUvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19044",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -1552,16 +1489,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetGalleryApplicationVersion3Min;1999,Microsoft.Compute/GetGalleryApplicationVersion30Min;9997"
+ "Microsoft.Compute/GetGalleryApplicationVersion3Min;1999,Microsoft.Compute/GetGalleryApplicationVersion30Min;9995"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "50dc6a31-57ed-4801-a11d-8e3e218b5985"
+ "877a5a1d-12df-416b-92e4-931d28b2b1c6"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -1571,19 +1508,19 @@
"11987"
],
"x-ms-correlation-request-id": [
- "b92c51cc-6a1d-4151-bc7e-301c43effa7e"
+ "fed0ca94-57f1-4489-abd5-265667a225ba"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T011013Z:b92c51cc-6a1d-4151-bc7e-301c43effa7e"
+ "WESTCENTRALUS:20220813T005411Z:fed0ca94-57f1-4489-abd5-265667a225ba"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Apr 2022 01:10:13 GMT"
+ "Sat, 13 Aug 2022 00:54:10 GMT"
],
"Content-Length": [
- "1509"
+ "2109"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1592,26 +1529,26 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg362/providers/Microsoft.Compute/galleries/galleryPsTestGallery1466/applications/galleryPsTestGalleryApplication6135/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://saforgallery9802.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=MX4Wv5fQ1N2u6QgIMF3Sh9sYekNvuztJlisO1r9hFz8%3D&st=2022-08-12T00%3A48%3A34Z&se=2022-08-15T00%3A48%3A34Z&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 \"customActions\": [\r\n {\r\n \"name\": \"testCustomAction\",\r\n \"script\": \"powershell -command \\\"echo testCustomActionScript\\\"\",\r\n \"description\": \"A test custom action\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"testCustomActionParam\",\r\n \"required\": true,\r\n \"type\": \"String\",\r\n \"defaultValue\": \"paramDefaultValue\",\r\n \"description\": \"A test custom action parameter\"\r\n }\r\n ]\r\n }\r\n ],\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-08-12T17:49:39.3657132-07:00\",\r\n \"endOfLifeDate\": \"2022-08-22T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"safetyProfile\": {\r\n \"allowDeletionOfReplicatedLocations\": true\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "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==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg362/providers/Microsoft.Compute/galleries/galleryPsTestGallery1466/applications/galleryPsTestGalleryApplication6135/versions/1.0.0?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTQ2Ni9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjYxMzUvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "338fd99f-08cd-49b3-9045-e642ca6518c5"
+ "a0bf91d6-1229-49fa-b29f-9e2d1f1e9cf6"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19044",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -1622,16 +1559,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetGalleryApplicationVersion3Min;1998,Microsoft.Compute/GetGalleryApplicationVersion30Min;9996"
+ "Microsoft.Compute/GetGalleryApplicationVersion3Min;1998,Microsoft.Compute/GetGalleryApplicationVersion30Min;9994"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "7cdea7f8-b07b-4779-b30e-b810ee70b903"
+ "9cbc7707-3c41-4f70-9ea1-fb55d2186cfd"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -1641,19 +1578,19 @@
"11986"
],
"x-ms-correlation-request-id": [
- "edf87c10-21d6-4d10-88fb-dc0e644e7d50"
+ "012d392b-ab25-403f-ab49-d0990c83ffd6"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T011014Z:edf87c10-21d6-4d10-88fb-dc0e644e7d50"
+ "WESTCENTRALUS:20220813T005411Z:012d392b-ab25-403f-ab49-d0990c83ffd6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Apr 2022 01:10:13 GMT"
+ "Sat, 13 Aug 2022 00:54:10 GMT"
],
"Content-Length": [
- "1509"
+ "2109"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1662,20 +1599,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg362/providers/Microsoft.Compute/galleries/galleryPsTestGallery1466/applications/galleryPsTestGalleryApplication6135/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://saforgallery9802.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=MX4Wv5fQ1N2u6QgIMF3Sh9sYekNvuztJlisO1r9hFz8%3D&st=2022-08-12T00%3A48%3A34Z&se=2022-08-15T00%3A48%3A34Z&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 \"customActions\": [\r\n {\r\n \"name\": \"testCustomAction\",\r\n \"script\": \"powershell -command \\\"echo testCustomActionScript\\\"\",\r\n \"description\": \"A test custom action\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"testCustomActionParam\",\r\n \"required\": true,\r\n \"type\": \"String\",\r\n \"defaultValue\": \"paramDefaultValue\",\r\n \"description\": \"A test custom action parameter\"\r\n }\r\n ]\r\n }\r\n ],\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-08-12T17:49:39.3657132-07:00\",\r\n \"endOfLifeDate\": \"2022-08-22T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"safetyProfile\": {\r\n \"allowDeletionOfReplicatedLocations\": true\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "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==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg362/providers/Microsoft.Compute/galleries/galleryPsTestGallery1466/applications/galleryPsTestGalleryApplication6135/versions/1.0.0?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTQ2Ni9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjYxMzUvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19044",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -1686,16 +1623,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetGalleryApplicationVersion3Min;1998,Microsoft.Compute/GetGalleryApplicationVersion30Min;9992"
+ "Microsoft.Compute/GetGalleryApplicationVersion3Min;1999,Microsoft.Compute/GetGalleryApplicationVersion30Min;9991"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "2d8564b3-a10c-4363-8995-dc8276db0859"
+ "ab06c309-11e5-459d-9074-e24b4c787c76"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -1705,19 +1642,19 @@
"11978"
],
"x-ms-correlation-request-id": [
- "af696ee9-c471-4496-baaf-bbfb48604495"
+ "9c6a1db2-557a-4453-8c4e-7f570fd52987"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T011315Z:af696ee9-c471-4496-baaf-bbfb48604495"
+ "WESTCENTRALUS:20220813T005712Z:9c6a1db2-557a-4453-8c4e-7f570fd52987"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Apr 2022 01:13:14 GMT"
+ "Sat, 13 Aug 2022 00:57:11 GMT"
],
"Content-Length": [
- "1509"
+ "2109"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1726,26 +1663,26 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg362/providers/Microsoft.Compute/galleries/galleryPsTestGallery1466/applications/galleryPsTestGalleryApplication6135/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://saforgallery9802.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=MX4Wv5fQ1N2u6QgIMF3Sh9sYekNvuztJlisO1r9hFz8%3D&st=2022-08-12T00%3A48%3A34Z&se=2022-08-15T00%3A48%3A34Z&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 \"customActions\": [\r\n {\r\n \"name\": \"testCustomAction\",\r\n \"script\": \"powershell -command \\\"echo testCustomActionScript\\\"\",\r\n \"description\": \"A test custom action\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"testCustomActionParam\",\r\n \"required\": true,\r\n \"type\": \"String\",\r\n \"defaultValue\": \"paramDefaultValue\",\r\n \"description\": \"A test custom action parameter\"\r\n }\r\n ]\r\n }\r\n ],\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-08-12T17:49:39.3657132-07:00\",\r\n \"endOfLifeDate\": \"2022-11-20T00:00:00-08:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"safetyProfile\": {\r\n \"allowDeletionOfReplicatedLocations\": true\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "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==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg362/providers/Microsoft.Compute/galleries/galleryPsTestGallery1466/applications/galleryPsTestGalleryApplication6135/versions/1.0.0?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTQ2Ni9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjYxMzUvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "97371657-4bb1-47b2-afc2-7139e3a6a09e"
+ "3c351500-2426-47df-9dfb-73a047125b01"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19044",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -1756,16 +1693,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetGalleryApplicationVersion3Min;1997,Microsoft.Compute/GetGalleryApplicationVersion30Min;9991"
+ "Microsoft.Compute/GetGalleryApplicationVersion3Min;1998,Microsoft.Compute/GetGalleryApplicationVersion30Min;9990"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "ebe1c417-876c-4fa0-8f73-6b08fce66cfc"
+ "29f128ea-aa46-4234-bfcb-e89f1908d21f"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -1775,19 +1712,19 @@
"11977"
],
"x-ms-correlation-request-id": [
- "f55d9363-8dc6-45d6-a7ac-748b4f768ec4"
+ "84758573-b995-4fd8-8deb-630da29d2282"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T011315Z:f55d9363-8dc6-45d6-a7ac-748b4f768ec4"
+ "WESTCENTRALUS:20220813T005712Z:84758573-b995-4fd8-8deb-630da29d2282"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Apr 2022 01:13:15 GMT"
+ "Sat, 13 Aug 2022 00:57:12 GMT"
],
"Content-Length": [
- "1509"
+ "2109"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1796,26 +1733,26 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg362/providers/Microsoft.Compute/galleries/galleryPsTestGallery1466/applications/galleryPsTestGalleryApplication6135/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://saforgallery9802.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=MX4Wv5fQ1N2u6QgIMF3Sh9sYekNvuztJlisO1r9hFz8%3D&st=2022-08-12T00%3A48%3A34Z&se=2022-08-15T00%3A48%3A34Z&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 \"customActions\": [\r\n {\r\n \"name\": \"testCustomAction\",\r\n \"script\": \"powershell -command \\\"echo testCustomActionScript\\\"\",\r\n \"description\": \"A test custom action\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"testCustomActionParam\",\r\n \"required\": true,\r\n \"type\": \"String\",\r\n \"defaultValue\": \"paramDefaultValue\",\r\n \"description\": \"A test custom action parameter\"\r\n }\r\n ]\r\n }\r\n ],\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-08-12T17:49:39.3657132-07:00\",\r\n \"endOfLifeDate\": \"2022-11-20T00:00:00-08:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"safetyProfile\": {\r\n \"allowDeletionOfReplicatedLocations\": true\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "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",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg362/providers/Microsoft.Compute/galleries/galleryPsTestGallery1466/applications/galleryPsTestGalleryApplication6135/versions/1.0.0?$expand=ReplicationStatus&api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTQ2Ni9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjYxMzUvdmVyc2lvbnMvMS4wLjA/JGV4cGFuZD1SZXBsaWNhdGlvblN0YXR1cyZhcGktdmVyc2lvbj0yMDIyLTAzLTAz",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cffa238f-f955-4b61-9000-1a4a2420ea3a"
+ "8dc9054a-ff99-46bc-87d2-7a1daffb881d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19044",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -1826,16 +1763,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetGalleryApplicationVersion3Min;1997,Microsoft.Compute/GetGalleryApplicationVersion30Min;9995"
+ "Microsoft.Compute/GetGalleryApplicationVersion3Min;1997,Microsoft.Compute/GetGalleryApplicationVersion30Min;9993"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "419b1ff9-51c0-47b8-9cb1-dae8c8ad42d4"
+ "7669694a-d4c3-45b4-89e5-6ad59d413707"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -1845,19 +1782,19 @@
"11985"
],
"x-ms-correlation-request-id": [
- "61acdbcc-5cf4-4f4b-80b2-27f63fe35f4c"
+ "53681d78-ad3c-4e00-962d-834a90125902"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T011014Z:61acdbcc-5cf4-4f4b-80b2-27f63fe35f4c"
+ "WESTCENTRALUS:20220813T005411Z:53681d78-ad3c-4e00-962d-834a90125902"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Apr 2022 01:10:13 GMT"
+ "Sat, 13 Aug 2022 00:54:10 GMT"
],
"Content-Length": [
- "1727"
+ "2327"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1866,20 +1803,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg362/providers/Microsoft.Compute/galleries/galleryPsTestGallery1466/applications/galleryPsTestGalleryApplication6135/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://saforgallery9802.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=MX4Wv5fQ1N2u6QgIMF3Sh9sYekNvuztJlisO1r9hFz8%3D&st=2022-08-12T00%3A48%3A34Z&se=2022-08-15T00%3A48%3A34Z&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 \"customActions\": [\r\n {\r\n \"name\": \"testCustomAction\",\r\n \"script\": \"powershell -command \\\"echo testCustomActionScript\\\"\",\r\n \"description\": \"A test custom action\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"testCustomActionParam\",\r\n \"required\": true,\r\n \"type\": \"String\",\r\n \"defaultValue\": \"paramDefaultValue\",\r\n \"description\": \"A test custom action parameter\"\r\n }\r\n ]\r\n }\r\n ],\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-08-12T17:49:39.3657132-07:00\",\r\n \"endOfLifeDate\": \"2022-08-22T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"safetyProfile\": {\r\n \"allowDeletionOfReplicatedLocations\": true\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/a53f7094-a16c-47af-abe4-b05c05d0d79a/providers/Microsoft.Compute/locations/eastus2/capsOperations/605d3964-51e1-4f73-ad96-99b1d2ef2e28?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy82MDVkMzk2NC01MWUxLTRmNzMtYWQ5Ni05OWIxZDJlZjJlMjg/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/1f834461-75a0-4020-a400-f9e18ad699e7?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8xZjgzNDQ2MS03NWEwLTQwMjAtYTQwMC1mOWUxOGFkNjk5ZTc/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19044",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -1890,16 +1827,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4169"
+ "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4130"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "2e928b54-1303-4d97-bfef-7c75068a59c3"
+ "f0567208-ce30-4e16-8dff-e5400179d815"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -1909,16 +1846,16 @@
"11984"
],
"x-ms-correlation-request-id": [
- "193e5996-5665-45d0-8f40-79933ea11b4f"
+ "b7c0b686-6f51-42ff-965c-be4e9e9563aa"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T011044Z:193e5996-5665-45d0-8f40-79933ea11b4f"
+ "WESTCENTRALUS:20220813T005441Z:b7c0b686-6f51-42ff-965c-be4e9e9563aa"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Apr 2022 01:10:44 GMT"
+ "Sat, 13 Aug 2022 00:54:40 GMT"
],
"Content-Length": [
"134"
@@ -1930,20 +1867,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:54:11.5703355-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1f834461-75a0-4020-a400-f9e18ad699e7\"\r\n}",
"StatusCode": 200
},
{
- "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==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/1f834461-75a0-4020-a400-f9e18ad699e7?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8xZjgzNDQ2MS03NWEwLTQwMjAtYTQwMC1mOWUxOGFkNjk5ZTc/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19044",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -1954,16 +1891,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4166"
+ "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4137"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "6306c79a-4599-451d-993b-4c926378c97a"
+ "664cd6ab-abdd-4186-89dd-f80bddd46d0c"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -1973,16 +1910,16 @@
"11983"
],
"x-ms-correlation-request-id": [
- "aef155bf-e06f-4018-81bb-b32844a3d855"
+ "9b129d02-6b8f-4c4b-a2fd-d5d438ecc229"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T011114Z:aef155bf-e06f-4018-81bb-b32844a3d855"
+ "WESTCENTRALUS:20220813T005511Z:9b129d02-6b8f-4c4b-a2fd-d5d438ecc229"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Apr 2022 01:11:14 GMT"
+ "Sat, 13 Aug 2022 00:55:11 GMT"
],
"Content-Length": [
"134"
@@ -1994,20 +1931,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:54:11.5703355-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1f834461-75a0-4020-a400-f9e18ad699e7\"\r\n}",
"StatusCode": 200
},
{
- "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==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/1f834461-75a0-4020-a400-f9e18ad699e7?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8xZjgzNDQ2MS03NWEwLTQwMjAtYTQwMC1mOWUxOGFkNjk5ZTc/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19044",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -2018,16 +1955,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4163"
+ "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4134"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "16d3421a-65f6-4a71-8a70-a1df89eaa926"
+ "9c6edde1-3bc5-4210-959a-360ae4b3af83"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -2037,16 +1974,16 @@
"11982"
],
"x-ms-correlation-request-id": [
- "5e095646-b684-4ad1-9ccb-4d9eafda8155"
+ "9797d355-f403-4dab-b551-06dfe67162ef"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T011144Z:5e095646-b684-4ad1-9ccb-4d9eafda8155"
+ "WESTCENTRALUS:20220813T005541Z:9797d355-f403-4dab-b551-06dfe67162ef"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Apr 2022 01:11:44 GMT"
+ "Sat, 13 Aug 2022 00:55:41 GMT"
],
"Content-Length": [
"134"
@@ -2058,20 +1995,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:54:11.5703355-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1f834461-75a0-4020-a400-f9e18ad699e7\"\r\n}",
"StatusCode": 200
},
{
- "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==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/1f834461-75a0-4020-a400-f9e18ad699e7?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8xZjgzNDQ2MS03NWEwLTQwMjAtYTQwMC1mOWUxOGFkNjk5ZTc/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19044",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -2082,16 +2019,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4160"
+ "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4131"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "5b0f583f-0257-4394-bf32-94d9dd5529eb"
+ "e13f1bc2-32c9-44a7-a3df-e43e6ebdb2a4"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -2101,16 +2038,16 @@
"11981"
],
"x-ms-correlation-request-id": [
- "e6f0efe0-9082-4453-8678-a0409a1599a6"
+ "8a648e6c-ba1c-4f77-9607-2765a84c7e0a"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T011214Z:e6f0efe0-9082-4453-8678-a0409a1599a6"
+ "WESTCENTRALUS:20220813T005612Z:8a648e6c-ba1c-4f77-9607-2765a84c7e0a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Apr 2022 01:12:14 GMT"
+ "Sat, 13 Aug 2022 00:56:11 GMT"
],
"Content-Length": [
"134"
@@ -2122,20 +2059,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:54:11.5703355-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1f834461-75a0-4020-a400-f9e18ad699e7\"\r\n}",
"StatusCode": 200
},
{
- "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==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/1f834461-75a0-4020-a400-f9e18ad699e7?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8xZjgzNDQ2MS03NWEwLTQwMjAtYTQwMC1mOWUxOGFkNjk5ZTc/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19044",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -2146,16 +2083,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4157"
+ "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4128"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "8d769a2b-8e8f-4a97-b11c-6fe6eab07e11"
+ "a1b64362-d0fa-42e9-b467-457921e043bc"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -2165,16 +2102,16 @@
"11980"
],
"x-ms-correlation-request-id": [
- "77aaf7ea-76a6-4586-add0-401523859c89"
+ "fc06f39c-4d6c-427f-92cb-efed18592467"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T011245Z:77aaf7ea-76a6-4586-add0-401523859c89"
+ "WESTCENTRALUS:20220813T005642Z:fc06f39c-4d6c-427f-92cb-efed18592467"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Apr 2022 01:12:44 GMT"
+ "Sat, 13 Aug 2022 00:56:41 GMT"
],
"Content-Length": [
"134"
@@ -2186,20 +2123,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:54:11.5703355-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1f834461-75a0-4020-a400-f9e18ad699e7\"\r\n}",
"StatusCode": 200
},
{
- "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==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/1f834461-75a0-4020-a400-f9e18ad699e7?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8xZjgzNDQ2MS03NWEwLTQwMjAtYTQwMC1mOWUxOGFkNjk5ZTc/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19044",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -2210,16 +2147,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4154"
+ "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4125"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "d0540f8e-9c95-4647-ba9b-b96b229241f1"
+ "5e19a866-edf3-4dd3-8c48-aeff8d46ca69"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -2229,16 +2166,16 @@
"11979"
],
"x-ms-correlation-request-id": [
- "b44eb65d-72f1-4aab-a1c2-b2cf6292db03"
+ "4983bb0a-79fb-4f03-bc29-d31c5c0a5bf8"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T011315Z:b44eb65d-72f1-4aab-a1c2-b2cf6292db03"
+ "WESTCENTRALUS:20220813T005712Z:4983bb0a-79fb-4f03-bc29-d31c5c0a5bf8"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Apr 2022 01:13:14 GMT"
+ "Sat, 13 Aug 2022 00:57:11 GMT"
],
"Content-Length": [
"184"
@@ -2250,26 +2187,26 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:54:11.5703355-07:00\",\r\n \"endTime\": \"2022-08-12T17:57:11.6964714-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1f834461-75a0-4020-a400-f9e18ad699e7\"\r\n}",
"StatusCode": 200
},
{
- "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==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg362/providers/Microsoft.Compute/galleries/galleryPsTestGallery1466/applications/galleryPsTestGalleryApplication6135/versions/1.0.0?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTQ2Ni9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjYxMzUvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8bb4ad0e-cb3c-49cc-857a-5a8fe66b466a"
+ "0db5a414-a22c-4bfa-8f59-e2f3bc39845b"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19044",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -2280,10 +2217,10 @@
"no-cache"
],
"Location": [
- "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"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/b00d2680-2ee4-49cc-b10a-bda1184a7fe1?monitor=true&api-version=2022-03-03"
],
"Azure-AsyncOperation": [
- "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"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/b00d2680-2ee4-49cc-b10a-bda1184a7fe1?api-version=2022-03-03"
],
"x-ms-ratelimit-remaining-resource": [
"Microsoft.Compute/DeleteGalleryApplicationVersion3Min;149,Microsoft.Compute/DeleteGalleryApplicationVersion30Min;999"
@@ -2292,10 +2229,10 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "609f2805-5504-4bef-b774-472a44e12f71"
+ "b00d2680-2ee4-49cc-b10a-bda1184a7fe1"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -2305,16 +2242,16 @@
"14999"
],
"x-ms-correlation-request-id": [
- "7f8bf335-6c04-4482-a799-efd245c643ee"
+ "0cd85e47-4853-468b-ac9f-ffde41de65ee"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T011315Z:7f8bf335-6c04-4482-a799-efd245c643ee"
+ "WESTCENTRALUS:20220813T005712Z:0cd85e47-4853-468b-ac9f-ffde41de65ee"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Apr 2022 01:13:15 GMT"
+ "Sat, 13 Aug 2022 00:57:12 GMT"
],
"Expires": [
"-1"
@@ -2327,16 +2264,16 @@
"StatusCode": 202
},
{
- "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==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/b00d2680-2ee4-49cc-b10a-bda1184a7fe1?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iMDBkMjY4MC0yZWU0LTQ5Y2MtYjEwYS1iZGExMTg0YTdmZTE/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19044",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -2347,16 +2284,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4151"
+ "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4122"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "1dcfb73f-7ccd-4713-b382-5e6b9886c220"
+ "891075d9-113b-457d-ac55-a0ec7c228da1"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -2366,16 +2303,16 @@
"11976"
],
"x-ms-correlation-request-id": [
- "3291117b-50f6-4ad1-bc3f-48630dfaa94a"
+ "37f35c6d-3228-4efc-9d6c-164b28bcfc02"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T011345Z:3291117b-50f6-4ad1-bc3f-48630dfaa94a"
+ "WESTCENTRALUS:20220813T005743Z:37f35c6d-3228-4efc-9d6c-164b28bcfc02"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Apr 2022 01:13:45 GMT"
+ "Sat, 13 Aug 2022 00:57:42 GMT"
],
"Content-Length": [
"134"
@@ -2387,20 +2324,20 @@
"-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}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:57:12.8683744-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b00d2680-2ee4-49cc-b10a-bda1184a7fe1\"\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==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/b00d2680-2ee4-49cc-b10a-bda1184a7fe1?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iMDBkMjY4MC0yZWU0LTQ5Y2MtYjEwYS1iZGExMTg0YTdmZTE/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19044",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -2411,35 +2348,35 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4148"
+ "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4119"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "3a3f2076-e064-4aa4-916d-a90780db8f4d"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11975"
+ "c72f2f96-b2d6-4d2c-b985-a2a7a876e2ab"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11975"
+ ],
"x-ms-correlation-request-id": [
- "e79ea9ca-cdbd-4beb-8f4a-09fb4e6993fc"
+ "3d76a3f0-6096-44e6-9fe6-8523af32d05e"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T011416Z:e79ea9ca-cdbd-4beb-8f4a-09fb4e6993fc"
+ "WESTCENTRALUS:20220813T005813Z:3d76a3f0-6096-44e6-9fe6-8523af32d05e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Apr 2022 01:14:16 GMT"
+ "Sat, 13 Aug 2022 00:58:12 GMT"
],
"Content-Length": [
"134"
@@ -2451,20 +2388,20 @@
"-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}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:57:12.8683744-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b00d2680-2ee4-49cc-b10a-bda1184a7fe1\"\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==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/b00d2680-2ee4-49cc-b10a-bda1184a7fe1?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iMDBkMjY4MC0yZWU0LTQ5Y2MtYjEwYS1iZGExMTg0YTdmZTE/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19044",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -2475,16 +2412,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4145"
+ "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4116"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "b74eaa63-80f5-4bb4-b313-9f58946f6a40"
+ "ffe1d0a4-4bcb-4f5f-a58c-c3047b610e50"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -2494,19 +2431,19 @@
"11974"
],
"x-ms-correlation-request-id": [
- "e1d41e9d-5a63-4185-9aae-e51fe56b58f3"
+ "ba08ef96-7b4a-48a1-b7e7-e93712871d2a"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T011446Z:e1d41e9d-5a63-4185-9aae-e51fe56b58f3"
+ "WESTCENTRALUS:20220813T005843Z:ba08ef96-7b4a-48a1-b7e7-e93712871d2a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Apr 2022 01:14:45 GMT"
+ "Sat, 13 Aug 2022 00:58:43 GMT"
],
"Content-Length": [
- "183"
+ "184"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2515,20 +2452,20 @@
"-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}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:57:12.8683744-07:00\",\r\n \"endTime\": \"2022-08-12T17:58:43.0407825-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b00d2680-2ee4-49cc-b10a-bda1184a7fe1\"\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=",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/b00d2680-2ee4-49cc-b10a-bda1184a7fe1?monitor=true&api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iMDBkMjY4MC0yZWU0LTQ5Y2MtYjEwYS1iZGExMTg0YTdmZTE/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19044",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -2539,16 +2476,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1182,Microsoft.Compute/GetOperationStatus30Min;4144"
+ "Microsoft.Compute/GetOperationStatus3Min;1182,Microsoft.Compute/GetOperationStatus30Min;4115"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "685791b6-0636-4ae2-802d-d38b50d5a08a"
+ "9226614c-ec21-4e62-92e4-929eea957f5c"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -2558,16 +2495,16 @@
"11973"
],
"x-ms-correlation-request-id": [
- "aac9667d-44d8-4613-9248-e37868b3278c"
+ "69ea3bd4-7b52-4dc7-89ed-5b6fc77082fd"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T011446Z:aac9667d-44d8-4613-9248-e37868b3278c"
+ "WESTCENTRALUS:20220813T005843Z:69ea3bd4-7b52-4dc7-89ed-5b6fc77082fd"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Apr 2022 01:14:46 GMT"
+ "Sat, 13 Aug 2022 00:58:43 GMT"
],
"Expires": [
"-1"
@@ -2580,22 +2517,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/galleryPsTestRg172/providers/Microsoft.Compute/galleries/galleryPsTestGallery1006/applications/galleryPsTestGalleryApplication2473?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTAwNi9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjI0NzM/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg362/providers/Microsoft.Compute/galleries/galleryPsTestGallery1466/applications/galleryPsTestGalleryApplication6135?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTQ2Ni9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjYxMzU/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fefcc73e-5175-43a4-8ac9-1c7d25a2d7a9"
+ "d4c97f0f-f623-4099-b3ab-e05c89713d37"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19044",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -2612,10 +2549,10 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "bab3f4b2-b4cc-444c-81cd-097cd8b6a287"
+ "6026eace-0320-4d53-8d0c-5b276282b6fc"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -2625,16 +2562,16 @@
"14999"
],
"x-ms-correlation-request-id": [
- "cbcf6212-bcd2-4315-9c50-68b815b5a44b"
+ "52b70e8a-7f49-4aa5-987a-7aa6dc7453f5"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T011949Z:cbcf6212-bcd2-4315-9c50-68b815b5a44b"
+ "WESTCENTRALUS:20220813T010346Z:52b70e8a-7f49-4aa5-987a-7aa6dc7453f5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Apr 2022 01:19:49 GMT"
+ "Sat, 13 Aug 2022 01:03:45 GMT"
],
"Expires": [
"-1"
@@ -2647,22 +2584,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/galleryPsTestRg172/providers/Microsoft.Compute/galleries/galleryPsTestGallery1006?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTUzZjcwOTQtYTE2Yy00N2FmLWFiZTQtYjA1YzA1ZDBkNzlhL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTAwNj9hcGktdmVyc2lvbj0yMDIyLTAxLTAz",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg362/providers/Microsoft.Compute/galleries/galleryPsTestGallery1466?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTQ2Nj9hcGktdmVyc2lvbj0yMDIyLTAzLTAz",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "253f4391-71de-4202-bce6-067976c999ea"
+ "28631550-9b04-4621-bef9-c5a8c9e3650e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19044",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -2673,22 +2610,22 @@
"no-cache"
],
"Location": [
- "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"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/591edd2d-8acf-4c34-bfec-5fbf82b8675a?monitor=true&api-version=2022-03-03"
],
"Azure-AsyncOperation": [
- "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"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/591edd2d-8acf-4c34-bfec-5fbf82b8675a?api-version=2022-03-03"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;299"
+ "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;898"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "ca3b9a48-22b9-4873-8be1-ffa4c4d40992"
+ "591edd2d-8acf-4c34-bfec-5fbf82b8675a"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -2698,16 +2635,16 @@
"14998"
],
"x-ms-correlation-request-id": [
- "964af7ff-9617-42d9-ad64-2f320e7cfb85"
+ "975f9342-9ad0-48db-9bf9-068590cfdbe1"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T011950Z:964af7ff-9617-42d9-ad64-2f320e7cfb85"
+ "WESTCENTRALUS:20220813T010346Z:975f9342-9ad0-48db-9bf9-068590cfdbe1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Apr 2022 01:19:49 GMT"
+ "Sat, 13 Aug 2022 01:03:46 GMT"
],
"Expires": [
"-1"
@@ -2720,16 +2657,16 @@
"StatusCode": 202
},
{
- "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==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/591edd2d-8acf-4c34-bfec-5fbf82b8675a?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy81OTFlZGQyZC04YWNmLTRjMzQtYmZlYy01ZmJmODJiODY3NWE/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19044",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -2740,16 +2677,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4141"
+ "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4122"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "f25c6e2c-e9d1-46b4-a5cb-252273847118"
+ "cd8bc19a-01ce-471f-b0cd-a38483946faa"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -2759,16 +2696,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "5a7cc865-54bc-4a0b-82ba-e85837c9c729"
+ "391512e5-db9f-46bc-b27c-e12418d31bfc"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T012020Z:5a7cc865-54bc-4a0b-82ba-e85837c9c729"
+ "WESTCENTRALUS:20220813T010416Z:391512e5-db9f-46bc-b27c-e12418d31bfc"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Apr 2022 01:20:19 GMT"
+ "Sat, 13 Aug 2022 01:04:16 GMT"
],
"Content-Length": [
"184"
@@ -2780,20 +2717,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T18:03:46.7769371-07:00\",\r\n \"endTime\": \"2022-08-12T18:03:47.0111794-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"591edd2d-8acf-4c34-bfec-5fbf82b8675a\"\r\n}",
"StatusCode": 200
},
{
- "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=",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/591edd2d-8acf-4c34-bfec-5fbf82b8675a?monitor=true&api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy81OTFlZGQyZC04YWNmLTRjMzQtYmZlYy01ZmJmODJiODY3NWE/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.16002",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19044",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -2804,16 +2741,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4140"
+ "Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4121"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008,bf9f9341-4182-449f-bc05-75bec4b73168_132939928676467008"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "b374f490-5b21-4096-9fd9-7186c304773f"
+ "ed339c16-de9a-4078-9f54-76757f3744c0"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -2823,16 +2760,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "950d2b89-c782-4985-ab3a-9556a884dfcc"
+ "2e6d46ac-a818-4e3a-91d7-2f5f9c3c576e"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220419T012020Z:950d2b89-c782-4985-ab3a-9556a884dfcc"
+ "WESTCENTRALUS:20220813T010417Z:2e6d46ac-a818-4e3a-91d7-2f5f9c3c576e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Tue, 19 Apr 2022 01:20:19 GMT"
+ "Sat, 13 Aug 2022 01:04:16 GMT"
],
"Expires": [
"-1"
@@ -2847,17 +2784,17 @@
],
"Names": {
"GalleryApplicationVersion_CRUD_Tests": [
- "galleryPsTestRg172",
- "psTestSourceApplication6041",
- "galleryPsTestGallery1006",
- "galleryPsTestGalleryApplication2473"
+ "galleryPsTestRg362",
+ "psTestSourceApplication7276",
+ "galleryPsTestGallery1466",
+ "galleryPsTestGalleryApplication6135"
],
"CreateApplicationMediaLink": [
- "saforgallery6712",
- "asforgallery5527"
+ "saforgallery9802",
+ "asforgallery9717"
]
},
"Variables": {
- "SubscriptionId": "a53f7094-a16c-47af-abe4-b05c05d0d79a"
+ "SubscriptionId": "97f78232-382b-46a7-8a72-964d692c4f3f"
}
-}
\ 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 b85f8caec51b..609546933a60 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,21 +1,21 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg9870?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk4NzA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg3422?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0MjI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f2d6dd0b-488b-48f0-b2c2-d7ff135f5f53"
+ "9272a60e-a87a-4330-9dcb-55596424c2bd"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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": [
@@ -36,13 +36,13 @@
"1199"
],
"x-ms-request-id": [
- "9bccc548-4292-4ca3-b92e-ee42ce2a9d1a"
+ "41a5ad33-6913-44d3-aea5-5819f5227077"
],
"x-ms-correlation-request-id": [
- "9bccc548-4292-4ca3-b92e-ee42ce2a9d1a"
+ "41a5ad33-6913-44d3-aea5-5819f5227077"
],
"x-ms-routing-request-id": [
- "WESTUS:20220311T184311Z:9bccc548-4292-4ca3-b92e-ee42ce2a9d1a"
+ "WESTCENTRALUS:20220813T001958Z:41a5ad33-6913-44d3-aea5-5819f5227077"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -51,7 +51,7 @@
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 18:43:10 GMT"
+ "Sat, 13 Aug 2022 00:19:57 GMT"
],
"Content-Length": [
"192"
@@ -63,26 +63,26 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3422\",\r\n \"name\": \"galleryPsTestRg3422\",\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/galleryPsTestRg9870/providers/Microsoft.Compute/galleries/galleryPsTestGallery2495?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk4NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTI0OTU/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3422/providers/Microsoft.Compute/galleries/galleryPsTestGallery2127?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTIxMjc/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"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": [
- "a097c5ff-da36-4415-b148-704dbb178077"
+ "dfa9a467-89ef-4564-b9b2-8beb61b4ff5a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -99,19 +99,19 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "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"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/66488f8f-8e45-4971-852e-34903c70add8?api-version=2022-03-03"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/CreateUpdateGallery3Min;48,Microsoft.Compute/CreateUpdateGallery30Min;296"
+ "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;295"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044,1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "a81f7f03-4030-4efe-9ad6-5cb0ad103196"
+ "66488f8f-8e45-4971-852e-34903c70add8"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -121,16 +121,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "c34987bd-af29-45e4-bb83-5855b0b59f72"
+ "b37a423d-258e-473e-929e-8d6810f99d1d"
],
"x-ms-routing-request-id": [
- "WESTUS:20220311T184315Z:c34987bd-af29-45e4-bb83-5855b0b59f72"
+ "WESTCENTRALUS:20220813T002001Z:b37a423d-258e-473e-929e-8d6810f99d1d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 18:43:15 GMT"
+ "Sat, 13 Aug 2022 00:20:00 GMT"
],
"Content-Length": [
"508"
@@ -142,20 +142,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery2127\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3422/providers/Microsoft.Compute/galleries/galleryPsTestGallery2127\",\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-GALLERYPSTESTGALLERY2127\"\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/a81f7f03-4030-4efe-9ad6-5cb0ad103196?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hODFmN2YwMy00MDMwLTRlZmUtOWFkNi01Y2IwYWQxMDMxOTY/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/66488f8f-8e45-4971-852e-34903c70add8?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy82NjQ4OGY4Zi04ZTQ1LTQ5NzEtODUyZS0zNDkwM2M3MGFkZDg/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -166,35 +166,35 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4186"
+ "Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4108"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044,1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "ecaad042-7fb3-4776-bdbd-bb612120f98c"
+ "c25d8839-dc55-4824-99bc-ec26d0d3fe19"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11991"
],
"x-ms-correlation-request-id": [
- "f91a2087-23c2-45f7-951c-a3aaaac1cafa"
+ "a66a8792-ce52-460a-b582-30fb7bb5f864"
],
"x-ms-routing-request-id": [
- "WESTUS:20220311T184345Z:f91a2087-23c2-45f7-951c-a3aaaac1cafa"
+ "WESTCENTRALUS:20220813T002031Z:a66a8792-ce52-460a-b582-30fb7bb5f864"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 18:43:44 GMT"
+ "Sat, 13 Aug 2022 00:20:31 GMT"
],
"Content-Length": [
"184"
@@ -206,20 +206,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:20:00.7778904-07:00\",\r\n \"endTime\": \"2022-08-12T17:20:00.8872683-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"66488f8f-8e45-4971-852e-34903c70add8\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9870/providers/Microsoft.Compute/galleries/galleryPsTestGallery2495?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk4NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTI0OTU/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3422/providers/Microsoft.Compute/galleries/galleryPsTestGallery2127?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTIxMjc/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -230,35 +230,35 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetGallery3Min;338,Microsoft.Compute/GetGallery30Min;2447"
+ "Microsoft.Compute/GetGallery3Min;344,Microsoft.Compute/GetGallery30Min;2459"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044,1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "cc5dfd5f-5d9e-4146-aaf1-67eb09ab6de8"
+ "2eafe25d-15b7-4649-ae34-327ab2e3a6fe"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11990"
],
"x-ms-correlation-request-id": [
- "0781c81e-bb9d-46be-817a-b81b9708d81f"
+ "39a90df2-ac59-4d6f-8828-bd207a07e174"
],
"x-ms-routing-request-id": [
- "WESTUS:20220311T184345Z:0781c81e-bb9d-46be-817a-b81b9708d81f"
+ "WESTCENTRALUS:20220813T002031Z:39a90df2-ac59-4d6f-8828-bd207a07e174"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 18:43:45 GMT"
+ "Sat, 13 Aug 2022 00:20:31 GMT"
],
"Content-Length": [
"509"
@@ -270,26 +270,26 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery2127\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3422/providers/Microsoft.Compute/galleries/galleryPsTestGallery2127\",\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-GALLERYPSTESTGALLERY2127\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9870/providers/Microsoft.Compute/galleries/galleryPsTestGallery2495/applications/galleryPsTestGalleryApplication6495?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk4NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTI0OTUvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb242NDk1P2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3422/providers/Microsoft.Compute/galleries/galleryPsTestGallery2127/applications/galleryPsTestGalleryApplication8948?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTIxMjcvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb244OTQ4P2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"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\": \"eastus2\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c46bd737-c887-4412-a704-4676c6265819"
+ "2ec154c1-a027-47ca-bd39-91c9fab4f458"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -306,16 +306,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/CreateUpdateGalleryApplication3Min;149,Microsoft.Compute/CreateUpdateGalleryApplication30Min;749"
+ "Microsoft.Compute/CreateUpdateGalleryApplication3Min;149,Microsoft.Compute/CreateUpdateGalleryApplication30Min;748"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044,1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "8e89995f-b0e5-4fb2-a9c6-68d1dfe84303"
+ "26571a82-244f-4609-b5b9-b2b0fbe996e6"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -325,16 +325,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "7152df68-f843-4425-98b5-187d9f048609"
+ "45074903-3565-49d8-8b1d-4c0cc93c5191"
],
"x-ms-routing-request-id": [
- "WESTUS:20220311T184347Z:7152df68-f843-4425-98b5-187d9f048609"
+ "WESTCENTRALUS:20220813T002036Z:45074903-3565-49d8-8b1d-4c0cc93c5191"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 18:43:46 GMT"
+ "Sat, 13 Aug 2022 00:20:36 GMT"
],
"Content-Length": [
"628"
@@ -346,26 +346,26 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication8948\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3422/providers/Microsoft.Compute/galleries/galleryPsTestGallery2127/applications/galleryPsTestGalleryApplication8948\",\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/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9870/providers/Microsoft.Compute/galleries/galleryPsTestGallery2495/applications/galleryPsTestGalleryApplication6495?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk4NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTI0OTUvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb242NDk1P2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3422/providers/Microsoft.Compute/galleries/galleryPsTestGallery2127/applications/galleryPsTestGalleryApplication8948?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTIxMjcvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb244OTQ4P2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"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\": \"eastus2\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "96eca9b1-1b93-4655-9341-d23740f5ffe4"
+ "7484d3fd-13ea-4cba-91de-76b53937fdda"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -382,16 +382,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/CreateUpdateGalleryApplication3Min;148,Microsoft.Compute/CreateUpdateGalleryApplication30Min;748"
+ "Microsoft.Compute/CreateUpdateGalleryApplication3Min;148,Microsoft.Compute/CreateUpdateGalleryApplication30Min;747"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044,1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "a6ac321b-63a8-438c-9499-7ebc429f4168"
+ "27a9ca19-a2a2-4b3b-b02c-daf0e4790644"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -401,16 +401,16 @@
"1197"
],
"x-ms-correlation-request-id": [
- "f747a72d-2d96-4aa6-9a7e-078a08086703"
+ "525ddaf6-5250-4043-bc85-11829045b1a5"
],
"x-ms-routing-request-id": [
- "WESTUS:20220311T184417Z:f747a72d-2d96-4aa6-9a7e-078a08086703"
+ "WESTCENTRALUS:20220813T002107Z:525ddaf6-5250-4043-bc85-11829045b1a5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 18:44:16 GMT"
+ "Sat, 13 Aug 2022 00:21:06 GMT"
],
"Content-Length": [
"604"
@@ -422,20 +422,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication8948\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3422/providers/Microsoft.Compute/galleries/galleryPsTestGallery2127/applications/galleryPsTestGalleryApplication8948\",\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/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9870/providers/Microsoft.Compute/galleries/galleryPsTestGallery2495/applications/galleryPsTestGalleryApplication6495?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk4NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTI0OTUvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb242NDk1P2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3422/providers/Microsoft.Compute/galleries/galleryPsTestGallery2127/applications/galleryPsTestGalleryApplication8948?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTIxMjcvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb244OTQ4P2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -446,35 +446,35 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetGalleryApplication3Min;298,Microsoft.Compute/GetGalleryApplication30Min;1998"
+ "Microsoft.Compute/GetGalleryApplication3Min;298,Microsoft.Compute/GetGalleryApplication30Min;1994"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044,1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "9ae36034-a015-4266-b67c-bae8932c3f9e"
+ "29e7f83e-a621-44ad-b0eb-f42886c6ad09"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11989"
],
"x-ms-correlation-request-id": [
- "1a9c8190-53f5-4726-aea1-da02f4adfba8"
+ "081b5c83-6379-4949-9bc1-ac3cec958b38"
],
"x-ms-routing-request-id": [
- "WESTUS:20220311T184417Z:1a9c8190-53f5-4726-aea1-da02f4adfba8"
+ "WESTCENTRALUS:20220813T002106Z:081b5c83-6379-4949-9bc1-ac3cec958b38"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 18:44:16 GMT"
+ "Sat, 13 Aug 2022 00:21:06 GMT"
],
"Content-Length": [
"628"
@@ -486,26 +486,26 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication8948\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3422/providers/Microsoft.Compute/galleries/galleryPsTestGallery2127/applications/galleryPsTestGalleryApplication8948\",\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/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9870/providers/Microsoft.Compute/galleries/galleryPsTestGallery2495/applications/galleryPsTestGalleryApplication6495?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk4NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTI0OTUvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb242NDk1P2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3422/providers/Microsoft.Compute/galleries/galleryPsTestGallery2127/applications/galleryPsTestGalleryApplication8948?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTIxMjcvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb244OTQ4P2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5d3d4d65-9f23-4cff-a69b-36c08a08d35f"
+ "0e12f3a1-7beb-42cd-be00-859a9fc33f69"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -516,35 +516,35 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetGalleryApplication3Min;297,Microsoft.Compute/GetGalleryApplication30Min;1997"
+ "Microsoft.Compute/GetGalleryApplication3Min;297,Microsoft.Compute/GetGalleryApplication30Min;1993"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044,1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "72b891be-083e-44ac-bf7f-3beb9cfd9b96"
+ "76bc0b54-ed58-467f-8d22-6d078c9570ee"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11988"
],
"x-ms-correlation-request-id": [
- "a6b4f102-2978-4323-aeb0-6ac2894083f7"
+ "7f882e8d-dae6-4efb-a762-04191f4a9207"
],
"x-ms-routing-request-id": [
- "WESTUS:20220311T184417Z:a6b4f102-2978-4323-aeb0-6ac2894083f7"
+ "WESTCENTRALUS:20220813T002106Z:7f882e8d-dae6-4efb-a762-04191f4a9207"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 18:44:16 GMT"
+ "Sat, 13 Aug 2022 00:21:06 GMT"
],
"Content-Length": [
"628"
@@ -556,26 +556,26 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication8948\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3422/providers/Microsoft.Compute/galleries/galleryPsTestGallery2127/applications/galleryPsTestGalleryApplication8948\",\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/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9870/providers/Microsoft.Compute/galleries/galleryPsTestGallery2495/applications/galleryPsTestGalleryApplication6495?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk4NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTI0OTUvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb242NDk1P2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3422/providers/Microsoft.Compute/galleries/galleryPsTestGallery2127/applications/galleryPsTestGalleryApplication8948?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTIxMjcvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb244OTQ4P2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6579a896-803f-492c-8714-30633680c797"
+ "32ede1a2-5100-4cb0-aee8-3eed9aa4f008"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -586,35 +586,35 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetGalleryApplication3Min;296,Microsoft.Compute/GetGalleryApplication30Min;1996"
+ "Microsoft.Compute/GetGalleryApplication3Min;296,Microsoft.Compute/GetGalleryApplication30Min;1992"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044,1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "c6e984d7-40df-4279-856b-7a099e855b6c"
+ "a1374a91-9a72-4f46-81a1-2fb11276ce7b"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11987"
],
"x-ms-correlation-request-id": [
- "fe177d2c-5488-4d14-9da7-6fa6cb034df1"
+ "ef438eab-6423-42fe-81eb-c908175fab97"
],
"x-ms-routing-request-id": [
- "WESTUS:20220311T184417Z:fe177d2c-5488-4d14-9da7-6fa6cb034df1"
+ "WESTCENTRALUS:20220813T002107Z:ef438eab-6423-42fe-81eb-c908175fab97"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 18:44:16 GMT"
+ "Sat, 13 Aug 2022 00:21:06 GMT"
],
"Content-Length": [
"604"
@@ -626,26 +626,26 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication8948\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3422/providers/Microsoft.Compute/galleries/galleryPsTestGallery2127/applications/galleryPsTestGalleryApplication8948\",\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/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9870/providers/Microsoft.Compute/galleries/galleryPsTestGallery2495/applications/galleryPsTestGalleryApplication6495?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk4NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTI0OTUvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb242NDk1P2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3422/providers/Microsoft.Compute/galleries/galleryPsTestGallery2127/applications/galleryPsTestGalleryApplication8948?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTIxMjcvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb244OTQ4P2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f0d30295-eb52-4f7b-8484-da041806c709"
+ "409fa6d2-21f0-4966-9894-261c44205a1d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -662,10 +662,10 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044,1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "80e8fe3d-6c27-4eb6-83b4-541807089676"
+ "7ce260d2-2a67-463a-b4d6-c832283a2616"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -675,16 +675,16 @@
"14999"
],
"x-ms-correlation-request-id": [
- "8b2a63c6-5db8-4998-831f-15b6085c792c"
+ "f56f5998-a477-4bfe-b084-9967cf1cfd20"
],
"x-ms-routing-request-id": [
- "WESTUS:20220311T184418Z:8b2a63c6-5db8-4998-831f-15b6085c792c"
+ "WESTCENTRALUS:20220813T002108Z:f56f5998-a477-4bfe-b084-9967cf1cfd20"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 18:44:17 GMT"
+ "Sat, 13 Aug 2022 00:21:07 GMT"
],
"Expires": [
"-1"
@@ -697,22 +697,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9870/providers/Microsoft.Compute/galleries/galleryPsTestGallery2495?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk4NzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTI0OTU/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3422/providers/Microsoft.Compute/galleries/galleryPsTestGallery2127?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTIxMjc/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "135e0671-cfab-40e5-8a6c-201e05f47181"
+ "d95a1b72-b21f-475d-ad5f-a3e5bc2fd216"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -723,10 +723,10 @@
"no-cache"
],
"Location": [
- "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"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/00786bd2-6a96-4e57-b051-e7f832947fce?monitor=true&api-version=2022-03-03"
],
"Azure-AsyncOperation": [
- "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"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/00786bd2-6a96-4e57-b051-e7f832947fce?api-version=2022-03-03"
],
"x-ms-ratelimit-remaining-resource": [
"Microsoft.Compute/DeleteGallery3Min;48,Microsoft.Compute/DeleteGallery30Min;896"
@@ -735,10 +735,10 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044,1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "55cfd44a-c9b8-44b7-91d7-1bd1de0f42cd"
+ "00786bd2-6a96-4e57-b051-e7f832947fce"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -748,16 +748,16 @@
"14998"
],
"x-ms-correlation-request-id": [
- "5cfd6a4d-51ae-4eb2-a60b-508cd70c368c"
+ "fac7c3a6-c125-474d-8d17-6c3a1514bf7d"
],
"x-ms-routing-request-id": [
- "WESTUS:20220311T184418Z:5cfd6a4d-51ae-4eb2-a60b-508cd70c368c"
+ "WESTCENTRALUS:20220813T002108Z:fac7c3a6-c125-474d-8d17-6c3a1514bf7d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 18:44:18 GMT"
+ "Sat, 13 Aug 2022 00:21:08 GMT"
],
"Expires": [
"-1"
@@ -770,16 +770,16 @@
"StatusCode": 202
},
{
- "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==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/00786bd2-6a96-4e57-b051-e7f832947fce?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wMDc4NmJkMi02YTk2LTRlNTctYjA1MS1lN2Y4MzI5NDdmY2U/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -790,38 +790,38 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4183"
+ "Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4106"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044,1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "ae04b438-807b-468d-92da-ae3ea31f6046"
+ "e5cec661-6246-4f05-8134-2c8a0bb739f1"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11986"
],
"x-ms-correlation-request-id": [
- "3e970f9d-44fd-43a6-b395-ede179e9c08f"
+ "71c6f45c-7e3e-47aa-a023-956f8be791dd"
],
"x-ms-routing-request-id": [
- "WESTUS:20220311T184448Z:3e970f9d-44fd-43a6-b395-ede179e9c08f"
+ "WESTCENTRALUS:20220813T002138Z:71c6f45c-7e3e-47aa-a023-956f8be791dd"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 18:44:48 GMT"
+ "Sat, 13 Aug 2022 00:21:38 GMT"
],
"Content-Length": [
- "183"
+ "184"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -830,20 +830,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:21:08.6843517-07:00\",\r\n \"endTime\": \"2022-08-12T17:21:08.7937239-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"00786bd2-6a96-4e57-b051-e7f832947fce\"\r\n}",
"StatusCode": 200
},
{
- "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=",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/00786bd2-6a96-4e57-b051-e7f832947fce?monitor=true&api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wMDc4NmJkMi02YTk2LTRlNTctYjA1MS1lN2Y4MzI5NDdmY2U/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -854,35 +854,35 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4182"
+ "Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4105"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044,1dd04696-ef54-4aec-bada-944b3b397491_132856958532696044"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "f5df2db1-837a-4c35-8fa7-6b0b2fdf3777"
+ "f26c7e33-1ab8-4f8c-944f-b628f0bbeaf4"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11985"
],
"x-ms-correlation-request-id": [
- "3f51ad7f-3192-484d-8b7c-98b03c4e12b2"
+ "04b6acad-ddf6-4441-ad2e-332a7e9d625a"
],
"x-ms-routing-request-id": [
- "WESTUS:20220311T184449Z:3f51ad7f-3192-484d-8b7c-98b03c4e12b2"
+ "WESTCENTRALUS:20220813T002138Z:04b6acad-ddf6-4441-ad2e-332a7e9d625a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 18:44:48 GMT"
+ "Sat, 13 Aug 2022 00:21:38 GMT"
],
"Expires": [
"-1"
@@ -897,9 +897,9 @@
],
"Names": {
"GalleryApplication_CRUD_Tests": [
- "galleryPsTestRg9870",
- "galleryPsTestGallery2495",
- "galleryPsTestGalleryApplication6495"
+ "galleryPsTestRg3422",
+ "galleryPsTestGallery2127",
+ "galleryPsTestGalleryApplication8948"
]
},
"Variables": {
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 a2e8130e15b0..0361eb1700c9 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
@@ -7,16 +7,16 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7d45466b-04e8-4b24-bfd0-1fee010d73cc"
+ "6d07ca48-a596-4c6f-afbd-85d64a1bda09"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -36,7 +36,7 @@
"19a6b8e7-2f9b-4b25-aea4-718323f85895_133034297084091256"
],
"x-ms-request-id": [
- "ad414283-7568-42cf-ae5e-5303b51f7c62"
+ "a5f836db-0bfd-4fb5-90ae-b14ea3a9dca2"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -46,16 +46,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "b2db16ce-5d40-4008-946c-70923bdfa6f6"
+ "42379dea-c56c-4c12-86dd-723aae9089ac"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T000108Z:b2db16ce-5d40-4008-946c-70923bdfa6f6"
+ "CANADACENTRAL:20220929T204607Z:42379dea-c56c-4c12-86dd-723aae9089ac"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:01:08 GMT"
+ "Thu, 29 Sep 2022 20:46:06 GMT"
],
"Content-Length": [
"309"
@@ -71,19 +71,19 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/galleryPsTestRg5837?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4Mzc/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/galleryPsTestRg1409?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE0MDk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg5837\": \"2022-08-10 00:01:09Z\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg1409\": \"2022-09-29 20:46:07Z\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cfdbf93a-c336-478c-8131-1440fa404774"
+ "8146402b-e98c-455e-bf6e-25b4eeac7e42"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
@@ -103,16 +103,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1199"
],
"x-ms-request-id": [
- "d0ed4d09-068b-4d15-abf5-a2f40d361511"
+ "c551e93c-5ab3-469b-8663-13c204ce74b5"
],
"x-ms-correlation-request-id": [
- "d0ed4d09-068b-4d15-abf5-a2f40d361511"
+ "c551e93c-5ab3-469b-8663-13c204ce74b5"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T000110Z:d0ed4d09-068b-4d15-abf5-a2f40d361511"
+ "CANADACENTRAL:20220929T204610Z:c551e93c-5ab3-469b-8663-13c204ce74b5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -121,7 +121,7 @@
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:01:10 GMT"
+ "Thu, 29 Sep 2022 20:46:09 GMT"
],
"Content-Length": [
"246"
@@ -133,23 +133,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837\",\r\n \"name\": \"galleryPsTestRg5837\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg5837\": \"2022-08-10 00:01:09Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409\",\r\n \"name\": \"galleryPsTestRg1409\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg1409\": \"2022-09-29 20:46:07Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/galleryPsTestRg5837?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4Mzc/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/galleryPsTestRg1409?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE0MDk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg5837\": \"2022-08-10 00:01:41Z\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg1409\": \"2022-09-29 20:46:43Z\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c61f9a86-e000-442f-9da9-94530089c34f"
+ "e3c989a5-a2e1-4a61-b247-39a6be1dd31c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
@@ -169,16 +169,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1198"
],
"x-ms-request-id": [
- "b239d4df-3999-4e42-bedd-d53ddd043036"
+ "9edaa9a6-a286-4381-9193-24012a9d2982"
],
"x-ms-correlation-request-id": [
- "b239d4df-3999-4e42-bedd-d53ddd043036"
+ "9edaa9a6-a286-4381-9193-24012a9d2982"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T000142Z:b239d4df-3999-4e42-bedd-d53ddd043036"
+ "CANADACENTRAL:20220929T204642Z:9edaa9a6-a286-4381-9193-24012a9d2982"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -187,7 +187,7 @@
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:01:42 GMT"
+ "Thu, 29 Sep 2022 20:46:42 GMT"
],
"Content-Length": [
"246"
@@ -199,23 +199,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837\",\r\n \"name\": \"galleryPsTestRg5837\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg5837\": \"2022-08-10 00:01:41Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409\",\r\n \"name\": \"galleryPsTestRg1409\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg1409\": \"2022-09-29 20:46:43Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Storage/storageAccounts/saforgallery561?api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnk1NjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Storage/storageAccounts/saforgallery8867?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE0MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnk4ODY3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=",
"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": [
- "c1efab02-5bad-4f28-b612-06d0fe1ad1c8"
+ "9071647f-af5f-4a39-b6c5-2823aa564b01"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
"Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0"
@@ -235,13 +235,13 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Storage/locations/eastus2/asyncoperations/729ea4d2-4755-4fb8-a7d6-4ec88b94f15a?monitor=true&api-version=2015-06-15"
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Storage/locations/eastus2/asyncoperations/878cdfa8-57ff-409d-9d20-926ddc7fe54e?monitor=true&api-version=2015-06-15"
],
"Retry-After": [
"17"
],
"x-ms-request-id": [
- "729ea4d2-4755-4fb8-a7d6-4ec88b94f15a"
+ "878cdfa8-57ff-409d-9d20-926ddc7fe54e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -250,19 +250,19 @@
"Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1199"
],
"x-ms-correlation-request-id": [
- "2a6dc544-fb5d-420f-80d3-82895ff5283d"
+ "e557326b-3438-4bd5-82b3-a46548b2594a"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T000113Z:2a6dc544-fb5d-420f-80d3-82895ff5283d"
+ "CANADACENTRAL:20220929T204614Z:e557326b-3438-4bd5-82b3-a46548b2594a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:01:13 GMT"
+ "Thu, 29 Sep 2022 20:46:14 GMT"
],
"Content-Type": [
"text/plain; charset=utf-8"
@@ -278,13 +278,13 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Storage/locations/eastus2/asyncoperations/729ea4d2-4755-4fb8-a7d6-4ec88b94f15a?monitor=true&api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMi9hc3luY29wZXJhdGlvbnMvNzI5ZWE0ZDItNDc1NS00ZmI4LWE3ZDYtNGVjODhiOTRmMTVhP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Storage/locations/eastus2/asyncoperations/878cdfa8-57ff-409d-9d20-926ddc7fe54e?monitor=true&api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMi9hc3luY29wZXJhdGlvbnMvODc4Y2RmYTgtNTdmZi00MDlkLTlkMjAtOTI2ZGRjN2ZlNTRlP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"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": [
- "f6edeead-ee32-4dea-b375-26c73668053a"
+ "dc1d48b8-9bb0-4d2a-a8cc-dd81938bf9a7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -307,19 +307,19 @@
"Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11999"
],
"x-ms-correlation-request-id": [
- "a48cb5e3-996e-4b4a-b8ec-442c44f9fddc"
+ "2f06a712-6929-46fe-b6e4-2430f544a9bb"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T000130Z:a48cb5e3-996e-4b4a-b8ec-442c44f9fddc"
+ "CANADACENTRAL:20220929T204632Z:2f06a712-6929-46fe-b6e4-2430f544a9bb"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:01:30 GMT"
+ "Thu, 29 Sep 2022 20:46:31 GMT"
],
"Content-Length": [
"89"
@@ -335,19 +335,19 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE0MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "60323630-7623-47fb-b4f6-21dd61bba391"
+ "9535de65-8194-4266-a211-598520a3ae25"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"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": [
- "d0f0f49d-1767-421f-97c1-5a42ca024484"
+ "d21e97a1-d7a0-4e02-9843-58815e871644"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -370,22 +370,22 @@
"Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11998"
],
"x-ms-correlation-request-id": [
- "3eb2935e-7215-4d0f-9bee-6896b03c414a"
+ "f61a2086-8951-4c53-82c4-937741154e2d"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T000141Z:3eb2935e-7215-4d0f-9bee-6896b03c414a"
+ "CANADACENTRAL:20220929T204642Z:f61a2086-8951-4c53-82c4-937741154e2d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:01:40 GMT"
+ "Thu, 29 Sep 2022 20:46:42 GMT"
],
"Content-Length": [
- "759"
+ "765"
],
"Content-Type": [
"application/json"
@@ -394,23 +394,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Storage/storageAccounts/saforgallery561\",\r\n \"name\": \"saforgallery561\",\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-08-10T00:01:11.572432Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery561.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery561.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery561.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery561.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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Storage/storageAccounts/saforgallery8867\",\r\n \"name\": \"saforgallery8867\",\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-09-29T20:46:12.3061206Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery8867.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery8867.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery8867.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery8867.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/galleryPsTestRg5837/providers/Microsoft.Storage/storageAccounts/saforgallery561?api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnk1NjE/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Storage/storageAccounts/saforgallery8867?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE0MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnk4ODY3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0c300a37-5329-414f-a953-b2d602bac5fa"
+ "21f23caf-80d9-4fb0-b0d5-bcb33555c756"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"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": [
- "bef471cb-baff-4469-8646-258455fa6f1d"
+ "428f0be6-c08f-4589-b066-63c6468f9d0e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -433,22 +433,22 @@
"Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
+ "11997"
],
"x-ms-correlation-request-id": [
- "4824f36f-44e2-4e83-8ee9-4b09cb7daea2"
+ "b2bbb7fe-78a9-486b-a7a4-92054c5c3230"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T000141Z:4824f36f-44e2-4e83-8ee9-4b09cb7daea2"
+ "CANADACENTRAL:20220929T204642Z:b2bbb7fe-78a9-486b-a7a4-92054c5c3230"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:01:41 GMT"
+ "Thu, 29 Sep 2022 20:46:42 GMT"
],
"Content-Length": [
- "747"
+ "753"
],
"Content-Type": [
"application/json"
@@ -457,23 +457,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Storage/storageAccounts/saforgallery561\",\r\n \"name\": \"saforgallery561\",\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-08-10T00:01:11.572432Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery561.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery561.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery561.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery561.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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Storage/storageAccounts/saforgallery8867\",\r\n \"name\": \"saforgallery8867\",\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-09-29T20:46:12.3061206Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery8867.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery8867.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery8867.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery8867.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/galleryPsTestRg5837/providers/Microsoft.Network/publicIPAddresses/pip5732?api-version=2019-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU3MzI/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Network/publicIPAddresses/pip7466?api-version=2019-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE0MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0NjY/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn6182\"\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\": \"dn9526\"\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": [
- "4d92aaa7-6b26-4414-bdfb-7cf6675d941a"
+ "0ebaf624-b49b-4901-a5ab-af6781aaf5f8"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
"Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0"
@@ -496,19 +496,19 @@
"1"
],
"x-ms-request-id": [
- "b24eef4f-cc8f-49a9-8dcb-15292ee7a613"
+ "de4520f9-4c24-4e43-9136-0b6c01488985"
],
- "azure-asyncoperation": [
- "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/eastus2/operations/b24eef4f-cc8f-49a9-8dcb-15292ee7a613?api-version=2019-09-01"
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/eastus2/operations/de4520f9-4c24-4e43-9136-0b6c01488985?api-version=2019-09-01"
],
"x-ms-correlation-request-id": [
- "2abeef0a-d560-4c75-9443-c464fcb48a28"
+ "2b803cee-d53b-42b0-b71c-6898d16d14a8"
],
- "azure-asyncnotification": [
+ "Azure-AsyncNotification": [
"Enabled"
],
"x-ms-arm-service-request-id": [
- "8c4b1380-3c68-4b9a-baec-c3358712496b"
+ "c8a47103-3852-4170-8c93-836d801d00b6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -521,13 +521,13 @@
"1199"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T000147Z:2abeef0a-d560-4c75-9443-c464fcb48a28"
+ "CANADACENTRAL:20220929T204648Z:2b803cee-d53b-42b0-b71c-6898d16d14a8"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:01:46 GMT"
+ "Thu, 29 Sep 2022 20:46:47 GMT"
],
"Content-Length": [
"763"
@@ -539,17 +539,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"pip5732\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Network/publicIPAddresses/pip5732\",\r\n \"etag\": \"W/\\\"6fd707c2-8636-4010-8088-eb2551891c1a\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7dc414f8-3c82-4f34-a129-70d3f55973c5\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn6182\",\r\n \"fqdn\": \"dn6182.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\": \"pip7466\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Network/publicIPAddresses/pip7466\",\r\n \"etag\": \"W/\\\"fa87661d-6e60-4454-b59d-1f92db0821ff\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b6dcba26-8205-4608-8e38-960b4422655c\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9526\",\r\n \"fqdn\": \"dn9526.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/b24eef4f-cc8f-49a9-8dcb-15292ee7a613?api-version=2019-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2IyNGVlZjRmLWNjOGYtNDlhOS04ZGNiLTE1MjkyZWU3YTYxMz9hcGktdmVyc2lvbj0yMDE5LTA5LTAx",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/eastus2/operations/de4520f9-4c24-4e43-9136-0b6c01488985?api-version=2019-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2RlNDUyMGY5LTRjMjQtNGU0My05MTM2LTBiNmMwMTQ4ODk4NT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
"Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0"
@@ -563,13 +563,13 @@
"no-cache"
],
"x-ms-request-id": [
- "4973361d-3ded-49c5-b51a-3b7b12573bc8"
+ "bc583fe9-3618-4bd0-b7b5-d4ed282bd8fd"
],
"x-ms-correlation-request-id": [
- "841da3c4-8600-447c-8b92-db81f8a91858"
+ "ea152957-bd07-4f9b-bc7a-66ecc074c70c"
],
"x-ms-arm-service-request-id": [
- "797008fb-6a65-459c-ab64-faee5c12d869"
+ "3acfd04a-5440-4a5a-b435-28c877d40a85"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -582,13 +582,13 @@
"11999"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T000148Z:841da3c4-8600-447c-8b92-db81f8a91858"
+ "CANADACENTRAL:20220929T204649Z:ea152957-bd07-4f9b-bc7a-66ecc074c70c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:01:47 GMT"
+ "Thu, 29 Sep 2022 20:46:48 GMT"
],
"Content-Length": [
"29"
@@ -604,13 +604,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Network/publicIPAddresses/pip5732?api-version=2019-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU3MzI/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Network/publicIPAddresses/pip7466?api-version=2019-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE0MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0NjY/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
"Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0"
@@ -624,16 +624,16 @@
"no-cache"
],
"ETag": [
- "W/\"129002e9-fc6a-4f96-9eb4-31aa0d1d4f6b\""
+ "W/\"4b7b6225-5abb-458b-823f-1749d1ccd2da\""
],
"x-ms-request-id": [
- "d5e6d2e2-cd69-409f-9e24-7d2e1f426365"
+ "49f57f38-5927-485d-a783-95de3141904f"
],
"x-ms-correlation-request-id": [
- "fc023dfb-fc3f-4155-847f-a3b7f641dc7e"
+ "b5fc58c7-78e4-4940-b4ff-12b77bfaad9e"
],
"x-ms-arm-service-request-id": [
- "0ab77876-26c9-4783-a00d-2c9c37b769b2"
+ "bb64bbd6-874f-45f1-a4c7-21093fdf94b5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -646,13 +646,13 @@
"11998"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T000148Z:fc023dfb-fc3f-4155-847f-a3b7f641dc7e"
+ "CANADACENTRAL:20220929T204649Z:b5fc58c7-78e4-4940-b4ff-12b77bfaad9e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:01:47 GMT"
+ "Thu, 29 Sep 2022 20:46:48 GMT"
],
"Content-Length": [
"764"
@@ -664,23 +664,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"pip5732\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Network/publicIPAddresses/pip5732\",\r\n \"etag\": \"W/\\\"129002e9-fc6a-4f96-9eb4-31aa0d1d4f6b\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7dc414f8-3c82-4f34-a129-70d3f55973c5\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn6182\",\r\n \"fqdn\": \"dn6182.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\": \"pip7466\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Network/publicIPAddresses/pip7466\",\r\n \"etag\": \"W/\\\"4b7b6225-5abb-458b-823f-1749d1ccd2da\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b6dcba26-8205-4608-8e38-960b4422655c\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9526\",\r\n \"fqdn\": \"dn9526.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/galleryPsTestRg5837/providers/Microsoft.Network/publicIPAddresses/pip5732?api-version=2019-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU3MzI/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Network/publicIPAddresses/pip7466?api-version=2019-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE0MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0NjY/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "822b226d-5bf2-4ebd-9292-015063ba2cea"
+ "e0e5d6ab-ae7a-4c60-99fb-0c7d83412747"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
"Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0"
@@ -694,16 +694,16 @@
"no-cache"
],
"ETag": [
- "W/\"129002e9-fc6a-4f96-9eb4-31aa0d1d4f6b\""
+ "W/\"4b7b6225-5abb-458b-823f-1749d1ccd2da\""
],
"x-ms-request-id": [
- "4ae99173-4d40-4f95-bba0-e4ed73131ccc"
+ "e46ed1fd-148e-4cb4-88f6-f69a27ab4d02"
],
"x-ms-correlation-request-id": [
- "008e2845-ee34-4920-b0a8-f54a0dd1f447"
+ "1d0b4bea-985a-494a-8c11-89abc2965693"
],
"x-ms-arm-service-request-id": [
- "2863acf0-523a-4960-a13b-d203ba1c5034"
+ "43896a77-daf1-4b98-bc3b-748f77dbe7dd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -716,13 +716,13 @@
"11997"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T000148Z:008e2845-ee34-4920-b0a8-f54a0dd1f447"
+ "CANADACENTRAL:20220929T204649Z:1d0b4bea-985a-494a-8c11-89abc2965693"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:01:47 GMT"
+ "Thu, 29 Sep 2022 20:46:48 GMT"
],
"Content-Length": [
"764"
@@ -734,23 +734,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"pip5732\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Network/publicIPAddresses/pip5732\",\r\n \"etag\": \"W/\\\"129002e9-fc6a-4f96-9eb4-31aa0d1d4f6b\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7dc414f8-3c82-4f34-a129-70d3f55973c5\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn6182\",\r\n \"fqdn\": \"dn6182.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\": \"pip7466\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Network/publicIPAddresses/pip7466\",\r\n \"etag\": \"W/\\\"4b7b6225-5abb-458b-823f-1749d1ccd2da\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b6dcba26-8205-4608-8e38-960b4422655c\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9526\",\r\n \"fqdn\": \"dn9526.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/galleryPsTestRg5837/providers/Microsoft.Network/virtualNetworks/vn1199?api-version=2019-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjExOTk/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Network/virtualNetworks/vn4486?api-version=2019-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE0MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0ODY/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\": \"sn6161\"\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\": \"sn5952\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1ad700ea-a1f8-444c-852e-5e3bfa7b243f"
+ "7e0f520a-af72-48a0-89d8-cc1eb788a6f2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
"Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0"
@@ -773,19 +773,19 @@
"3"
],
"x-ms-request-id": [
- "0b9861ea-35d8-404f-9a0c-00bb26542b86"
+ "480a1ee3-fa59-47d9-b5c5-f7fd0dd42416"
],
- "azure-asyncoperation": [
- "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/eastus2/operations/0b9861ea-35d8-404f-9a0c-00bb26542b86?api-version=2019-09-01"
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/eastus2/operations/480a1ee3-fa59-47d9-b5c5-f7fd0dd42416?api-version=2019-09-01"
],
"x-ms-correlation-request-id": [
- "4cd8e356-e80b-4d10-864e-9776dfbcae92"
+ "d9bebb69-7e98-443e-892a-acb330497473"
],
- "azure-asyncnotification": [
+ "Azure-AsyncNotification": [
"Enabled"
],
"x-ms-arm-service-request-id": [
- "a244bd03-3be8-4ab3-8468-0e188b1298c0"
+ "707efd50-6daa-442f-a524-02ba79b84451"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -798,13 +798,13 @@
"1198"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T000149Z:4cd8e356-e80b-4d10-864e-9776dfbcae92"
+ "CANADACENTRAL:20220929T204650Z:d9bebb69-7e98-443e-892a-acb330497473"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:01:48 GMT"
+ "Thu, 29 Sep 2022 20:46:49 GMT"
],
"Content-Length": [
"1328"
@@ -816,17 +816,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"vn1199\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Network/virtualNetworks/vn1199\",\r\n \"etag\": \"W/\\\"41ce107b-e64d-42d8-98ed-26fcea786dd5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"1890a7ef-4709-46ac-ba09-5058cdce40d1\",\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\": \"sn6161\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Network/virtualNetworks/vn1199/subnets/sn6161\",\r\n \"etag\": \"W/\\\"41ce107b-e64d-42d8-98ed-26fcea786dd5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"vn4486\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Network/virtualNetworks/vn4486\",\r\n \"etag\": \"W/\\\"db90758f-eda6-4b56-b5f4-8fda2e9588a1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"08169cee-cc9d-488f-8d52-19782b8c1915\",\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\": \"sn5952\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Network/virtualNetworks/vn4486/subnets/sn5952\",\r\n \"etag\": \"W/\\\"db90758f-eda6-4b56-b5f4-8fda2e9588a1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/eastus2/operations/0b9861ea-35d8-404f-9a0c-00bb26542b86?api-version=2019-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzBiOTg2MWVhLTM1ZDgtNDA0Zi05YTBjLTAwYmIyNjU0MmI4Nj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/eastus2/operations/480a1ee3-fa59-47d9-b5c5-f7fd0dd42416?api-version=2019-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzQ4MGExZWUzLWZhNTktNDdkOS1iNWM1LWY3ZmQwZGQ0MjQxNj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
"Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0"
@@ -840,13 +840,13 @@
"no-cache"
],
"x-ms-request-id": [
- "3440e80b-0343-4ed2-99f2-151d17d77747"
+ "ec5e6a74-86c2-4600-8900-be8342ad0695"
],
"x-ms-correlation-request-id": [
- "0064d066-7600-4bf6-b142-05d8c04bd1bd"
+ "d49c062b-8a54-4e78-9af4-46e3dc4ca922"
],
"x-ms-arm-service-request-id": [
- "32cc5eb6-e0b5-44be-878e-ad2770ce7998"
+ "7fc4c1d9-4618-45be-9e05-da54d8dcf573"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -859,13 +859,13 @@
"11996"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T000152Z:0064d066-7600-4bf6-b142-05d8c04bd1bd"
+ "CANADACENTRAL:20220929T204653Z:d49c062b-8a54-4e78-9af4-46e3dc4ca922"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:01:51 GMT"
+ "Thu, 29 Sep 2022 20:46:52 GMT"
],
"Content-Length": [
"29"
@@ -881,13 +881,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Network/virtualNetworks/vn1199?api-version=2019-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjExOTk/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Network/virtualNetworks/vn4486?api-version=2019-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE0MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0ODY/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
"Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0"
@@ -901,16 +901,16 @@
"no-cache"
],
"ETag": [
- "W/\"237d5ff1-8576-4ecc-b57a-e5635e269b17\""
+ "W/\"7fd408ac-8618-46f9-8a73-a32299fb953a\""
],
"x-ms-request-id": [
- "34717c2c-b8ff-48f0-883c-fe5b99249ded"
+ "e66e51c8-4ada-46c0-b51c-8cbf00648f51"
],
"x-ms-correlation-request-id": [
- "e074bdc6-2d5f-4d02-b7ae-0443fa17ac3b"
+ "8713da8d-18d2-41a5-bc3a-ca960888284c"
],
"x-ms-arm-service-request-id": [
- "f513898d-c6e7-4676-b810-4c73da824611"
+ "36d54757-80de-495c-a1ea-67cb4d62153d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -923,13 +923,13 @@
"11995"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T000152Z:e074bdc6-2d5f-4d02-b7ae-0443fa17ac3b"
+ "CANADACENTRAL:20220929T204653Z:8713da8d-18d2-41a5-bc3a-ca960888284c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:01:51 GMT"
+ "Thu, 29 Sep 2022 20:46:52 GMT"
],
"Content-Length": [
"1330"
@@ -941,23 +941,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"vn1199\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Network/virtualNetworks/vn1199\",\r\n \"etag\": \"W/\\\"237d5ff1-8576-4ecc-b57a-e5635e269b17\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1890a7ef-4709-46ac-ba09-5058cdce40d1\",\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\": \"sn6161\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Network/virtualNetworks/vn1199/subnets/sn6161\",\r\n \"etag\": \"W/\\\"237d5ff1-8576-4ecc-b57a-e5635e269b17\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"vn4486\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Network/virtualNetworks/vn4486\",\r\n \"etag\": \"W/\\\"7fd408ac-8618-46f9-8a73-a32299fb953a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"08169cee-cc9d-488f-8d52-19782b8c1915\",\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\": \"sn5952\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Network/virtualNetworks/vn4486/subnets/sn5952\",\r\n \"etag\": \"W/\\\"7fd408ac-8618-46f9-8a73-a32299fb953a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Network/virtualNetworks/vn1199/subnets/sn6161?api-version=2019-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjExOTkvc3VibmV0cy9zbjYxNjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Network/virtualNetworks/vn4486/subnets/sn5952?api-version=2019-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE0MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0ODYvc3VibmV0cy9zbjU5NTI/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0db167ff-0efd-4b12-a54d-b92b01a345f5"
+ "620be222-9be5-4df0-8692-0eb6e73369ef"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
"Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0"
@@ -971,16 +971,16 @@
"no-cache"
],
"ETag": [
- "W/\"237d5ff1-8576-4ecc-b57a-e5635e269b17\""
+ "W/\"7fd408ac-8618-46f9-8a73-a32299fb953a\""
],
"x-ms-request-id": [
- "4c1508c1-94be-4a52-ba27-aa421efcc9ec"
+ "f82204eb-f3ee-49e3-984c-83bad46bbd79"
],
"x-ms-correlation-request-id": [
- "ca3a4230-b33b-48fb-96b1-addddc6c92a0"
+ "1063f0f2-c4e3-47f6-9774-64112103e505"
],
"x-ms-arm-service-request-id": [
- "2a20b8e3-a9f6-4015-9b71-cde69ac487a3"
+ "17ff8e27-a4a5-40fa-92e9-b8a557c09f57"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -993,13 +993,13 @@
"11994"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T000153Z:ca3a4230-b33b-48fb-96b1-addddc6c92a0"
+ "CANADACENTRAL:20220929T204654Z:1063f0f2-c4e3-47f6-9774-64112103e505"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:01:52 GMT"
+ "Thu, 29 Sep 2022 20:46:53 GMT"
],
"Content-Length": [
"530"
@@ -1011,23 +1011,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"sn6161\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Network/virtualNetworks/vn1199/subnets/sn6161\",\r\n \"etag\": \"W/\\\"237d5ff1-8576-4ecc-b57a-e5635e269b17\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"sn5952\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Network/virtualNetworks/vn4486/subnets/sn5952\",\r\n \"etag\": \"W/\\\"7fd408ac-8618-46f9-8a73-a32299fb953a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Network/networkInterfaces/nic6135?api-version=2019-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYxMzU/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Network/networkInterfaces/nic2967?api-version=2019-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE0MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzI5Njc/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\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"sn6161\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Network/virtualNetworks/vn1199/subnets/sn6161\"\r\n }\r\n },\r\n \"name\": \"ip3542\"\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\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"sn5952\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Network/virtualNetworks/vn4486/subnets/sn5952\"\r\n }\r\n },\r\n \"name\": \"ip3478\"\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": [
- "a9b19d36-ee56-426e-bfbc-cf8b4a568cc0"
+ "86646c2a-ed44-484b-93e1-3f1878c36e6b"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
"Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0"
@@ -1047,19 +1047,19 @@
"no-cache"
],
"x-ms-request-id": [
- "cc311ac2-d759-4fd7-bf5f-ba86f93d34c2"
+ "5b44e059-c3b7-44db-89bd-495f2058787d"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/eastus2/operations/cc311ac2-d759-4fd7-bf5f-ba86f93d34c2?api-version=2019-09-01"
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/eastus2/operations/5b44e059-c3b7-44db-89bd-495f2058787d?api-version=2019-09-01"
],
"x-ms-correlation-request-id": [
- "87ab4092-79e0-41d5-bc2a-3b16d0cfe7b1"
+ "1324f2a5-81bc-49e8-92cd-4be67dda5ddb"
],
"Azure-AsyncNotification": [
"Enabled"
],
"x-ms-arm-service-request-id": [
- "4b728580-7679-48b6-bc12-e3d15cb5a095"
+ "f5323999-f61f-4443-ab92-049e2e980d81"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1072,13 +1072,13 @@
"1197"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T000156Z:87ab4092-79e0-41d5-bc2a-3b16d0cfe7b1"
+ "CANADACENTRAL:20220929T204657Z:1324f2a5-81bc-49e8-92cd-4be67dda5ddb"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:01:55 GMT"
+ "Thu, 29 Sep 2022 20:46:56 GMT"
],
"Content-Length": [
"1643"
@@ -1090,17 +1090,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"nic6135\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Network/networkInterfaces/nic6135\",\r\n \"etag\": \"W/\\\"3fcdce88-ff2e-438a-bae9-d3699977726f\\\"\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"42aed91b-ec53-40fd-8d4d-e8c81304d4ec\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3542\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Network/networkInterfaces/nic6135/ipConfigurations/ip3542\",\r\n \"etag\": \"W/\\\"3fcdce88-ff2e-438a-bae9-d3699977726f\\\"\",\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/galleryPsTestRg5837/providers/Microsoft.Network/virtualNetworks/vn1199/subnets/sn6161\"\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\": \"34tzagaji4wenoqjkbmm1tsa0b.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus2\"\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"nic2967\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Network/networkInterfaces/nic2967\",\r\n \"etag\": \"W/\\\"9081717e-1068-49c3-83ea-6dba04b6c3ee\\\"\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4c42d744-41f7-4873-9dd9-8f2e9dfbb97b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3478\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Network/networkInterfaces/nic2967/ipConfigurations/ip3478\",\r\n \"etag\": \"W/\\\"9081717e-1068-49c3-83ea-6dba04b6c3ee\\\"\",\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/galleryPsTestRg1409/providers/Microsoft.Network/virtualNetworks/vn4486/subnets/sn5952\"\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\": \"30obmce3zshurdksdf2cxdazcf.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus2\"\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Network/networkInterfaces/nic6135?api-version=2019-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYxMzU/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Network/networkInterfaces/nic2967?api-version=2019-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE0MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzI5Njc/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
"Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0"
@@ -1114,16 +1114,16 @@
"no-cache"
],
"ETag": [
- "W/\"3fcdce88-ff2e-438a-bae9-d3699977726f\""
+ "W/\"9081717e-1068-49c3-83ea-6dba04b6c3ee\""
],
"x-ms-request-id": [
- "93a43361-f276-4f66-979e-bcbd7383f40e"
+ "7687c77f-1059-46b5-b05c-5cdde128f2a4"
],
"x-ms-correlation-request-id": [
- "c13e2309-bbe7-4c8a-ad59-16020ecbd12a"
+ "89be90d3-8fc0-4f2b-aa39-4eaa00a17779"
],
"x-ms-arm-service-request-id": [
- "927514a0-ecf5-4836-a3b4-a39d2b2a258a"
+ "00a474ec-101a-4321-b36b-47cc5fd55db8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1136,13 +1136,13 @@
"11993"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T000157Z:c13e2309-bbe7-4c8a-ad59-16020ecbd12a"
+ "CANADACENTRAL:20220929T204657Z:89be90d3-8fc0-4f2b-aa39-4eaa00a17779"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:01:56 GMT"
+ "Thu, 29 Sep 2022 20:46:56 GMT"
],
"Content-Length": [
"1643"
@@ -1154,23 +1154,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"nic6135\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Network/networkInterfaces/nic6135\",\r\n \"etag\": \"W/\\\"3fcdce88-ff2e-438a-bae9-d3699977726f\\\"\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"42aed91b-ec53-40fd-8d4d-e8c81304d4ec\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3542\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Network/networkInterfaces/nic6135/ipConfigurations/ip3542\",\r\n \"etag\": \"W/\\\"3fcdce88-ff2e-438a-bae9-d3699977726f\\\"\",\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/galleryPsTestRg5837/providers/Microsoft.Network/virtualNetworks/vn1199/subnets/sn6161\"\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\": \"34tzagaji4wenoqjkbmm1tsa0b.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus2\"\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"nic2967\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Network/networkInterfaces/nic2967\",\r\n \"etag\": \"W/\\\"9081717e-1068-49c3-83ea-6dba04b6c3ee\\\"\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4c42d744-41f7-4873-9dd9-8f2e9dfbb97b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3478\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Network/networkInterfaces/nic2967/ipConfigurations/ip3478\",\r\n \"etag\": \"W/\\\"9081717e-1068-49c3-83ea-6dba04b6c3ee\\\"\",\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/galleryPsTestRg1409/providers/Microsoft.Network/virtualNetworks/vn4486/subnets/sn5952\"\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\": \"30obmce3zshurdksdf2cxdazcf.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus2\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Network/networkInterfaces/nic6135?api-version=2019-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYxMzU/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Network/networkInterfaces/nic2967?api-version=2019-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE0MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzI5Njc/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a31263f5-c2c3-4882-9519-6f443eb7b688"
+ "f634dd0e-923e-4074-a066-6131d87a7ef3"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
"Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0"
@@ -1184,16 +1184,16 @@
"no-cache"
],
"ETag": [
- "W/\"3fcdce88-ff2e-438a-bae9-d3699977726f\""
+ "W/\"9081717e-1068-49c3-83ea-6dba04b6c3ee\""
],
"x-ms-request-id": [
- "8c95b303-36c9-4baa-86f8-2b964b0003b1"
+ "cca4501e-b344-4fa4-8c8d-c91c31d7bf11"
],
"x-ms-correlation-request-id": [
- "60e1f1d4-051a-4229-8344-bdd0392d0b6a"
+ "8a811186-2643-4768-8f6d-954822a1057a"
],
"x-ms-arm-service-request-id": [
- "962e39b6-1f2f-4762-b135-9af02df07c1b"
+ "987063fd-e8dc-488b-a72d-13a85cbe47b6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1206,13 +1206,13 @@
"11992"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T000157Z:60e1f1d4-051a-4229-8344-bdd0392d0b6a"
+ "CANADACENTRAL:20220929T204657Z:8a811186-2643-4768-8f6d-954822a1057a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:01:56 GMT"
+ "Thu, 29 Sep 2022 20:46:56 GMT"
],
"Content-Length": [
"1643"
@@ -1224,26 +1224,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"nic6135\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Network/networkInterfaces/nic6135\",\r\n \"etag\": \"W/\\\"3fcdce88-ff2e-438a-bae9-d3699977726f\\\"\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"42aed91b-ec53-40fd-8d4d-e8c81304d4ec\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3542\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Network/networkInterfaces/nic6135/ipConfigurations/ip3542\",\r\n \"etag\": \"W/\\\"3fcdce88-ff2e-438a-bae9-d3699977726f\\\"\",\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/galleryPsTestRg5837/providers/Microsoft.Network/virtualNetworks/vn1199/subnets/sn6161\"\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\": \"34tzagaji4wenoqjkbmm1tsa0b.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus2\"\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"nic2967\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Network/networkInterfaces/nic2967\",\r\n \"etag\": \"W/\\\"9081717e-1068-49c3-83ea-6dba04b6c3ee\\\"\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4c42d744-41f7-4873-9dd9-8f2e9dfbb97b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3478\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Network/networkInterfaces/nic2967/ipConfigurations/ip3478\",\r\n \"etag\": \"W/\\\"9081717e-1068-49c3-83ea-6dba04b6c3ee\\\"\",\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/galleryPsTestRg1409/providers/Microsoft.Network/virtualNetworks/vn4486/subnets/sn5952\"\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\": \"30obmce3zshurdksdf2cxdazcf.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"eastus2\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/availabilitySets/asforgallery9710?api-version=2022-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXNmb3JnYWxsZXJ5OTcxMD9hcGktdmVyc2lvbj0yMDIyLTA4LTAx",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/availabilitySets/asforgallery2770?api-version=2022-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE0MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXNmb3JnYWxsZXJ5Mjc3MD9hcGktdmVyc2lvbj0yMDIyLTA4LTAx",
"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": [
- "82de6275-c997-4013-8396-d6376f6d166c"
+ "c17ac892-0a78-4df3-9e1f-2789282e1ef3"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1266,7 +1266,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "96d612fa-2da7-434b-964a-d56339e14039"
+ "d0b731d4-0a02-40b8-86fe-fc693d8f6fac"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -1276,16 +1276,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "9aa55cde-0bea-4926-81b2-577a036abc62"
+ "88a1ad3a-216c-4481-aeed-9adbda9bc664"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T000159Z:9aa55cde-0bea-4926-81b2-577a036abc62"
+ "CANADACENTRAL:20220929T204659Z:88a1ad3a-216c-4481-aeed-9adbda9bc664"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:01:58 GMT"
+ "Thu, 29 Sep 2022 20:46:59 GMT"
],
"Content-Length": [
"464"
@@ -1297,32 +1297,32 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"asforgallery9710\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/availabilitySets/asforgallery9710\",\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\": \"asforgallery2770\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/availabilitySets/asforgallery2770\",\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/galleryPsTestRg5837/providers/Microsoft.Compute/virtualMachines/vm2135?api-version=2022-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTIxMzU/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/virtualMachines/vm1684?api-version=2022-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE0MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE2ODQ/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==",
"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://saforgallery561.blob.core.windows.net/crptestar284/oscrptestar518.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/galleryPsTestRg5837/providers/Microsoft.Network/networkInterfaces/nic6135\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/availabilitySets/asforgallery9710\"\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://saforgallery8867.blob.core.windows.net/crptestar1058/oscrptestar3849.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/galleryPsTestRg1409/providers/Microsoft.Network/networkInterfaces/nic2967\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/availabilitySets/asforgallery2770\"\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": [
- "0b3d175c-f23a-4c54-b033-0388b2c34877"
+ "b45a5fa3-c715-4aeb-b99f-edfaaf4bc9d6"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "1236"
+ "1239"
]
},
"ResponseHeaders": {
@@ -1336,7 +1336,7 @@
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/e6b1e6ba-ccda-469d-9539-53d27338eb9a?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-08-01"
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/86223f2e-c606-42d3-b599-beac309e72de?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-08-01"
],
"Azure-AsyncNotification": [
"Enabled"
@@ -1348,7 +1348,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e6b1e6ba-ccda-469d-9539-53d27338eb9a"
+ "86223f2e-c606-42d3-b599-beac309e72de"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -1358,19 +1358,19 @@
"1198"
],
"x-ms-correlation-request-id": [
- "b223c411-5086-4d97-824e-25572b1ca05b"
+ "c16a5228-5663-4999-aca1-ffb5b777e04e"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T000200Z:b223c411-5086-4d97-824e-25572b1ca05b"
+ "CANADACENTRAL:20220929T204701Z:c16a5228-5663-4999-aca1-ffb5b777e04e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:01:59 GMT"
+ "Thu, 29 Sep 2022 20:47:01 GMT"
],
"Content-Length": [
- "2153"
+ "2156"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1379,20 +1379,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"vm2135\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/virtualMachines/vm2135\",\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\": \"0e4b8947-bde9-4e2c-814b-41a46bd06681\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY9710\"\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://saforgallery561.blob.core.windows.net/crptestar284/oscrptestar518.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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Network/networkInterfaces/nic6135\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-08-09T20:02:00.1453268-04:00\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"vm1684\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/virtualMachines/vm1684\",\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\": \"e04c7890-364b-4074-b602-11775296812e\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY2770\"\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://saforgallery8867.blob.core.windows.net/crptestar1058/oscrptestar3849.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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Network/networkInterfaces/nic2967\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-09-29T16:47:00.8917335-04:00\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/e6b1e6ba-ccda-469d-9539-53d27338eb9a?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2U2YjFlNmJhLWNjZGEtNDY5ZC05NTM5LTUzZDI3MzM4ZWI5YT9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZhcGktdmVyc2lvbj0yMDIyLTA4LTAx",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/86223f2e-c606-42d3-b599-beac309e72de?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzg2MjIzZjJlLWM2MDYtNDJkMy1iNTk5LWJlYWMzMDllNzJkZT9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZhcGktdmVyc2lvbj0yMDIyLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -1406,13 +1406,13 @@
"50"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29964"
+ "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c0de7f84-12e8-46dd-845c-e2bb6f4a072b"
+ "a81f3327-5342-4e30-b800-f169ea6190b1"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -1422,16 +1422,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "9b4a9d72-c25d-402d-a6c1-0acdf8649f8b"
+ "e1845e6f-274b-41ba-9688-4c3ee972b728"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T000210Z:9b4a9d72-c25d-402d-a6c1-0acdf8649f8b"
+ "CANADACENTRAL:20220929T204711Z:e1845e6f-274b-41ba-9688-4c3ee972b728"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:02:09 GMT"
+ "Thu, 29 Sep 2022 20:47:11 GMT"
],
"Content-Length": [
"134"
@@ -1443,20 +1443,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2022-08-09T20:01:59.8640413-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e6b1e6ba-ccda-469d-9539-53d27338eb9a\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-09-29T16:47:00.7979991-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"86223f2e-c606-42d3-b599-beac309e72de\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/e6b1e6ba-ccda-469d-9539-53d27338eb9a?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2U2YjFlNmJhLWNjZGEtNDY5ZC05NTM5LTUzZDI3MzM4ZWI5YT9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZhcGktdmVyc2lvbj0yMDIyLTA4LTAx",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/86223f2e-c606-42d3-b599-beac309e72de?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzg2MjIzZjJlLWM2MDYtNDJkMy1iNTk5LWJlYWMzMDllNzJkZT9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZhcGktdmVyc2lvbj0yMDIyLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -1467,13 +1467,13 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29963"
+ "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a8580b6a-cad7-4b49-860b-a4696cc148c3"
+ "084d11d2-dccd-435c-a722-be7c65d4a9a6"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -1483,16 +1483,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "50868bbf-7b91-4bba-8301-83f916107894"
+ "287a8753-6002-4836-9d6c-beac687e9999"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T000301Z:50868bbf-7b91-4bba-8301-83f916107894"
+ "CANADACENTRAL:20220929T204801Z:287a8753-6002-4836-9d6c-beac687e9999"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:03:01 GMT"
+ "Thu, 29 Sep 2022 20:48:01 GMT"
],
"Content-Length": [
"134"
@@ -1504,20 +1504,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2022-08-09T20:01:59.8640413-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e6b1e6ba-ccda-469d-9539-53d27338eb9a\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-09-29T16:47:00.7979991-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"86223f2e-c606-42d3-b599-beac309e72de\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/e6b1e6ba-ccda-469d-9539-53d27338eb9a?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2U2YjFlNmJhLWNjZGEtNDY5ZC05NTM5LTUzZDI3MzM4ZWI5YT9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZhcGktdmVyc2lvbj0yMDIyLTA4LTAx",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/86223f2e-c606-42d3-b599-beac309e72de?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzg2MjIzZjJlLWM2MDYtNDJkMy1iNTk5LWJlYWMzMDllNzJkZT9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZhcGktdmVyc2lvbj0yMDIyLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -1528,13 +1528,13 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29961"
+ "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29996"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "03ce1140-4b95-46ea-8e45-beff9bc6dfb0"
+ "76e83828-c621-4c85-9b32-3d52f9acdcee"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -1544,19 +1544,19 @@
"11996"
],
"x-ms-correlation-request-id": [
- "f68ecda9-977f-4240-b9ef-e42fd15d60ff"
+ "f870d689-398d-457b-89db-187d38b55077"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T000351Z:f68ecda9-977f-4240-b9ef-e42fd15d60ff"
+ "CANADACENTRAL:20220929T204851Z:f870d689-398d-457b-89db-187d38b55077"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:03:50 GMT"
+ "Thu, 29 Sep 2022 20:48:51 GMT"
],
"Content-Length": [
- "183"
+ "184"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1565,20 +1565,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2022-08-09T20:01:59.8640413-04:00\",\r\n \"endTime\": \"2022-08-09T20:03:30.336399-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e6b1e6ba-ccda-469d-9539-53d27338eb9a\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-09-29T16:47:00.7979991-04:00\",\r\n \"endTime\": \"2022-09-29T16:48:35.7860299-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"86223f2e-c606-42d3-b599-beac309e72de\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/virtualMachines/vm2135?api-version=2022-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTIxMzU/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/virtualMachines/vm1684?api-version=2022-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE0MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE2ODQ/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -1589,13 +1589,13 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31996"
+ "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31998"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d242bd4b-ebd9-4e0e-a2d4-17a94fe5085e"
+ "bf66ed09-2c0c-47a8-916a-7ed4609e3688"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -1605,19 +1605,19 @@
"11995"
],
"x-ms-correlation-request-id": [
- "548ce0c8-8f57-4944-8f53-f642a5f3d1c8"
+ "7e026547-d6e5-46ca-915a-f27b6fb5e3b9"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T000351Z:548ce0c8-8f57-4944-8f53-f642a5f3d1c8"
+ "CANADACENTRAL:20220929T204852Z:7e026547-d6e5-46ca-915a-f27b6fb5e3b9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:03:51 GMT"
+ "Thu, 29 Sep 2022 20:48:51 GMT"
],
"Content-Length": [
- "2182"
+ "2185"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1626,26 +1626,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"vm2135\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/virtualMachines/vm2135\",\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\": \"0e4b8947-bde9-4e2c-814b-41a46bd06681\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY9710\"\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://saforgallery561.blob.core.windows.net/crptestar284/oscrptestar518.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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Network/networkInterfaces/nic6135\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-08-09T20:02:00.1453268-04:00\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"vm1684\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/virtualMachines/vm1684\",\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\": \"e04c7890-364b-4074-b602-11775296812e\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY2770\"\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://saforgallery8867.blob.core.windows.net/crptestar1058/oscrptestar3849.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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Network/networkInterfaces/nic2967\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-09-29T16:47:00.8917335-04:00\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/virtualMachines/vm2135?api-version=2022-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTIxMzU/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/virtualMachines/vm1684?api-version=2022-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE0MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE2ODQ/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "042c83d9-e7d9-41b9-ab8d-93410a80a5be"
+ "8173340a-7490-4388-a905-7b1f38708d72"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -1656,13 +1656,13 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31995"
+ "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31997"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "49c02437-b4d6-4bd5-819e-36a10f450aa1"
+ "182c2356-9358-45e0-97cf-f129836033bf"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -1672,19 +1672,19 @@
"11994"
],
"x-ms-correlation-request-id": [
- "9c245ddc-2632-4221-bdce-5326e5f56663"
+ "12c1cc3a-59a5-42d9-acb4-40d560e0f836"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T000351Z:9c245ddc-2632-4221-bdce-5326e5f56663"
+ "CANADACENTRAL:20220929T204852Z:12c1cc3a-59a5-42d9-acb4-40d560e0f836"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:03:51 GMT"
+ "Thu, 29 Sep 2022 20:48:51 GMT"
],
"Content-Length": [
- "2182"
+ "2185"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1693,32 +1693,32 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"vm2135\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/virtualMachines/vm2135\",\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\": \"0e4b8947-bde9-4e2c-814b-41a46bd06681\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY9710\"\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://saforgallery561.blob.core.windows.net/crptestar284/oscrptestar518.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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Network/networkInterfaces/nic6135\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-08-09T20:02:00.1453268-04:00\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"vm1684\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/virtualMachines/vm1684\",\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\": \"e04c7890-364b-4074-b602-11775296812e\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY2770\"\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://saforgallery8867.blob.core.windows.net/crptestar1058/oscrptestar3849.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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Network/networkInterfaces/nic2967\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-09-29T16:47:00.8917335-04:00\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/images/psTestSourceImage3969?api-version=2022-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTM5Njk/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/images/psTestSourceImage3402?api-version=2022-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE0MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTM0MDI/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"blobUri\": \"https://saforgallery561.blob.core.windows.net/crptestar284/oscrptestar518.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://saforgallery8867.blob.core.windows.net/crptestar1058/oscrptestar3849.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": [
- "a73a259d-5cc9-4243-a6ed-eb76210e6a53"
+ "edddf0b6-3168-49dc-bdf5-37392042fed6"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "396"
+ "399"
]
},
"ResponseHeaders": {
@@ -1729,7 +1729,7 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/f1bd0661-78eb-4bd0-b725-c6ae2b66c225?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-08-01"
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/680fe87e-e78f-4dc5-9f3a-5a489068d35a?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-08-01"
],
"Azure-AsyncNotification": [
"Enabled"
@@ -1741,7 +1741,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f1bd0661-78eb-4bd0-b725-c6ae2b66c225"
+ "680fe87e-e78f-4dc5-9f3a-5a489068d35a"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -1751,19 +1751,19 @@
"1197"
],
"x-ms-correlation-request-id": [
- "da987e69-b914-47c4-b83d-66d72566e676"
+ "a7eb4279-e57d-41f2-85eb-2e83fad8752b"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T000400Z:da987e69-b914-47c4-b83d-66d72566e676"
+ "CANADACENTRAL:20220929T204854Z:a7eb4279-e57d-41f2-85eb-2e83fad8752b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:04:00 GMT"
+ "Thu, 29 Sep 2022 20:48:53 GMT"
],
"Content-Length": [
- "764"
+ "767"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1772,20 +1772,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"psTestSourceImage3969\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/images/psTestSourceImage3969\",\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://saforgallery561.blob.core.windows.net/crptestar284/oscrptestar518.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\": \"psTestSourceImage3402\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/images/psTestSourceImage3402\",\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://saforgallery8867.blob.core.windows.net/crptestar1058/oscrptestar3849.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/f1bd0661-78eb-4bd0-b725-c6ae2b66c225?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2YxYmQwNjYxLTc4ZWItNGJkMC1iNzI1LWM2YWUyYjY2YzIyNT9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZhcGktdmVyc2lvbj0yMDIyLTA4LTAx",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/680fe87e-e78f-4dc5-9f3a-5a489068d35a?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzY4MGZlODdlLWU3OGYtNGRjNS05ZjNhLTVhNDg5MDY4ZDM1YT9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZhcGktdmVyc2lvbj0yMDIyLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -1796,13 +1796,13 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29959"
+ "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29994"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a1cab22c-be72-44b9-a950-9ef697b6a436"
+ "06982f7a-9e34-453e-bef5-13079f0a2000"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -1812,16 +1812,16 @@
"11993"
],
"x-ms-correlation-request-id": [
- "41941c05-1632-45af-8477-9407dca32e17"
+ "86fe4a70-13e9-4ec8-bc21-038165e549b3"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T000431Z:41941c05-1632-45af-8477-9407dca32e17"
+ "CANADACENTRAL:20220929T204924Z:86fe4a70-13e9-4ec8-bc21-038165e549b3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:04:30 GMT"
+ "Thu, 29 Sep 2022 20:49:23 GMT"
],
"Content-Length": [
"184"
@@ -1833,20 +1833,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2022-08-09T20:03:53.0093025-04:00\",\r\n \"endTime\": \"2022-08-09T20:04:08.4165526-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f1bd0661-78eb-4bd0-b725-c6ae2b66c225\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-09-29T16:48:53.2085752-04:00\",\r\n \"endTime\": \"2022-09-29T16:48:58.6618754-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"680fe87e-e78f-4dc5-9f3a-5a489068d35a\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/images/psTestSourceImage3969?api-version=2022-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTM5Njk/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/images/psTestSourceImage3402?api-version=2022-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE0MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTM0MDI/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -1863,7 +1863,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "82b062a4-f381-4db8-ab5a-8d25b5f48aa8"
+ "df274476-dc5f-4ca8-80d5-6fd1e6ff7d5f"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -1873,19 +1873,19 @@
"11992"
],
"x-ms-correlation-request-id": [
- "99eb913d-c0f7-4be4-bb57-68f5a6ba44ba"
+ "be8d6640-7c99-4530-8bf7-9f25d02ab79d"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T000431Z:99eb913d-c0f7-4be4-bb57-68f5a6ba44ba"
+ "CANADACENTRAL:20220929T204924Z:be8d6640-7c99-4530-8bf7-9f25d02ab79d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:04:30 GMT"
+ "Thu, 29 Sep 2022 20:49:23 GMT"
],
"Content-Length": [
- "793"
+ "796"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1894,26 +1894,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"psTestSourceImage3969\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/images/psTestSourceImage3969\",\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://saforgallery561.blob.core.windows.net/crptestar284/oscrptestar518.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\": \"psTestSourceImage3402\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/images/psTestSourceImage3402\",\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://saforgallery8867.blob.core.windows.net/crptestar1058/oscrptestar3849.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/galleryPsTestRg5837/providers/Microsoft.Compute/images/psTestSourceImage3969?api-version=2022-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTM5Njk/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/images/psTestSourceImage3402?api-version=2022-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE0MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTM0MDI/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4016ab64-8096-4d3d-98da-e77e64a128b2"
+ "0076955c-9cac-4dc1-b1c3-53777b1bb681"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -1930,7 +1930,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "21338c55-53f3-472a-8d48-97b423027807"
+ "9f642970-fe08-44e8-a913-981212d8afb7"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -1940,19 +1940,19 @@
"11991"
],
"x-ms-correlation-request-id": [
- "c5b3587f-a65f-460c-a618-e098647fa46b"
+ "18fbc726-66d9-46a7-a384-fcdd263c8342"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T000431Z:c5b3587f-a65f-460c-a618-e098647fa46b"
+ "CANADACENTRAL:20220929T204924Z:18fbc726-66d9-46a7-a384-fcdd263c8342"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:04:31 GMT"
+ "Thu, 29 Sep 2022 20:49:23 GMT"
],
"Content-Length": [
- "793"
+ "796"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1961,26 +1961,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"psTestSourceImage3969\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/images/psTestSourceImage3969\",\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://saforgallery561.blob.core.windows.net/crptestar284/oscrptestar518.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\": \"psTestSourceImage3402\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/images/psTestSourceImage3402\",\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://saforgallery8867.blob.core.windows.net/crptestar1058/oscrptestar3849.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/galleryPsTestRg5837/providers/Microsoft.Compute/galleries/galleryPsTestGallery5427?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU0Mjc/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/galleries/galleryPsTestGallery1776?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE0MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTE3NzY/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"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": [
- "190d7ebb-0430-4edc-a205-66efd79e9050"
+ "0dc8f83e-8bc4-48b5-9eba-6a6662070f5d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1997,7 +1997,7 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/8b98e46f-0d52-452e-b7c7-e7cb86b57248?api-version=2022-01-03"
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/144f8579-3f3c-4fb6-b4e9-3341fbd5dce5?api-version=2022-03-03"
],
"x-ms-ratelimit-remaining-resource": [
"Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299"
@@ -2009,7 +2009,7 @@
"a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "8b98e46f-0d52-452e-b7c7-e7cb86b57248"
+ "144f8579-3f3c-4fb6-b4e9-3341fbd5dce5"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -2019,16 +2019,16 @@
"1196"
],
"x-ms-correlation-request-id": [
- "3c4ba92c-8a60-4c88-bb5c-ff5b7a86d382"
+ "7eab0cdf-5605-4ad9-ad42-92887a2fab38"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T000434Z:3c4ba92c-8a60-4c88-bb5c-ff5b7a86d382"
+ "CANADACENTRAL:20220929T204925Z:7eab0cdf-5605-4ad9-ad42-92887a2fab38"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:04:33 GMT"
+ "Thu, 29 Sep 2022 20:49:26 GMT"
],
"Content-Length": [
"508"
@@ -2040,20 +2040,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery5427\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/galleries/galleryPsTestGallery5427\",\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-GALLERYPSTESTGALLERY5427\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery1776\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/galleries/galleryPsTestGallery1776\",\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-GALLERYPSTESTGALLERY1776\"\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/8b98e46f-0d52-452e-b7c7-e7cb86b57248?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy84Yjk4ZTQ2Zi0wZDUyLTQ1MmUtYjdjNy1lN2NiODZiNTcyNDg/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/144f8579-3f3c-4fb6-b4e9-3341fbd5dce5?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8xNDRmODU3OS0zZjNjLTRmYjYtYjRlOS0zMzQxZmJkNWRjZTU/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -2073,7 +2073,7 @@
"a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "bed1f2ae-b111-420b-ad7c-01c6db567dd1"
+ "cbdf0379-38e5-4bf6-8298-4e9841129658"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -2083,19 +2083,19 @@
"11990"
],
"x-ms-correlation-request-id": [
- "94439190-5a27-4578-944b-8de158a42a93"
+ "4bd2860f-5360-4def-8e09-b0aa65e69f87"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T000504Z:94439190-5a27-4578-944b-8de158a42a93"
+ "CANADACENTRAL:20220929T204956Z:4bd2860f-5360-4def-8e09-b0aa65e69f87"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:05:03 GMT"
+ "Thu, 29 Sep 2022 20:49:55 GMT"
],
"Content-Length": [
- "183"
+ "184"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2104,20 +2104,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2022-08-09T20:04:34.1389233-04:00\",\r\n \"endTime\": \"2022-08-09T20:04:34.763924-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8b98e46f-0d52-452e-b7c7-e7cb86b57248\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-09-29T16:49:25.7422667-04:00\",\r\n \"endTime\": \"2022-09-29T16:49:47.2275298-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"144f8579-3f3c-4fb6-b4e9-3341fbd5dce5\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/galleries/galleryPsTestGallery5427?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU0Mjc/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/galleries/galleryPsTestGallery1776?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE0MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTE3NzY/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -2128,7 +2128,7 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2496"
+ "Microsoft.Compute/GetGallery3Min;348,Microsoft.Compute/GetGallery30Min;2498"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2137,7 +2137,7 @@
"a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "5530d0ef-3feb-4d96-aa8f-b28547514aa3"
+ "57b072ed-c0f1-4a31-82c1-806519f66b5a"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -2147,16 +2147,16 @@
"11989"
],
"x-ms-correlation-request-id": [
- "8825042b-c2f6-4a54-b860-84fea3a3c570"
+ "169ca925-b936-4f53-930a-21a1d31698b7"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T000504Z:8825042b-c2f6-4a54-b860-84fea3a3c570"
+ "CANADACENTRAL:20220929T204956Z:169ca925-b936-4f53-930a-21a1d31698b7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:05:03 GMT"
+ "Thu, 29 Sep 2022 20:49:56 GMT"
],
"Content-Length": [
"509"
@@ -2168,26 +2168,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery5427\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/galleries/galleryPsTestGallery5427\",\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-GALLERYPSTESTGALLERY5427\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery1776\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/galleries/galleryPsTestGallery1776\",\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-GALLERYPSTESTGALLERY1776\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/galleries/galleryPsTestGallery5427/images/galleryPsTestGalleryImage2031?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU0MjcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UyMDMxP2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/galleries/galleryPsTestGallery1776/images/galleryPsTestGalleryImage8032?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE0MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTE3NzYvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4MDMyP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"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": [
- "058ee5a5-cf80-4376-81dd-db70687e9d1c"
+ "db3baba8-ed36-4d6c-b3c3-9ddd372b1c8f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2204,7 +2204,7 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/49b7cc59-7606-4aaf-a275-aeef4eee6be0?api-version=2022-01-03"
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/7d8d78b9-b584-48cd-a97a-3b2f3d156a0a?api-version=2022-03-03"
],
"x-ms-ratelimit-remaining-resource": [
"Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;749"
@@ -2216,7 +2216,7 @@
"a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "49b7cc59-7606-4aaf-a275-aeef4eee6be0"
+ "7d8d78b9-b584-48cd-a97a-3b2f3d156a0a"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -2226,16 +2226,16 @@
"1195"
],
"x-ms-correlation-request-id": [
- "62a94a81-c69c-43bb-8a1d-ad466a33d844"
+ "f4d9789e-6414-4242-ab85-e774a37a5e11"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T000505Z:62a94a81-c69c-43bb-8a1d-ad466a33d844"
+ "CANADACENTRAL:20220929T204958Z:f4d9789e-6414-4242-ab85-e774a37a5e11"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:05:04 GMT"
+ "Thu, 29 Sep 2022 20:49:58 GMT"
],
"Content-Length": [
"674"
@@ -2247,20 +2247,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage2031\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/galleries/galleryPsTestGallery5427/images/galleryPsTestGalleryImage2031\",\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\": \"galleryPsTestGalleryImage8032\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/galleries/galleryPsTestGallery1776/images/galleryPsTestGalleryImage8032\",\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/49b7cc59-7606-4aaf-a275-aeef4eee6be0?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy80OWI3Y2M1OS03NjA2LTRhYWYtYTI3NS1hZWVmNGVlZTZiZTA/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/7d8d78b9-b584-48cd-a97a-3b2f3d156a0a?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83ZDhkNzhiOS1iNTg0LTQ4Y2QtYTk3YS0zYjJmM2QxNTZhMGE/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -2271,7 +2271,7 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4196"
+ "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4195"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2280,7 +2280,7 @@
"a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "ae862ef8-8e2c-427e-9b6a-3513ec82c97b"
+ "a1b9a7ec-288b-4cee-95a3-7040ff318edb"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -2290,16 +2290,16 @@
"11988"
],
"x-ms-correlation-request-id": [
- "d8ed7fb7-a73f-4add-a6fb-15d7a1645b6e"
+ "6ba9b3a6-ea64-4599-ae3c-04c83265d4b8"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T000535Z:d8ed7fb7-a73f-4add-a6fb-15d7a1645b6e"
+ "CANADACENTRAL:20220929T205028Z:6ba9b3a6-ea64-4599-ae3c-04c83265d4b8"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:05:34 GMT"
+ "Thu, 29 Sep 2022 20:50:28 GMT"
],
"Content-Length": [
"184"
@@ -2311,20 +2311,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2022-08-09T20:05:04.9834574-04:00\",\r\n \"endTime\": \"2022-08-09T20:05:05.1083968-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"49b7cc59-7606-4aaf-a275-aeef4eee6be0\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-09-29T16:49:58.2123913-04:00\",\r\n \"endTime\": \"2022-09-29T16:49:58.3217554-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7d8d78b9-b584-48cd-a97a-3b2f3d156a0a\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/galleries/galleryPsTestGallery5427/images/galleryPsTestGalleryImage2031?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU0MjcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UyMDMxP2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/galleries/galleryPsTestGallery1776/images/galleryPsTestGalleryImage8032?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE0MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTE3NzYvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4MDMyP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -2335,7 +2335,7 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetGalleryImage3Min;594,Microsoft.Compute/GetGalleryImage30Min;2994"
+ "Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2996"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2344,7 +2344,7 @@
"a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "53bd76a5-94a5-4926-970b-7c22f1aa6146"
+ "9b62f740-ccc2-4936-8a88-5e75a9a3aff1"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -2354,16 +2354,16 @@
"11987"
],
"x-ms-correlation-request-id": [
- "d69c2780-dc17-4e88-b6be-b19b15b6d576"
+ "00db4831-d56e-4b4e-b01c-e510a833df48"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T000535Z:d69c2780-dc17-4e88-b6be-b19b15b6d576"
+ "CANADACENTRAL:20220929T205028Z:00db4831-d56e-4b4e-b01c-e510a833df48"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:05:34 GMT"
+ "Thu, 29 Sep 2022 20:50:28 GMT"
],
"Content-Length": [
"675"
@@ -2375,32 +2375,32 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage2031\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/galleries/galleryPsTestGallery5427/images/galleryPsTestGalleryImage2031\",\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\": \"galleryPsTestGalleryImage8032\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/galleries/galleryPsTestGallery1776/images/galleryPsTestGalleryImage8032\",\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/galleryPsTestRg5837/providers/Microsoft.Compute/galleries/galleryPsTestGallery5427/images/galleryPsTestGalleryImage2031/versions/1.0.0?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU0MjcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UyMDMxL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/galleries/galleryPsTestGallery1776/images/galleryPsTestGalleryImage8032/versions/1.0.0?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE0MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTE3NzYvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4MDMyL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"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-08-19T04: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/galleryPsTestRg5837/providers/Microsoft.Compute/images/psTestSourceImage3969\"\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-10-09T04: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/galleryPsTestRg1409/providers/Microsoft.Compute/images/psTestSourceImage3402\"\r\n }\r\n },\r\n \"safetyProfile\": {\r\n \"allowDeletionOfReplicatedLocations\": true\r\n }\r\n },\r\n \"location\": \"eastus2\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0840e48c-1cec-49cc-b54f-2e0d65ef1bba"
+ "48b2115e-df08-4dcd-a664-2ca6075a696c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "603"
+ "685"
]
},
"ResponseHeaders": {
@@ -2414,7 +2414,7 @@
"60"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/2ee8df79-0996-4684-80b9-6f58b9d0eee5?api-version=2022-01-03"
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/d46b09fb-b1c0-4d8b-a430-5d8b8209f97c?api-version=2022-03-03"
],
"x-ms-ratelimit-remaining-resource": [
"Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1199"
@@ -2426,7 +2426,7 @@
"a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "2ee8df79-0996-4684-80b9-6f58b9d0eee5"
+ "d46b09fb-b1c0-4d8b-a430-5d8b8209f97c"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -2436,19 +2436,19 @@
"1194"
],
"x-ms-correlation-request-id": [
- "5e63a87f-9cb0-4867-8d70-725fa7e332ae"
+ "7405a26f-c90b-4e67-a640-0ef84741fdf7"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T000536Z:5e63a87f-9cb0-4867-8d70-725fa7e332ae"
+ "CANADACENTRAL:20220929T205030Z:7405a26f-c90b-4e67-a640-0ef84741fdf7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:05:35 GMT"
+ "Thu, 29 Sep 2022 20:50:29 GMT"
],
"Content-Length": [
- "1111"
+ "1162"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2457,32 +2457,32 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/galleries/galleryPsTestGallery5427/images/galleryPsTestGalleryImage2031/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-08-09T20:05:36.4837561-04:00\",\r\n \"endOfLifeDate\": \"2022-08-19T00:00:00-04:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/images/psTestSourceImage3969\"\r\n }\r\n },\r\n \"safetyProfile\": {\r\n \"reportedForPolicyViolation\": false\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/galleries/galleryPsTestGallery1776/images/galleryPsTestGalleryImage8032/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-09-29T16:50:29.7918273-04:00\",\r\n \"endOfLifeDate\": \"2022-10-09T00:00:00-04:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/images/psTestSourceImage3402\"\r\n }\r\n },\r\n \"safetyProfile\": {\r\n \"reportedForPolicyViolation\": false,\r\n \"allowDeletionOfReplicatedLocations\": true\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/galleries/galleryPsTestGallery5427/images/galleryPsTestGalleryImage2031/versions/1.0.0?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU0MjcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UyMDMxL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/galleries/galleryPsTestGallery1776/images/galleryPsTestGalleryImage8032/versions/1.0.0?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE0MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTE3NzYvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4MDMyL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"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-11-17T05: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/galleryPsTestRg5837/providers/Microsoft.Compute/images/psTestSourceImage3969\"\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\": \"2023-01-07T05: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/galleryPsTestRg1409/providers/Microsoft.Compute/images/psTestSourceImage3402\"\r\n }\r\n },\r\n \"safetyProfile\": {\r\n \"allowDeletionOfReplicatedLocations\": true\r\n }\r\n },\r\n \"location\": \"eastus2\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bec8964d-9d39-4a63-9b12-6507a5a16ffd"
+ "156c3454-f900-4a07-b9ea-e98239a02f70"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "603"
+ "685"
]
},
"ResponseHeaders": {
@@ -2496,7 +2496,7 @@
"60"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/8f2fef26-f77b-4c29-8ab9-7de3827b729d?api-version=2022-01-03"
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/25caf3c0-0871-4a00-8295-a5db869fbc4f?api-version=2022-03-03"
],
"x-ms-ratelimit-remaining-resource": [
"Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1198"
@@ -2508,7 +2508,7 @@
"a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "8f2fef26-f77b-4c29-8ab9-7de3827b729d"
+ "25caf3c0-0871-4a00-8295-a5db869fbc4f"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -2518,19 +2518,19 @@
"1193"
],
"x-ms-correlation-request-id": [
- "52e20ee9-13f8-49c7-8f0c-4be4c115a56c"
+ "361444e0-1d82-4eb8-bdce-7b460f8a5b09"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T001540Z:52e20ee9-13f8-49c7-8f0c-4be4c115a56c"
+ "CANADACENTRAL:20220929T205933Z:361444e0-1d82-4eb8-bdce-7b460f8a5b09"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:15:39 GMT"
+ "Thu, 29 Sep 2022 20:59:33 GMT"
],
"Content-Length": [
- "1225"
+ "1276"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2539,20 +2539,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/galleries/galleryPsTestGallery5427/images/galleryPsTestGalleryImage2031/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-08-09T20:05:36.4837561-04:00\",\r\n \"endOfLifeDate\": \"2022-11-17T00:00:00-05:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/images/psTestSourceImage3969\"\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}",
+ "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/galleries/galleryPsTestGallery1776/images/galleryPsTestGalleryImage8032/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-09-29T16:50:29.7918273-04:00\",\r\n \"endOfLifeDate\": \"2023-01-07T00:00:00-05:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/images/psTestSourceImage3402\"\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 \"allowDeletionOfReplicatedLocations\": true\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/2ee8df79-0996-4684-80b9-6f58b9d0eee5?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yZWU4ZGY3OS0wOTk2LTQ2ODQtODBiOS02ZjU4YjlkMGVlZTU/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/d46b09fb-b1c0-4d8b-a430-5d8b8209f97c?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9kNDZiMDlmYi1iMWMwLTRkOGItYTQzMC01ZDhiODIwOWY5N2M/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -2575,7 +2575,7 @@
"a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "ea6c2134-01ba-47af-bd6d-b2153069560b"
+ "a38d0779-87f0-4c81-bbd2-528278878c5d"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -2585,16 +2585,16 @@
"11986"
],
"x-ms-correlation-request-id": [
- "4bd5b362-724c-4c22-8ba4-eee7cfb6d44b"
+ "8192a13d-a96e-46f1-848f-60cc8caf25b1"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T000636Z:4bd5b362-724c-4c22-8ba4-eee7cfb6d44b"
+ "CANADACENTRAL:20220929T205130Z:8192a13d-a96e-46f1-848f-60cc8caf25b1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:06:36 GMT"
+ "Thu, 29 Sep 2022 20:51:29 GMT"
],
"Content-Length": [
"134"
@@ -2606,20 +2606,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2022-08-09T20:05:36.4524773-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2ee8df79-0996-4684-80b9-6f58b9d0eee5\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-09-29T16:50:29.7918273-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d46b09fb-b1c0-4d8b-a430-5d8b8209f97c\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/2ee8df79-0996-4684-80b9-6f58b9d0eee5?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yZWU4ZGY3OS0wOTk2LTQ2ODQtODBiOS02ZjU4YjlkMGVlZTU/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/d46b09fb-b1c0-4d8b-a430-5d8b8209f97c?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9kNDZiMDlmYi1iMWMwLTRkOGItYTQzMC01ZDhiODIwOWY5N2M/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -2633,7 +2633,7 @@
"60"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4192"
+ "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4192"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2642,7 +2642,7 @@
"a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "d0a6e621-186d-40f0-b0de-ec5a981b11b6"
+ "b2ddefdf-053d-4992-bfb0-f121ec89b58f"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -2652,16 +2652,16 @@
"11985"
],
"x-ms-correlation-request-id": [
- "3028fe6f-7d2b-40a7-bda7-27e15db6d2e8"
+ "ed2fe553-e251-4441-bb4d-ba6eceebaff7"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T000737Z:3028fe6f-7d2b-40a7-bda7-27e15db6d2e8"
+ "CANADACENTRAL:20220929T205230Z:ed2fe553-e251-4441-bb4d-ba6eceebaff7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:07:36 GMT"
+ "Thu, 29 Sep 2022 20:52:30 GMT"
],
"Content-Length": [
"134"
@@ -2673,20 +2673,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2022-08-09T20:05:36.4524773-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2ee8df79-0996-4684-80b9-6f58b9d0eee5\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-09-29T16:50:29.7918273-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d46b09fb-b1c0-4d8b-a430-5d8b8209f97c\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/2ee8df79-0996-4684-80b9-6f58b9d0eee5?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yZWU4ZGY3OS0wOTk2LTQ2ODQtODBiOS02ZjU4YjlkMGVlZTU/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/d46b09fb-b1c0-4d8b-a430-5d8b8209f97c?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9kNDZiMDlmYi1iMWMwLTRkOGItYTQzMC01ZDhiODIwOWY5N2M/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -2700,7 +2700,7 @@
"60"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4191"
+ "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4190"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2709,7 +2709,7 @@
"a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "62533b6d-a0cd-4897-b44a-8270f7236b76"
+ "5b1c88b8-9f41-4d1c-9a41-3a7126091085"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -2719,16 +2719,16 @@
"11984"
],
"x-ms-correlation-request-id": [
- "c360bbc5-3442-480f-87df-dcf973ba6dd1"
+ "31d32382-84f1-4933-ae56-ef4a576c4def"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T000837Z:c360bbc5-3442-480f-87df-dcf973ba6dd1"
+ "CANADACENTRAL:20220929T205330Z:31d32382-84f1-4933-ae56-ef4a576c4def"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:08:37 GMT"
+ "Thu, 29 Sep 2022 20:53:30 GMT"
],
"Content-Length": [
"134"
@@ -2740,20 +2740,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2022-08-09T20:05:36.4524773-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2ee8df79-0996-4684-80b9-6f58b9d0eee5\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-09-29T16:50:29.7918273-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d46b09fb-b1c0-4d8b-a430-5d8b8209f97c\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/2ee8df79-0996-4684-80b9-6f58b9d0eee5?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yZWU4ZGY3OS0wOTk2LTQ2ODQtODBiOS02ZjU4YjlkMGVlZTU/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/d46b09fb-b1c0-4d8b-a430-5d8b8209f97c?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9kNDZiMDlmYi1iMWMwLTRkOGItYTQzMC01ZDhiODIwOWY5N2M/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -2767,7 +2767,7 @@
"60"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4189"
+ "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4188"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2776,7 +2776,7 @@
"a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "403d88db-4f1e-4886-b7ac-7df6b89ed2b2"
+ "487f18b3-cf84-4d79-aa42-4637c56346c3"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -2786,16 +2786,16 @@
"11983"
],
"x-ms-correlation-request-id": [
- "7a0beffd-4175-495d-8eed-621942ddee8f"
+ "19f526df-ddda-476e-b9e1-3c33c69e358f"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T000937Z:7a0beffd-4175-495d-8eed-621942ddee8f"
+ "CANADACENTRAL:20220929T205431Z:19f526df-ddda-476e-b9e1-3c33c69e358f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:09:37 GMT"
+ "Thu, 29 Sep 2022 20:54:30 GMT"
],
"Content-Length": [
"134"
@@ -2807,20 +2807,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2022-08-09T20:05:36.4524773-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2ee8df79-0996-4684-80b9-6f58b9d0eee5\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-09-29T16:50:29.7918273-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d46b09fb-b1c0-4d8b-a430-5d8b8209f97c\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/2ee8df79-0996-4684-80b9-6f58b9d0eee5?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yZWU4ZGY3OS0wOTk2LTQ2ODQtODBiOS02ZjU4YjlkMGVlZTU/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/d46b09fb-b1c0-4d8b-a430-5d8b8209f97c?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9kNDZiMDlmYi1iMWMwLTRkOGItYTQzMC01ZDhiODIwOWY5N2M/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -2834,7 +2834,7 @@
"60"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4187"
+ "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4186"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2843,7 +2843,7 @@
"a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "cb8feed2-a492-4f99-ab59-5ece9dc8d97a"
+ "4a88d368-7ceb-462b-ba55-5391da789fe2"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -2853,16 +2853,16 @@
"11982"
],
"x-ms-correlation-request-id": [
- "f7e1c31f-5169-4a57-b91e-dc3b87d600ae"
+ "dd8f502c-4344-4439-80cb-51ccf3cd13d5"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T001038Z:f7e1c31f-5169-4a57-b91e-dc3b87d600ae"
+ "CANADACENTRAL:20220929T205531Z:dd8f502c-4344-4439-80cb-51ccf3cd13d5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:10:37 GMT"
+ "Thu, 29 Sep 2022 20:55:30 GMT"
],
"Content-Length": [
"134"
@@ -2874,20 +2874,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2022-08-09T20:05:36.4524773-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2ee8df79-0996-4684-80b9-6f58b9d0eee5\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-09-29T16:50:29.7918273-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d46b09fb-b1c0-4d8b-a430-5d8b8209f97c\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/2ee8df79-0996-4684-80b9-6f58b9d0eee5?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yZWU4ZGY3OS0wOTk2LTQ2ODQtODBiOS02ZjU4YjlkMGVlZTU/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/d46b09fb-b1c0-4d8b-a430-5d8b8209f97c?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9kNDZiMDlmYi1iMWMwLTRkOGItYTQzMC01ZDhiODIwOWY5N2M/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -2901,7 +2901,7 @@
"60"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4185"
+ "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4184"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2910,7 +2910,7 @@
"a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "f2e489c9-9cb1-437f-a7fd-66342ac99a3d"
+ "0cb468f4-5409-435c-afbd-7c17abf96c05"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -2920,16 +2920,16 @@
"11981"
],
"x-ms-correlation-request-id": [
- "1b3394d8-afc0-446d-86d7-a6979bcd67e5"
+ "ec545628-c008-48f0-9ce0-b26609e9bfbb"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T001138Z:1b3394d8-afc0-446d-86d7-a6979bcd67e5"
+ "CANADACENTRAL:20220929T205631Z:ec545628-c008-48f0-9ce0-b26609e9bfbb"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:11:37 GMT"
+ "Thu, 29 Sep 2022 20:56:30 GMT"
],
"Content-Length": [
"134"
@@ -2941,20 +2941,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2022-08-09T20:05:36.4524773-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2ee8df79-0996-4684-80b9-6f58b9d0eee5\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-09-29T16:50:29.7918273-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d46b09fb-b1c0-4d8b-a430-5d8b8209f97c\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/2ee8df79-0996-4684-80b9-6f58b9d0eee5?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yZWU4ZGY3OS0wOTk2LTQ2ODQtODBiOS02ZjU4YjlkMGVlZTU/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/d46b09fb-b1c0-4d8b-a430-5d8b8209f97c?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9kNDZiMDlmYi1iMWMwLTRkOGItYTQzMC01ZDhiODIwOWY5N2M/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -2968,7 +2968,7 @@
"60"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4183"
+ "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4182"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2977,7 +2977,7 @@
"a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "3ec58153-be5a-428f-b9f5-45b0f09fe2c8"
+ "e9200549-4281-4336-a50a-cd01a3eb35c8"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -2987,16 +2987,16 @@
"11980"
],
"x-ms-correlation-request-id": [
- "093ede8d-4bbb-443b-a241-3c853fafb6f3"
+ "65316b62-4088-49e4-a2ba-6c04f1fe9662"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T001238Z:093ede8d-4bbb-443b-a241-3c853fafb6f3"
+ "CANADACENTRAL:20220929T205731Z:65316b62-4088-49e4-a2ba-6c04f1fe9662"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:12:38 GMT"
+ "Thu, 29 Sep 2022 20:57:31 GMT"
],
"Content-Length": [
"134"
@@ -3008,20 +3008,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2022-08-09T20:05:36.4524773-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2ee8df79-0996-4684-80b9-6f58b9d0eee5\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-09-29T16:50:29.7918273-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d46b09fb-b1c0-4d8b-a430-5d8b8209f97c\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/2ee8df79-0996-4684-80b9-6f58b9d0eee5?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yZWU4ZGY3OS0wOTk2LTQ2ODQtODBiOS02ZjU4YjlkMGVlZTU/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/d46b09fb-b1c0-4d8b-a430-5d8b8209f97c?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9kNDZiMDlmYi1iMWMwLTRkOGItYTQzMC01ZDhiODIwOWY5N2M/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -3035,7 +3035,7 @@
"60"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4181"
+ "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4180"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3044,7 +3044,7 @@
"a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "2e4a35c1-c5a1-4243-a6ec-cb8e248560e3"
+ "55e592da-353c-40cb-a01c-53ba0ed03944"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -3054,16 +3054,16 @@
"11979"
],
"x-ms-correlation-request-id": [
- "f0760ed5-8980-4b93-8888-a14782030db9"
+ "b9c071ad-2e3e-4c85-a979-8cb198861ac9"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T001338Z:f0760ed5-8980-4b93-8888-a14782030db9"
+ "CANADACENTRAL:20220929T205831Z:b9c071ad-2e3e-4c85-a979-8cb198861ac9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:13:38 GMT"
+ "Thu, 29 Sep 2022 20:58:30 GMT"
],
"Content-Length": [
"134"
@@ -3075,20 +3075,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2022-08-09T20:05:36.4524773-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2ee8df79-0996-4684-80b9-6f58b9d0eee5\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-09-29T16:50:29.7918273-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d46b09fb-b1c0-4d8b-a430-5d8b8209f97c\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/2ee8df79-0996-4684-80b9-6f58b9d0eee5?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yZWU4ZGY3OS0wOTk2LTQ2ODQtODBiOS02ZjU4YjlkMGVlZTU/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/d46b09fb-b1c0-4d8b-a430-5d8b8209f97c?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9kNDZiMDlmYi1iMWMwLTRkOGItYTQzMC01ZDhiODIwOWY5N2M/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -3098,11 +3098,8 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "60"
- ],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4179"
+ "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4178"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3111,7 +3108,7 @@
"a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "16ba6739-34ee-4e0f-b694-dbee4b9c1de8"
+ "a15ed1b5-def2-4486-bf56-b054593af5d7"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -3121,80 +3118,16 @@
"11978"
],
"x-ms-correlation-request-id": [
- "b378cc50-30ca-4d97-a3b8-b3e566b1bb54"
+ "12453393-41de-4d8f-b5d4-27e565fb830e"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T001439Z:b378cc50-30ca-4d97-a3b8-b3e566b1bb54"
+ "CANADACENTRAL:20220929T205932Z:12453393-41de-4d8f-b5d4-27e565fb830e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:14:38 GMT"
- ],
- "Content-Length": [
- "134"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"startTime\": \"2022-08-09T20:05:36.4524773-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2ee8df79-0996-4684-80b9-6f58b9d0eee5\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/2ee8df79-0996-4684-80b9-6f58b9d0eee5?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yZWU4ZGY3OS0wOTk2LTQ2ODQtODBiOS02ZjU4YjlkMGVlZTU/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.700.22.30802",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4177"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-served-by": [
- "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
- ],
- "x-ms-request-id": [
- "21d4ce35-2108-447b-ac25-d64fdf8ded89"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11977"
- ],
- "x-ms-correlation-request-id": [
- "e9ad7949-8380-45e3-ac28-376860ecc030"
- ],
- "x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T001539Z:e9ad7949-8380-45e3-ac28-376860ecc030"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 10 Aug 2022 00:15:38 GMT"
+ "Thu, 29 Sep 2022 20:59:31 GMT"
],
"Content-Length": [
"184"
@@ -3206,20 +3139,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2022-08-09T20:05:36.4524773-04:00\",\r\n \"endTime\": \"2022-08-09T20:15:22.6829311-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2ee8df79-0996-4684-80b9-6f58b9d0eee5\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-09-29T16:50:29.7918273-04:00\",\r\n \"endTime\": \"2022-09-29T16:58:48.5936404-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d46b09fb-b1c0-4d8b-a430-5d8b8209f97c\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/galleries/galleryPsTestGallery5427/images/galleryPsTestGalleryImage2031/versions/1.0.0?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU0MjcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UyMDMxL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/galleries/galleryPsTestGallery1776/images/galleryPsTestGalleryImage8032/versions/1.0.0?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE0MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTE3NzYvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4MDMyL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -3239,29 +3172,29 @@
"a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "e92f8332-3f65-4c91-8814-7d44ef036097"
+ "32f94088-1b43-4e41-a55c-e0eaf8df1930"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11976"
+ "11977"
],
"x-ms-correlation-request-id": [
- "7925ad25-66d6-4157-8817-9e963c8ab2bd"
+ "d98a191b-d762-40b0-b509-2e97c46c9f16"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T001539Z:7925ad25-66d6-4157-8817-9e963c8ab2bd"
+ "CANADACENTRAL:20220929T205932Z:d98a191b-d762-40b0-b509-2e97c46c9f16"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:15:38 GMT"
+ "Thu, 29 Sep 2022 20:59:31 GMT"
],
"Content-Length": [
- "1226"
+ "1277"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3270,26 +3203,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/galleries/galleryPsTestGallery5427/images/galleryPsTestGalleryImage2031/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-08-09T20:05:36.4837561-04:00\",\r\n \"endOfLifeDate\": \"2022-08-19T00:00:00-04:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/images/psTestSourceImage3969\"\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}",
+ "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/galleries/galleryPsTestGallery1776/images/galleryPsTestGalleryImage8032/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-09-29T16:50:29.7918273-04:00\",\r\n \"endOfLifeDate\": \"2022-10-09T00:00:00-04:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/images/psTestSourceImage3402\"\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 \"allowDeletionOfReplicatedLocations\": true\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/galleries/galleryPsTestGallery5427/images/galleryPsTestGalleryImage2031/versions/1.0.0?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU0MjcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UyMDMxL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/galleries/galleryPsTestGallery1776/images/galleryPsTestGalleryImage8032/versions/1.0.0?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE0MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTE3NzYvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4MDMyL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b182688a-0aa2-45da-8a14-051ca0008852"
+ "c74e385e-b7f1-423c-a9e0-126ad32b4d43"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -3309,29 +3242,29 @@
"a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "dcbe30f9-1a9c-46a5-81da-0806e044d909"
+ "6c066d1c-3d25-4a86-84f5-19e302a73d10"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11975"
+ "11976"
],
"x-ms-correlation-request-id": [
- "0ea372e7-33c1-4708-894e-66e3e33e4568"
+ "9ffe4b93-5373-4246-b9a9-43b07832cc36"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T001539Z:0ea372e7-33c1-4708-894e-66e3e33e4568"
+ "CANADACENTRAL:20220929T205932Z:9ffe4b93-5373-4246-b9a9-43b07832cc36"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:15:38 GMT"
+ "Thu, 29 Sep 2022 20:59:31 GMT"
],
"Content-Length": [
- "1226"
+ "1277"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3340,20 +3273,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/galleries/galleryPsTestGallery5427/images/galleryPsTestGalleryImage2031/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-08-09T20:05:36.4837561-04:00\",\r\n \"endOfLifeDate\": \"2022-08-19T00:00:00-04:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/images/psTestSourceImage3969\"\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}",
+ "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/galleries/galleryPsTestGallery1776/images/galleryPsTestGalleryImage8032/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-09-29T16:50:29.7918273-04:00\",\r\n \"endOfLifeDate\": \"2022-10-09T00:00:00-04:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/images/psTestSourceImage3402\"\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 \"allowDeletionOfReplicatedLocations\": true\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/galleries/galleryPsTestGallery5427/images/galleryPsTestGalleryImage2031/versions/1.0.0?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU0MjcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UyMDMxL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/galleries/galleryPsTestGallery1776/images/galleryPsTestGalleryImage8032/versions/1.0.0?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE0MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTE3NzYvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4MDMyL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -3373,29 +3306,29 @@
"a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "35a63197-690f-4884-802b-213581f0a523"
+ "3fbc7075-6bc8-4c40-900b-2d9976e88af1"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11970"
+ "11971"
],
"x-ms-correlation-request-id": [
- "e50265ec-b852-4c53-80bd-9bf3bb517802"
+ "4d4e7a7f-7d9a-4584-a9c9-54cdfe9c7ce6"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T001841Z:e50265ec-b852-4c53-80bd-9bf3bb517802"
+ "CANADACENTRAL:20220929T210234Z:4d4e7a7f-7d9a-4584-a9c9-54cdfe9c7ce6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:18:40 GMT"
+ "Thu, 29 Sep 2022 21:02:33 GMT"
],
"Content-Length": [
- "1226"
+ "1277"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3404,26 +3337,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/galleries/galleryPsTestGallery5427/images/galleryPsTestGalleryImage2031/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-08-09T20:05:36.4837561-04:00\",\r\n \"endOfLifeDate\": \"2022-11-17T00:00:00-05:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/images/psTestSourceImage3969\"\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}",
+ "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/galleries/galleryPsTestGallery1776/images/galleryPsTestGalleryImage8032/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-09-29T16:50:29.7918273-04:00\",\r\n \"endOfLifeDate\": \"2023-01-07T00:00:00-05:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/images/psTestSourceImage3402\"\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 \"allowDeletionOfReplicatedLocations\": true\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/galleries/galleryPsTestGallery5427/images/galleryPsTestGalleryImage2031/versions/1.0.0?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU0MjcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UyMDMxL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/galleries/galleryPsTestGallery1776/images/galleryPsTestGalleryImage8032/versions/1.0.0?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE0MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTE3NzYvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4MDMyL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4fd00259-7717-4ef2-9880-1a571190dc8a"
+ "bc393f5d-9647-4329-99a2-3ba6351f48d1"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -3443,29 +3376,29 @@
"a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "88942152-42df-47ea-a749-b606605c82e1"
+ "8e862c29-be14-497f-a236-4980fdccf0c8"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11969"
+ "11970"
],
"x-ms-correlation-request-id": [
- "80591d3f-b8e7-482d-8169-2bff401553b7"
+ "9d3b8ec4-cb9e-4484-9828-8669963600e8"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T001841Z:80591d3f-b8e7-482d-8169-2bff401553b7"
+ "CANADACENTRAL:20220929T210234Z:9d3b8ec4-cb9e-4484-9828-8669963600e8"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:18:40 GMT"
+ "Thu, 29 Sep 2022 21:02:34 GMT"
],
"Content-Length": [
- "1226"
+ "1277"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3474,26 +3407,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/galleries/galleryPsTestGallery5427/images/galleryPsTestGalleryImage2031/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-08-09T20:05:36.4837561-04:00\",\r\n \"endOfLifeDate\": \"2022-11-17T00:00:00-05:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/images/psTestSourceImage3969\"\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}",
+ "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/galleries/galleryPsTestGallery1776/images/galleryPsTestGalleryImage8032/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-09-29T16:50:29.7918273-04:00\",\r\n \"endOfLifeDate\": \"2023-01-07T00:00:00-05:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/images/psTestSourceImage3402\"\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 \"allowDeletionOfReplicatedLocations\": true\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/galleries/galleryPsTestGallery5427/images/galleryPsTestGalleryImage2031/versions/1.0.0?$expand=ReplicationStatus&api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU0MjcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UyMDMxL3ZlcnNpb25zLzEuMC4wPyRleHBhbmQ9UmVwbGljYXRpb25TdGF0dXMmYXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/galleries/galleryPsTestGallery1776/images/galleryPsTestGalleryImage8032/versions/1.0.0?$expand=ReplicationStatus&api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE0MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTE3NzYvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4MDMyL3ZlcnNpb25zLzEuMC4wPyRleHBhbmQ9UmVwbGljYXRpb25TdGF0dXMmYXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4f0b0c71-5e75-4d65-bb69-304ee4154987"
+ "9f56f172-aed8-420a-8e2f-c498b8dfe846"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -3513,29 +3446,29 @@
"a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "e8ab3b7d-159b-4cdf-8b84-60fcd5b41ccc"
+ "2558c7f2-bdc7-4049-a7c9-123a76924289"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11974"
+ "11975"
],
"x-ms-correlation-request-id": [
- "98d33c02-2852-4fe1-9114-01fb42a7cd62"
+ "1a67e133-5749-4421-aec2-d2af51a19721"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T001539Z:98d33c02-2852-4fe1-9114-01fb42a7cd62"
+ "CANADACENTRAL:20220929T205932Z:1a67e133-5749-4421-aec2-d2af51a19721"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:15:38 GMT"
+ "Thu, 29 Sep 2022 20:59:32 GMT"
],
"Content-Length": [
- "1444"
+ "1495"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3544,20 +3477,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/galleries/galleryPsTestGallery5427/images/galleryPsTestGalleryImage2031/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-08-09T20:05:36.4837561-04:00\",\r\n \"endOfLifeDate\": \"2022-08-19T00:00:00-04:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/images/psTestSourceImage3969\"\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}",
+ "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/galleries/galleryPsTestGallery1776/images/galleryPsTestGalleryImage8032/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-09-29T16:50:29.7918273-04:00\",\r\n \"endOfLifeDate\": \"2022-10-09T00:00:00-04:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/images/psTestSourceImage3402\"\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 \"allowDeletionOfReplicatedLocations\": true\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/8f2fef26-f77b-4c29-8ab9-7de3827b729d?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy84ZjJmZWYyNi1mNzdiLTRjMjktOGFiOS03ZGUzODI3YjcyOWQ/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/25caf3c0-0871-4a00-8295-a5db869fbc4f?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yNWNhZjNjMC0wODcxLTRhMDAtODI5NS1hNWRiODY5ZmJjNGY/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -3571,7 +3504,7 @@
"60"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4175"
+ "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4176"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3580,26 +3513,26 @@
"a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "9ae81e1b-2b4c-42a9-bdbd-75f3d175f915"
+ "7b76f7d2-2697-430d-8744-f999b865d19c"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11973"
+ "11974"
],
"x-ms-correlation-request-id": [
- "49b89497-1138-4953-b759-5b40e1e5d422"
+ "47a5af09-4a45-4079-a4b8-2f93b19bb6ed"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T001640Z:49b89497-1138-4953-b759-5b40e1e5d422"
+ "CANADACENTRAL:20220929T210034Z:47a5af09-4a45-4079-a4b8-2f93b19bb6ed"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:16:39 GMT"
+ "Thu, 29 Sep 2022 21:00:34 GMT"
],
"Content-Length": [
"134"
@@ -3611,20 +3544,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2022-08-09T20:15:40.2462066-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8f2fef26-f77b-4c29-8ab9-7de3827b729d\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-09-29T16:59:33.6580593-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"25caf3c0-0871-4a00-8295-a5db869fbc4f\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/8f2fef26-f77b-4c29-8ab9-7de3827b729d?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy84ZjJmZWYyNi1mNzdiLTRjMjktOGFiOS03ZGUzODI3YjcyOWQ/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/25caf3c0-0871-4a00-8295-a5db869fbc4f?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yNWNhZjNjMC0wODcxLTRhMDAtODI5NS1hNWRiODY5ZmJjNGY/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -3638,7 +3571,7 @@
"60"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4173"
+ "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4174"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3647,26 +3580,26 @@
"a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "a40f583e-9fae-4fe7-a8fd-6d551e7f368d"
+ "4a182292-ad2f-48ac-820c-f5a13e2dfd08"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11972"
+ "11973"
],
"x-ms-correlation-request-id": [
- "ef459a49-8383-42fb-8f48-1d3f51104f5f"
+ "e7584623-0849-46b1-9d0b-740c7c552a0a"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T001741Z:ef459a49-8383-42fb-8f48-1d3f51104f5f"
+ "CANADACENTRAL:20220929T210134Z:e7584623-0849-46b1-9d0b-740c7c552a0a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:17:40 GMT"
+ "Thu, 29 Sep 2022 21:01:34 GMT"
],
"Content-Length": [
"134"
@@ -3678,20 +3611,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2022-08-09T20:15:40.2462066-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8f2fef26-f77b-4c29-8ab9-7de3827b729d\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-09-29T16:59:33.6580593-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"25caf3c0-0871-4a00-8295-a5db869fbc4f\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/8f2fef26-f77b-4c29-8ab9-7de3827b729d?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy84ZjJmZWYyNi1mNzdiLTRjMjktOGFiOS03ZGUzODI3YjcyOWQ/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/25caf3c0-0871-4a00-8295-a5db869fbc4f?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yNWNhZjNjMC0wODcxLTRhMDAtODI5NS1hNWRiODY5ZmJjNGY/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -3702,7 +3635,7 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4171"
+ "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4172"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3711,26 +3644,26 @@
"a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "561398b5-4404-4cfe-a7c6-7dcfa1cae372"
+ "d7070ba6-39fb-49e0-9ac8-b596f66d8f06"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11971"
+ "11972"
],
"x-ms-correlation-request-id": [
- "ee7fcd68-4a98-4195-83a4-b59fa97034a5"
+ "ae5169a6-d72b-408a-8ab8-2c9cf0ff2df2"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T001841Z:ee7fcd68-4a98-4195-83a4-b59fa97034a5"
+ "CANADACENTRAL:20220929T210234Z:ae5169a6-d72b-408a-8ab8-2c9cf0ff2df2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:18:40 GMT"
+ "Thu, 29 Sep 2022 21:02:33 GMT"
],
"Content-Length": [
"184"
@@ -3742,26 +3675,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2022-08-09T20:15:40.2462066-04:00\",\r\n \"endTime\": \"2022-08-09T20:18:10.3770559-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8f2fef26-f77b-4c29-8ab9-7de3827b729d\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-09-29T16:59:33.6580593-04:00\",\r\n \"endTime\": \"2022-09-29T17:02:03.8675892-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"25caf3c0-0871-4a00-8295-a5db869fbc4f\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/galleries/galleryPsTestGallery5427/images/galleryPsTestGalleryImage2031/versions?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU0MjcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UyMDMxL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/galleries/galleryPsTestGallery1776/images/galleryPsTestGalleryImage8032/versions?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE0MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTE3NzYvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4MDMyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d639edf7-e7f2-4c68-a965-ed1653a20e60"
+ "7a880e38-4eaf-44e1-ac93-58517f55c6e8"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -3781,29 +3714,29 @@
"a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "1bd7a6a3-b354-4bee-8f1e-2b6801138eaa"
+ "34506e04-65ed-462f-9612-c37f5a5f276a"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11968"
+ "11969"
],
"x-ms-correlation-request-id": [
- "3dc1735c-28f4-4dbf-8a16-a805edc81d6b"
+ "6acda49c-ad7c-4dbb-ac2e-feb3d5c6f393"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T001841Z:3dc1735c-28f4-4dbf-8a16-a805edc81d6b"
+ "CANADACENTRAL:20220929T210235Z:6acda49c-ad7c-4dbb-ac2e-feb3d5c6f393"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:18:41 GMT"
+ "Thu, 29 Sep 2022 21:02:34 GMT"
],
"Content-Length": [
- "1395"
+ "1450"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3812,26 +3745,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/galleries/galleryPsTestGallery5427/images/galleryPsTestGalleryImage2031/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-08-09T20:05:36.4837561-04:00\",\r\n \"endOfLifeDate\": \"2022-11-17T00:00:00-05:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/images/psTestSourceImage3969\"\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}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/galleries/galleryPsTestGallery1776/images/galleryPsTestGalleryImage8032/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-09-29T16:50:29.7918273-04:00\",\r\n \"endOfLifeDate\": \"2023-01-07T00:00:00-05:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/images/psTestSourceImage3402\"\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 \"allowDeletionOfReplicatedLocations\": true\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/galleries/galleryPsTestGallery5427/images/galleryPsTestGalleryImage2031/versions?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU0MjcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UyMDMxL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/galleries/galleryPsTestGallery1776/images/galleryPsTestGalleryImage8032/versions?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE0MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTE3NzYvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4MDMyL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "13db1443-9fa5-4918-9c34-2514e418fa32"
+ "26c0f809-bd2d-4ef8-9643-05aa3bd6908c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -3851,26 +3784,26 @@
"a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "2f1efa2a-2717-44df-86be-c60227236559"
+ "e6907111-dee9-4b78-9ba0-6d56b5cdda5f"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11964"
+ "11965"
],
"x-ms-correlation-request-id": [
- "a13563b8-19a2-4fa0-a598-d2ed82b67437"
+ "fc460a1b-a7dd-4998-9f06-21dbbe52b127"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T002044Z:a13563b8-19a2-4fa0-a598-d2ed82b67437"
+ "CANADACENTRAL:20220929T210440Z:fc460a1b-a7dd-4998-9f06-21dbbe52b127"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:20:44 GMT"
+ "Thu, 29 Sep 2022 21:04:39 GMT"
],
"Content-Length": [
"19"
@@ -3886,22 +3819,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/galleries/galleryPsTestGallery5427/images/galleryPsTestGalleryImage2031/versions/1.0.0?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU0MjcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UyMDMxL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/galleries/galleryPsTestGallery1776/images/galleryPsTestGalleryImage8032/versions/1.0.0?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE0MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTE3NzYvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4MDMyL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "25d01c8c-d0c5-463d-8378-266748f75d7f"
+ "506790cb-6637-4b2f-b671-c8a0defebe32"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -3912,13 +3845,13 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/a4cff51e-5bbe-4e6e-916c-031eeecaae11?monitor=true&api-version=2022-01-03"
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/5cea8c78-ac25-4c31-9960-a3f79f716bed?monitor=true&api-version=2022-03-03"
],
"Retry-After": [
"60"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/a4cff51e-5bbe-4e6e-916c-031eeecaae11?api-version=2022-01-03"
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/5cea8c78-ac25-4c31-9960-a3f79f716bed?api-version=2022-03-03"
],
"x-ms-ratelimit-remaining-resource": [
"Microsoft.Compute/DeleteGalleryImageVersion3Min;149,Microsoft.Compute/DeleteGalleryImageVersion30Min;999"
@@ -3930,7 +3863,7 @@
"a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "a4cff51e-5bbe-4e6e-916c-031eeecaae11"
+ "5cea8c78-ac25-4c31-9960-a3f79f716bed"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -3940,16 +3873,16 @@
"14999"
],
"x-ms-correlation-request-id": [
- "b7f0d904-b615-4e82-ae17-378be5239f61"
+ "0ba095a9-671f-4ad5-af48-3042a61c577e"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T001844Z:b7f0d904-b615-4e82-ae17-378be5239f61"
+ "CANADACENTRAL:20220929T210239Z:0ba095a9-671f-4ad5-af48-3042a61c577e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:18:43 GMT"
+ "Thu, 29 Sep 2022 21:02:38 GMT"
],
"Expires": [
"-1"
@@ -3962,16 +3895,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/a4cff51e-5bbe-4e6e-916c-031eeecaae11?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hNGNmZjUxZS01YmJlLTRlNmUtOTE2Yy0wMzFlZWVjYWFlMTE/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/5cea8c78-ac25-4c31-9960-a3f79f716bed?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy81Y2VhOGM3OC1hYzI1LTRjMzEtOTk2MC1hM2Y3OWY3MTZiZWQ/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -3985,7 +3918,7 @@
"60"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4169"
+ "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4170"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3994,29 +3927,29 @@
"a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "8e182523-e390-45db-9d4a-97f51306bcb5"
+ "2bff27c9-e560-44f2-8753-a6cfa4cf9ebb"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11967"
+ "11968"
],
"x-ms-correlation-request-id": [
- "ad292cf5-eee4-4b8c-b916-83a9e9a9cce8"
+ "f4057ad8-3531-44ef-ada4-a98c6546e091"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T001944Z:ad292cf5-eee4-4b8c-b916-83a9e9a9cce8"
+ "CANADACENTRAL:20220929T210339Z:f4057ad8-3531-44ef-ada4-a98c6546e091"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:19:43 GMT"
+ "Thu, 29 Sep 2022 21:03:39 GMT"
],
"Content-Length": [
- "133"
+ "134"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4025,20 +3958,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2022-08-09T20:18:44.081593-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a4cff51e-5bbe-4e6e-916c-031eeecaae11\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-09-29T17:02:39.4628314-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5cea8c78-ac25-4c31-9960-a3f79f716bed\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/a4cff51e-5bbe-4e6e-916c-031eeecaae11?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hNGNmZjUxZS01YmJlLTRlNmUtOTE2Yy0wMzFlZWVjYWFlMTE/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/5cea8c78-ac25-4c31-9960-a3f79f716bed?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy81Y2VhOGM3OC1hYzI1LTRjMzEtOTk2MC1hM2Y3OWY3MTZiZWQ/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -4049,7 +3982,7 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4167"
+ "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4168"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4058,29 +3991,29 @@
"a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "6f40a235-3cb0-4c5f-a36f-93651c7eb4a9"
+ "fef87b57-df4d-4eae-9ec0-c8f8ad51e141"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11966"
+ "11967"
],
"x-ms-correlation-request-id": [
- "93d971bc-7e00-4727-80b3-e832ebff990c"
+ "6403399c-cfc0-44a7-86ae-d9b730af3971"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T002044Z:93d971bc-7e00-4727-80b3-e832ebff990c"
+ "CANADACENTRAL:20220929T210439Z:6403399c-cfc0-44a7-86ae-d9b730af3971"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:20:44 GMT"
+ "Thu, 29 Sep 2022 21:04:38 GMT"
],
"Content-Length": [
- "183"
+ "184"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4089,20 +4022,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2022-08-09T20:18:44.081593-04:00\",\r\n \"endTime\": \"2022-08-09T20:20:14.2730505-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a4cff51e-5bbe-4e6e-916c-031eeecaae11\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-09-29T17:02:39.4628314-04:00\",\r\n \"endTime\": \"2022-09-29T17:04:09.6540471-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5cea8c78-ac25-4c31-9960-a3f79f716bed\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/a4cff51e-5bbe-4e6e-916c-031eeecaae11?monitor=true&api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hNGNmZjUxZS01YmJlLTRlNmUtOTE2Yy0wMzFlZWVjYWFlMTE/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDEtMDM=",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/5cea8c78-ac25-4c31-9960-a3f79f716bed?monitor=true&api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy81Y2VhOGM3OC1hYzI1LTRjMzEtOTk2MC1hM2Y3OWY3MTZiZWQ/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -4113,7 +4046,7 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4166"
+ "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4167"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4122,26 +4055,26 @@
"a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "6a024f72-483f-4b53-a8c4-fe9d6df55310"
+ "8a32ad20-7107-4ca0-8b6d-dc510777a8d6"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11965"
+ "11966"
],
"x-ms-correlation-request-id": [
- "93856d36-9e0c-47d7-b905-7c52d6e3b301"
+ "752e76ea-b433-4758-879d-07044dc816d8"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T002044Z:93856d36-9e0c-47d7-b905-7c52d6e3b301"
+ "CANADACENTRAL:20220929T210439Z:752e76ea-b433-4758-879d-07044dc816d8"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:20:44 GMT"
+ "Thu, 29 Sep 2022 21:04:38 GMT"
],
"Expires": [
"-1"
@@ -4154,22 +4087,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/images/psTestSourceImage3969?api-version=2022-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTM5Njk/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/images/psTestSourceImage3402?api-version=2022-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE0MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTM0MDI/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "359901e2-947c-483a-8d44-57ee62466b3b"
+ "e55457d5-c48e-4407-9e86-5e2c1ad83ef7"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -4180,10 +4113,10 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/c9428257-aa34-4f66-ad6b-6ff48d9e4cfb?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&monitor=true&api-version=2022-08-01"
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/84d66ffb-cc01-455d-a314-f197f014a940?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&monitor=true&api-version=2022-08-01"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/c9428257-aa34-4f66-ad6b-6ff48d9e4cfb?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-08-01"
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/84d66ffb-cc01-455d-a314-f197f014a940?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-08-01"
],
"Azure-AsyncNotification": [
"Enabled"
@@ -4195,7 +4128,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c9428257-aa34-4f66-ad6b-6ff48d9e4cfb"
+ "84d66ffb-cc01-455d-a314-f197f014a940"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -4205,16 +4138,16 @@
"14999"
],
"x-ms-correlation-request-id": [
- "3603cf3a-b28a-400d-96e6-e96621fc35a7"
+ "b571b82d-4d24-4d53-a674-3ba6c0d8f599"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T002547Z:3603cf3a-b28a-400d-96e6-e96621fc35a7"
+ "CANADACENTRAL:20220929T210942Z:b571b82d-4d24-4d53-a674-3ba6c0d8f599"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:25:47 GMT"
+ "Thu, 29 Sep 2022 21:09:41 GMT"
],
"Expires": [
"-1"
@@ -4227,22 +4160,22 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/images/psTestSourceImage3969?api-version=2022-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTM5Njk/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/images/psTestSourceImage3402?api-version=2022-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE0MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTM0MDI/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dbaad709-fbe9-4fd3-a915-d6d3c62da6d5"
+ "25af9e91-616d-4dbd-9409-b5e0513d52f1"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -4256,13 +4189,13 @@
"14994"
],
"x-ms-request-id": [
- "9c338bc0-16f2-4b5f-9ed1-9de939b05b51"
+ "e3797f5f-5835-400c-9b5e-ddd74e31a65f"
],
"x-ms-correlation-request-id": [
- "9c338bc0-16f2-4b5f-9ed1-9de939b05b51"
+ "e3797f5f-5835-400c-9b5e-ddd74e31a65f"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T002806Z:9c338bc0-16f2-4b5f-9ed1-9de939b05b51"
+ "CANADACENTRAL:20220929T211226Z:e3797f5f-5835-400c-9b5e-ddd74e31a65f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4271,7 +4204,7 @@
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:28:06 GMT"
+ "Thu, 29 Sep 2022 21:12:26 GMT"
],
"Expires": [
"-1"
@@ -4281,16 +4214,16 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/c9428257-aa34-4f66-ad6b-6ff48d9e4cfb?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2M5NDI4MjU3LWFhMzQtNGY2Ni1hZDZiLTZmZjQ4ZDllNGNmYj9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZhcGktdmVyc2lvbj0yMDIyLTA4LTAx",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/84d66ffb-cc01-455d-a314-f197f014a940?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzg0ZDY2ZmZiLWNjMDEtNDU1ZC1hMzE0LWYxOTdmMDE0YTk0MD9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZhcGktdmVyc2lvbj0yMDIyLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -4307,7 +4240,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a4187036-e4d2-4ba3-8aba-e8096ae1fd36"
+ "36012498-e93c-47be-80d8-bb25a9c1cba0"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -4317,16 +4250,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "27d59370-509e-44ed-bebe-fb746373357c"
+ "4d44de64-23a6-4c53-a4d6-7d93941ba8d0"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T002617Z:27d59370-509e-44ed-bebe-fb746373357c"
+ "CANADACENTRAL:20220929T211012Z:4d44de64-23a6-4c53-a4d6-7d93941ba8d0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:26:17 GMT"
+ "Thu, 29 Sep 2022 21:10:12 GMT"
],
"Content-Length": [
"184"
@@ -4338,20 +4271,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2022-08-09T20:25:47.7346664-04:00\",\r\n \"endTime\": \"2022-08-09T20:25:52.8598408-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c9428257-aa34-4f66-ad6b-6ff48d9e4cfb\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-09-29T17:09:42.3181272-04:00\",\r\n \"endTime\": \"2022-09-29T17:09:47.3965102-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"84d66ffb-cc01-455d-a314-f197f014a940\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/c9428257-aa34-4f66-ad6b-6ff48d9e4cfb?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&monitor=true&api-version=2022-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2M5NDI4MjU3LWFhMzQtNGY2Ni1hZDZiLTZmZjQ4ZDllNGNmYj9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZtb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMi0wOC0wMQ==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/84d66ffb-cc01-455d-a314-f197f014a940?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&monitor=true&api-version=2022-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzg0ZDY2ZmZiLWNjMDEtNDU1ZC1hMzE0LWYxOTdmMDE0YTk0MD9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZtb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMi0wOC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -4368,7 +4301,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "68236e43-ee03-4bac-8d66-af5570b18025"
+ "c0b554c7-e2f3-4904-b137-6747a99b1d59"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -4378,16 +4311,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "c6266e73-3f47-4169-9088-c57bc6ffcfd9"
+ "335d66e4-6fc3-4bee-a098-416df8ab7883"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T002618Z:c6266e73-3f47-4169-9088-c57bc6ffcfd9"
+ "CANADACENTRAL:20220929T211012Z:335d66e4-6fc3-4bee-a098-416df8ab7883"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:26:17 GMT"
+ "Thu, 29 Sep 2022 21:10:12 GMT"
],
"Expires": [
"-1"
@@ -4400,22 +4333,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/virtualMachines/vm2135?api-version=2022-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTIxMzU/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/virtualMachines/vm1684?api-version=2022-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE0MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE2ODQ/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "86e447e3-a89f-4fcb-b0b5-7aff3259f299"
+ "60908fac-d5d8-4c49-afa7-de5c09ed0a73"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -4426,13 +4359,13 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/aceb3e43-79b3-490a-b94c-913c1446a32c?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&monitor=true&api-version=2022-08-01"
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/d0f8aaa0-3c08-4ec7-aeb8-7a1026c64a34?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&monitor=true&api-version=2022-08-01"
],
"Retry-After": [
"10"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/aceb3e43-79b3-490a-b94c-913c1446a32c?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-08-01"
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/d0f8aaa0-3c08-4ec7-aeb8-7a1026c64a34?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-08-01"
],
"Azure-AsyncNotification": [
"Enabled"
@@ -4444,7 +4377,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "aceb3e43-79b3-490a-b94c-913c1446a32c"
+ "d0f8aaa0-3c08-4ec7-aeb8-7a1026c64a34"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -4454,16 +4387,16 @@
"14998"
],
"x-ms-correlation-request-id": [
- "5f4aeed9-b579-4b0b-9986-b238eb747b65"
+ "7cbbccbb-a52e-4fc1-b9dc-007b0ede8c06"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T002620Z:5f4aeed9-b579-4b0b-9986-b238eb747b65"
+ "CANADACENTRAL:20220929T211013Z:7cbbccbb-a52e-4fc1-b9dc-007b0ede8c06"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:26:19 GMT"
+ "Thu, 29 Sep 2022 21:10:13 GMT"
],
"Expires": [
"-1"
@@ -4476,22 +4409,22 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/virtualMachines/vm2135?api-version=2022-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTIxMzU/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/virtualMachines/vm1684?api-version=2022-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE0MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE2ODQ/YXBpLXZlcnNpb249MjAyMi0wOC0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5a9dc7cc-7524-445b-ba0e-b58c5ac28edd"
+ "a7522636-5181-45d5-b732-a12776a0fa86"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -4505,13 +4438,13 @@
"14995"
],
"x-ms-request-id": [
- "ea0d2d89-9d7f-476d-8a69-5094bb0c5b2e"
+ "e659ec06-1a18-48ef-87ec-11701d3b2275"
],
"x-ms-correlation-request-id": [
- "ea0d2d89-9d7f-476d-8a69-5094bb0c5b2e"
+ "e659ec06-1a18-48ef-87ec-11701d3b2275"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T002805Z:ea0d2d89-9d7f-476d-8a69-5094bb0c5b2e"
+ "CANADACENTRAL:20220929T211226Z:e659ec06-1a18-48ef-87ec-11701d3b2275"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4520,7 +4453,7 @@
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:28:05 GMT"
+ "Thu, 29 Sep 2022 21:12:26 GMT"
],
"Expires": [
"-1"
@@ -4530,16 +4463,16 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/aceb3e43-79b3-490a-b94c-913c1446a32c?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2FjZWIzZTQzLTc5YjMtNDkwYS1iOTRjLTkxM2MxNDQ2YTMyYz9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZhcGktdmVyc2lvbj0yMDIyLTA4LTAx",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/d0f8aaa0-3c08-4ec7-aeb8-7a1026c64a34?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2QwZjhhYWEwLTNjMDgtNGVjNy1hZWI4LTdhMTAyNmM2NGEzND9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZhcGktdmVyc2lvbj0yMDIyLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -4559,7 +4492,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6c7aea2f-e23f-411a-8aaf-f821e8b9e595"
+ "8a3044f0-c606-4282-802f-28087937fd58"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -4569,19 +4502,19 @@
"11997"
],
"x-ms-correlation-request-id": [
- "05942c6a-1e14-46ac-b6ce-d4c6c7746516"
+ "80d7998e-8810-4dc7-8517-dd9ab9f9effa"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T002630Z:05942c6a-1e14-46ac-b6ce-d4c6c7746516"
+ "CANADACENTRAL:20220929T211023Z:80d7998e-8810-4dc7-8517-dd9ab9f9effa"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:26:30 GMT"
+ "Thu, 29 Sep 2022 21:10:23 GMT"
],
"Content-Length": [
- "133"
+ "134"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4590,20 +4523,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2022-08-09T20:26:20.282831-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"aceb3e43-79b3-490a-b94c-913c1446a32c\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-09-29T17:10:13.8195744-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d0f8aaa0-3c08-4ec7-aeb8-7a1026c64a34\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/aceb3e43-79b3-490a-b94c-913c1446a32c?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2FjZWIzZTQzLTc5YjMtNDkwYS1iOTRjLTkxM2MxNDQ2YTMyYz9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZhcGktdmVyc2lvbj0yMDIyLTA4LTAx",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/d0f8aaa0-3c08-4ec7-aeb8-7a1026c64a34?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2QwZjhhYWEwLTNjMDgtNGVjNy1hZWI4LTdhMTAyNmM2NGEzND9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZhcGktdmVyc2lvbj0yMDIyLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -4620,7 +4553,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "dcae3df3-7b79-4786-9bb9-9635aea2a6e5"
+ "ebfd6fdc-e354-4bb8-ada2-4b45514ba489"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -4630,19 +4563,19 @@
"11996"
],
"x-ms-correlation-request-id": [
- "4123ffad-ddba-456a-8a69-ee2fa65d3da4"
+ "3996b37d-3623-40e5-b9c6-9fbecc899479"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T002700Z:4123ffad-ddba-456a-8a69-ee2fa65d3da4"
+ "CANADACENTRAL:20220929T211054Z:3996b37d-3623-40e5-b9c6-9fbecc899479"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:26:59 GMT"
+ "Thu, 29 Sep 2022 21:10:53 GMT"
],
"Content-Length": [
- "183"
+ "134"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4651,20 +4584,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2022-08-09T20:26:20.282831-04:00\",\r\n \"endTime\": \"2022-08-09T20:26:51.3152743-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"aceb3e43-79b3-490a-b94c-913c1446a32c\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-09-29T17:10:13.8195744-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d0f8aaa0-3c08-4ec7-aeb8-7a1026c64a34\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/aceb3e43-79b3-490a-b94c-913c1446a32c?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&monitor=true&api-version=2022-08-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2FjZWIzZTQzLTc5YjMtNDkwYS1iOTRjLTkxM2MxNDQ2YTMyYz9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZtb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMi0wOC0wMQ==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/d0f8aaa0-3c08-4ec7-aeb8-7a1026c64a34?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2QwZjhhYWEwLTNjMDgtNGVjNy1hZWI4LTdhMTAyNmM2NGEzND9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZhcGktdmVyc2lvbj0yMDIyLTA4LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -4681,7 +4614,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0515ae83-a225-440a-a02b-a2cbdccfec78"
+ "92696fa0-4890-463f-bc52-8ed355a73d92"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -4691,16 +4624,77 @@
"11995"
],
"x-ms-correlation-request-id": [
- "10556fc2-6d31-409f-b440-3e6b696cca71"
+ "0d209702-3a29-4697-98f7-4c23c1716c52"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T002700Z:10556fc2-6d31-409f-b440-3e6b696cca71"
+ "CANADACENTRAL:20220929T211124Z:0d209702-3a29-4697-98f7-4c23c1716c52"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:26:59 GMT"
+ "Thu, 29 Sep 2022 21:11:24 GMT"
+ ],
+ "Content-Length": [
+ "184"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2022-09-29T17:10:13.8195744-04:00\",\r\n \"endTime\": \"2022-09-29T17:11:07.7904484-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d0f8aaa0-3c08-4ec7-aeb8-7a1026c64a34\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/d0f8aaa0-3c08-4ec7-aeb8-7a1026c64a34?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&monitor=true&api-version=2022-08-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2QwZjhhYWEwLTNjMDgtNGVjNy1hZWI4LTdhMTAyNmM2NGEzND9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZtb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMi0wOC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.41602",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.22000",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29972"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7324cc6d-3cff-4bc8-b43f-b876898bb9c4"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-correlation-request-id": [
+ "b80242d5-13c7-4001-b83f-ba2e120992d7"
+ ],
+ "x-ms-routing-request-id": [
+ "CANADACENTRAL:20220929T211124Z:b80242d5-13c7-4001-b83f-ba2e120992d7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 29 Sep 2022 21:11:24 GMT"
],
"Expires": [
"-1"
@@ -4713,22 +4707,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/galleries/galleryPsTestGallery5427/images/galleryPsTestGalleryImage2031?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU0MjcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UyMDMxP2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/galleries/galleryPsTestGallery1776/images/galleryPsTestGalleryImage8032?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE0MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTE3NzYvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4MDMyP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a2fcc3fd-40bf-4de1-ac36-e6f2f3f56a96"
+ "e3cd87b8-ebc8-48b4-8ed4-d6e92a40d61d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -4739,10 +4733,10 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/e4b8b6ee-044e-4c9a-8757-72bf87791217?monitor=true&api-version=2022-01-03"
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/0ed3918d-4ef6-4f20-b658-d9201436ef7f?monitor=true&api-version=2022-03-03"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/e4b8b6ee-044e-4c9a-8757-72bf87791217?api-version=2022-01-03"
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/0ed3918d-4ef6-4f20-b658-d9201436ef7f?api-version=2022-03-03"
],
"x-ms-ratelimit-remaining-resource": [
"Microsoft.Compute/DeleteGalleryImage3Min;49,Microsoft.Compute/DeleteGalleryImage30Min;299"
@@ -4754,7 +4748,7 @@
"a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "e4b8b6ee-044e-4c9a-8757-72bf87791217"
+ "0ed3918d-4ef6-4f20-b658-d9201436ef7f"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -4764,16 +4758,16 @@
"14997"
],
"x-ms-correlation-request-id": [
- "10f0cb98-3209-49aa-864d-1a5450993866"
+ "f887a643-b4ad-4417-8c8a-030aea3872be"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T002703Z:10f0cb98-3209-49aa-864d-1a5450993866"
+ "CANADACENTRAL:20220929T211125Z:f887a643-b4ad-4417-8c8a-030aea3872be"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:27:02 GMT"
+ "Thu, 29 Sep 2022 21:11:25 GMT"
],
"Expires": [
"-1"
@@ -4786,16 +4780,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/e4b8b6ee-044e-4c9a-8757-72bf87791217?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lNGI4YjZlZS0wNDRlLTRjOWEtODc1Ny03MmJmODc3OTEyMTc/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/0ed3918d-4ef6-4f20-b658-d9201436ef7f?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wZWQzOTE4ZC00ZWY2LTRmMjAtYjY1OC1kOTIwMTQzNmVmN2Y/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -4806,7 +4800,7 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4163"
+ "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4164"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4815,29 +4809,29 @@
"a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "a21d5845-e516-4749-a347-6899d77ab204"
+ "c4411837-1df0-4c7d-980d-d7057ceb98d0"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11993"
],
"x-ms-correlation-request-id": [
- "baf5040b-5597-4612-ae05-edb25a703ca7"
+ "839b78b7-a5b3-4431-9509-6323d3be3782"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T002733Z:baf5040b-5597-4612-ae05-edb25a703ca7"
+ "CANADACENTRAL:20220929T211155Z:839b78b7-a5b3-4431-9509-6323d3be3782"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:27:33 GMT"
+ "Thu, 29 Sep 2022 21:11:55 GMT"
],
"Content-Length": [
- "183"
+ "184"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -4846,20 +4840,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2022-08-09T20:27:03.5566486-04:00\",\r\n \"endTime\": \"2022-08-09T20:27:03.869142-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e4b8b6ee-044e-4c9a-8757-72bf87791217\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-09-29T17:11:25.2817298-04:00\",\r\n \"endTime\": \"2022-09-29T17:11:25.7816943-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0ed3918d-4ef6-4f20-b658-d9201436ef7f\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/e4b8b6ee-044e-4c9a-8757-72bf87791217?monitor=true&api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lNGI4YjZlZS0wNDRlLTRjOWEtODc1Ny03MmJmODc3OTEyMTc/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDEtMDM=",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/0ed3918d-4ef6-4f20-b658-d9201436ef7f?monitor=true&api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wZWQzOTE4ZC00ZWY2LTRmMjAtYjY1OC1kOTIwMTQzNmVmN2Y/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -4870,7 +4864,7 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4162"
+ "Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4163"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -4879,26 +4873,26 @@
"a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "c8e5aa96-3a30-4ad1-a60f-708965f0219e"
+ "0a6dffaa-fcaa-4cd0-8397-a203ba6702ae"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11992"
],
"x-ms-correlation-request-id": [
- "fd17d028-c946-4584-9a7c-3e6535d192da"
+ "ab833369-a32a-462d-9009-91137c06d75b"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T002733Z:fd17d028-c946-4584-9a7c-3e6535d192da"
+ "CANADACENTRAL:20220929T211155Z:ab833369-a32a-462d-9009-91137c06d75b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:27:33 GMT"
+ "Thu, 29 Sep 2022 21:11:55 GMT"
],
"Expires": [
"-1"
@@ -4911,22 +4905,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5837/providers/Microsoft.Compute/galleries/galleryPsTestGallery5427?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU0Mjc/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1409/providers/Microsoft.Compute/galleries/galleryPsTestGallery1776?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE0MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTE3NzY/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dccc3f86-f118-4bf0-9cb0-7c5164d1f8c8"
+ "362bb90e-d82c-4f6e-b38c-cf1ab564b8c0"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -4937,10 +4931,10 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/deab1e74-a038-4c7e-b042-f881ce5a3b83?monitor=true&api-version=2022-01-03"
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/c7a4a004-2c35-4b9b-8da8-9fed7c496767?monitor=true&api-version=2022-03-03"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/deab1e74-a038-4c7e-b042-f881ce5a3b83?api-version=2022-01-03"
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/c7a4a004-2c35-4b9b-8da8-9fed7c496767?api-version=2022-03-03"
],
"x-ms-ratelimit-remaining-resource": [
"Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;299"
@@ -4952,7 +4946,7 @@
"a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "deab1e74-a038-4c7e-b042-f881ce5a3b83"
+ "c7a4a004-2c35-4b9b-8da8-9fed7c496767"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -4962,16 +4956,16 @@
"14996"
],
"x-ms-correlation-request-id": [
- "772654e8-7d07-483c-a234-181cd21f76de"
+ "ad0add04-d9bf-4717-9625-4c5e2c6c4567"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T002735Z:772654e8-7d07-483c-a234-181cd21f76de"
+ "CANADACENTRAL:20220929T211156Z:ad0add04-d9bf-4717-9625-4c5e2c6c4567"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:27:35 GMT"
+ "Thu, 29 Sep 2022 21:11:56 GMT"
],
"Expires": [
"-1"
@@ -4984,16 +4978,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/deab1e74-a038-4c7e-b042-f881ce5a3b83?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9kZWFiMWU3NC1hMDM4LTRjN2UtYjA0Mi1mODgxY2U1YTNiODM/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/c7a4a004-2c35-4b9b-8da8-9fed7c496767?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9jN2E0YTAwNC0yYzM1LTRiOWItOGRhOC05ZmVkN2M0OTY3Njc/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -5004,7 +4998,7 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4160"
+ "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4161"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5013,26 +5007,26 @@
"a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "a5ea9172-d1cc-4d39-90fd-5cb6a9541afb"
+ "31cc7086-3817-494c-8ac8-a232ce0fb057"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11991"
],
"x-ms-correlation-request-id": [
- "4f3f7b53-ad17-460b-8ac7-b445cecc1259"
+ "820a0435-ad80-4fc0-b67e-161adfa588d2"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T002805Z:4f3f7b53-ad17-460b-8ac7-b445cecc1259"
+ "CANADACENTRAL:20220929T211226Z:820a0435-ad80-4fc0-b67e-161adfa588d2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:28:05 GMT"
+ "Thu, 29 Sep 2022 21:12:26 GMT"
],
"Content-Length": [
"184"
@@ -5044,20 +5038,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2022-08-09T20:27:34.5579909-04:00\",\r\n \"endTime\": \"2022-08-09T20:27:35.3705044-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"deab1e74-a038-4c7e-b042-f881ce5a3b83\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-09-29T17:11:56.5172993-04:00\",\r\n \"endTime\": \"2022-09-29T17:11:56.6422897-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c7a4a004-2c35-4b9b-8da8-9fed7c496767\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/deab1e74-a038-4c7e-b042-f881ce5a3b83?monitor=true&api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9kZWFiMWU3NC1hMDM4LTRjN2UtYjA0Mi1mODgxY2U1YTNiODM/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDEtMDM=",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/c7a4a004-2c35-4b9b-8da8-9fed7c496767?monitor=true&api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9jN2E0YTAwNC0yYzM1LTRiOWItOGRhOC05ZmVkN2M0OTY3Njc/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.30802",
+ "FxVersion/4.700.22.41602",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/59.0.0"
]
},
"ResponseHeaders": {
@@ -5068,7 +5062,7 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4159"
+ "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4160"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -5077,26 +5071,26 @@
"a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "29521b74-5d38-46cb-9b92-c137cc429c21"
+ "6a539858-5538-4d61-b6a0-0795ddf73455"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11990"
],
"x-ms-correlation-request-id": [
- "ee815f77-f616-4eef-8632-975c28229b49"
+ "1d4df965-e294-4223-9a5e-3ff9210054c6"
],
"x-ms-routing-request-id": [
- "CANADACENTRAL:20220810T002805Z:ee815f77-f616-4eef-8632-975c28229b49"
+ "CANADACENTRAL:20220929T211226Z:1d4df965-e294-4223-9a5e-3ff9210054c6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 10 Aug 2022 00:28:05 GMT"
+ "Thu, 29 Sep 2022 21:12:26 GMT"
],
"Expires": [
"-1"
@@ -5111,33 +5105,33 @@
],
"Names": {
"GalleryImageVersion_CRUD_Tests": [
- "galleryPsTestRg5837",
- "psTestSourceImage3969",
- "galleryPsTestGallery5427",
- "galleryPsTestGalleryImage2031"
+ "galleryPsTestRg1409",
+ "psTestSourceImage3402",
+ "galleryPsTestGallery1776",
+ "galleryPsTestGalleryImage8032"
],
"CreateCRPImage": [
- "saforgallery561",
- "asforgallery9710"
+ "saforgallery8867",
+ "asforgallery2770"
],
"CreatePublicIP": [
- "pip5732",
- "dn6182"
+ "pip7466",
+ "dn9526"
],
"CreateVNET": [
- "vn1199",
- "sn6161"
+ "vn4486",
+ "sn5952"
],
"CreateNIC": [
- "nic6135",
- "ip3542"
+ "nic2967",
+ "ip3478"
],
"CreateDefaultVMInput": [
- "crptestar284",
- "crptestar7058",
- "crptestar518",
- "vm2135",
- "Microsoft.Compute/virtualMachines5650"
+ "crptestar1058",
+ "crptestar9114",
+ "crptestar3849",
+ "vm1684",
+ "Microsoft.Compute/virtualMachines8920"
]
},
"Variables": {
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 afa18ee09b49..19dac957f1ef 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/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/galleryPsTestRg716?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzcxNj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg5537?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mzc/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e9bd29d4-9b0f-4074-9794-4411e2db7ac9"
+ "8dcd9b2f-1ec8-444b-9171-4d3f611d594f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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": [
@@ -36,13 +36,13 @@
"1199"
],
"x-ms-request-id": [
- "bfb9cb6d-62a9-4b48-9e36-953ff001d1c2"
+ "8e936ece-c88a-4e5e-94ae-2406bbfdf199"
],
"x-ms-correlation-request-id": [
- "bfb9cb6d-62a9-4b48-9e36-953ff001d1c2"
+ "8e936ece-c88a-4e5e-94ae-2406bbfdf199"
],
"x-ms-routing-request-id": [
- "SOUTHCENTRALUS:20220311T002727Z:bfb9cb6d-62a9-4b48-9e36-953ff001d1c2"
+ "WESTCENTRALUS:20220813T001716Z:8e936ece-c88a-4e5e-94ae-2406bbfdf199"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -51,10 +51,10 @@
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 00:27:26 GMT"
+ "Sat, 13 Aug 2022 00:17:15 GMT"
],
"Content-Length": [
- "190"
+ "192"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -63,26 +63,26 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5537\",\r\n \"name\": \"galleryPsTestRg5537\",\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/galleryPsTestRg716/providers/Microsoft.Compute/galleries/galleryPsTestGallery1768?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTc2OD9hcGktdmVyc2lvbj0yMDIyLTAxLTAz",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5537/providers/Microsoft.Compute/galleries/galleryPsTestGallery4052?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQwNTI/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"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": [
- "71e47b80-d3a8-498d-90b2-e7507ea137d7"
+ "144162cd-342a-4044-a5d8-cef70c2cc587"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.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/a953e56c-2354-4887-a1f4-87be97632f32?api-version=2022-01-03"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/93b85236-9fa2-4e38-90fd-e01451e3b46e?api-version=2022-03-03"
],
"x-ms-ratelimit-remaining-resource": [
"Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;294"
@@ -108,10 +108,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_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "a953e56c-2354-4887-a1f4-87be97632f32"
+ "93b85236-9fa2-4e38-90fd-e01451e3b46e"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -121,19 +121,19 @@
"1199"
],
"x-ms-correlation-request-id": [
- "cf780255-f503-4065-8997-87ad50eb148a"
+ "e82a5463-b929-453f-bef5-ea5e7b3ea898"
],
"x-ms-routing-request-id": [
- "SOUTHCENTRALUS:20220311T002731Z:cf780255-f503-4065-8997-87ad50eb148a"
+ "WESTCENTRALUS:20220813T001719Z:e82a5463-b929-453f-bef5-ea5e7b3ea898"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 00:27:30 GMT"
+ "Sat, 13 Aug 2022 00:17:18 GMT"
],
"Content-Length": [
- "507"
+ "508"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -142,20 +142,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery4052\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5537/providers/Microsoft.Compute/galleries/galleryPsTestGallery4052\",\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-GALLERYPSTESTGALLERY4052\"\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/a953e56c-2354-4887-a1f4-87be97632f32?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hOTUzZTU2Yy0yMzU0LTQ4ODctYTFmNC04N2JlOTc2MzJmMzI/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/93b85236-9fa2-4e38-90fd-e01451e3b46e?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy85M2I4NTIzNi05ZmEyLTRlMzgtOTBmZC1lMDE0NTFlM2I0NmU/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -166,16 +166,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4148"
+ "Microsoft.Compute/GetOperationStatus3Min;1179,Microsoft.Compute/GetOperationStatus30Min;4098"
],
"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_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "4b3316dd-0a77-402a-9961-a2b67e9355d6"
+ "ce0bc963-f145-4133-a49a-9e9e3f37f40d"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -185,19 +185,19 @@
"11999"
],
"x-ms-correlation-request-id": [
- "eb19e665-a8f6-4bcb-8f76-a587f60f11f4"
+ "14c33598-c47e-4e9a-9fe9-1e12cb046087"
],
"x-ms-routing-request-id": [
- "SOUTHCENTRALUS:20220311T002801Z:eb19e665-a8f6-4bcb-8f76-a587f60f11f4"
+ "WESTCENTRALUS:20220813T001749Z:14c33598-c47e-4e9a-9fe9-1e12cb046087"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 00:28:01 GMT"
+ "Sat, 13 Aug 2022 00:17:49 GMT"
],
"Content-Length": [
- "184"
+ "183"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -206,20 +206,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:17:18.7145382-07:00\",\r\n \"endTime\": \"2022-08-12T17:17:19.011421-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"93b85236-9fa2-4e38-90fd-e01451e3b46e\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg716/providers/Microsoft.Compute/galleries/galleryPsTestGallery1768?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTc2OD9hcGktdmVyc2lvbj0yMDIyLTAxLTAz",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5537/providers/Microsoft.Compute/galleries/galleryPsTestGallery4052?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQwNTI/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -230,16 +230,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetGallery3Min;341,Microsoft.Compute/GetGallery30Min;2423"
+ "Microsoft.Compute/GetGallery3Min;344,Microsoft.Compute/GetGallery30Min;2449"
],
"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_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "6d938881-a69e-4637-8134-ba1fa659fdd7"
+ "520e6db8-cd2e-4622-8cc6-e793e0c523e3"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -249,19 +249,19 @@
"11998"
],
"x-ms-correlation-request-id": [
- "17b0b49c-ba88-4a73-b7b5-b22c8ab4097a"
+ "ebce38ad-9cfb-4a76-ba6b-21c73c58b470"
],
"x-ms-routing-request-id": [
- "SOUTHCENTRALUS:20220311T002801Z:17b0b49c-ba88-4a73-b7b5-b22c8ab4097a"
+ "WESTCENTRALUS:20220813T001749Z:ebce38ad-9cfb-4a76-ba6b-21c73c58b470"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 00:28:01 GMT"
+ "Sat, 13 Aug 2022 00:17:49 GMT"
],
"Content-Length": [
- "508"
+ "509"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -270,26 +270,26 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery4052\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5537/providers/Microsoft.Compute/galleries/galleryPsTestGallery4052\",\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-GALLERYPSTESTGALLERY4052\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg716/providers/Microsoft.Compute/galleries/galleryPsTestGallery1768/images/galleryPsTestGalleryImage3222?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTc2OC9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTMyMjI/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5537/providers/Microsoft.Compute/galleries/galleryPsTestGallery4052/images/galleryPsTestGalleryImage3114?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQwNTIvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzMTE0P2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"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": [
- "eaa911b3-5374-4b29-b44f-2aaad6417d3c"
+ "9c23454c-3bab-44c1-a6ee-cd6568da9517"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -306,7 +306,7 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "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"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/cccb8cfa-309d-4db7-a677-86dcdc628a08?api-version=2022-03-03"
],
"x-ms-ratelimit-remaining-resource": [
"Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;746"
@@ -315,10 +315,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_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "a2d94d26-0cdc-446f-8133-2e6e966bd6d8"
+ "cccb8cfa-309d-4db7-a677-86dcdc628a08"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -328,19 +328,19 @@
"1198"
],
"x-ms-correlation-request-id": [
- "d8d2df17-b9f2-4312-8fd3-11a25f4c38a6"
+ "27e5ce1d-1eaa-4ad2-8d8f-3749c8487db2"
],
"x-ms-routing-request-id": [
- "SOUTHCENTRALUS:20220311T002802Z:d8d2df17-b9f2-4312-8fd3-11a25f4c38a6"
+ "WESTCENTRALUS:20220813T001750Z:27e5ce1d-1eaa-4ad2-8d8f-3749c8487db2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 00:28:02 GMT"
+ "Sat, 13 Aug 2022 00:17:50 GMT"
],
"Content-Length": [
- "673"
+ "674"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -349,26 +349,26 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage3114\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5537/providers/Microsoft.Compute/galleries/galleryPsTestGallery4052/images/galleryPsTestGalleryImage3114\",\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/resourceGroups/galleryPsTestRg716/providers/Microsoft.Compute/galleries/galleryPsTestGallery1768/images/galleryPsTestGalleryImage3222?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTc2OC9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTMyMjI/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5537/providers/Microsoft.Compute/galleries/galleryPsTestGallery4052/images/galleryPsTestGalleryImage3114?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQwNTIvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzMTE0P2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"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": [
- "6610f6d3-6b29-42e7-a20c-40533a933b86"
+ "b8a2518d-8db1-4030-b205-1e6271a998e7"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -385,7 +385,7 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "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"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/8bd8b52f-f3c3-4398-a4b9-f3d28917def5?api-version=2022-03-03"
],
"x-ms-ratelimit-remaining-resource": [
"Microsoft.Compute/CreateUpdateGalleryImage3Min;148,Microsoft.Compute/CreateUpdateGalleryImage30Min;745"
@@ -394,10 +394,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_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "f8a6b03f-432f-438f-8d5b-2337bc037ceb"
+ "8bd8b52f-f3c3-4398-a4b9-f3d28917def5"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -407,19 +407,19 @@
"1197"
],
"x-ms-correlation-request-id": [
- "1dbbb354-9cf2-4448-b578-f2a8be0268af"
+ "8ba53ae9-8cc1-465b-a836-f28784cdf465"
],
"x-ms-routing-request-id": [
- "SOUTHCENTRALUS:20220311T002834Z:1dbbb354-9cf2-4448-b578-f2a8be0268af"
+ "WESTCENTRALUS:20220813T001821Z:8ba53ae9-8cc1-465b-a836-f28784cdf465"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 00:28:34 GMT"
+ "Sat, 13 Aug 2022 00:18:21 GMT"
],
"Content-Length": [
- "655"
+ "656"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -428,20 +428,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage3114\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5537/providers/Microsoft.Compute/galleries/galleryPsTestGallery4052/images/galleryPsTestGalleryImage3114\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/a2d94d26-0cdc-446f-8133-2e6e966bd6d8?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hMmQ5NGQyNi0wY2RjLTQ0NmYtODEzMy0yZTZlOTY2YmQ2ZDg/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/cccb8cfa-309d-4db7-a677-86dcdc628a08?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9jY2NiOGNmYS0zMDlkLTRkYjctYTY3Ny04NmRjZGM2MjhhMDg/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -452,16 +452,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4146"
+ "Microsoft.Compute/GetOperationStatus3Min;1181,Microsoft.Compute/GetOperationStatus30Min;4095"
],
"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_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "4ddf5447-dc61-4538-acc2-505377349882"
+ "00dc58f0-1e41-4eb5-b9a4-72c82e2f876c"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -471,16 +471,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "963fc1c6-763b-49d9-88fa-35cb19406517"
+ "b826a1e8-2e52-4430-a81e-0ef67dc00404"
],
"x-ms-routing-request-id": [
- "SOUTHCENTRALUS:20220311T002833Z:963fc1c6-763b-49d9-88fa-35cb19406517"
+ "WESTCENTRALUS:20220813T001821Z:b826a1e8-2e52-4430-a81e-0ef67dc00404"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 00:28:32 GMT"
+ "Sat, 13 Aug 2022 00:18:20 GMT"
],
"Content-Length": [
"184"
@@ -492,20 +492,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:17:50.6522218-07:00\",\r\n \"endTime\": \"2022-08-12T17:17:50.7771967-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"cccb8cfa-309d-4db7-a677-86dcdc628a08\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg716/providers/Microsoft.Compute/galleries/galleryPsTestGallery1768/images/galleryPsTestGalleryImage3222?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTc2OC9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTMyMjI/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5537/providers/Microsoft.Compute/galleries/galleryPsTestGallery4052/images/galleryPsTestGalleryImage3114?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQwNTIvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzMTE0P2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -516,16 +516,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetGalleryImage3Min;592,Microsoft.Compute/GetGalleryImage30Min;2934"
+ "Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2971"
],
"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_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "8481373b-87aa-40df-b01f-bd44f107a5ba"
+ "7f9c5db5-f4ef-44d2-b9c0-b80c5c3a9663"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -535,19 +535,19 @@
"11996"
],
"x-ms-correlation-request-id": [
- "c88a6cdf-31ae-40be-8eba-2fedf2133bbc"
+ "064fd41d-71c1-4d2f-99fe-c563b7208f98"
],
"x-ms-routing-request-id": [
- "SOUTHCENTRALUS:20220311T002833Z:c88a6cdf-31ae-40be-8eba-2fedf2133bbc"
+ "WESTCENTRALUS:20220813T001821Z:064fd41d-71c1-4d2f-99fe-c563b7208f98"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 00:28:33 GMT"
+ "Sat, 13 Aug 2022 00:18:20 GMT"
],
"Content-Length": [
- "674"
+ "675"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -556,26 +556,26 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage3114\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5537/providers/Microsoft.Compute/galleries/galleryPsTestGallery4052/images/galleryPsTestGalleryImage3114\",\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/galleryPsTestRg716/providers/Microsoft.Compute/galleries/galleryPsTestGallery1768/images/galleryPsTestGalleryImage3222?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTc2OC9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTMyMjI/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5537/providers/Microsoft.Compute/galleries/galleryPsTestGallery4052/images/galleryPsTestGalleryImage3114?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQwNTIvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzMTE0P2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bbe16ed8-ba8f-4d21-8ddd-ec1646d3b651"
+ "d9c3d6fe-b4dd-4aab-b8b5-918b5f342a6d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -586,16 +586,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetGalleryImage3Min;591,Microsoft.Compute/GetGalleryImage30Min;2933"
+ "Microsoft.Compute/GetGalleryImage3Min;595,Microsoft.Compute/GetGalleryImage30Min;2970"
],
"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_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "4989c83d-4402-4234-a511-c62dd9f214f3"
+ "653bca32-b95a-49bc-aa15-0d1898d404fe"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -605,19 +605,19 @@
"11995"
],
"x-ms-correlation-request-id": [
- "8eafc3be-0a86-47f0-8496-6b6f43ab5b06"
+ "5a69b3f7-6d04-4713-8893-3f9b92a583b4"
],
"x-ms-routing-request-id": [
- "SOUTHCENTRALUS:20220311T002833Z:8eafc3be-0a86-47f0-8496-6b6f43ab5b06"
+ "WESTCENTRALUS:20220813T001821Z:5a69b3f7-6d04-4713-8893-3f9b92a583b4"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 00:28:33 GMT"
+ "Sat, 13 Aug 2022 00:18:21 GMT"
],
"Content-Length": [
- "674"
+ "675"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -626,20 +626,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage3114\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5537/providers/Microsoft.Compute/galleries/galleryPsTestGallery4052/images/galleryPsTestGalleryImage3114\",\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/galleryPsTestRg716/providers/Microsoft.Compute/galleries/galleryPsTestGallery1768/images/galleryPsTestGalleryImage3222?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTc2OC9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTMyMjI/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5537/providers/Microsoft.Compute/galleries/galleryPsTestGallery4052/images/galleryPsTestGalleryImage3114?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQwNTIvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzMTE0P2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -650,16 +650,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetGalleryImage3Min;587,Microsoft.Compute/GetGalleryImage30Min;2928"
+ "Microsoft.Compute/GetGalleryImage3Min;591,Microsoft.Compute/GetGalleryImage30Min;2966"
],
"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_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "9b97f33f-7b85-488d-811d-0fba4d165f8f"
+ "79595ff5-8d4c-41b9-b726-c35eb3d075cc"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -669,19 +669,19 @@
"11993"
],
"x-ms-correlation-request-id": [
- "6fe8bf50-c97d-48f1-b0e9-e1fd38e84b5a"
+ "82dbe9f6-8816-4781-8dbf-dd650d7d4a53"
],
"x-ms-routing-request-id": [
- "SOUTHCENTRALUS:20220311T002904Z:6fe8bf50-c97d-48f1-b0e9-e1fd38e84b5a"
+ "WESTCENTRALUS:20220813T001852Z:82dbe9f6-8816-4781-8dbf-dd650d7d4a53"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 00:29:04 GMT"
+ "Sat, 13 Aug 2022 00:18:51 GMT"
],
"Content-Length": [
- "656"
+ "657"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -690,26 +690,26 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage3114\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5537/providers/Microsoft.Compute/galleries/galleryPsTestGallery4052/images/galleryPsTestGalleryImage3114\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg716/providers/Microsoft.Compute/galleries/galleryPsTestGallery1768/images/galleryPsTestGalleryImage3222?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTc2OC9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTMyMjI/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5537/providers/Microsoft.Compute/galleries/galleryPsTestGallery4052/images/galleryPsTestGalleryImage3114?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQwNTIvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzMTE0P2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4b566bfd-b9f1-46e2-971f-9671e018b8a3"
+ "00db8258-8723-43d0-b4a9-be2e7d7e9be7"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -720,16 +720,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetGalleryImage3Min;585,Microsoft.Compute/GetGalleryImage30Min;2926"
+ "Microsoft.Compute/GetGalleryImage3Min;590,Microsoft.Compute/GetGalleryImage30Min;2965"
],
"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_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "16e29afb-ab55-4416-8ccd-87d17e93e608"
+ "3b2afd16-0576-44f1-92c9-581aeddcdea4"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -739,19 +739,19 @@
"11992"
],
"x-ms-correlation-request-id": [
- "c124f949-182d-413c-b790-401cf02d589c"
+ "fcc12355-a58f-45b1-96da-ef7ce4853918"
],
"x-ms-routing-request-id": [
- "SOUTHCENTRALUS:20220311T002904Z:c124f949-182d-413c-b790-401cf02d589c"
+ "WESTCENTRALUS:20220813T001852Z:fcc12355-a58f-45b1-96da-ef7ce4853918"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 00:29:04 GMT"
+ "Sat, 13 Aug 2022 00:18:51 GMT"
],
"Content-Length": [
- "656"
+ "657"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -760,20 +760,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage3114\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5537/providers/Microsoft.Compute/galleries/galleryPsTestGallery4052/images/galleryPsTestGalleryImage3114\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/f8a6b03f-432f-438f-8d5b-2337bc037ceb?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mOGE2YjAzZi00MzJmLTQzOGYtOGQ1Yi0yMzM3YmMwMzdjZWI/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/8bd8b52f-f3c3-4398-a4b9-f3d28917def5?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy84YmQ4YjUyZi1mM2MzLTQzOTgtYTRiOS1mM2QyODkxN2RlZjU/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -784,16 +784,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4144"
+ "Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4093"
],
"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_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "64f00c24-eb1d-47e3-93a9-f78aa3d9350f"
+ "da337d80-970f-4289-bdaa-bd4e6184a835"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -803,16 +803,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "b297a573-de43-4f88-a7c8-4b2422ef48bf"
+ "011569d4-a7ae-4b93-8849-44fb01ca9ba1"
],
"x-ms-routing-request-id": [
- "SOUTHCENTRALUS:20220311T002904Z:b297a573-de43-4f88-a7c8-4b2422ef48bf"
+ "WESTCENTRALUS:20220813T001852Z:011569d4-a7ae-4b93-8849-44fb01ca9ba1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 00:29:04 GMT"
+ "Sat, 13 Aug 2022 00:18:51 GMT"
],
"Content-Length": [
"184"
@@ -824,26 +824,26 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:18:21.8398837-07:00\",\r\n \"endTime\": \"2022-08-12T17:18:21.8867629-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8bd8b52f-f3c3-4398-a4b9-f3d28917def5\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg716/providers/Microsoft.Compute/galleries/galleryPsTestGallery1768/images?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTc2OC9pbWFnZXM/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5537/providers/Microsoft.Compute/galleries/galleryPsTestGallery4052/images?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQwNTIvaW1hZ2VzP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ab4cdf74-da24-4279-9449-57f217ebe37c"
+ "1b1ea7b5-d535-48bc-9600-d5519704f38a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -853,97 +853,67 @@
"Pragma": [
"no-cache"
],
- "x-ms-original-request-ids": [
- "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-resource": [
+ "Microsoft.Compute/ListGalleryImagesInGallery3Min;1499,Microsoft.Compute/ListGalleryImagesInGallery30Min;9998"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "163d52cd-c241-4c2b-a356-d2f7fc603bc7"
+ "497cdcbc-e1e9-4191-b120-a3dc318276ee"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
],
"x-ms-correlation-request-id": [
- "163d52cd-c241-4c2b-a356-d2f7fc603bc7"
+ "259ce2bd-0545-48d5-be1a-a739b1c13648"
],
"x-ms-routing-request-id": [
- "SOUTHCENTRALUS:20220311T002906Z:163d52cd-c241-4c2b-a356-d2f7fc603bc7"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "WESTCENTRALUS:20220813T001852Z:259ce2bd-0545-48d5-be1a-a739b1c13648"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 00:29:05 GMT"
+ "Sat, 13 Aug 2022 00:18:51 GMT"
+ ],
+ "Content-Length": [
+ "758"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "1223"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"galleryPsTestGalleryImage3114\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5537/providers/Microsoft.Compute/galleries/galleryPsTestGallery4052/images/galleryPsTestGalleryImage3114\",\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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg716/providers/Microsoft.Compute/galleries/galleryPsTestGallery1768/images?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTc2OC9pbWFnZXM/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5537/providers/Microsoft.Compute/galleries/galleryPsTestGallery4052/images?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQwNTIvaW1hZ2VzP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "08d74337-e3eb-47b9-adf7-962ebfb9877c"
+ "e819cad2-9e47-43da-ac0d-360889fce487"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -953,57 +923,17 @@
"Pragma": [
"no-cache"
],
- "x-ms-original-request-ids": [
- "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": [
- "93ba7e18-e222-4708-bf59-53fb62d49273"
+ "c1fa2fd0-2756-4fec-ab14-fdaa7e005cfa"
],
"x-ms-correlation-request-id": [
- "93ba7e18-e222-4708-bf59-53fb62d49273"
+ "c1fa2fd0-2756-4fec-ab14-fdaa7e005cfa"
],
"x-ms-routing-request-id": [
- "SOUTHCENTRALUS:20220311T002937Z:93ba7e18-e222-4708-bf59-53fb62d49273"
+ "WESTCENTRALUS:20220813T001923Z:c1fa2fd0-2756-4fec-ab14-fdaa7e005cfa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1012,7 +942,7 @@
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 00:29:37 GMT"
+ "Sat, 13 Aug 2022 00:19:22 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1021,29 +951,29 @@
"-1"
],
"Content-Length": [
- "680"
+ "12"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg716/providers/Microsoft.Compute/galleries/galleryPsTestGallery1768/images/galleryPsTestGalleryImage3222?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTc2OC9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTMyMjI/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5537/providers/Microsoft.Compute/galleries/galleryPsTestGallery4052/images/galleryPsTestGalleryImage3114?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQwNTIvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzMTE0P2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8ed4a88a-16e4-4b2a-9bd4-ad5ff38ff993"
+ "78c1a94d-8fc9-461f-a054-56d6ff7bd2a7"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -1054,10 +984,10 @@
"no-cache"
],
"Location": [
- "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"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/f8b8494b-fac0-4671-b742-5682da672a0c?monitor=true&api-version=2022-03-03"
],
"Azure-AsyncOperation": [
- "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"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/f8b8494b-fac0-4671-b742-5682da672a0c?api-version=2022-03-03"
],
"x-ms-ratelimit-remaining-resource": [
"Microsoft.Compute/DeleteGalleryImage3Min;49,Microsoft.Compute/DeleteGalleryImage30Min;297"
@@ -1066,10 +996,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_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "be34c56b-659d-4a0e-ae20-1a39f9471575"
+ "f8b8494b-fac0-4671-b742-5682da672a0c"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -1079,16 +1009,16 @@
"14999"
],
"x-ms-correlation-request-id": [
- "0e28fdc7-a265-491a-9eeb-f050b347f623"
+ "b48bd16d-d248-4a6b-9d9d-02b77421de22"
],
"x-ms-routing-request-id": [
- "SOUTHCENTRALUS:20220311T002906Z:0e28fdc7-a265-491a-9eeb-f050b347f623"
+ "WESTCENTRALUS:20220813T001853Z:b48bd16d-d248-4a6b-9d9d-02b77421de22"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 00:29:05 GMT"
+ "Sat, 13 Aug 2022 00:18:52 GMT"
],
"Expires": [
"-1"
@@ -1101,16 +1031,16 @@
"StatusCode": 202
},
{
- "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==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/f8b8494b-fac0-4671-b742-5682da672a0c?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mOGI4NDk0Yi1mYWMwLTQ2NzEtYjc0Mi01NjgyZGE2NzJhMGM/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -1121,16 +1051,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4142"
+ "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4090"
],
"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_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "19cac86e-6f76-41c2-aa51-f46ade863ffd"
+ "00611083-7e15-4d1c-a6f5-fb2a27e3d9d9"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -1140,19 +1070,19 @@
"11990"
],
"x-ms-correlation-request-id": [
- "8cd9b549-e351-492a-8cfc-9c3adfe300d6"
+ "939ea10f-61bc-45a2-8cf9-4cf78322449d"
],
"x-ms-routing-request-id": [
- "SOUTHCENTRALUS:20220311T002936Z:8cd9b549-e351-492a-8cfc-9c3adfe300d6"
+ "WESTCENTRALUS:20220813T001923Z:939ea10f-61bc-45a2-8cf9-4cf78322449d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 00:29:36 GMT"
+ "Sat, 13 Aug 2022 00:19:22 GMT"
],
"Content-Length": [
- "183"
+ "182"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1161,20 +1091,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:18:53.0119669-07:00\",\r\n \"endTime\": \"2022-08-12T17:18:53.13693-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f8b8494b-fac0-4671-b742-5682da672a0c\"\r\n}",
"StatusCode": 200
},
{
- "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=",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/f8b8494b-fac0-4671-b742-5682da672a0c?monitor=true&api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mOGI4NDk0Yi1mYWMwLTQ2NzEtYjc0Mi01NjgyZGE2NzJhMGM/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -1185,16 +1115,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4141"
+ "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4089"
],
"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_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "4edb2e1d-0d6e-4828-9c20-e22ad3eca9ef"
+ "73d32349-1e53-4d02-8fbf-dfba1bc4898f"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -1204,16 +1134,16 @@
"11989"
],
"x-ms-correlation-request-id": [
- "6c8361af-ad23-4a30-b305-396c41f9c419"
+ "2c797a96-d44f-4b16-9059-6e74241ded94"
],
"x-ms-routing-request-id": [
- "SOUTHCENTRALUS:20220311T002937Z:6c8361af-ad23-4a30-b305-396c41f9c419"
+ "WESTCENTRALUS:20220813T001923Z:2c797a96-d44f-4b16-9059-6e74241ded94"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 00:29:36 GMT"
+ "Sat, 13 Aug 2022 00:19:22 GMT"
],
"Expires": [
"-1"
@@ -1226,22 +1156,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg716/providers/Microsoft.Compute/galleries/galleryPsTestGallery1768?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzcxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTc2OD9hcGktdmVyc2lvbj0yMDIyLTAxLTAz",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5537/providers/Microsoft.Compute/galleries/galleryPsTestGallery4052?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQwNTI/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ec4a3c42-1a4f-4ca1-977b-de90b8760946"
+ "e644073a-c926-4d33-b74f-db3e581af0d9"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -1252,22 +1182,22 @@
"no-cache"
],
"Location": [
- "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"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/9fe1ee87-6b77-4113-a00d-9d69bdcf2458?monitor=true&api-version=2022-03-03"
],
"Azure-AsyncOperation": [
- "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"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/9fe1ee87-6b77-4113-a00d-9d69bdcf2458?api-version=2022-03-03"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;295"
+ "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;894"
],
"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_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "605c9513-b465-4c4a-8b94-4d63040441d2"
+ "9fe1ee87-6b77-4113-a00d-9d69bdcf2458"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -1277,16 +1207,16 @@
"14998"
],
"x-ms-correlation-request-id": [
- "368f775b-f61b-4b87-88a5-4cdbd323af44"
+ "38b1f57c-899e-4609-bdb5-4432b17ebb88"
],
"x-ms-routing-request-id": [
- "SOUTHCENTRALUS:20220311T002938Z:368f775b-f61b-4b87-88a5-4cdbd323af44"
+ "WESTCENTRALUS:20220813T001923Z:38b1f57c-899e-4609-bdb5-4432b17ebb88"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 00:29:37 GMT"
+ "Sat, 13 Aug 2022 00:19:22 GMT"
],
"Expires": [
"-1"
@@ -1299,16 +1229,16 @@
"StatusCode": 202
},
{
- "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==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/9fe1ee87-6b77-4113-a00d-9d69bdcf2458?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy85ZmUxZWU4Ny02Yjc3LTQxMTMtYTAwZC05ZDY5YmRjZjI0NTg/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -1319,16 +1249,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4147"
+ "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4087"
],
"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_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "9e813db2-88e3-4448-b243-499be998bfce"
+ "e4e3aac0-146b-4c89-8191-8bbb5ee6d214"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -1338,16 +1268,16 @@
"11987"
],
"x-ms-correlation-request-id": [
- "ab3f15ea-7471-4d37-998f-841ba76c9154"
+ "172268be-b9ab-4b41-94a2-d606f5526b2b"
],
"x-ms-routing-request-id": [
- "SOUTHCENTRALUS:20220311T003008Z:ab3f15ea-7471-4d37-998f-841ba76c9154"
+ "WESTCENTRALUS:20220813T001953Z:172268be-b9ab-4b41-94a2-d606f5526b2b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 00:30:07 GMT"
+ "Sat, 13 Aug 2022 00:19:53 GMT"
],
"Content-Length": [
"184"
@@ -1359,20 +1289,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:19:23.7309071-07:00\",\r\n \"endTime\": \"2022-08-12T17:19:23.8402772-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9fe1ee87-6b77-4113-a00d-9d69bdcf2458\"\r\n}",
"StatusCode": 200
},
{
- "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=",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/9fe1ee87-6b77-4113-a00d-9d69bdcf2458?monitor=true&api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy85ZmUxZWU4Ny02Yjc3LTQxMTMtYTAwZC05ZDY5YmRjZjI0NTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -1383,16 +1313,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4146"
+ "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4086"
],
"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_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "a0268a7c-44e6-4972-bb90-6d8ba9bc2672"
+ "3688b894-a2de-4da3-b20f-5e640daf0e6a"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -1402,16 +1332,16 @@
"11986"
],
"x-ms-correlation-request-id": [
- "03fd5ef3-6129-4398-8130-195c92fb5189"
+ "8136e9b7-c679-4bd9-bf34-43fea154fa7e"
],
"x-ms-routing-request-id": [
- "SOUTHCENTRALUS:20220311T003008Z:03fd5ef3-6129-4398-8130-195c92fb5189"
+ "WESTCENTRALUS:20220813T001954Z:8136e9b7-c679-4bd9-bf34-43fea154fa7e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 00:30:07 GMT"
+ "Sat, 13 Aug 2022 00:19:53 GMT"
],
"Expires": [
"-1"
@@ -1426,12 +1356,12 @@
],
"Names": {
"GalleryImage_CRUD_Tests": [
- "galleryPsTestRg716",
- "galleryPsTestGallery1768",
- "galleryPsTestGalleryImage3222"
+ "galleryPsTestRg5537",
+ "galleryPsTestGallery4052",
+ "galleryPsTestGalleryImage3114"
]
},
"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_CRUD_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_CRUD_Tests.json
index 03e5bd9ce7fe..df65f89f4b0b 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,19 +1,19 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/galleryPsTestRg348?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0OD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/galleryPsTestRg8356?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzgzNTY/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "33d835d8-7c40-4fde-b505-463fc96485f0"
+ "45ee0dad-560c-458c-bc93-8ee8020e3260"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.30802",
"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": [
- "d44640d4-3d69-4d0c-bb33-aea5b6198239"
+ "5336860e-4bf5-4680-819f-bf75851ccc61"
],
"x-ms-correlation-request-id": [
- "d44640d4-3d69-4d0c-bb33-aea5b6198239"
+ "5336860e-4bf5-4680-819f-bf75851ccc61"
],
"x-ms-routing-request-id": [
- "SOUTHCENTRALUS:20220311T001716Z:d44640d4-3d69-4d0c-bb33-aea5b6198239"
+ "CENTRALUS:20220722T212255Z:5336860e-4bf5-4680-819f-bf75851ccc61"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -51,10 +51,10 @@
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 00:17:15 GMT"
+ "Fri, 22 Jul 2022 21:22:55 GMT"
],
"Content-Length": [
- "190"
+ "192"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -63,26 +63,26 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8356\",\r\n \"name\": \"galleryPsTestRg8356\",\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/galleryPsTestRg348/providers/Microsoft.Compute/galleries/galleryPsTestGallery8016?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODAxNj9hcGktdmVyc2lvbj0yMDIyLTAxLTAz",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8356/providers/Microsoft.Compute/galleries/galleryPsTestGallery6082?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzgzNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTYwODI/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"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": [
- "e19e5e85-0725-4fec-b1ec-0000fa3bebe0"
+ "c230e0e3-dedb-475a-9a95-3264b6889e7b"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -99,19 +99,19 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "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"
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/8ca05d61-3370-41f0-afa7-2223c8d33736?api-version=2022-03-03"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;297"
+ "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;298"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287"
+ "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "62a78a21-27ba-40c0-84cf-3e1de967e339"
+ "8ca05d61-3370-41f0-afa7-2223c8d33736"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -121,19 +121,19 @@
"1199"
],
"x-ms-correlation-request-id": [
- "899959cd-fa3d-4a9c-9c22-4d8088610512"
+ "d5d82e4b-da62-4a0f-b63a-6b2726acc03c"
],
"x-ms-routing-request-id": [
- "SOUTHCENTRALUS:20220311T001719Z:899959cd-fa3d-4a9c-9c22-4d8088610512"
+ "CENTRALUS:20220722T212258Z:d5d82e4b-da62-4a0f-b63a-6b2726acc03c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 00:17:19 GMT"
+ "Fri, 22 Jul 2022 21:22:58 GMT"
],
"Content-Length": [
- "507"
+ "508"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -142,26 +142,26 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery6082\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8356/providers/Microsoft.Compute/galleries/galleryPsTestGallery6082\",\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-GALLERYPSTESTGALLERY6082\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg348/providers/Microsoft.Compute/galleries/galleryPsTestGallery8016?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODAxNj9hcGktdmVyc2lvbj0yMDIyLTAxLTAz",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8356/providers/Microsoft.Compute/galleries/galleryPsTestGallery6082?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzgzNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTYwODI/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"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": [
- "51bbeb81-5ba0-4a40-bd6c-52314c46d083"
+ "896f38ab-3905-4e53-ab1e-91713a7901d5"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -178,19 +178,19 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "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"
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/f718ffc9-fac1-483f-990f-0e05fbaa216d?api-version=2022-03-03"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/CreateUpdateGallery3Min;48,Microsoft.Compute/CreateUpdateGallery30Min;296"
+ "Microsoft.Compute/CreateUpdateGallery3Min;48,Microsoft.Compute/CreateUpdateGallery30Min;297"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287"
+ "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "7c513601-4efa-4d2e-ac84-1f5696950e5d"
+ "f718ffc9-fac1-483f-990f-0e05fbaa216d"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -200,19 +200,19 @@
"1198"
],
"x-ms-correlation-request-id": [
- "7d1d5a52-a00e-48ee-b22c-f286f1ceafca"
+ "aea51202-32ff-4c8e-91b6-44593b62a0c6"
],
"x-ms-routing-request-id": [
- "SOUTHCENTRALUS:20220311T001750Z:7d1d5a52-a00e-48ee-b22c-f286f1ceafca"
+ "CENTRALUS:20220722T212328Z:aea51202-32ff-4c8e-91b6-44593b62a0c6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 00:17:49 GMT"
+ "Fri, 22 Jul 2022 21:23:28 GMT"
],
"Content-Length": [
- "502"
+ "503"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -221,20 +221,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery6082\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8356/providers/Microsoft.Compute/galleries/galleryPsTestGallery6082\",\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-GALLERYPSTESTGALLERY6082\"\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/62a78a21-27ba-40c0-84cf-3e1de967e339?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy82MmE3OGEyMS0yN2JhLTQwYzAtODRjZi0zZTFkZTk2N2UzMzk/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/8ca05d61-3370-41f0-afa7-2223c8d33736?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy84Y2EwNWQ2MS0zMzcwLTQxZjAtYWZhNy0yMjIzYzhkMzM3MzY/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -245,16 +245,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4160"
+ "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4121"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287"
+ "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "b79dfbbe-89ec-4c1c-8fae-a613b557d2f2"
+ "0d79ee00-8138-44fa-b5ef-014322493722"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -264,16 +264,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "0c698c3e-36b4-441f-9dda-4769a5067105"
+ "fe6b335f-86de-4b8d-971f-4a100943e14a"
],
"x-ms-routing-request-id": [
- "SOUTHCENTRALUS:20220311T001750Z:0c698c3e-36b4-441f-9dda-4769a5067105"
+ "CENTRALUS:20220722T212328Z:fe6b335f-86de-4b8d-971f-4a100943e14a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 00:17:49 GMT"
+ "Fri, 22 Jul 2022 21:23:28 GMT"
],
"Content-Length": [
"184"
@@ -285,20 +285,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T17:22:57.9713271-04:00\",\r\n \"endTime\": \"2022-07-22T17:22:58.0806855-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8ca05d61-3370-41f0-afa7-2223c8d33736\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg348/providers/Microsoft.Compute/galleries/galleryPsTestGallery8016?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODAxNj9hcGktdmVyc2lvbj0yMDIyLTAxLTAz",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8356/providers/Microsoft.Compute/galleries/galleryPsTestGallery6082?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzgzNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTYwODI/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -309,16 +309,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetGallery3Min;343,Microsoft.Compute/GetGallery30Min;2446"
+ "Microsoft.Compute/GetGallery3Min;345,Microsoft.Compute/GetGallery30Min;2483"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287"
+ "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "ea2132a9-4c4f-4116-b60c-f306ebe86d72"
+ "b1a9df8d-aaf8-4fe8-b13f-b862e5f986cf"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -328,19 +328,19 @@
"11998"
],
"x-ms-correlation-request-id": [
- "22eb03a6-8624-4b4a-b3f0-e22d13d14d67"
+ "4b139006-f0c4-46cc-b053-4ba05709ca01"
],
"x-ms-routing-request-id": [
- "SOUTHCENTRALUS:20220311T001750Z:22eb03a6-8624-4b4a-b3f0-e22d13d14d67"
+ "CENTRALUS:20220722T212328Z:4b139006-f0c4-46cc-b053-4ba05709ca01"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 00:17:49 GMT"
+ "Fri, 22 Jul 2022 21:23:28 GMT"
],
"Content-Length": [
- "508"
+ "509"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -349,26 +349,26 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery6082\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8356/providers/Microsoft.Compute/galleries/galleryPsTestGallery6082\",\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-GALLERYPSTESTGALLERY6082\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg348/providers/Microsoft.Compute/galleries/galleryPsTestGallery8016?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODAxNj9hcGktdmVyc2lvbj0yMDIyLTAxLTAz",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8356/providers/Microsoft.Compute/galleries/galleryPsTestGallery6082?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzgzNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTYwODI/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "794928fe-38ba-488f-aaaa-9047617494b1"
+ "c622262b-1e28-4028-9b02-b63994e61f50"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -379,16 +379,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetGallery3Min;342,Microsoft.Compute/GetGallery30Min;2445"
+ "Microsoft.Compute/GetGallery3Min;344,Microsoft.Compute/GetGallery30Min;2482"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287"
+ "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "5b118ee3-08ed-46de-a5da-636f7690057b"
+ "1175e970-c23f-4197-9344-afea2d1ee0a2"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -398,19 +398,19 @@
"11997"
],
"x-ms-correlation-request-id": [
- "5707d051-3092-4d80-8040-e78d169386d0"
+ "499d8b5a-988b-4465-b68a-50c7d3d46b35"
],
"x-ms-routing-request-id": [
- "SOUTHCENTRALUS:20220311T001750Z:5707d051-3092-4d80-8040-e78d169386d0"
+ "CENTRALUS:20220722T212328Z:499d8b5a-988b-4465-b68a-50c7d3d46b35"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 00:17:49 GMT"
+ "Fri, 22 Jul 2022 21:23:28 GMT"
],
"Content-Length": [
- "508"
+ "509"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -419,20 +419,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery6082\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8356/providers/Microsoft.Compute/galleries/galleryPsTestGallery6082\",\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-GALLERYPSTESTGALLERY6082\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg348/providers/Microsoft.Compute/galleries/galleryPsTestGallery8016?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODAxNj9hcGktdmVyc2lvbj0yMDIyLTAxLTAz",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8356/providers/Microsoft.Compute/galleries/galleryPsTestGallery6082?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzgzNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTYwODI/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -443,16 +443,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetGallery3Min;341,Microsoft.Compute/GetGallery30Min;2444"
+ "Microsoft.Compute/GetGallery3Min;343,Microsoft.Compute/GetGallery30Min;2481"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287"
+ "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "3dcfe128-0b19-484b-8dbd-56c7dd3c14fb"
+ "3097574e-7e89-4350-a894-423e90dbb0b5"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -462,19 +462,19 @@
"11996"
],
"x-ms-correlation-request-id": [
- "94a03c73-2fed-4ffd-916b-6c7336570bc7"
+ "494c7a39-2609-4094-a2b5-601d39cce3e1"
],
"x-ms-routing-request-id": [
- "SOUTHCENTRALUS:20220311T001750Z:94a03c73-2fed-4ffd-916b-6c7336570bc7"
+ "CENTRALUS:20220722T212328Z:494c7a39-2609-4094-a2b5-601d39cce3e1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 00:17:50 GMT"
+ "Fri, 22 Jul 2022 21:23:28 GMT"
],
"Content-Length": [
- "502"
+ "503"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -483,26 +483,26 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery6082\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8356/providers/Microsoft.Compute/galleries/galleryPsTestGallery6082\",\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-GALLERYPSTESTGALLERY6082\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg348/providers/Microsoft.Compute/galleries/galleryPsTestGallery8016?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODAxNj9hcGktdmVyc2lvbj0yMDIyLTAxLTAz",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8356/providers/Microsoft.Compute/galleries/galleryPsTestGallery6082?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzgzNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTYwODI/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5502bb0f-cba6-43e8-9cac-4945f46c9c9f"
+ "52a3429e-cc90-4aad-aaef-224410018a37"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -513,16 +513,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetGallery3Min;339,Microsoft.Compute/GetGallery30Min;2442"
+ "Microsoft.Compute/GetGallery3Min;342,Microsoft.Compute/GetGallery30Min;2480"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287"
+ "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "e48fca56-c9ce-4837-a3aa-e28c71f24fbf"
+ "95ae3f02-ee5b-41fe-a32e-693dc007d01f"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -532,19 +532,19 @@
"11995"
],
"x-ms-correlation-request-id": [
- "bc043028-2695-4c7c-bba3-ee191b1bc5fc"
+ "85c4c2d2-35ae-42cd-a604-ccc2527c831f"
],
"x-ms-routing-request-id": [
- "SOUTHCENTRALUS:20220311T001750Z:bc043028-2695-4c7c-bba3-ee191b1bc5fc"
+ "CENTRALUS:20220722T212329Z:85c4c2d2-35ae-42cd-a604-ccc2527c831f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 00:17:50 GMT"
+ "Fri, 22 Jul 2022 21:23:28 GMT"
],
"Content-Length": [
- "502"
+ "503"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -553,23 +553,23 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery6082\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8356/providers/Microsoft.Compute/galleries/galleryPsTestGallery6082\",\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-GALLERYPSTESTGALLERY6082\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/galleryPsTestRg348New?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0OE5ldz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/galleryPsTestRg8356New?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzgzNTZOZXc/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "993aec59-9e98-44ad-b5c7-f627ee797a9d"
+ "f38e8f7b-9784-422b-b369-b95995e6db5c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
@@ -592,13 +592,13 @@
"1198"
],
"x-ms-request-id": [
- "fc08adc4-dc7a-42f7-b236-765ed3228c04"
+ "97791f18-fede-4d4c-8ad8-5b06e6db1615"
],
"x-ms-correlation-request-id": [
- "fc08adc4-dc7a-42f7-b236-765ed3228c04"
+ "97791f18-fede-4d4c-8ad8-5b06e6db1615"
],
"x-ms-routing-request-id": [
- "SOUTHCENTRALUS:20220311T001751Z:fc08adc4-dc7a-42f7-b236-765ed3228c04"
+ "CENTRALUS:20220722T212329Z:97791f18-fede-4d4c-8ad8-5b06e6db1615"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -607,10 +607,10 @@
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 00:17:51 GMT"
+ "Fri, 22 Jul 2022 21:23:28 GMT"
],
"Content-Length": [
- "196"
+ "198"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -619,26 +619,26 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8356New\",\r\n \"name\": \"galleryPsTestRg8356New\",\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/galleryPsTestRg348New/providers/Microsoft.Compute/galleries/galleryPsTestGallery8016New?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0OE5ldy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODAxNk5ldz9hcGktdmVyc2lvbj0yMDIyLTAxLTAz",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8356New/providers/Microsoft.Compute/galleries/galleryPsTestGallery6082New?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzgzNTZOZXcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTYwODJOZXc/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"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": [
- "e3bd4122-0a87-4475-97a1-53a2ef8e0722"
+ "66bbc757-59f4-4771-92b4-1be664bad7ff"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -655,19 +655,19 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "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"
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/3fd790a2-9d45-4296-b4ac-4f23514ccee9?api-version=2022-03-03"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/CreateUpdateGallery3Min;47,Microsoft.Compute/CreateUpdateGallery30Min;295"
+ "Microsoft.Compute/CreateUpdateGallery3Min;47,Microsoft.Compute/CreateUpdateGallery30Min;296"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287"
+ "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "13fa2e75-c155-4344-a02f-3d492665e0ea"
+ "3fd790a2-9d45-4296-b4ac-4f23514ccee9"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -677,19 +677,19 @@
"1197"
],
"x-ms-correlation-request-id": [
- "64606a46-f237-43e6-a84f-34625f2452d0"
+ "060b7efd-4f46-4fce-9ee9-3281ee963a47"
],
"x-ms-routing-request-id": [
- "SOUTHCENTRALUS:20220311T001802Z:64606a46-f237-43e6-a84f-34625f2452d0"
+ "CENTRALUS:20220722T212340Z:060b7efd-4f46-4fce-9ee9-3281ee963a47"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 00:18:01 GMT"
+ "Fri, 22 Jul 2022 21:23:39 GMT"
],
"Content-Length": [
- "513"
+ "514"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -698,20 +698,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery6082New\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8356New/providers/Microsoft.Compute/galleries/galleryPsTestGallery6082New\",\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-GALLERYPSTESTGALLERY6082NEW\"\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/13fa2e75-c155-4344-a02f-3d492665e0ea?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8xM2ZhMmU3NS1jMTU1LTQzNDQtYTAyZi0zZDQ5MjY2NWUwZWE/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/3fd790a2-9d45-4296-b4ac-4f23514ccee9?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zZmQ3OTBhMi05ZDQ1LTQyOTYtYjRhYy00ZjIzNTE0Y2NlZTk/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -722,16 +722,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4157"
+ "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4119"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287"
+ "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "59510f19-6ce6-43d8-aec3-2f691b38eadd"
+ "1cb86ced-ef62-45f1-ace4-2cf21d2709cc"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -741,16 +741,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "8067a661-71f6-472e-9fd6-39fd97857ea8"
+ "80165151-2303-4aad-85ca-d7101aa39f30"
],
"x-ms-routing-request-id": [
- "SOUTHCENTRALUS:20220311T001832Z:8067a661-71f6-472e-9fd6-39fd97857ea8"
+ "CENTRALUS:20220722T212410Z:80165151-2303-4aad-85ca-d7101aa39f30"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 00:18:31 GMT"
+ "Fri, 22 Jul 2022 21:24:09 GMT"
],
"Content-Length": [
"184"
@@ -762,20 +762,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T17:23:40.0347857-04:00\",\r\n \"endTime\": \"2022-07-22T17:23:40.1285407-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3fd790a2-9d45-4296-b4ac-4f23514ccee9\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg348New/providers/Microsoft.Compute/galleries/galleryPsTestGallery8016New?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0OE5ldy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODAxNk5ldz9hcGktdmVyc2lvbj0yMDIyLTAxLTAz",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8356New/providers/Microsoft.Compute/galleries/galleryPsTestGallery6082New?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzgzNTZOZXcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTYwODJOZXc/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -786,16 +786,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetGallery3Min;335,Microsoft.Compute/GetGallery30Min;2436"
+ "Microsoft.Compute/GetGallery3Min;336,Microsoft.Compute/GetGallery30Min;2474"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287"
+ "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "46c89306-e1ec-4626-9007-d5b29b15296e"
+ "95d094e8-c2d2-4221-b536-2d6277b268c4"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -805,19 +805,19 @@
"11993"
],
"x-ms-correlation-request-id": [
- "ee3f81b4-19fb-4a05-93a2-98522a5cc6b5"
+ "f2a2ba87-019a-42cc-acab-83592683e75d"
],
"x-ms-routing-request-id": [
- "SOUTHCENTRALUS:20220311T001832Z:ee3f81b4-19fb-4a05-93a2-98522a5cc6b5"
+ "CENTRALUS:20220722T212410Z:f2a2ba87-019a-42cc-acab-83592683e75d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 00:18:31 GMT"
+ "Fri, 22 Jul 2022 21:24:10 GMT"
],
"Content-Length": [
- "514"
+ "515"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -826,26 +826,26 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery6082New\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8356New/providers/Microsoft.Compute/galleries/galleryPsTestGallery6082New\",\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-GALLERYPSTESTGALLERY6082NEW\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg348/providers/Microsoft.Compute/galleries?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8356/providers/Microsoft.Compute/galleries?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzgzNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcz9hcGktdmVyc2lvbj0yMDIyLTAzLTAz",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4bf3df31-66ff-4d0c-88f1-690361d000c3"
+ "31eedc56-9bb7-4a5f-bc7a-274052d12244"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -862,10 +862,10 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287"
+ "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "7a276b45-4f0d-4502-ab1a-7d8c812934d4"
+ "598fa7d3-b98e-4ccc-ae28-dbf324e7bc7b"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -875,19 +875,19 @@
"11992"
],
"x-ms-correlation-request-id": [
- "e0a3798d-23da-44c4-bde4-9f2ae839993b"
+ "5b2f064f-fa99-4220-99ae-6b9d9268a410"
],
"x-ms-routing-request-id": [
- "SOUTHCENTRALUS:20220311T001833Z:e0a3798d-23da-44c4-bde4-9f2ae839993b"
+ "CENTRALUS:20220722T212410Z:5b2f064f-fa99-4220-99ae-6b9d9268a410"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 00:18:32 GMT"
+ "Fri, 22 Jul 2022 21:24:10 GMT"
],
"Content-Length": [
- "579"
+ "580"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -896,26 +896,26 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"galleryPsTestGallery6082\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/GALLERYPSTESTRG8356/providers/Microsoft.Compute/galleries/galleryPsTestGallery6082\",\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-GALLERYPSTESTGALLERY6082\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg348/providers/Microsoft.Compute/galleries?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8356/providers/Microsoft.Compute/galleries?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzgzNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcz9hcGktdmVyc2lvbj0yMDIyLTAzLTAz",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e07abe94-6b6a-410c-a83b-ef5af2ec823e"
+ "1855f163-063d-4a2c-a8a6-5fa4e06b9cc1"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -929,13 +929,13 @@
"11986"
],
"x-ms-request-id": [
- "6708f431-c97a-4ad0-8c3c-ebe8679e8322"
+ "9c58034c-d227-4873-a378-9ca37a3128d1"
],
"x-ms-correlation-request-id": [
- "6708f431-c97a-4ad0-8c3c-ebe8679e8322"
+ "9c58034c-d227-4873-a378-9ca37a3128d1"
],
"x-ms-routing-request-id": [
- "SOUTHCENTRALUS:20220311T001935Z:6708f431-c97a-4ad0-8c3c-ebe8679e8322"
+ "CENTRALUS:20220722T212512Z:9c58034c-d227-4873-a378-9ca37a3128d1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -944,7 +944,7 @@
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 00:19:34 GMT"
+ "Fri, 22 Jul 2022 21:25:12 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -960,22 +960,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/galleries?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9nYWxsZXJpZXM/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/galleries?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9nYWxsZXJpZXM/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8fe1a689-625c-44bd-b1d2-165c8091e289"
+ "0dae674e-f62e-4c54-b8cc-a6439db739c2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -986,20 +986,20 @@
"no-cache"
],
"x-ms-original-request-ids": [
- "8850c441-8987-4672-9687-7bea4cc46b87",
- "a713e8ac-c9a5-4a64-9d41-ded62ded8d97"
+ "f9ec2577-d990-445e-b71b-9a2a929ae1cb",
+ "251f17b8-86a9-41c3-8b66-a3e92b195e70"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11991"
],
"x-ms-request-id": [
- "4dacf6e0-b9bc-4fe8-919c-a9375c6e6584"
+ "fe2d2c7e-b9db-4cf2-ae7e-55fd74955203"
],
"x-ms-correlation-request-id": [
- "4dacf6e0-b9bc-4fe8-919c-a9375c6e6584"
+ "fe2d2c7e-b9db-4cf2-ae7e-55fd74955203"
],
"x-ms-routing-request-id": [
- "SOUTHCENTRALUS:20220311T001833Z:4dacf6e0-b9bc-4fe8-919c-a9375c6e6584"
+ "CENTRALUS:20220722T212411Z:fe2d2c7e-b9db-4cf2-ae7e-55fd74955203"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1008,7 +1008,7 @@
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 00:18:32 GMT"
+ "Fri, 22 Jul 2022 21:24:10 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1017,29 +1017,29 @@
"-1"
],
"Content-Length": [
- "3691"
+ "2966"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"value\": [\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\": \"galleryPsTestGallery6082\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/GALLERYPSTESTRG8356/providers/Microsoft.Compute/galleries/galleryPsTestGallery6082\",\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-GALLERYPSTESTGALLERY6082\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery6082New\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/GALLERYPSTESTRG8356NEW/providers/Microsoft.Compute/galleries/galleryPsTestGallery6082New\",\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-GALLERYPSTESTGALLERY6082NEW\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery3926\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/GALLERYPSTESTRG9984/providers/Microsoft.Compute/galleries/galleryPsTestGallery3926\",\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-GALLERYPSTESTGALLERY3926\"\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\": \"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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg348/providers/Microsoft.Compute/galleries/galleryPsTestGallery8016?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0OC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODAxNj9hcGktdmVyc2lvbj0yMDIyLTAxLTAz",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8356/providers/Microsoft.Compute/galleries/galleryPsTestGallery6082?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzgzNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTYwODI/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e855d27e-3201-4421-a606-222cee4540a5"
+ "7d8db869-e10e-4404-a3e4-44c2d290f743"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -1050,22 +1050,22 @@
"no-cache"
],
"Location": [
- "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"
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/5eeb3477-0e08-4b79-bcad-3e4753b2e06c?monitor=true&api-version=2022-03-03"
],
"Azure-AsyncOperation": [
- "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"
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/5eeb3477-0e08-4b79-bcad-3e4753b2e06c?api-version=2022-03-03"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;298"
+ "Microsoft.Compute/DeleteGallery3Min;48,Microsoft.Compute/DeleteGallery30Min;297"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287"
+ "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "a28e8c82-950f-47da-93b2-f9f619741214"
+ "5eeb3477-0e08-4b79-bcad-3e4753b2e06c"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -1075,16 +1075,16 @@
"14999"
],
"x-ms-correlation-request-id": [
- "5e29f5bb-3d93-4b30-87d3-82506320a546"
+ "8e0cc402-8003-4b55-b026-6d248d65b84c"
],
"x-ms-routing-request-id": [
- "SOUTHCENTRALUS:20220311T001833Z:5e29f5bb-3d93-4b30-87d3-82506320a546"
+ "CENTRALUS:20220722T212411Z:8e0cc402-8003-4b55-b026-6d248d65b84c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 00:18:33 GMT"
+ "Fri, 22 Jul 2022 21:24:11 GMT"
],
"Expires": [
"-1"
@@ -1097,16 +1097,16 @@
"StatusCode": 202
},
{
- "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==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/5eeb3477-0e08-4b79-bcad-3e4753b2e06c?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy81ZWViMzQ3Ny0wZTA4LTRiNzktYmNhZC0zZTQ3NTNiMmUwNmM/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -1117,16 +1117,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4154"
+ "Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4117"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287"
+ "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "175b9d45-0bb1-43a2-9bab-6fbd30b5b693"
+ "90e23698-7ecf-4519-845e-a9c279a7d5cf"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -1136,16 +1136,16 @@
"11990"
],
"x-ms-correlation-request-id": [
- "4018e581-53a7-4e97-87f7-d35fba6ea813"
+ "b1b6d4ec-3be8-43a2-8925-7f297583b17c"
],
"x-ms-routing-request-id": [
- "SOUTHCENTRALUS:20220311T001904Z:4018e581-53a7-4e97-87f7-d35fba6ea813"
+ "CENTRALUS:20220722T212441Z:b1b6d4ec-3be8-43a2-8925-7f297583b17c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 00:19:03 GMT"
+ "Fri, 22 Jul 2022 21:24:40 GMT"
],
"Content-Length": [
"184"
@@ -1157,20 +1157,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T17:24:11.6154811-04:00\",\r\n \"endTime\": \"2022-07-22T17:24:11.7405203-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5eeb3477-0e08-4b79-bcad-3e4753b2e06c\"\r\n}",
"StatusCode": 200
},
{
- "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=",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/5eeb3477-0e08-4b79-bcad-3e4753b2e06c?monitor=true&api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy81ZWViMzQ3Ny0wZTA4LTRiNzktYmNhZC0zZTQ3NTNiMmUwNmM/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -1181,16 +1181,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4153"
+ "Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4116"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287"
+ "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "315a1def-9f9c-49b9-a5de-f44b17bf0e12"
+ "ba88a680-e7ac-4f08-b14e-40d4f4320c98"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -1200,16 +1200,16 @@
"11989"
],
"x-ms-correlation-request-id": [
- "f0d48f86-edbc-42a4-be36-f9d2db5d0718"
+ "898b24fc-26b9-473d-907e-730c5bc13c02"
],
"x-ms-routing-request-id": [
- "SOUTHCENTRALUS:20220311T001904Z:f0d48f86-edbc-42a4-be36-f9d2db5d0718"
+ "CENTRALUS:20220722T212441Z:898b24fc-26b9-473d-907e-730c5bc13c02"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 00:19:03 GMT"
+ "Fri, 22 Jul 2022 21:24:41 GMT"
],
"Expires": [
"-1"
@@ -1222,22 +1222,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg348New/providers/Microsoft.Compute/galleries/galleryPsTestGallery8016New?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0OE5ldy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODAxNk5ldz9hcGktdmVyc2lvbj0yMDIyLTAxLTAz",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8356New/providers/Microsoft.Compute/galleries/galleryPsTestGallery6082New?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzgzNTZOZXcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTYwODJOZXc/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "44c7dba2-3249-4050-be0e-886290964807"
+ "f97b7108-5096-4cef-8c2a-14dac5e36bdc"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -1248,10 +1248,10 @@
"no-cache"
],
"Location": [
- "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"
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c17bfc8-2074-4651-b074-0c103db688bf?monitor=true&api-version=2022-03-03"
],
"Azure-AsyncOperation": [
- "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"
+ "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c17bfc8-2074-4651-b074-0c103db688bf?api-version=2022-03-03"
],
"x-ms-ratelimit-remaining-resource": [
"Microsoft.Compute/DeleteGallery3Min;47,Microsoft.Compute/DeleteGallery30Min;296"
@@ -1260,10 +1260,10 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287"
+ "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "a49863d5-7e06-4049-8b0d-fd725c048cc7"
+ "3c17bfc8-2074-4651-b074-0c103db688bf"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -1273,16 +1273,16 @@
"14998"
],
"x-ms-correlation-request-id": [
- "91c63a2a-94cf-4e8c-a388-c989812f20eb"
+ "8894b3db-2ca1-41ce-855e-2b948a36e279"
],
"x-ms-routing-request-id": [
- "SOUTHCENTRALUS:20220311T001904Z:91c63a2a-94cf-4e8c-a388-c989812f20eb"
+ "CENTRALUS:20220722T212442Z:8894b3db-2ca1-41ce-855e-2b948a36e279"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 00:19:03 GMT"
+ "Fri, 22 Jul 2022 21:24:41 GMT"
],
"Expires": [
"-1"
@@ -1295,16 +1295,16 @@
"StatusCode": 202
},
{
- "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==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c17bfc8-2074-4651-b074-0c103db688bf?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzE3YmZjOC0yMDc0LTQ2NTEtYjA3NC0wYzEwM2RiNjg4YmY/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -1315,16 +1315,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4150"
+ "Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4125"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287"
+ "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "fe52487c-a328-4f94-88c7-33253403f539"
+ "9e40bd3d-62eb-427b-92d8-31961d421116"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -1334,16 +1334,16 @@
"11988"
],
"x-ms-correlation-request-id": [
- "59c546bd-9ec9-4ae8-b900-f8f1d6f804c7"
+ "93dce5cd-f027-4a55-ba72-623c37cc1e88"
],
"x-ms-routing-request-id": [
- "SOUTHCENTRALUS:20220311T001934Z:59c546bd-9ec9-4ae8-b900-f8f1d6f804c7"
+ "CENTRALUS:20220722T212512Z:93dce5cd-f027-4a55-ba72-623c37cc1e88"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 00:19:33 GMT"
+ "Fri, 22 Jul 2022 21:25:12 GMT"
],
"Content-Length": [
"184"
@@ -1355,20 +1355,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T17:24:42.4138759-04:00\",\r\n \"endTime\": \"2022-07-22T17:24:42.5232765-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3c17bfc8-2074-4651-b074-0c103db688bf\"\r\n}",
"StatusCode": 200
},
{
- "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=",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c17bfc8-2074-4651-b074-0c103db688bf?monitor=true&api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzE3YmZjOC0yMDc0LTQ2NTEtYjA3NC0wYzEwM2RiNjg4YmY/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -1379,16 +1379,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;4149"
+ "Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4124"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287,a129388d-91d6-4310-81e1-d02ce40a61ca_132909361235858287"
+ "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044"
],
"x-ms-request-id": [
- "2c42d1b0-c592-48bc-90af-bcd3eebaae63"
+ "b31ba95e-6b33-489d-aacf-54a4e1fc8bbe"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -1398,16 +1398,16 @@
"11987"
],
"x-ms-correlation-request-id": [
- "62efc915-d845-403a-b3c6-7a99cafbffa2"
+ "b935e0de-fbe0-4318-9576-072a39a44e67"
],
"x-ms-routing-request-id": [
- "SOUTHCENTRALUS:20220311T001934Z:62efc915-d845-403a-b3c6-7a99cafbffa2"
+ "CENTRALUS:20220722T212512Z:b935e0de-fbe0-4318-9576-072a39a44e67"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 11 Mar 2022 00:19:34 GMT"
+ "Fri, 22 Jul 2022 21:25:12 GMT"
],
"Expires": [
"-1"
@@ -1422,8 +1422,8 @@
],
"Names": {
"Gallery_CRUD_Tests": [
- "galleryPsTestRg348",
- "galleryPsTestGallery8016"
+ "galleryPsTestRg8356",
+ "galleryPsTestGallery6082"
]
},
"Variables": {
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 c0650fcff666..104b682ee4c6 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,21 +1,21 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg7660?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc2NjA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg3339?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzMzMzk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7027e503-ea8e-4e0e-aa65-53b48a81fd2e"
+ "a6fee4ab-502f-4545-a7bd-06a00bb2dcd8"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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": [
@@ -36,13 +36,13 @@
"1199"
],
"x-ms-request-id": [
- "6f6ec2b6-accb-4d84-acd9-b7da6197af49"
+ "3ad2f2fe-9ac2-408d-96ac-fd084c7ae2b0"
],
"x-ms-correlation-request-id": [
- "6f6ec2b6-accb-4d84-acd9-b7da6197af49"
+ "3ad2f2fe-9ac2-408d-96ac-fd084c7ae2b0"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220309T192824Z:6f6ec2b6-accb-4d84-acd9-b7da6197af49"
+ "WESTUS:20220815T195815Z:3ad2f2fe-9ac2-408d-96ac-fd084c7ae2b0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -51,7 +51,7 @@
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 19:28:24 GMT"
+ "Mon, 15 Aug 2022 19:58:14 GMT"
],
"Content-Length": [
"192"
@@ -63,26 +63,26 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3339\",\r\n \"name\": \"galleryPsTestRg3339\",\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/galleryPsTestRg7660/providers/Microsoft.Compute/galleries/galleryPsTestGallery6512?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc2NjAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTY1MTI/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3339/providers/Microsoft.Compute/galleries/galleryPsTestGallery6234?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzMzMzkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTYyMzQ/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"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": [
- "5fb25d95-c087-4e2d-997c-55da819b8c64"
+ "3dc08b97-a22e-4024-9b90-645ec836ebf5"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -99,19 +99,19 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "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"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/4b296955-f316-4540-866e-fac182ef500c?api-version=2022-03-03"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299"
+ "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;288"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "3e6e01f4-332a-4db8-afd0-f46bf60b40ef"
+ "4b296955-f316-4540-866e-fac182ef500c"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -121,16 +121,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "e6fc0014-885e-47ce-95be-176dfdfb62c3"
+ "f8750c0a-1cbb-4410-9c38-bd635517c7e5"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220309T192827Z:e6fc0014-885e-47ce-95be-176dfdfb62c3"
+ "WESTUS:20220815T195818Z:f8750c0a-1cbb-4410-9c38-bd635517c7e5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 19:28:27 GMT"
+ "Mon, 15 Aug 2022 19:58:18 GMT"
],
"Content-Length": [
"872"
@@ -142,20 +142,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery6234\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3339/providers/Microsoft.Compute/galleries/galleryPsTestGallery6234\",\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-GALLERYPSTESTGALLERY6234\"\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-51170bf2-328d-49a9-bfab-4c0508a18014\"\r\n ]\r\n }\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/3e6e01f4-332a-4db8-afd0-f46bf60b40ef?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zZTZlMDFmNC0zMzJhLTRkYjgtYWZkMC1mNDZiZjYwYjQwZWY/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/4b296955-f316-4540-866e-fac182ef500c?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy80YjI5Njk1NS1mMzE2LTQ1NDAtODY2ZS1mYWMxODJlZjUwMGM/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -166,16 +166,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4198"
+ "Microsoft.Compute/GetOperationStatus3Min;1177,Microsoft.Compute/GetOperationStatus30Min;3436"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "9d429075-d21e-45b8-8582-ccd1ed7fd02e"
+ "a6bf0ba8-782f-47c4-bf40-59314c68b3aa"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -185,16 +185,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "790a2fa6-6339-4a7c-b0c8-f44899b7a412"
+ "2d80572b-1efc-45b5-9fdc-e4b651f36bb6"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220309T192857Z:790a2fa6-6339-4a7c-b0c8-f44899b7a412"
+ "WESTUS:20220815T195849Z:2d80572b-1efc-45b5-9fdc-e4b651f36bb6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 19:28:57 GMT"
+ "Mon, 15 Aug 2022 19:58:48 GMT"
],
"Content-Length": [
"184"
@@ -206,20 +206,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-08-15T12:58:18.3485362-07:00\",\r\n \"endTime\": \"2022-08-15T12:58:18.4578833-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4b296955-f316-4540-866e-fac182ef500c\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7660/providers/Microsoft.Compute/galleries/galleryPsTestGallery6512?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc2NjAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTY1MTI/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3339/providers/Microsoft.Compute/galleries/galleryPsTestGallery6234?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzMzMzkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTYyMzQ/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -230,16 +230,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2496"
+ "Microsoft.Compute/GetGallery3Min;329,Microsoft.Compute/GetGallery30Min;2197"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "bb4d244b-a087-41fe-b3f5-af7f227a9cc4"
+ "43fddeb6-08c4-49ea-9604-5576bd84f256"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -249,16 +249,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "ee56aff3-b9fd-4da2-be5e-fc24fc9ded1c"
+ "7fc27144-4cb7-4213-a087-8e035513a363"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220309T192858Z:ee56aff3-b9fd-4da2-be5e-fc24fc9ded1c"
+ "WESTUS:20220815T195849Z:7fc27144-4cb7-4213-a087-8e035513a363"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 19:28:57 GMT"
+ "Mon, 15 Aug 2022 19:58:48 GMT"
],
"Content-Length": [
"873"
@@ -270,26 +270,26 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery6234\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3339/providers/Microsoft.Compute/galleries/galleryPsTestGallery6234\",\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-GALLERYPSTESTGALLERY6234\"\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-51170bf2-328d-49a9-bfab-4c0508a18014\"\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7660/providers/Microsoft.Compute/galleries/galleryPsTestGallery6512?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc2NjAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTY1MTI/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3339/providers/Microsoft.Compute/galleries/galleryPsTestGallery6234?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzMzMzkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTYyMzQ/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9b3777e6-0081-4aed-8820-af14fa4ba508"
+ "e05186ed-27c0-415c-b8cb-cdf3dea22560"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -300,16 +300,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetGallery3Min;345,Microsoft.Compute/GetGallery30Min;2495"
+ "Microsoft.Compute/GetGallery3Min;328,Microsoft.Compute/GetGallery30Min;2196"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "23ba7f1c-53b0-4f69-a88c-7cde61325955"
+ "4450b97e-04ea-4771-ba16-3d0c2a548c36"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -319,16 +319,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "0b63a5cb-096c-4f69-b360-908c0005604b"
+ "17620f04-1e8f-462c-9ed9-3d57c24a32c5"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220309T192858Z:0b63a5cb-096c-4f69-b360-908c0005604b"
+ "WESTUS:20220815T195849Z:17620f04-1e8f-462c-9ed9-3d57c24a32c5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 19:28:58 GMT"
+ "Mon, 15 Aug 2022 19:58:48 GMT"
],
"Content-Length": [
"873"
@@ -340,26 +340,26 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery6234\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3339/providers/Microsoft.Compute/galleries/galleryPsTestGallery6234\",\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-GALLERYPSTESTGALLERY6234\"\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-51170bf2-328d-49a9-bfab-4c0508a18014\"\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7660/providers/Microsoft.Compute/galleries/galleryPsTestGallery6512/share?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc2NjAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTY1MTIvc2hhcmU/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3339/providers/Microsoft.Compute/galleries/galleryPsTestGallery6234/share?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzMzMzkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTYyMzQvc2hhcmU/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "POST",
"RequestBody": "{\r\n \"operationType\": \"EnableCommunity\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6018aae2-10c2-49c1-98d2-fac18b899eab"
+ "4df82ab2-1fed-47f0-8fe1-4be692dcdf7a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -376,22 +376,22 @@
"no-cache"
],
"Location": [
- "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"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/3e65162c-528b-4df3-97f7-b25fb6bf56c3?monitor=true&api-version=2022-03-03"
],
"Azure-AsyncOperation": [
- "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"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/3e65162c-528b-4df3-97f7-b25fb6bf56c3?api-version=2022-03-03"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/PostShareGallery3Min;29,Microsoft.Compute/PostShareGallery30Min;119"
+ "Microsoft.Compute/PostShareGallery3Min;26,Microsoft.Compute/PostShareGallery30Min;73"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "c6eeba4d-2c57-4f6f-ba76-b31d1c25a858"
+ "3e65162c-528b-4df3-97f7-b25fb6bf56c3"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -401,16 +401,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "f8250122-3cfb-4d80-a3e0-7b778e6936ee"
+ "25f2b2d4-c7ed-4422-a89f-7576d724a33c"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220309T192858Z:f8250122-3cfb-4d80-a3e0-7b778e6936ee"
+ "WESTUS:20220815T195849Z:25f2b2d4-c7ed-4422-a89f-7576d724a33c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 19:28:58 GMT"
+ "Mon, 15 Aug 2022 19:58:48 GMT"
],
"Expires": [
"-1"
@@ -423,22 +423,22 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7660/providers/Microsoft.Compute/galleries/galleryPsTestGallery6512/share?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc2NjAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTY1MTIvc2hhcmU/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3339/providers/Microsoft.Compute/galleries/galleryPsTestGallery6234/share?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzMzMzkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTYyMzQvc2hhcmU/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "POST",
"RequestBody": "{\r\n \"operationType\": \"Reset\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "08222b88-2684-4bef-af71-049376475a5a"
+ "b7721230-a8e0-4f32-be81-42868098fcc2"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -455,22 +455,22 @@
"no-cache"
],
"Location": [
- "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"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/3b002f65-f31f-4889-9513-4de1308360e0?monitor=true&api-version=2022-03-03"
],
"Azure-AsyncOperation": [
- "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"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/3b002f65-f31f-4889-9513-4de1308360e0?api-version=2022-03-03"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/PostShareGallery3Min;28,Microsoft.Compute/PostShareGallery30Min;118"
+ "Microsoft.Compute/PostShareGallery3Min;25,Microsoft.Compute/PostShareGallery30Min;72"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "635bc13c-d77a-431f-abd6-c36413d259a8"
+ "3b002f65-f31f-4889-9513-4de1308360e0"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -480,16 +480,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "2693cd05-0de3-4db8-b0ff-5c0a2ee08887"
+ "2066cb74-5c62-49ad-9668-ebd3b294b79c"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220309T192929Z:2693cd05-0de3-4db8-b0ff-5c0a2ee08887"
+ "WESTUS:20220815T195920Z:2066cb74-5c62-49ad-9668-ebd3b294b79c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 19:29:28 GMT"
+ "Mon, 15 Aug 2022 19:59:19 GMT"
],
"Expires": [
"-1"
@@ -502,16 +502,16 @@
"StatusCode": 202
},
{
- "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==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/3e65162c-528b-4df3-97f7-b25fb6bf56c3?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zZTY1MTYyYy01MjhiLTRkZjMtOTdmNy1iMjVmYjZiZjU2YzM/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -522,16 +522,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4196"
+ "Microsoft.Compute/GetOperationStatus3Min;1181,Microsoft.Compute/GetOperationStatus30Min;3434"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "8d424c60-d30a-40ee-ad3c-1b2174f3a778"
+ "69791e57-3846-40c1-9cb1-d3284bac98e0"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -541,16 +541,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "9bbec5bc-19b9-427d-b809-cdb76f97dae6"
+ "9b30a628-b4cf-48c9-9999-05231d71e827"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220309T192928Z:9bbec5bc-19b9-427d-b809-cdb76f97dae6"
+ "WESTUS:20220815T195919Z:9b30a628-b4cf-48c9-9999-05231d71e827"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 19:29:28 GMT"
+ "Mon, 15 Aug 2022 19:59:18 GMT"
],
"Content-Length": [
"184"
@@ -562,20 +562,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-08-15T12:58:49.5985871-07:00\",\r\n \"endTime\": \"2022-08-15T12:58:50.7860223-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3e65162c-528b-4df3-97f7-b25fb6bf56c3\"\r\n}",
"StatusCode": 200
},
{
- "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=",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/3e65162c-528b-4df3-97f7-b25fb6bf56c3?monitor=true&api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zZTY1MTYyYy01MjhiLTRkZjMtOTdmNy1iMjVmYjZiZjU2YzM/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -586,16 +586,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4195"
+ "Microsoft.Compute/GetOperationStatus3Min;1180,Microsoft.Compute/GetOperationStatus30Min;3433"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "d92423f0-7a91-4d91-a585-48e69d1f072b"
+ "69680142-d030-471b-a671-02d32063a43b"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -605,16 +605,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "65e01395-8d69-407e-b907-3b487b631681"
+ "f4017671-2972-4254-9998-d12a482518bd"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220309T192928Z:65e01395-8d69-407e-b907-3b487b631681"
+ "WESTUS:20220815T195919Z:f4017671-2972-4254-9998-d12a482518bd"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 19:29:28 GMT"
+ "Mon, 15 Aug 2022 19:59:18 GMT"
],
"Expires": [
"-1"
@@ -627,22 +627,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7660/providers/Microsoft.Compute/galleries/galleryPsTestGallery6512?api-version=2022-01-03&$select=Permissions",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc2NjAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTY1MTI/YXBpLXZlcnNpb249MjAyMi0wMS0wMyYkc2VsZWN0PVBlcm1pc3Npb25z",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3339/providers/Microsoft.Compute/galleries/galleryPsTestGallery6234?api-version=2022-03-03&$select=Permissions",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzMzMzkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTYyMzQ/YXBpLXZlcnNpb249MjAyMi0wMy0wMyYkc2VsZWN0PVBlcm1pc3Npb25z",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0e98c31d-a9ad-4aaa-bf92-8145bedda598"
+ "355f9343-b278-4ece-aed5-9a91dea63450"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -653,16 +653,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetGallery3Min;344,Microsoft.Compute/GetGallery30Min;2494"
+ "Microsoft.Compute/GetGallery3Min;328,Microsoft.Compute/GetGallery30Min;2191"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "58c4fc4c-75b1-411d-921b-845ac3e5ce30"
+ "95e35c36-fbce-4332-a9af-77435f7ffc32"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -672,16 +672,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "4b2b3877-7b8d-4316-9a6c-1c3691d81d0c"
+ "a8007634-01b1-4149-9150-1c48199d85bf"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220309T192928Z:4b2b3877-7b8d-4316-9a6c-1c3691d81d0c"
+ "WESTUS:20220815T195920Z:a8007634-01b1-4149-9150-1c48199d85bf"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 19:29:28 GMT"
+ "Mon, 15 Aug 2022 19:59:19 GMT"
],
"Content-Length": [
"872"
@@ -693,20 +693,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery6234\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3339/providers/Microsoft.Compute/galleries/galleryPsTestGallery6234\",\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-GALLERYPSTESTGALLERY6234\"\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-51170bf2-328d-49a9-bfab-4c0508a18014\"\r\n ]\r\n }\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/635bc13c-d77a-431f-abd6-c36413d259a8?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy82MzViYzEzYy1kNzdhLTQzMWYtYWJkNi1jMzY0MTNkMjU5YTg/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/3b002f65-f31f-4889-9513-4de1308360e0?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYjAwMmY2NS1mMzFmLTQ4ODktOTUxMy00ZGUxMzA4MzYwZTA/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -717,16 +717,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4193"
+ "Microsoft.Compute/GetOperationStatus3Min;1181,Microsoft.Compute/GetOperationStatus30Min;3431"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "8d39224f-4aa8-4d57-afa6-2d3615232b40"
+ "4269c800-28b5-4e39-aa76-cfbe2da442b6"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -736,16 +736,16 @@
"11993"
],
"x-ms-correlation-request-id": [
- "9e9ab28e-7959-4fac-a28c-7237bd1a3399"
+ "6afb0403-5154-4aff-96d0-eb1a451282f9"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220309T192959Z:9e9ab28e-7959-4fac-a28c-7237bd1a3399"
+ "WESTUS:20220815T195950Z:6afb0403-5154-4aff-96d0-eb1a451282f9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 19:29:58 GMT"
+ "Mon, 15 Aug 2022 19:59:50 GMT"
],
"Content-Length": [
"184"
@@ -757,20 +757,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-08-15T12:59:20.2703821-07:00\",\r\n \"endTime\": \"2022-08-15T12:59:20.6297953-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3b002f65-f31f-4889-9513-4de1308360e0\"\r\n}",
"StatusCode": 200
},
{
- "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=",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/3b002f65-f31f-4889-9513-4de1308360e0?monitor=true&api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYjAwMmY2NS1mMzFmLTQ4ODktOTUxMy00ZGUxMzA4MzYwZTA/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -781,16 +781,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4192"
+ "Microsoft.Compute/GetOperationStatus3Min;1180,Microsoft.Compute/GetOperationStatus30Min;3430"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "b8821262-2a16-4334-840a-90f18c35b354"
+ "d7dfc7d9-48c5-4130-93dc-ccc5fb9b60e9"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -800,16 +800,16 @@
"11992"
],
"x-ms-correlation-request-id": [
- "9facdf10-1289-44ff-be29-c96aee4aa29b"
+ "901cf9e5-39c3-443c-9dd3-d66a98636f20"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220309T192959Z:9facdf10-1289-44ff-be29-c96aee4aa29b"
+ "WESTUS:20220815T195950Z:901cf9e5-39c3-443c-9dd3-d66a98636f20"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 19:29:58 GMT"
+ "Mon, 15 Aug 2022 19:59:50 GMT"
],
"Expires": [
"-1"
@@ -822,22 +822,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7660/providers/Microsoft.Compute/galleries/galleryPsTestGallery6512?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc2NjAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTY1MTI/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3339/providers/Microsoft.Compute/galleries/galleryPsTestGallery6234?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzMzMzkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTYyMzQ/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2ad7db57-dc7d-49fb-b852-cff4ad94d217"
+ "e55bfec3-b889-41c6-8d07-d8a1b1943dd3"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -848,22 +848,22 @@
"no-cache"
],
"Location": [
- "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"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/9d78024a-2402-4099-92bb-b3c63cb04a17?monitor=true&api-version=2022-03-03"
],
"Azure-AsyncOperation": [
- "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"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/9d78024a-2402-4099-92bb-b3c63cb04a17?api-version=2022-03-03"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;899"
+ "Microsoft.Compute/DeleteGallery3Min;36,Microsoft.Compute/DeleteGallery30Min;760"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "59a5590e-957c-4284-8458-8857d7cacb39"
+ "9d78024a-2402-4099-92bb-b3c63cb04a17"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -873,16 +873,16 @@
"14999"
],
"x-ms-correlation-request-id": [
- "c27ab730-66b1-4cf9-a5c4-2e5126c91f00"
+ "a549e8e0-79ec-4d08-af61-962041314f24"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220309T192959Z:c27ab730-66b1-4cf9-a5c4-2e5126c91f00"
+ "WESTUS:20220815T195950Z:a549e8e0-79ec-4d08-af61-962041314f24"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 19:29:59 GMT"
+ "Mon, 15 Aug 2022 19:59:50 GMT"
],
"Expires": [
"-1"
@@ -895,16 +895,16 @@
"StatusCode": 202
},
{
- "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==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/9d78024a-2402-4099-92bb-b3c63cb04a17?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy85ZDc4MDI0YS0yNDAyLTQwOTktOTJiYi1iM2M2M2NiMDRhMTc/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -915,16 +915,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4190"
+ "Microsoft.Compute/GetOperationStatus3Min;1180,Microsoft.Compute/GetOperationStatus30Min;3620"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "f48c7abc-9f3e-4ed0-bf27-0d49b36b1444"
+ "73b3153f-8b7f-4454-b364-fbfad6e55965"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -934,16 +934,16 @@
"11991"
],
"x-ms-correlation-request-id": [
- "ec6dbd50-e356-4492-8b17-960b5df714c7"
+ "06165c77-a7fb-410c-b7a2-c3872422c88f"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220309T193029Z:ec6dbd50-e356-4492-8b17-960b5df714c7"
+ "WESTUS:20220815T200021Z:06165c77-a7fb-410c-b7a2-c3872422c88f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 19:30:29 GMT"
+ "Mon, 15 Aug 2022 20:00:20 GMT"
],
"Content-Length": [
"184"
@@ -955,20 +955,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-08-15T12:59:50.8485882-07:00\",\r\n \"endTime\": \"2022-08-15T12:59:51.0048155-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9d78024a-2402-4099-92bb-b3c63cb04a17\"\r\n}",
"StatusCode": 200
},
{
- "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=",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/9d78024a-2402-4099-92bb-b3c63cb04a17?monitor=true&api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy85ZDc4MDI0YS0yNDAyLTQwOTktOTJiYi1iM2M2M2NiMDRhMTc/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -979,16 +979,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4189"
+ "Microsoft.Compute/GetOperationStatus3Min;1179,Microsoft.Compute/GetOperationStatus30Min;3619"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "49a9a87d-169c-46c3-b260-921dc008fc05"
+ "eb07111f-ab47-453f-a962-0b55b144f34b"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -998,16 +998,16 @@
"11990"
],
"x-ms-correlation-request-id": [
- "be0d17b4-0b1c-47f6-83ca-a1e9c34f4f75"
+ "baac9049-9c1a-4949-a86e-0f74132998c6"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220309T193030Z:be0d17b4-0b1c-47f6-83ca-a1e9c34f4f75"
+ "WESTUS:20220815T200021Z:baac9049-9c1a-4949-a86e-0f74132998c6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 19:30:29 GMT"
+ "Mon, 15 Aug 2022 20:00:20 GMT"
],
"Expires": [
"-1"
@@ -1020,21 +1020,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg7660?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc2NjA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg3339?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzMzMzk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a286224d-dccd-40ae-8cc1-b60decc60590"
+ "1c43cea5-fcdb-44b1-84cd-c6f6c6cc77b7"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.22000",
+ "OSVersion/Microsoft.Windows.10.0.19044",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
@@ -1046,22 +1046,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkc3NjYwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkczMzM5LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14999"
+ "14998"
],
"x-ms-request-id": [
- "ac0a7516-f40d-41e6-a816-3ae9b65a3398"
+ "43b57e16-bb06-4164-99ef-9b65409899d9"
],
"x-ms-correlation-request-id": [
- "ac0a7516-f40d-41e6-a816-3ae9b65a3398"
+ "43b57e16-bb06-4164-99ef-9b65409899d9"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220309T193031Z:ac0a7516-f40d-41e6-a816-3ae9b65a3398"
+ "WESTCENTRALUS:20220815T200023Z:43b57e16-bb06-4164-99ef-9b65409899d9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1070,7 +1070,7 @@
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 19:30:30 GMT"
+ "Mon, 15 Aug 2022 20:00:23 GMT"
],
"Expires": [
"-1"
@@ -1083,15 +1083,15 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkc3NjYwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIUVV4TVJWSlpVRk5VUlZOVVVrYzNOall3TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkczMzM5LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIUVV4TVJWSlpVRk5VUlZOVVVrY3pNek01TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.22000",
+ "OSVersion/Microsoft.Windows.10.0.19044",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
@@ -1102,17 +1102,194 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkczMzM5LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10"
+ ],
+ "Retry-After": [
+ "15"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11994"
+ ],
+ "x-ms-request-id": [
+ "d874f8cd-55bc-431b-b8a5-dae575dca6e6"
+ ],
+ "x-ms-correlation-request-id": [
+ "d874f8cd-55bc-431b-b8a5-dae575dca6e6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220815T200038Z:d874f8cd-55bc-431b-b8a5-dae575dca6e6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 15 Aug 2022 20:00:38 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkczMzM5LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIUVV4TVJWSlpVRk5VUlZOVVVrY3pNek01TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.36202",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkczMzM5LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-request-id": [
+ "c682f699-31af-43e4-9cc2-d23ccfd14eb2"
+ ],
+ "x-ms-correlation-request-id": [
+ "c682f699-31af-43e4-9cc2-d23ccfd14eb2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220815T200053Z:c682f699-31af-43e4-9cc2-d23ccfd14eb2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 15 Aug 2022 20:00:53 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkczMzM5LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIUVV4TVJWSlpVRk5VUlZOVVVrY3pNek01TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.36202",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkczMzM5LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-request-id": [
+ "584812b6-511a-43d7-9e62-bd2e5f5b498a"
+ ],
+ "x-ms-correlation-request-id": [
+ "584812b6-511a-43d7-9e62-bd2e5f5b498a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220815T200109Z:584812b6-511a-43d7-9e62-bd2e5f5b498a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 15 Aug 2022 20:01:08 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkczMzM5LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIUVV4TVJWSlpVRk5VUlZOVVVrY3pNek01TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.36202",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkczMzM5LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
],
"x-ms-request-id": [
- "60554602-79f2-4c46-9d7d-c8d892ba3815"
+ "63809dbf-e0c5-4aa9-9142-35f7c45932e2"
],
"x-ms-correlation-request-id": [
- "60554602-79f2-4c46-9d7d-c8d892ba3815"
+ "63809dbf-e0c5-4aa9-9142-35f7c45932e2"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220309T193046Z:60554602-79f2-4c46-9d7d-c8d892ba3815"
+ "WESTCENTRALUS:20220815T200124Z:63809dbf-e0c5-4aa9-9142-35f7c45932e2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1121,7 +1298,58 @@
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 19:30:45 GMT"
+ "Mon, 15 Aug 2022 20:01:23 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkczMzM5LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIUVV4TVJWSlpVRk5VUlZOVVVrY3pNek01TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.700.22.36202",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19044",
+ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-request-id": [
+ "eba7a622-6a7f-47de-b8c7-1e6f8ecf6260"
+ ],
+ "x-ms-correlation-request-id": [
+ "eba7a622-6a7f-47de-b8c7-1e6f8ecf6260"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20220815T200139Z:eba7a622-6a7f-47de-b8c7-1e6f8ecf6260"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 15 Aug 2022 20:01:39 GMT"
],
"Expires": [
"-1"
@@ -1134,15 +1362,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkc3NjYwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIUVV4TVJWSlpVRk5VUlZOVVVrYzNOall3TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkczMzM5LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIUVV4TVJWSlpVRk5VUlZOVVVrY3pNek01TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.22000",
+ "OSVersion/Microsoft.Windows.10.0.19044",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
@@ -1154,16 +1382,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11989"
],
"x-ms-request-id": [
- "f710789c-a679-4816-ba60-00604edac19f"
+ "7cc811a4-a046-4dec-aec6-aedeffb04115"
],
"x-ms-correlation-request-id": [
- "f710789c-a679-4816-ba60-00604edac19f"
+ "7cc811a4-a046-4dec-aec6-aedeffb04115"
],
"x-ms-routing-request-id": [
- "WESTCENTRALUS:20220309T193046Z:f710789c-a679-4816-ba60-00604edac19f"
+ "WESTCENTRALUS:20220815T200139Z:7cc811a4-a046-4dec-aec6-aedeffb04115"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1172,7 +1400,7 @@
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 19:30:45 GMT"
+ "Mon, 15 Aug 2022 20:01:39 GMT"
],
"Expires": [
"-1"
@@ -1187,8 +1415,8 @@
],
"Names": {
"Gallery_SharingToCommunity_CRUD_Tests": [
- "galleryPsTestRg7660",
- "galleryPsTestGallery6512"
+ "galleryPsTestRg3339",
+ "galleryPsTestGallery6234"
]
},
"Variables": {
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 987cf2a14506..2ede99a7813f 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,21 +1,21 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg2620?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI2MjA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg7530?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc1MzA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "10644c5f-248b-438b-8e56-bacd1214b38b"
+ "7fb9a00c-7567-4651-a400-1a088616fbef"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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": [
@@ -36,13 +36,13 @@
"1199"
],
"x-ms-request-id": [
- "5aa9e85d-2c56-4e3e-9aa1-7f4ef836b623"
+ "e6788295-ddc5-466b-b272-4785741317fb"
],
"x-ms-correlation-request-id": [
- "5aa9e85d-2c56-4e3e-9aa1-7f4ef836b623"
+ "e6788295-ddc5-466b-b272-4785741317fb"
],
"x-ms-routing-request-id": [
- "WESTUS:20220309T064341Z:5aa9e85d-2c56-4e3e-9aa1-7f4ef836b623"
+ "WESTCENTRALUS:20220813T001349Z:e6788295-ddc5-466b-b272-4785741317fb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -51,7 +51,7 @@
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 06:43:41 GMT"
+ "Sat, 13 Aug 2022 00:13:48 GMT"
],
"Content-Length": [
"192"
@@ -63,26 +63,26 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7530\",\r\n \"name\": \"galleryPsTestRg7530\",\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/galleryPsTestRg2620/providers/Microsoft.Compute/galleries/galleryPsTestGallery6165?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI2MjAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTYxNjU/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7530/providers/Microsoft.Compute/galleries/galleryPsTestGallery3631?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc1MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM2MzE/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"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": [
- "fa806dc2-2c8c-4f6c-88a6-db2c3431f643"
+ "d1ab9fc2-77ab-4d35-aae4-5734057e8672"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -99,19 +99,19 @@
"no-cache"
],
"Azure-AsyncOperation": [
- "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"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/42de90e1-e7d4-4a42-b81c-cd1251f342eb?api-version=2022-03-03"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299"
+ "Microsoft.Compute/CreateUpdateGallery3Min;48,Microsoft.Compute/CreateUpdateGallery30Min;294"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "6f56969d-e5c7-4c1b-a383-d664d201bb6e"
+ "42de90e1-e7d4-4a42-b81c-cd1251f342eb"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -121,16 +121,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "1af947ad-acb7-4447-b7f8-076e23d6aa24"
+ "13aa6743-3dff-4f06-9e17-6b80433776d4"
],
"x-ms-routing-request-id": [
- "WESTUS:20220309T064345Z:1af947ad-acb7-4447-b7f8-076e23d6aa24"
+ "WESTCENTRALUS:20220813T001352Z:13aa6743-3dff-4f06-9e17-6b80433776d4"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 06:43:44 GMT"
+ "Sat, 13 Aug 2022 00:13:51 GMT"
],
"Content-Length": [
"572"
@@ -142,20 +142,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery3631\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7530/providers/Microsoft.Compute/galleries/galleryPsTestGallery3631\",\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-GALLERYPSTESTGALLERY3631\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\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/6f56969d-e5c7-4c1b-a383-d664d201bb6e?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy82ZjU2OTY5ZC1lNWM3LTRjMWItYTM4My1kNjY0ZDIwMWJiNmU/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/42de90e1-e7d4-4a42-b81c-cd1251f342eb?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy80MmRlOTBlMS1lN2Q0LTRhNDItYjgxYy1jZDEyNTFmMzQyZWI/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -166,38 +166,38 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4198"
+ "Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4090"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "3f6ba42c-182a-45c6-88ad-6bd89e276979"
+ "27d4e195-bc13-434d-8dfa-326a77104c8d"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11991"
],
"x-ms-correlation-request-id": [
- "25a73726-292f-4134-8fd1-c9a95394af80"
+ "e29bb51a-7b21-4684-a0a3-49dfea760f79"
],
"x-ms-routing-request-id": [
- "WESTUS:20220309T064415Z:25a73726-292f-4134-8fd1-c9a95394af80"
+ "WESTCENTRALUS:20220813T001422Z:e29bb51a-7b21-4684-a0a3-49dfea760f79"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 06:44:14 GMT"
+ "Sat, 13 Aug 2022 00:14:22 GMT"
],
"Content-Length": [
- "183"
+ "184"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -206,20 +206,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:13:52.3539619-07:00\",\r\n \"endTime\": \"2022-08-12T17:13:52.5883542-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"42de90e1-e7d4-4a42-b81c-cd1251f342eb\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2620/providers/Microsoft.Compute/galleries/galleryPsTestGallery6165?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI2MjAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTYxNjU/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7530/providers/Microsoft.Compute/galleries/galleryPsTestGallery3631?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc1MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM2MzE/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -230,35 +230,35 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2496"
+ "Microsoft.Compute/GetGallery3Min;341,Microsoft.Compute/GetGallery30Min;2450"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "3420e44c-63d0-40d3-81a7-261e360b8857"
+ "54e2afc2-843a-4363-b600-2488be66a6b9"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11990"
],
"x-ms-correlation-request-id": [
- "1bb9faec-7339-45b7-a077-57369aa47173"
+ "6c4f18e8-3298-460d-a1e1-91d1e2e5ad9c"
],
"x-ms-routing-request-id": [
- "WESTUS:20220309T064415Z:1bb9faec-7339-45b7-a077-57369aa47173"
+ "WESTCENTRALUS:20220813T001423Z:6c4f18e8-3298-460d-a1e1-91d1e2e5ad9c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 06:44:14 GMT"
+ "Sat, 13 Aug 2022 00:14:22 GMT"
],
"Content-Length": [
"573"
@@ -270,26 +270,26 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery3631\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7530/providers/Microsoft.Compute/galleries/galleryPsTestGallery3631\",\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-GALLERYPSTESTGALLERY3631\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2620/providers/Microsoft.Compute/galleries/galleryPsTestGallery6165?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI2MjAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTYxNjU/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7530/providers/Microsoft.Compute/galleries/galleryPsTestGallery3631?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc1MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM2MzE/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4459da64-d68c-4948-8582-9a3269101343"
+ "7c155cca-b96c-467b-b5f9-800178c7f44f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -300,35 +300,35 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetGallery3Min;345,Microsoft.Compute/GetGallery30Min;2495"
+ "Microsoft.Compute/GetGallery3Min;340,Microsoft.Compute/GetGallery30Min;2449"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "71f0f333-f0d1-457b-85b3-8347e3b56bd6"
+ "b529ded7-1993-407c-bcdf-a9d410f63316"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11989"
],
"x-ms-correlation-request-id": [
- "a5e550e3-bd2d-40fd-aeac-d1d121d160b1"
+ "8c0ea399-4335-418a-9d94-8309752562df"
],
"x-ms-routing-request-id": [
- "WESTUS:20220309T064415Z:a5e550e3-bd2d-40fd-aeac-d1d121d160b1"
+ "WESTCENTRALUS:20220813T001423Z:8c0ea399-4335-418a-9d94-8309752562df"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 06:44:14 GMT"
+ "Sat, 13 Aug 2022 00:14:23 GMT"
],
"Content-Length": [
"573"
@@ -340,26 +340,26 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery3631\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7530/providers/Microsoft.Compute/galleries/galleryPsTestGallery3631\",\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-GALLERYPSTESTGALLERY3631\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2620/providers/Microsoft.Compute/galleries/galleryPsTestGallery6165/share?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI2MjAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTYxNjUvc2hhcmU/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7530/providers/Microsoft.Compute/galleries/galleryPsTestGallery3631/share?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc1MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM2MzEvc2hhcmU/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"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": [
- "71599f0e-5b6a-421d-836a-2acede17fb7e"
+ "818946b3-2c1c-4388-bcce-68fde4ddf0a3"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -376,22 +376,22 @@
"no-cache"
],
"Location": [
- "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"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/34e6f506-094c-4e26-a0d3-78d53508b8b4?monitor=true&api-version=2022-03-03"
],
"Azure-AsyncOperation": [
- "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"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/34e6f506-094c-4e26-a0d3-78d53508b8b4?api-version=2022-03-03"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/PostShareGallery3Min;29,Microsoft.Compute/PostShareGallery30Min;119"
+ "Microsoft.Compute/PostShareGallery3Min;29,Microsoft.Compute/PostShareGallery30Min;114"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "977ecd99-785e-4971-a2b6-d25a34208695"
+ "34e6f506-094c-4e26-a0d3-78d53508b8b4"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -401,16 +401,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "5cb6d3a3-8913-41e4-b64b-1aafa942333f"
+ "41bc6c6c-ae02-4cc6-9746-46ab2b88eb18"
],
"x-ms-routing-request-id": [
- "WESTUS:20220309T064415Z:5cb6d3a3-8913-41e4-b64b-1aafa942333f"
+ "WESTCENTRALUS:20220813T001423Z:41bc6c6c-ae02-4cc6-9746-46ab2b88eb18"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 06:44:15 GMT"
+ "Sat, 13 Aug 2022 00:14:23 GMT"
],
"Expires": [
"-1"
@@ -423,22 +423,22 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2620/providers/Microsoft.Compute/galleries/galleryPsTestGallery6165/share?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI2MjAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTYxNjUvc2hhcmU/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7530/providers/Microsoft.Compute/galleries/galleryPsTestGallery3631/share?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc1MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM2MzEvc2hhcmU/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "POST",
"RequestBody": "{\r\n \"operationType\": \"Reset\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "75af3a0e-478d-4ffb-9ddb-57c38de5ac3a"
+ "0c569736-6376-419e-b9f8-4a35b8d17176"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -455,22 +455,22 @@
"no-cache"
],
"Location": [
- "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"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/3921b30f-2814-40eb-9a71-3775ef860c45?monitor=true&api-version=2022-03-03"
],
"Azure-AsyncOperation": [
- "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"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/3921b30f-2814-40eb-9a71-3775ef860c45?api-version=2022-03-03"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/PostShareGallery3Min;28,Microsoft.Compute/PostShareGallery30Min;118"
+ "Microsoft.Compute/PostShareGallery3Min;28,Microsoft.Compute/PostShareGallery30Min;113"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "ffa68feb-47ff-4d8b-9847-3cbabe570b2a"
+ "3921b30f-2814-40eb-9a71-3775ef860c45"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -480,16 +480,16 @@
"1198"
],
"x-ms-correlation-request-id": [
- "1a5b26ad-d4a9-42c7-944e-9f004e4cae78"
+ "24aed308-67e0-4375-a589-acbd3e89ba12"
],
"x-ms-routing-request-id": [
- "WESTUS:20220309T064446Z:1a5b26ad-d4a9-42c7-944e-9f004e4cae78"
+ "WESTCENTRALUS:20220813T001454Z:24aed308-67e0-4375-a589-acbd3e89ba12"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 06:44:46 GMT"
+ "Sat, 13 Aug 2022 00:14:54 GMT"
],
"Expires": [
"-1"
@@ -502,16 +502,16 @@
"StatusCode": 202
},
{
- "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==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/34e6f506-094c-4e26-a0d3-78d53508b8b4?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zNGU2ZjUwNi0wOTRjLTRlMjYtYTBkMy03OGQ1MzUwOGI4YjQ/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -522,35 +522,35 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4196"
+ "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4084"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "a538a172-6f82-4bcc-b4f2-c39778abac84"
+ "cfb35fb4-d229-41fc-9736-3d828815165c"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11987"
],
"x-ms-correlation-request-id": [
- "a3d37df0-4c3d-405d-a4a8-8766904be620"
+ "9b96be29-ea39-4a4f-b804-66b42d193744"
],
"x-ms-routing-request-id": [
- "WESTUS:20220309T064446Z:a3d37df0-4c3d-405d-a4a8-8766904be620"
+ "WESTCENTRALUS:20220813T001453Z:9b96be29-ea39-4a4f-b804-66b42d193744"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 06:44:45 GMT"
+ "Sat, 13 Aug 2022 00:14:53 GMT"
],
"Content-Length": [
"184"
@@ -562,20 +562,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:14:23.4322419-07:00\",\r\n \"endTime\": \"2022-08-12T17:14:24.5884973-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"34e6f506-094c-4e26-a0d3-78d53508b8b4\"\r\n}",
"StatusCode": 200
},
{
- "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=",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/34e6f506-094c-4e26-a0d3-78d53508b8b4?monitor=true&api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zNGU2ZjUwNi0wOTRjLTRlMjYtYTBkMy03OGQ1MzUwOGI4YjQ/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -586,35 +586,35 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4195"
+ "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4083"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "85c70141-705b-467c-8f6f-e1ca28b81bea"
+ "aacf90ae-4f4f-4c11-a1c7-77c61efd7d13"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11986"
],
"x-ms-correlation-request-id": [
- "11fdf704-4204-4651-bbdc-6d6165f64fb9"
+ "c243d39f-7770-47cb-ab46-e1ff672b385f"
],
"x-ms-routing-request-id": [
- "WESTUS:20220309T064446Z:11fdf704-4204-4651-bbdc-6d6165f64fb9"
+ "WESTCENTRALUS:20220813T001453Z:c243d39f-7770-47cb-ab46-e1ff672b385f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 06:44:46 GMT"
+ "Sat, 13 Aug 2022 00:14:53 GMT"
],
"Expires": [
"-1"
@@ -627,22 +627,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2620/providers/Microsoft.Compute/galleries/galleryPsTestGallery6165?api-version=2022-01-03&$select=Permissions",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI2MjAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTYxNjU/YXBpLXZlcnNpb249MjAyMi0wMS0wMyYkc2VsZWN0PVBlcm1pc3Npb25z",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7530/providers/Microsoft.Compute/galleries/galleryPsTestGallery3631?api-version=2022-03-03&$select=Permissions",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc1MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM2MzE/YXBpLXZlcnNpb249MjAyMi0wMy0wMyYkc2VsZWN0PVBlcm1pc3Npb25z",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2238da37-40f3-47c6-af21-c58e1f817eee"
+ "008513db-2f06-42e2-b976-888143e9a225"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -653,35 +653,35 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetGallery3Min;344,Microsoft.Compute/GetGallery30Min;2494"
+ "Microsoft.Compute/GetGallery3Min;339,Microsoft.Compute/GetGallery30Min;2448"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "28e2d572-58d1-4b5d-be1c-087657672d74"
+ "45549040-3ae3-47a3-97ce-3516d81bf767"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11985"
],
"x-ms-correlation-request-id": [
- "5ac19f2e-58d4-47c7-b32b-369ab20e8803"
+ "3c844143-cbf8-4b1b-95d4-45df2f07da31"
],
"x-ms-routing-request-id": [
- "WESTUS:20220309T064446Z:5ac19f2e-58d4-47c7-b32b-369ab20e8803"
+ "WESTCENTRALUS:20220813T001453Z:3c844143-cbf8-4b1b-95d4-45df2f07da31"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 06:44:46 GMT"
+ "Sat, 13 Aug 2022 00:14:53 GMT"
],
"Content-Length": [
"886"
@@ -693,20 +693,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery3631\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7530/providers/Microsoft.Compute/galleries/galleryPsTestGallery3631\",\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-GALLERYPSTESTGALLERY3631\"\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/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/ffa68feb-47ff-4d8b-9847-3cbabe570b2a?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mZmE2OGZlYi00N2ZmLTRkOGItOTg0Ny0zY2JhYmU1NzBiMmE/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/3921b30f-2814-40eb-9a71-3775ef860c45?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zOTIxYjMwZi0yODE0LTQwZWItOWE3MS0zNzc1ZWY4NjBjNDU/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -717,35 +717,35 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4193"
+ "Microsoft.Compute/GetOperationStatus3Min;1179,Microsoft.Compute/GetOperationStatus30Min;4115"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "1cdef25c-765f-4fb2-8bd5-56b6525f1613"
+ "305ac106-d2f6-42b7-bc08-785b9a3e2fb4"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11984"
],
"x-ms-correlation-request-id": [
- "a1b3f28d-f3b0-48f0-ad93-5567d1082f52"
+ "0a946b07-3758-42f8-b940-f2e7f5ab567b"
],
"x-ms-routing-request-id": [
- "WESTUS:20220309T064516Z:a1b3f28d-f3b0-48f0-ad93-5567d1082f52"
+ "WESTCENTRALUS:20220813T001524Z:0a946b07-3758-42f8-b940-f2e7f5ab567b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 06:45:16 GMT"
+ "Sat, 13 Aug 2022 00:15:24 GMT"
],
"Content-Length": [
"184"
@@ -757,20 +757,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:14:54.1511755-07:00\",\r\n \"endTime\": \"2022-08-12T17:14:54.4949378-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3921b30f-2814-40eb-9a71-3775ef860c45\"\r\n}",
"StatusCode": 200
},
{
- "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=",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/3921b30f-2814-40eb-9a71-3775ef860c45?monitor=true&api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zOTIxYjMwZi0yODE0LTQwZWItOWE3MS0zNzc1ZWY4NjBjNDU/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -781,35 +781,35 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4192"
+ "Microsoft.Compute/GetOperationStatus3Min;1178,Microsoft.Compute/GetOperationStatus30Min;4114"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "6bfc4367-4d54-4b49-b10d-e32c958274c5"
+ "e7dd3b0b-1b74-46f0-ae5b-3a985d4f2329"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11983"
],
"x-ms-correlation-request-id": [
- "bdbcadfb-c9d4-44b9-ba7c-d0f7854cdc5c"
+ "a3408f05-eb0d-4032-929d-d991a6ffb846"
],
"x-ms-routing-request-id": [
- "WESTUS:20220309T064516Z:bdbcadfb-c9d4-44b9-ba7c-d0f7854cdc5c"
+ "WESTCENTRALUS:20220813T001524Z:a3408f05-eb0d-4032-929d-d991a6ffb846"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 06:45:16 GMT"
+ "Sat, 13 Aug 2022 00:15:24 GMT"
],
"Expires": [
"-1"
@@ -822,22 +822,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2620/providers/Microsoft.Compute/galleries/galleryPsTestGallery6165?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI2MjAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTYxNjU/YXBpLXZlcnNpb249MjAyMi0wMS0wMw==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7530/providers/Microsoft.Compute/galleries/galleryPsTestGallery3631?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc1MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM2MzE/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "30427c29-5bfc-41b7-af89-c19cd1e47daa"
+ "ec36e64e-28a6-4898-974b-13593ff3e940"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -848,22 +848,22 @@
"no-cache"
],
"Location": [
- "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"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/f0253790-6607-4a2e-8c5b-a8d4a1b7a58d?monitor=true&api-version=2022-03-03"
],
"Azure-AsyncOperation": [
- "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"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/f0253790-6607-4a2e-8c5b-a8d4a1b7a58d?api-version=2022-03-03"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;899"
+ "Microsoft.Compute/DeleteGallery3Min;48,Microsoft.Compute/DeleteGallery30Min;895"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "cc78463e-075a-470c-8573-dbf6578678c3"
+ "f0253790-6607-4a2e-8c5b-a8d4a1b7a58d"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -873,16 +873,16 @@
"14999"
],
"x-ms-correlation-request-id": [
- "f909f911-924b-4292-854e-e16bd90a5cd5"
+ "cfe58edb-7ce6-4408-9790-db94bcb2d6a8"
],
"x-ms-routing-request-id": [
- "WESTUS:20220309T064517Z:f909f911-924b-4292-854e-e16bd90a5cd5"
+ "WESTCENTRALUS:20220813T001524Z:cfe58edb-7ce6-4408-9790-db94bcb2d6a8"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 06:45:17 GMT"
+ "Sat, 13 Aug 2022 00:15:24 GMT"
],
"Expires": [
"-1"
@@ -895,16 +895,16 @@
"StatusCode": 202
},
{
- "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==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/f0253790-6607-4a2e-8c5b-a8d4a1b7a58d?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mMDI1Mzc5MC02NjA3LTRhMmUtOGM1Yi1hOGQ0YTFiN2E1OGQ/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -915,38 +915,38 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4190"
+ "Microsoft.Compute/GetOperationStatus3Min;1175,Microsoft.Compute/GetOperationStatus30Min;4109"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "e1f7ed3b-ce3e-4c9e-905e-9a77ededf75b"
+ "cbbb9590-9361-4a45-9031-e0994eb6ea23"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
+ "11982"
],
"x-ms-correlation-request-id": [
- "2ba6bab1-5201-4cac-8cff-28d4bc78eeaf"
+ "b988c3af-e03e-4bf7-819d-87e388a2042d"
],
"x-ms-routing-request-id": [
- "WESTUS:20220309T064548Z:2ba6bab1-5201-4cac-8cff-28d4bc78eeaf"
+ "WESTCENTRALUS:20220813T001555Z:b988c3af-e03e-4bf7-819d-87e388a2042d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 06:45:47 GMT"
+ "Sat, 13 Aug 2022 00:15:54 GMT"
],
"Content-Length": [
- "184"
+ "183"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -955,20 +955,20 @@
"-1"
]
},
- "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}",
+ "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:15:24.9170046-07:00\",\r\n \"endTime\": \"2022-08-12T17:15:25.010729-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f0253790-6607-4a2e-8c5b-a8d4a1b7a58d\"\r\n}",
"StatusCode": 200
},
{
- "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=",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/f0253790-6607-4a2e-8c5b-a8d4a1b7a58d?monitor=true&api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mMDI1Mzc5MC02NjA3LTRhMmUtOGM1Yi1hOGQ0YTFiN2E1OGQ/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"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/57.0.0"
]
},
"ResponseHeaders": {
@@ -979,35 +979,35 @@
"no-cache"
],
"x-ms-ratelimit-remaining-resource": [
- "Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4189"
+ "Microsoft.Compute/GetOperationStatus3Min;1174,Microsoft.Compute/GetOperationStatus30Min;4108"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420,1dd04696-ef54-4aec-bada-944b3b397491_132592960184915420"
+ "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721"
],
"x-ms-request-id": [
- "41c121a5-328b-4607-9d45-26dc72a2a84e"
+ "2176d65c-d71d-4573-903b-819bfff04bcf"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
+ "11981"
],
"x-ms-correlation-request-id": [
- "646e16bf-5204-40a0-b73d-eba96ce47eaa"
+ "298f4880-8d6a-4d33-9376-ad69261beded"
],
"x-ms-routing-request-id": [
- "WESTUS:20220309T064548Z:646e16bf-5204-40a0-b73d-eba96ce47eaa"
+ "WESTCENTRALUS:20220813T001555Z:298f4880-8d6a-4d33-9376-ad69261beded"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 06:45:47 GMT"
+ "Sat, 13 Aug 2022 00:15:54 GMT"
],
"Expires": [
"-1"
@@ -1020,21 +1020,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg2620?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI2MjA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg7530?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc1MzA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "87a42817-845d-4d41-a5f3-8ced63e69aad"
+ "3c2c26a5-f44a-4bb9-9250-b9d4c9157e6b"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.22000",
+ "OSVersion/Microsoft.Windows.10.0.19044",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
@@ -1046,7 +1046,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkcyNjIwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkc3NTMwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10"
],
"Retry-After": [
"15"
@@ -1055,13 +1055,13 @@
"14999"
],
"x-ms-request-id": [
- "cfb6bb1d-7977-4aa2-9af1-253318be80d6"
+ "52e02362-dd22-4b06-aa59-a085f46f41a2"
],
"x-ms-correlation-request-id": [
- "cfb6bb1d-7977-4aa2-9af1-253318be80d6"
+ "52e02362-dd22-4b06-aa59-a085f46f41a2"
],
"x-ms-routing-request-id": [
- "WESTUS:20220309T064550Z:cfb6bb1d-7977-4aa2-9af1-253318be80d6"
+ "WESTCENTRALUS:20220813T001557Z:52e02362-dd22-4b06-aa59-a085f46f41a2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1070,7 +1070,7 @@
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 06:45:50 GMT"
+ "Sat, 13 Aug 2022 00:15:56 GMT"
],
"Expires": [
"-1"
@@ -1083,15 +1083,15 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkcyNjIwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIUVV4TVJWSlpVRk5VUlZOVVVrY3lOakl3TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkc3NTMwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIUVV4TVJWSlpVRk5VUlZOVVVrYzNOVE13TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.22000",
+ "OSVersion/Microsoft.Windows.10.0.19044",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
@@ -1103,7 +1103,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkcyNjIwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkc3NTMwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10"
],
"Retry-After": [
"15"
@@ -1112,13 +1112,13 @@
"11999"
],
"x-ms-request-id": [
- "0875bea7-c082-4010-9f4b-9065ba9b3be3"
+ "d91b1ffb-687c-44e1-bfc3-1b4b67ebfdbc"
],
"x-ms-correlation-request-id": [
- "0875bea7-c082-4010-9f4b-9065ba9b3be3"
+ "d91b1ffb-687c-44e1-bfc3-1b4b67ebfdbc"
],
"x-ms-routing-request-id": [
- "WESTUS:20220309T064605Z:0875bea7-c082-4010-9f4b-9065ba9b3be3"
+ "WESTCENTRALUS:20220813T001612Z:d91b1ffb-687c-44e1-bfc3-1b4b67ebfdbc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1127,7 +1127,7 @@
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 06:46:05 GMT"
+ "Sat, 13 Aug 2022 00:16:12 GMT"
],
"Expires": [
"-1"
@@ -1140,15 +1140,15 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkcyNjIwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIUVV4TVJWSlpVRk5VUlZOVVVrY3lOakl3TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkc3NTMwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIUVV4TVJWSlpVRk5VUlZOVVVrYzNOVE13TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.22000",
+ "OSVersion/Microsoft.Windows.10.0.19044",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
@@ -1160,7 +1160,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkcyNjIwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkc3NTMwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10"
],
"Retry-After": [
"15"
@@ -1169,13 +1169,13 @@
"11998"
],
"x-ms-request-id": [
- "9d0e5e78-aab4-4e8d-bcda-1cdf305f8055"
+ "688b60b9-ccab-4b09-97a0-1543468c75ce"
],
"x-ms-correlation-request-id": [
- "9d0e5e78-aab4-4e8d-bcda-1cdf305f8055"
+ "688b60b9-ccab-4b09-97a0-1543468c75ce"
],
"x-ms-routing-request-id": [
- "WESTUS:20220309T064620Z:9d0e5e78-aab4-4e8d-bcda-1cdf305f8055"
+ "WESTCENTRALUS:20220813T001628Z:688b60b9-ccab-4b09-97a0-1543468c75ce"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1184,7 +1184,7 @@
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 06:46:20 GMT"
+ "Sat, 13 Aug 2022 00:16:27 GMT"
],
"Expires": [
"-1"
@@ -1197,15 +1197,15 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkcyNjIwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIUVV4TVJWSlpVRk5VUlZOVVVrY3lOakl3TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkc3NTMwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIUVV4TVJWSlpVRk5VUlZOVVVrYzNOVE13TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.22000",
+ "OSVersion/Microsoft.Windows.10.0.19044",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
@@ -1217,7 +1217,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkcyNjIwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkc3NTMwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10"
],
"Retry-After": [
"15"
@@ -1226,13 +1226,13 @@
"11997"
],
"x-ms-request-id": [
- "0f461a64-acaf-4905-a3e4-b171bf7a334d"
+ "7cc21746-3ab7-4f59-a30c-0d7be727f96b"
],
"x-ms-correlation-request-id": [
- "0f461a64-acaf-4905-a3e4-b171bf7a334d"
+ "7cc21746-3ab7-4f59-a30c-0d7be727f96b"
],
"x-ms-routing-request-id": [
- "WESTUS:20220309T064635Z:0f461a64-acaf-4905-a3e4-b171bf7a334d"
+ "WESTCENTRALUS:20220813T001643Z:7cc21746-3ab7-4f59-a30c-0d7be727f96b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1241,7 +1241,7 @@
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 06:46:35 GMT"
+ "Sat, 13 Aug 2022 00:16:42 GMT"
],
"Expires": [
"-1"
@@ -1254,15 +1254,15 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkcyNjIwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIUVV4TVJWSlpVRk5VUlZOVVVrY3lOakl3TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkc3NTMwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIUVV4TVJWSlpVRk5VUlZOVVVrYzNOVE13TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.22000",
+ "OSVersion/Microsoft.Windows.10.0.19044",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
@@ -1274,7 +1274,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkcyNjIwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkc3NTMwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10"
],
"Retry-After": [
"15"
@@ -1283,13 +1283,13 @@
"11996"
],
"x-ms-request-id": [
- "151440eb-6e1e-4073-9a11-a1ce000fb03c"
+ "11da3914-1f34-47f3-a483-8233d532a958"
],
"x-ms-correlation-request-id": [
- "151440eb-6e1e-4073-9a11-a1ce000fb03c"
+ "11da3914-1f34-47f3-a483-8233d532a958"
],
"x-ms-routing-request-id": [
- "WESTUS:20220309T064651Z:151440eb-6e1e-4073-9a11-a1ce000fb03c"
+ "WESTCENTRALUS:20220813T001658Z:11da3914-1f34-47f3-a483-8233d532a958"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1298,7 +1298,7 @@
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 06:46:50 GMT"
+ "Sat, 13 Aug 2022 00:16:57 GMT"
],
"Expires": [
"-1"
@@ -1311,15 +1311,15 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkcyNjIwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIUVV4TVJWSlpVRk5VUlZOVVVrY3lOakl3TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkc3NTMwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIUVV4TVJWSlpVRk5VUlZOVVVrYzNOVE13TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.22000",
+ "OSVersion/Microsoft.Windows.10.0.19044",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
@@ -1334,13 +1334,13 @@
"11995"
],
"x-ms-request-id": [
- "70cdc694-f32e-49ef-b778-bf95feab098a"
+ "f7a2929d-0b2d-4bb6-8568-967dbee066c5"
],
"x-ms-correlation-request-id": [
- "70cdc694-f32e-49ef-b778-bf95feab098a"
+ "f7a2929d-0b2d-4bb6-8568-967dbee066c5"
],
"x-ms-routing-request-id": [
- "WESTUS:20220309T064706Z:70cdc694-f32e-49ef-b778-bf95feab098a"
+ "WESTCENTRALUS:20220813T001713Z:f7a2929d-0b2d-4bb6-8568-967dbee066c5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1349,7 +1349,7 @@
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 06:47:06 GMT"
+ "Sat, 13 Aug 2022 00:17:12 GMT"
],
"Expires": [
"-1"
@@ -1362,15 +1362,15 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkcyNjIwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIUVV4TVJWSlpVRk5VUlZOVVVrY3lOakl3TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkc3NTMwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIUVV4TVJWSlpVRk5VUlZOVVVrYzNOVE13TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.36202",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.22000",
+ "OSVersion/Microsoft.Windows.10.0.19044",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
@@ -1385,13 +1385,13 @@
"11994"
],
"x-ms-request-id": [
- "c40e7b19-da59-4ea7-9d8f-636bd0572583"
+ "a35cad35-469a-45d5-a0d6-5a5ed6ea9525"
],
"x-ms-correlation-request-id": [
- "c40e7b19-da59-4ea7-9d8f-636bd0572583"
+ "a35cad35-469a-45d5-a0d6-5a5ed6ea9525"
],
"x-ms-routing-request-id": [
- "WESTUS:20220309T064706Z:c40e7b19-da59-4ea7-9d8f-636bd0572583"
+ "WESTCENTRALUS:20220813T001713Z:a35cad35-469a-45d5-a0d6-5a5ed6ea9525"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1400,7 +1400,7 @@
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 06:47:06 GMT"
+ "Sat, 13 Aug 2022 00:17:12 GMT"
],
"Expires": [
"-1"
@@ -1415,8 +1415,8 @@
],
"Names": {
"Gallery_SharingToSubscriptionAndTenant_CRUD_Tests": [
- "galleryPsTestRg2620",
- "galleryPsTestGallery6165"
+ "galleryPsTestRg7530",
+ "galleryPsTestGallery3631"
]
},
"Variables": {
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 a1361b02f993..d91c8cbf631a 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/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=",
+ "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=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlYvaW1hZ2VzL2ptYWVzc2NjL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e878367b-2a52-41a2-bd46-9c354172777e"
+ "1bcb6c5b-8f23-4be2-bd32-46c82f663992"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -30,10 +30,10 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132902158476019100"
+ "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_133028703489092498"
],
"x-ms-request-id": [
- "09f571d4-6f98-4641-9983-f0ea1456354e"
+ "e9226078-51ac-4014-82d6-9529742927cc"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -43,16 +43,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "07db66b4-c884-4bbb-afdd-592b87c4694c"
+ "e0fbac9f-2c52-489c-b0e3-207121e06eda"
],
"x-ms-routing-request-id": [
- "WESTUS:20220309T064017Z:07db66b4-c884-4bbb-afdd-592b87c4694c"
+ "CENTRALUS:20220722T221016Z:e0fbac9f-2c52-489c-b0e3-207121e06eda"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 06:40:17 GMT"
+ "Fri, 22 Jul 2022 22:10:16 GMT"
],
"Content-Length": [
"444"
@@ -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-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}",
+ "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-27T23:14:24.4218083-05: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/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/images/jmaesscc/versions?api-version=2022-01-03&sharedTo=tenant",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlYvaW1hZ2VzL2ptYWVzc2NjL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjItMDEtMDMmc2hhcmVkVG89dGVuYW50",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/images/jmaesscc/versions?api-version=2022-03-03&sharedTo=tenant",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlYvaW1hZ2VzL2ptYWVzc2NjL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjItMDMtMDMmc2hhcmVkVG89dGVuYW50",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2284f67d-2a60-40f8-b2dc-f1ab0c1941ee"
+ "d45a8bcd-db6a-425d-9402-bb82d66c4860"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -97,10 +97,10 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132902158476019100"
+ "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_133028703489092498"
],
"x-ms-request-id": [
- "f1695c69-9a68-4d82-964d-5950fc10268e"
+ "5dca6d6c-34c4-4de1-95f1-8592e6ea19be"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -110,16 +110,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "68e901f2-1cf4-431e-acd0-7a3e42cfc3f7"
+ "8615db38-1f97-48bb-b4d4-360c8819c90a"
],
"x-ms-routing-request-id": [
- "WESTUS:20220309T064017Z:68e901f2-1cf4-431e-acd0-7a3e42cfc3f7"
+ "CENTRALUS:20220722T221016Z:8615db38-1f97-48bb-b4d4-360c8819c90a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 06:40:17 GMT"
+ "Fri, 22 Jul 2022 22:10:16 GMT"
],
"Content-Length": [
"537"
@@ -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-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}",
+ "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-27T23:14:24.4218083-05: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/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",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/images/jmaesscc/versions?api-version=2022-03-03&sharedTo=tenant",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlYvaW1hZ2VzL2ptYWVzc2NjL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjItMDMtMDMmc2hhcmVkVG89dGVuYW50",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9e5fe271-e412-485f-8c0b-c02d4ff9b62b"
+ "e4de38a7-ab3c-4040-891b-54aecc228f14"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -164,10 +164,10 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132902158476019100"
+ "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_133028703489092498"
],
"x-ms-request-id": [
- "f27a5b1c-34da-45f3-9644-efcb7559196a"
+ "508f5491-5b56-47bb-8aa3-d5ab48e829cd"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -177,16 +177,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "c58ff935-793b-4b7a-a168-e8a7d1b763cb"
+ "0cabb4fa-bcd2-4bc2-883e-8a5a3e07733c"
],
"x-ms-routing-request-id": [
- "WESTUS:20220309T064018Z:c58ff935-793b-4b7a-a168-e8a7d1b763cb"
+ "CENTRALUS:20220722T221017Z:0cabb4fa-bcd2-4bc2-883e-8a5a3e07733c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 06:40:17 GMT"
+ "Fri, 22 Jul 2022 22:10:16 GMT"
],
"Content-Length": [
"537"
@@ -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-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}",
+ "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-27T23:14:24.4218083-05: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/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=",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/images/jmaesscc/versions?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlYvaW1hZ2VzL2ptYWVzc2NjL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8e71505b-1351-49b9-8235-9f1b0d7676e9"
+ "6ca77fa3-333c-4194-b7f0-b9e9cabbc2ff"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -231,10 +231,10 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132902158476019100"
+ "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_133028703489092498"
],
"x-ms-request-id": [
- "877ae672-b1cf-4273-92cd-3dc07b89741f"
+ "5e33cf78-0bf7-404f-9a20-f11315b71d27"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -244,16 +244,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "29da8474-179d-4f08-84e9-bb0fe952ac15"
+ "993e1589-48dd-4338-8475-4ed77a69e620"
],
"x-ms-routing-request-id": [
- "WESTUS:20220309T064017Z:29da8474-179d-4f08-84e9-bb0fe952ac15"
+ "CENTRALUS:20220722T221016Z:993e1589-48dd-4338-8475-4ed77a69e620"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 06:40:17 GMT"
+ "Fri, 22 Jul 2022 22:10:16 GMT"
],
"Content-Length": [
"537"
@@ -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-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}",
+ "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-27T23:14:24.4218083-05: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"
+ "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871"
}
}
\ 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 b874537bc2f2..ea5fcfba23f3 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/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=",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/images/jmaesscc?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlYvaW1hZ2VzL2ptYWVzc2NjP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a1faa739-a24c-4153-a0b6-f72b68650194"
+ "8d9bd695-b2e3-4247-89fb-1cab46b4c5c7"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -30,10 +30,10 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132902158476019100"
+ "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_133028703489092498"
],
"x-ms-request-id": [
- "8b8779fc-b09b-4972-88fb-89a611074f4c"
+ "26dd2be4-c05c-4695-866d-0be47823d7ac"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -43,16 +43,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "9bd7d3e4-667a-4e63-b32b-a8c18d6841b3"
+ "b82acea9-ff57-41df-ae3e-2e98d77ee404"
],
"x-ms-routing-request-id": [
- "WESTUS:20220309T064014Z:9bd7d3e4-667a-4e63-b32b-a8c18d6841b3"
+ "CENTRALUS:20220722T221009Z:b82acea9-ff57-41df-ae3e-2e98d77ee404"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 06:40:14 GMT"
+ "Fri, 22 Jul 2022 22:10:09 GMT"
],
"Content-Length": [
"476"
@@ -68,22 +68,22 @@
"StatusCode": 200
},
{
- "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",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/images?api-version=2022-03-03&sharedTo=tenant",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlYvaW1hZ2VzP2FwaS12ZXJzaW9uPTIwMjItMDMtMDMmc2hhcmVkVG89dGVuYW50",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "10774bc7-59f4-498f-8541-9d80521fbd24"
+ "285f3c64-39e5-4f4c-869d-f7e328af6b9d"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -97,10 +97,10 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132902158476019100"
+ "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_133028703489092498"
],
"x-ms-request-id": [
- "f02fd1e4-4359-4de6-828a-688a776b79e9"
+ "8f4f0c9d-242d-4707-8b16-65836e8519d6"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -110,16 +110,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "629b5353-99f0-4dc1-8332-805bb955cc6a"
+ "413f806b-7bea-40e3-9c0b-e16e41b1527a"
],
"x-ms-routing-request-id": [
- "WESTUS:20220309T064014Z:629b5353-99f0-4dc1-8332-805bb955cc6a"
+ "CENTRALUS:20220722T221010Z:413f806b-7bea-40e3-9c0b-e16e41b1527a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 06:40:14 GMT"
+ "Fri, 22 Jul 2022 22:10:10 GMT"
],
"Content-Length": [
"577"
@@ -135,22 +135,22 @@
"StatusCode": 200
},
{
- "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",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/images?api-version=2022-03-03&sharedTo=tenant",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlYvaW1hZ2VzP2FwaS12ZXJzaW9uPTIwMjItMDMtMDMmc2hhcmVkVG89dGVuYW50",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2f2d04ae-b480-4396-9857-ba0ce05a561e"
+ "0c417b8c-3e95-47a6-938d-b51b311030e0"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -164,10 +164,10 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132902158476019100"
+ "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_133028703489092498"
],
"x-ms-request-id": [
- "c408f066-0aa2-4617-85c1-a40957657cd8"
+ "05f4fe90-7286-469f-92d4-779173b92312"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -177,16 +177,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "a7fb0c2e-1058-4c97-adc6-f820d675a6b5"
+ "d20bd1f2-7082-40d6-86d4-3ca707a41735"
],
"x-ms-routing-request-id": [
- "WESTUS:20220309T064014Z:a7fb0c2e-1058-4c97-adc6-f820d675a6b5"
+ "CENTRALUS:20220722T221010Z:d20bd1f2-7082-40d6-86d4-3ca707a41735"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 06:40:14 GMT"
+ "Fri, 22 Jul 2022 22:10:10 GMT"
],
"Content-Length": [
"577"
@@ -202,22 +202,22 @@
"StatusCode": 200
},
{
- "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=",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/images?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlYvaW1hZ2VzP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fb3c575f-c66b-47c3-9ba6-00c2443ce69d"
+ "9fd171c5-5936-4e5d-85b7-cb29a3a0d2bb"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -231,10 +231,10 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132902158476019100"
+ "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_133028703489092498"
],
"x-ms-request-id": [
- "1345c841-8f03-411c-88d8-3f13854386c3"
+ "7457688a-17e8-499c-ac66-ff0e8e98e992"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -244,16 +244,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "2d2b8619-c2dc-4915-9d6d-40dc872f6878"
+ "08a184da-a959-44b7-ad2e-b6cab84f569f"
],
"x-ms-routing-request-id": [
- "WESTUS:20220309T064014Z:2d2b8619-c2dc-4915-9d6d-40dc872f6878"
+ "CENTRALUS:20220722T221010Z:08a184da-a959-44b7-ad2e-b6cab84f569f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 09 Mar 2022 06:40:14 GMT"
+ "Fri, 22 Jul 2022 22:10:10 GMT"
],
"Content-Length": [
"577"
@@ -271,6 +271,6 @@
],
"Names": {},
"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/SharedGalleryTests/SharedGallery_GetAndList_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/SharedGalleryTests/SharedGallery_GetAndList_Tests.json
index fa34a12868ba..6b86ae25a088 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/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==",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlY/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5a71a399-e1f1-4e06-b013-d2ee6f23e2c9"
+ "eabb7401-c50d-44e6-bc70-8579820a6ff0"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -30,10 +30,10 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132895603710570547"
+ "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_133028703489092498"
],
"x-ms-request-id": [
- "229ef5e9-02d8-415a-86cf-b2fe622e8c54"
+ "ebebf591-cee2-41f5-8b4f-9bb6fde31a02"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -43,16 +43,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "5137bd40-9f89-408c-a215-a774e6de3f60"
+ "003c4e68-1c12-44fa-a176-72ad0abc9567"
],
"x-ms-routing-request-id": [
- "WESTUS:20220316T015514Z:5137bd40-9f89-408c-a215-a774e6de3f60"
+ "CENTRALUS:20220722T221013Z:003c4e68-1c12-44fa-a176-72ad0abc9567"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 16 Mar 2022 01:55:13 GMT"
+ "Fri, 22 Jul 2022 22:10:12 GMT"
],
"Content-Length": [
"226"
@@ -68,22 +68,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries?api-version=2022-01-03&sharedTo=tenant",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDMmc2hhcmVkVG89dGVuYW50",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries?api-version=2022-03-03&sharedTo=tenant",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzP2FwaS12ZXJzaW9uPTIwMjItMDMtMDMmc2hhcmVkVG89dGVuYW50",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "afd0ba22-5f75-4d7c-afcf-27417495637e"
+ "140234fd-66b5-451d-ba88-9a0a5ae1bd8e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -97,10 +97,10 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "74657d10-ae84-4ba1-9987-bf2190e52342_132880360530032567"
+ "0ac215da-9fa3-417d-b10f-e2e37ecff6d1_133029696582965807"
],
"x-ms-request-id": [
- "0b311d1d-90d1-45dc-bf52-e44fb74b60f8"
+ "16b0cb84-3689-43ec-ad12-0edad2bc23db"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -110,16 +110,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "a2bbbc41-25f3-4491-954c-ca2d6a1ffb35"
+ "19f853cb-2019-4144-bf79-bb931b246bce"
],
"x-ms-routing-request-id": [
- "WESTUS:20220316T015514Z:a2bbbc41-25f3-4491-954c-ca2d6a1ffb35"
+ "CENTRALUS:20220722T221013Z:19f853cb-2019-4144-bf79-bb931b246bce"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 16 Mar 2022 01:55:14 GMT"
+ "Fri, 22 Jul 2022 22:10:13 GMT"
],
"Content-Length": [
"279"
@@ -135,22 +135,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries?api-version=2022-01-03",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDM=",
+ "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries?api-version=2022-03-03",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c5de8d4c-7b97-460f-a0fa-aaf7bf0480d4"
+ "5a38668d-3e5e-43a3-9c2f-bbe32acb598e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.700.22.11601",
+ "FxVersion/4.700.22.30802",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.22000",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/53.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0"
]
},
"ResponseHeaders": {
@@ -164,10 +164,10 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "74657d10-ae84-4ba1-9987-bf2190e52342_132880360530032567"
+ "0ac215da-9fa3-417d-b10f-e2e37ecff6d1_133029696582965807"
],
"x-ms-request-id": [
- "72d49584-fd4f-4b45-96e3-04258468e78a"
+ "5ebdf3d5-ebb3-4e70-a9f4-e91cbab4e50c"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
@@ -177,19 +177,19 @@
"11997"
],
"x-ms-correlation-request-id": [
- "231d8c7c-cd12-43ab-9fc8-a6d189ebd9a4"
+ "5a4f54ad-1b0d-4688-8042-1f935fbf31c1"
],
"x-ms-routing-request-id": [
- "WESTUS:20220316T015514Z:231d8c7c-cd12-43ab-9fc8-a6d189ebd9a4"
+ "CENTRALUS:20220722T221014Z:5a4f54ad-1b0d-4688-8042-1f935fbf31c1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 16 Mar 2022 01:55:14 GMT"
+ "Fri, 22 Jul 2022 22:10:13 GMT"
],
"Content-Length": [
- "526"
+ "279"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -198,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 \"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}",
+ "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
}
],
"Names": {},
"Variables": {
- "SubscriptionId": "97f78232-382b-46a7-8a72-964d692c4f3f"
+ "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871"
}
}
\ No newline at end of file