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/GalleryImagesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImagesOperations.cs index c26522ef20b0..7b73a486abf7 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImagesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImagesOperations.cs @@ -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. /// 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/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/SharingProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingProfile.cs index 3cbc4050601e..24388232662c 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingProfile.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingProfile.cs @@ -39,7 +39,7 @@ public SharingProfile() /// A list of sharing profile groups. /// Information of community gallery /// if current gallery is shared to community. - public SharingProfile(string permissions = default(string), IList groups = default(IList), object communityGalleryInfo = default(object)) + public SharingProfile(string permissions = default(string), IList groups = default(IList), CommunityGalleryInfo communityGalleryInfo = default(CommunityGalleryInfo)) { Permissions = permissions; Groups = groups; @@ -74,7 +74,7 @@ public SharingProfile() /// shared to community. /// [JsonProperty(PropertyName = "communityGalleryInfo")] - public object CommunityGalleryInfo { get; set; } + public CommunityGalleryInfo CommunityGalleryInfo { get; set; } } } 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/tests/ScenarioTests/GalleryTests.cs b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/GalleryTests.cs index 1189671375e1..c1c9b94127e7 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() { @@ -466,7 +466,7 @@ public void Gallery_SharingToCommunity_CRUD_Tests() Gallery galleryOutWithSharingProfile = m_CrpClient.Galleries.Get(rgName, galleryName, SelectPermissions.Permissions); Trace.TraceInformation("Got the gallery"); Assert.NotNull(galleryOutWithSharingProfile); - CommunityGalleryInfo communityGalleryInfo = JsonConvert.DeserializeObject(galleryOutWithSharingProfile.SharingProfile.CommunityGalleryInfo.ToString()); + CommunityGalleryInfo communityGalleryInfo = galleryOutWithSharingProfile.SharingProfile.CommunityGalleryInfo; Assert.True(communityGalleryInfo.CommunityGalleryEnabled); Trace.TraceInformation("Reset this gallery to private before deleting it."); @@ -510,7 +510,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); @@ -522,9 +522,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; @@ -534,7 +534,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]); } @@ -570,7 +570,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); @@ -596,6 +596,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() @@ -663,6 +671,10 @@ private GalleryImageVersion GetTestInputGalleryImageVersion(string sourceImageId return new GalleryImageVersion { Location = galleryHomeLocation, + SafetyProfile = new GalleryImageVersionSafetyProfile() + { + AllowDeletionOfReplicatedLocations = true + }, PublishingProfile = new GalleryImageVersionPublishingProfile { ReplicaCount = 1, @@ -678,7 +690,7 @@ private GalleryImageVersion GetTestInputGalleryImageVersion(string sourceImageId }, StorageProfile = new GalleryImageVersionStorageProfile { - Source = new GalleryArtifactVersionSource + Source = new GalleryArtifactVersionFullSource { Id = sourceImageId } @@ -767,12 +779,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 @@ -784,6 +800,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", @@ -844,6 +880,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); @@ -852,7 +889,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/GalleryTests/GalleryApplicationVersion_CRUD_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryApplicationVersion_CRUD_Tests.json index bb2fb16581bc..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,28 +1,28 @@ { "Entries": [ { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/galleryPsTestRg1150?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNTA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "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 \"galleryPsTestRg1150\": \"2022-07-22 21:06:38Z\"\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": [ - "a209d559-9feb-41de-ad4e-7dcf83196d22" + "dda4f598-23d8-44f2-88b7-97e9ff13936f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "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": [ "application/json; charset=utf-8" ], "Content-Length": [ - "99" + "98" ] }, "ResponseHeaders": { @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "d5251d66-9523-434f-ac4d-6e3a48be4de8" + "1294f03a-8fc3-4c94-87eb-1d4938c2f2e3" ], "x-ms-correlation-request-id": [ - "d5251d66-9523-434f-ac4d-6e3a48be4de8" + "1294f03a-8fc3-4c94-87eb-1d4938c2f2e3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T210639Z:d5251d66-9523-434f-ac4d-6e3a48be4de8" + "WESTUS:20220813T004802Z:1294f03a-8fc3-4c94-87eb-1d4938c2f2e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:06:39 GMT" + "Sat, 13 Aug 2022 00:48:01 GMT" ], "Content-Length": [ - "246" + "243" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,25 +63,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1150\",\r\n \"name\": \"galleryPsTestRg1150\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg1150\": \"2022-07-22 21:06:38Z\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1150/providers/Microsoft.Storage/storageAccounts/saforgallery4566?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnk0NTY2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "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": [ - "1df79e12-084a-40cb-9d59-f6b7c0f98723" + "373f7a28-c270-46c9-aa37-89857b7d225a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ], "Content-Type": [ @@ -99,13 +99,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Storage/locations/eastus2/asyncoperations/a4bb3b0d-ba7b-4ffb-bc04-25658eef9547?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": [ - "a4bb3b0d-ba7b-4ffb-bc04-25658eef9547" + "e03a8642-3fb0-45f7-9ffd-cf05470157c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,16 +117,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "783e6584-c60d-4e6a-bd89-2cf91d830b2c" + "0360b5a5-df95-41bc-b3a4-bd1091c6463b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T210642Z:783e6584-c60d-4e6a-bd89-2cf91d830b2c" + "WESTUS:20220813T004806Z:0360b5a5-df95-41bc-b3a4-bd1091c6463b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:06:41 GMT" + "Sat, 13 Aug 2022 00:48:06 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -142,15 +142,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Storage/locations/eastus2/asyncoperations/a4bb3b0d-ba7b-4ffb-bc04-25658eef9547?monitor=true&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMi9hc3luY29wZXJhdGlvbnMvYTRiYjNiMGQtYmE3Yi00ZmZiLWJjMDQtMjU2NThlZWY5NTQ3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ] }, @@ -162,7 +162,7 @@ "no-cache" ], "x-ms-request-id": [ - "04ad264f-d3fd-40f0-9f69-dcd8dfd0ddb9" + "7140c5fe-118a-48db-acc4-0321b30162e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -174,16 +174,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "c1a563f8-08bc-4211-ab33-f90750d5b62a" + "afdd9f20-d1ae-430b-9f5f-08975974dbd1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T210700Z:c1a563f8-08bc-4211-ab33-f90750d5b62a" + "WESTUS:20220813T004823Z:afdd9f20-d1ae-430b-9f5f-08975974dbd1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:06:59 GMT" + "Sat, 13 Aug 2022 00:48:23 GMT" ], "Content-Length": [ "89" @@ -199,21 +199,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1150/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "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": [ - "21f35fc0-25cd-4278-9f0a-dcbbeeb66c18" + "a57b0765-0c20-43df-8020-dbe7c9e1665b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ] }, @@ -225,7 +225,7 @@ "no-cache" ], "x-ms-request-id": [ - "fbfe728f-01db-41c4-b1d1-12fae612c11d" + "8ebcb5ea-2d46-4cf3-8082-e33af1555317" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,19 +237,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "c4a26cfc-e8a5-45f8-b7e3-e6c3e4553cf3" + "140c1b6a-2aed-4f93-a454-5e9d2dedca68" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T210710Z:c4a26cfc-e8a5-45f8-b7e3-e6c3e4553cf3" + "WESTUS:20220813T004833Z:140c1b6a-2aed-4f93-a454-5e9d2dedca68" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:07:10 GMT" + "Sat, 13 Aug 2022 00:48:33 GMT" ], "Content-Length": [ - "765" + "764" ], "Content-Type": [ "application/json" @@ -258,25 +258,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1150/providers/Microsoft.Storage/storageAccounts/saforgallery4566\",\r\n \"name\": \"saforgallery4566\",\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-07-22T21:06:41.3377867Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery4566.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery4566.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery4566.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery4566.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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1150/providers/Microsoft.Storage/storageAccounts/saforgallery4566?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnk0NTY2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "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": [ - "d51847ff-1700-4cac-877e-e6239f937988" + "a54b07a6-88b8-418c-8631-395349120f5c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ] }, @@ -288,7 +288,7 @@ "no-cache" ], "x-ms-request-id": [ - "c91e93fd-2e40-42e0-8d58-141d232b280a" + "ab8f936c-d45c-4162-8388-f4e186fbc8c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -300,19 +300,19 @@ "11997" ], "x-ms-correlation-request-id": [ - "8eb25bf9-46f5-46b3-9b3d-8ed9c597a5c8" + "b9c5ccd4-c866-4f53-9fc2-41c56b4bbd9e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T210710Z:8eb25bf9-46f5-46b3-9b3d-8ed9c597a5c8" + "WESTUS:20220813T004833Z:b9c5ccd4-c866-4f53-9fc2-41c56b4bbd9e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:07:10 GMT" + "Sat, 13 Aug 2022 00:48:33 GMT" ], "Content-Length": [ - "753" + "752" ], "Content-Type": [ "application/json" @@ -321,25 +321,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1150/providers/Microsoft.Storage/storageAccounts/saforgallery4566\",\r\n \"name\": \"saforgallery4566\",\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-07-22T21:06:41.3377867Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery4566.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery4566.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery4566.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery4566.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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1150/providers/Microsoft.Storage/storageAccounts/saforgallery4566/listKeys?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnk0NTY2L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "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": [ - "9841942d-151c-4982-98fd-0f9d3647248c" + "684c4d3d-8299-4348-991d-bde08e14f166" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ] }, @@ -351,7 +351,7 @@ "no-cache" ], "x-ms-request-id": [ - "b3774170-d23e-4f59-9dd2-b513a46e0e99" + "d544b8d6-66bc-499f-9703-c80aede484f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -363,16 +363,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "762b8955-4469-47d6-95c8-a2ccaafd9891" + "a02fabbb-b516-4b6e-a12b-f4fe93d0ec3d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T210710Z:762b8955-4469-47d6-95c8-a2ccaafd9891" + "WESTUS:20220813T004834Z:a02fabbb-b516-4b6e-a12b-f4fe93d0ec3d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:07:10 GMT" + "Sat, 13 Aug 2022 00:48:33 GMT" ], "Content-Length": [ "197" @@ -388,21 +388,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1150/providers/Microsoft.Compute/galleries/galleryPsTestGallery8865?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4NjU/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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": [ - "ec120dd9-b9b1-4306-a9eb-5d176331b4c1" + "8e400079-bff2-4970-832f-ad9f869d3606" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ], "Content-Type": [ @@ -420,19 +420,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/7695d531-4d2a-4132-9b8f-0c4be5f328b7?api-version=2022-03-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;298" + "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;297" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "7695d531-4d2a-4132-9b8f-0c4be5f328b7" + "591bc930-b72b-48ed-bc71-83ec3fe5611e" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -442,19 +442,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "2e8c2306-70d6-45d1-80b0-55fb81f36ea5" + "00cc968d-fb55-4f82-8363-8a9b6aa045c5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T210713Z:2e8c2306-70d6-45d1-80b0-55fb81f36ea5" + "WESTCENTRALUS:20220813T004837Z:00cc968d-fb55-4f82-8363-8a9b6aa045c5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:07:12 GMT" + "Sat, 13 Aug 2022 00:48:36 GMT" ], "Content-Length": [ - "508" + "507" ], "Content-Type": [ "application/json; charset=utf-8" @@ -463,19 +463,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8865\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1150/providers/Microsoft.Compute/galleries/galleryPsTestGallery8865\",\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-GALLERYPSTESTGALLERY8865\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/7695d531-4d2a-4132-9b8f-0c4be5f328b7?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83Njk1ZDUzMS00ZDJhLTQxMzItOWI4Zi0wYzRiZTVmMzI4Yjc/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -487,16 +487,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4157" + "Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4154" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "c27b460a-afd6-4b96-a142-6ee54d7989b5" + "6d89162e-0468-42e8-8215-731a0c6f9399" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -506,19 +506,19 @@ "11999" ], "x-ms-correlation-request-id": [ - "87a96e79-82ea-489b-bfbd-66b124e3c6c8" + "a0d8d4d5-c40d-40d5-a24d-3e8f28f86b2c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T210743Z:87a96e79-82ea-489b-bfbd-66b124e3c6c8" + "WESTCENTRALUS:20220813T004907Z:a0d8d4d5-c40d-40d5-a24d-3e8f28f86b2c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:07:43 GMT" + "Sat, 13 Aug 2022 00:49:07 GMT" ], "Content-Length": [ - "183" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -527,19 +527,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T17:07:12.7749123-04:00\",\r\n \"endTime\": \"2022-07-22T17:07:12.868692-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7695d531-4d2a-4132-9b8f-0c4be5f328b7\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1150/providers/Microsoft.Compute/galleries/galleryPsTestGallery8865?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4NjU/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -551,16 +551,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;345,Microsoft.Compute/GetGallery30Min;2480" + "Microsoft.Compute/GetGallery3Min;345,Microsoft.Compute/GetGallery30Min;2470" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "72c5dd46-c317-4168-aa1f-7a099178378f" + "159d4430-bb57-479e-8ba3-144eb109dfa1" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -570,19 +570,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "07ce9d29-0ee7-4693-b30b-1e5f1c00e6ec" + "345e32cb-c398-4bcb-a4be-1c7b08709835" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T210743Z:07ce9d29-0ee7-4693-b30b-1e5f1c00e6ec" + "WESTCENTRALUS:20220813T004907Z:345e32cb-c398-4bcb-a4be-1c7b08709835" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:07:43 GMT" + "Sat, 13 Aug 2022 00:49:07 GMT" ], "Content-Length": [ - "509" + "508" ], "Content-Type": [ "application/json; charset=utf-8" @@ -591,25 +591,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8865\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1150/providers/Microsoft.Compute/galleries/galleryPsTestGallery8865\",\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-GALLERYPSTESTGALLERY8865\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1150/providers/Microsoft.Compute/galleries/galleryPsTestGallery8865/applications/galleryPsTestGalleryApplication5170?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4NjUvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb241MTcwP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "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": [ - "83fd8b44-ca5b-459b-9430-612b654377ff" + "746a905b-6f56-43aa-a772-dbad47b14268" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ], "Content-Type": [ @@ -627,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": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "92395692-805d-49b7-8997-ba28acb709da" + "2fc1e6c2-62f6-4b52-8bf7-e75b0f2e08d7" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -646,19 +646,19 @@ "1198" ], "x-ms-correlation-request-id": [ - "0c226698-ccd7-4fb1-853d-2479b656a802" + "4fad163a-c2f6-45cb-875d-c6a2b4cffad1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T210744Z:0c226698-ccd7-4fb1-853d-2479b656a802" + "WESTCENTRALUS:20220813T004908Z:4fad163a-c2f6-45cb-875d-c6a2b4cffad1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:07:44 GMT" + "Sat, 13 Aug 2022 00:49:08 GMT" ], "Content-Length": [ - "628" + "627" ], "Content-Type": [ "application/json; charset=utf-8" @@ -667,19 +667,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication5170\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1150/providers/Microsoft.Compute/galleries/galleryPsTestGallery8865/applications/galleryPsTestGalleryApplication5170\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1150/providers/Microsoft.Compute/galleries/galleryPsTestGallery8865/applications/galleryPsTestGalleryApplication5170?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4NjUvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb241MTcwP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -691,16 +691,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryApplication3Min;298,Microsoft.Compute/GetGalleryApplication30Min;1997" + "Microsoft.Compute/GetGalleryApplication3Min;298,Microsoft.Compute/GetGalleryApplication30Min;1991" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "0a5c0e89-18f0-481f-8b3c-c1bbe93bb58e" + "24e82584-401c-4d6b-ac58-e7d857d37d8b" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -710,19 +710,19 @@ "11997" ], "x-ms-correlation-request-id": [ - "20b90f3f-e916-4a6c-b471-c910f32b9383" + "06bcbd15-f20c-41ab-b4d1-a541ca7540e2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T210814Z:20b90f3f-e916-4a6c-b471-c910f32b9383" + "WESTCENTRALUS:20220813T004938Z:06bcbd15-f20c-41ab-b4d1-a541ca7540e2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:08:14 GMT" + "Sat, 13 Aug 2022 00:49:38 GMT" ], "Content-Length": [ - "628" + "627" ], "Content-Type": [ "application/json; charset=utf-8" @@ -731,32 +731,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication5170\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1150/providers/Microsoft.Compute/galleries/galleryPsTestGallery8865/applications/galleryPsTestGalleryApplication5170\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1150/providers/Microsoft.Compute/galleries/galleryPsTestGallery8865/applications/galleryPsTestGalleryApplication5170/versions/1.0.0?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4NjUvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb241MTcwL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "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://saforgallery4566.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=lQ%2Bdxgfy7ckhpxLe9vDzBLS6m6xMb2gvXnxLXcDyfJk%3D&st=2022-07-21T21%3A07%3A10Z&se=2022-07-24T21%3A07%3A10Z&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-08-01T04: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": [ - "dee27fbc-f741-4c01-ac7d-b7f23562b836" + "2fb6a370-549d-4e5e-8e7b-61b96acf1b41" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1021" + "1623" ] }, "ResponseHeaders": { @@ -767,7 +767,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/ba86b561-b8d4-4e77-92e3-316101c1b772?api-version=2022-03-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" @@ -776,10 +776,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "ba86b561-b8d4-4e77-92e3-316101c1b772" + "0ada4acf-d8b7-431d-8564-650eee053900" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -789,19 +789,19 @@ "1197" ], "x-ms-correlation-request-id": [ - "053c4a44-bc3b-4308-98ed-5f20a0d27588" + "6e890442-59a3-4b4a-aacf-3c29002b6e30" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T210815Z:053c4a44-bc3b-4308-98ed-5f20a0d27588" + "WESTCENTRALUS:20220813T004939Z:6e890442-59a3-4b4a-aacf-3c29002b6e30" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:08:15 GMT" + "Sat, 13 Aug 2022 00:49:39 GMT" ], "Content-Length": [ - "1590" + "2108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -810,32 +810,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1150/providers/Microsoft.Compute/galleries/galleryPsTestGallery8865/applications/galleryPsTestGalleryApplication5170/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://saforgallery4566.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=lQ%2Bdxgfy7ckhpxLe9vDzBLS6m6xMb2gvXnxLXcDyfJk%3D&st=2022-07-21T21%3A07%3A10Z&se=2022-07-24T21%3A07%3A10Z&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-07-22T17:08:15.0901913-04:00\",\r\n \"endOfLifeDate\": \"2022-08-01T00:00:00-04:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"safetyProfile\": {\r\n \"allowDeletionOfReplicatedLocations\": false\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1150/providers/Microsoft.Compute/galleries/galleryPsTestGallery8865/applications/galleryPsTestGalleryApplication5170/versions/1.0.0?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4NjUvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb241MTcwL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "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://saforgallery4566.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=lQ%2Bdxgfy7ckhpxLe9vDzBLS6m6xMb2gvXnxLXcDyfJk%3D&st=2022-07-21T21%3A07%3A10Z&se=2022-07-24T21%3A07%3A10Z&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-10-30T04: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": [ - "f4212f1a-1024-4240-a47e-9a025b54f0af" + "a8272238-382d-4bd7-95cf-9f596ffe2840" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1021" + "1623" ] }, "ResponseHeaders": { @@ -846,7 +846,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/ed102f65-71e7-4ebb-b88d-cf2c17b4dbe7?api-version=2022-03-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" @@ -855,10 +855,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "ed102f65-71e7-4ebb-b88d-cf2c17b4dbe7" + "1f834461-75a0-4020-a400-f9e18ad699e7" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -868,19 +868,19 @@ "1196" ], "x-ms-correlation-request-id": [ - "08bab736-2a8d-4284-a9ab-9773055cad92" + "f07ed389-fed3-46d8-9acd-f72cc681198a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T211247Z:08bab736-2a8d-4284-a9ab-9773055cad92" + "WESTCENTRALUS:20220813T005411Z:f07ed389-fed3-46d8-9acd-f72cc681198a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:12:46 GMT" + "Sat, 13 Aug 2022 00:54:10 GMT" ], "Content-Length": [ - "1590" + "2108" ], "Content-Type": [ "application/json; charset=utf-8" @@ -889,19 +889,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1150/providers/Microsoft.Compute/galleries/galleryPsTestGallery8865/applications/galleryPsTestGalleryApplication5170/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://saforgallery4566.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=lQ%2Bdxgfy7ckhpxLe9vDzBLS6m6xMb2gvXnxLXcDyfJk%3D&st=2022-07-21T21%3A07%3A10Z&se=2022-07-24T21%3A07%3A10Z&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-07-22T17:08:15.0901913-04:00\",\r\n \"endOfLifeDate\": \"2022-10-30T00:00:00-04:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"safetyProfile\": {\r\n \"allowDeletionOfReplicatedLocations\": false\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/ba86b561-b8d4-4e77-92e3-316101c1b772?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iYTg2YjU2MS1iOGQ0LTRlNzctOTJlMy0zMTYxMDFjMWI3NzI/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -913,16 +913,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4155" + "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4157" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "7200b087-8401-4163-b424-3431e1c7a6b5" + "c57d95df-a2e7-41dc-a914-0309aa42bf6d" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -932,16 +932,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "3977a9a3-e4a6-4188-a6b6-a6e5424ef318" + "9e26b8ab-465e-4d12-af39-a96891089c00" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T210845Z:3977a9a3-e4a6-4188-a6b6-a6e5424ef318" + "WESTCENTRALUS:20220813T005009Z:9e26b8ab-465e-4d12-af39-a96891089c00" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:08:45 GMT" + "Sat, 13 Aug 2022 00:50:09 GMT" ], "Content-Length": [ "134" @@ -953,19 +953,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T17:08:15.0433062-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ba86b561-b8d4-4e77-92e3-316101c1b772\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/ba86b561-b8d4-4e77-92e3-316101c1b772?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iYTg2YjU2MS1iOGQ0LTRlNzctOTJlMy0zMTYxMDFjMWI3NzI/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -977,16 +977,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4152" + "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4154" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "8094437f-c816-4acb-9d87-ee5651b60165" + "673d1c45-a792-4004-a0eb-6dff4ae93e9f" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -996,16 +996,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "1923f3d5-11ee-4500-bbe7-047ae2bd9717" + "7c82644e-b0d9-4289-88cd-daef8ba6b86f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T210915Z:1923f3d5-11ee-4500-bbe7-047ae2bd9717" + "WESTCENTRALUS:20220813T005039Z:7c82644e-b0d9-4289-88cd-daef8ba6b86f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:09:15 GMT" + "Sat, 13 Aug 2022 00:50:39 GMT" ], "Content-Length": [ "134" @@ -1017,19 +1017,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T17:08:15.0433062-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ba86b561-b8d4-4e77-92e3-316101c1b772\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/ba86b561-b8d4-4e77-92e3-316101c1b772?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iYTg2YjU2MS1iOGQ0LTRlNzctOTJlMy0zMTYxMDFjMWI3NzI/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -1041,16 +1041,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4149" + "Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4151" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "58c7d71b-780f-4a50-8b19-620fcc8e3c81" + "dcf4c72b-cdf4-4238-8970-467856480845" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1060,16 +1060,16 @@ "11994" ], "x-ms-correlation-request-id": [ - "f7b06c12-7a1e-4e85-9526-f1e3e4d9bd1e" + "bcee5d93-3dfd-4366-99b5-3449d74d676e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T210945Z:f7b06c12-7a1e-4e85-9526-f1e3e4d9bd1e" + "WESTCENTRALUS:20220813T005110Z:bcee5d93-3dfd-4366-99b5-3449d74d676e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:09:45 GMT" + "Sat, 13 Aug 2022 00:51:09 GMT" ], "Content-Length": [ "134" @@ -1081,19 +1081,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T17:08:15.0433062-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ba86b561-b8d4-4e77-92e3-316101c1b772\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/ba86b561-b8d4-4e77-92e3-316101c1b772?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iYTg2YjU2MS1iOGQ0LTRlNzctOTJlMy0zMTYxMDFjMWI3NzI/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -1105,16 +1105,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4150" + "Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4148" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "9df2d7c8-b2f5-47c8-bece-6cad441fa9ff" + "1a982f1e-8fd9-4ffc-8a03-eaa0a181bcdc" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1124,16 +1124,16 @@ "11993" ], "x-ms-correlation-request-id": [ - "8a7afe2a-67ea-459a-8ebc-9de73fb16b19" + "3f04d738-9e6a-4ef6-9184-8b0382edd89c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T211016Z:8a7afe2a-67ea-459a-8ebc-9de73fb16b19" + "WESTCENTRALUS:20220813T005140Z:3f04d738-9e6a-4ef6-9184-8b0382edd89c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:10:15 GMT" + "Sat, 13 Aug 2022 00:51:39 GMT" ], "Content-Length": [ "134" @@ -1145,19 +1145,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T17:08:15.0433062-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ba86b561-b8d4-4e77-92e3-316101c1b772\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/ba86b561-b8d4-4e77-92e3-316101c1b772?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iYTg2YjU2MS1iOGQ0LTRlNzctOTJlMy0zMTYxMDFjMWI3NzI/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -1169,16 +1169,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;4147" + "Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;4145" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "cb9a3369-9d75-4184-a578-b89209bbd6d9" + "f2fb30c1-8216-4e1b-8d57-f989df10e3ee" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1188,16 +1188,16 @@ "11992" ], "x-ms-correlation-request-id": [ - "2a96bbb3-1140-43df-baa6-4329f9941dfa" + "3cda4e74-e61b-43f8-95f4-65ad3887a882" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T211046Z:2a96bbb3-1140-43df-baa6-4329f9941dfa" + "WESTCENTRALUS:20220813T005210Z:3cda4e74-e61b-43f8-95f4-65ad3887a882" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:10:45 GMT" + "Sat, 13 Aug 2022 00:52:09 GMT" ], "Content-Length": [ "134" @@ -1209,19 +1209,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T17:08:15.0433062-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ba86b561-b8d4-4e77-92e3-316101c1b772\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/ba86b561-b8d4-4e77-92e3-316101c1b772?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iYTg2YjU2MS1iOGQ0LTRlNzctOTJlMy0zMTYxMDFjMWI3NzI/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -1233,16 +1233,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4144" + "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4142" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "993005c0-17d5-46d6-a77c-231d39c76308" + "eda25c8c-9e80-42e1-8562-c1ca44f95cb8" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1252,16 +1252,16 @@ "11991" ], "x-ms-correlation-request-id": [ - "49c5e986-57a9-4232-9168-baa75981a58e" + "e406ac73-4164-4315-bacc-816e741e8afd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T211116Z:49c5e986-57a9-4232-9168-baa75981a58e" + "WESTCENTRALUS:20220813T005240Z:e406ac73-4164-4315-bacc-816e741e8afd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:11:15 GMT" + "Sat, 13 Aug 2022 00:52:40 GMT" ], "Content-Length": [ "134" @@ -1273,19 +1273,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T17:08:15.0433062-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ba86b561-b8d4-4e77-92e3-316101c1b772\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/ba86b561-b8d4-4e77-92e3-316101c1b772?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iYTg2YjU2MS1iOGQ0LTRlNzctOTJlMy0zMTYxMDFjMWI3NzI/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -1297,35 +1297,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4141" + "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4139" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "bcefe652-6a39-4188-864a-40ec76ed2f28" - ], - "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": [ - "9ff584ea-c628-4ca9-997d-2ac11579721a" + "9eeca07b-3b07-430c-ac62-83a020e148b3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T211146Z:9ff584ea-c628-4ca9-997d-2ac11579721a" + "WESTCENTRALUS:20220813T005310Z:9eeca07b-3b07-430c-ac62-83a020e148b3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:11:46 GMT" + "Sat, 13 Aug 2022 00:53:10 GMT" ], "Content-Length": [ "134" @@ -1337,19 +1337,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T17:08:15.0433062-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ba86b561-b8d4-4e77-92e3-316101c1b772\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/ba86b561-b8d4-4e77-92e3-316101c1b772?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iYTg2YjU2MS1iOGQ0LTRlNzctOTJlMy0zMTYxMDFjMWI3NzI/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -1361,35 +1361,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4138" + "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4136" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "6dfedbd5-01f5-4131-aa5e-7b54b8c7c6be" + "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": [ - "582411c3-8f4b-4ba2-a585-41d124af318d" + "754a2356-7d26-4cfe-b162-748045007949" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T211216Z:582411c3-8f4b-4ba2-a585-41d124af318d" + "WESTCENTRALUS:20220813T005340Z:754a2356-7d26-4cfe-b162-748045007949" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:12:16 GMT" + "Sat, 13 Aug 2022 00:53:40 GMT" ], "Content-Length": [ "134" @@ -1401,19 +1401,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T17:08:15.0433062-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ba86b561-b8d4-4e77-92e3-316101c1b772\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/ba86b561-b8d4-4e77-92e3-316101c1b772?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iYTg2YjU2MS1iOGQ0LTRlNzctOTJlMy0zMTYxMDFjMWI3NzI/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -1425,16 +1425,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4135" + "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4133" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "6483d2e0-9ebb-4ed5-85bd-3a89ed1b1813" + "90e6c880-ffac-455e-9eca-47fcfb54e5c0" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1444,16 +1444,16 @@ "11988" ], "x-ms-correlation-request-id": [ - "8dac18a5-232a-4f41-8c93-38db14352e24" + "8b1b982a-d459-43f5-8e56-49f2d67b8c0f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T211246Z:8dac18a5-232a-4f41-8c93-38db14352e24" + "WESTCENTRALUS:20220813T005410Z:8b1b982a-d459-43f5-8e56-49f2d67b8c0f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:12:46 GMT" + "Sat, 13 Aug 2022 00:54:10 GMT" ], "Content-Length": [ "184" @@ -1465,19 +1465,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T17:08:15.0433062-04:00\",\r\n \"endTime\": \"2022-07-22T17:12:45.4612337-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ba86b561-b8d4-4e77-92e3-316101c1b772\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1150/providers/Microsoft.Compute/galleries/galleryPsTestGallery8865/applications/galleryPsTestGalleryApplication5170/versions/1.0.0?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4NjUvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb241MTcwL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -1489,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": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "a088560c-26be-47e8-88b3-397bda52745d" + "877a5a1d-12df-416b-92e4-931d28b2b1c6" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1508,19 +1508,19 @@ "11987" ], "x-ms-correlation-request-id": [ - "d1f38ef7-819c-46d7-a1df-a8bb5d33c2bf" + "fed0ca94-57f1-4489-abd5-265667a225ba" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T211246Z:d1f38ef7-819c-46d7-a1df-a8bb5d33c2bf" + "WESTCENTRALUS:20220813T005411Z:fed0ca94-57f1-4489-abd5-265667a225ba" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:12:46 GMT" + "Sat, 13 Aug 2022 00:54:10 GMT" ], "Content-Length": [ - "1591" + "2109" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1529,25 +1529,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1150/providers/Microsoft.Compute/galleries/galleryPsTestGallery8865/applications/galleryPsTestGalleryApplication5170/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://saforgallery4566.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=lQ%2Bdxgfy7ckhpxLe9vDzBLS6m6xMb2gvXnxLXcDyfJk%3D&st=2022-07-21T21%3A07%3A10Z&se=2022-07-24T21%3A07%3A10Z&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-07-22T17:08:15.0901913-04:00\",\r\n \"endOfLifeDate\": \"2022-08-01T00:00:00-04:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"safetyProfile\": {\r\n \"allowDeletionOfReplicatedLocations\": false\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1150/providers/Microsoft.Compute/galleries/galleryPsTestGallery8865/applications/galleryPsTestGalleryApplication5170/versions/1.0.0?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4NjUvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb241MTcwL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "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": [ - "6429e60e-6513-4f01-a80a-80b3e889d295" + "a0bf91d6-1229-49fa-b29f-9e2d1f1e9cf6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -1559,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": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "973e08ea-9cc6-4b18-bf39-25d6370da76b" + "9cbc7707-3c41-4f70-9ea1-fb55d2186cfd" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1578,19 +1578,19 @@ "11986" ], "x-ms-correlation-request-id": [ - "3d7c383b-6c98-482c-884f-2231ac8bcc82" + "012d392b-ab25-403f-ab49-d0990c83ffd6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T211247Z:3d7c383b-6c98-482c-884f-2231ac8bcc82" + "WESTCENTRALUS:20220813T005411Z:012d392b-ab25-403f-ab49-d0990c83ffd6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:12:46 GMT" + "Sat, 13 Aug 2022 00:54:10 GMT" ], "Content-Length": [ - "1591" + "2109" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1599,19 +1599,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1150/providers/Microsoft.Compute/galleries/galleryPsTestGallery8865/applications/galleryPsTestGalleryApplication5170/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://saforgallery4566.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=lQ%2Bdxgfy7ckhpxLe9vDzBLS6m6xMb2gvXnxLXcDyfJk%3D&st=2022-07-21T21%3A07%3A10Z&se=2022-07-24T21%3A07%3A10Z&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-07-22T17:08:15.0901913-04:00\",\r\n \"endOfLifeDate\": \"2022-08-01T00:00:00-04:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"safetyProfile\": {\r\n \"allowDeletionOfReplicatedLocations\": false\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1150/providers/Microsoft.Compute/galleries/galleryPsTestGallery8865/applications/galleryPsTestGalleryApplication5170/versions/1.0.0?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4NjUvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb241MTcwL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -1629,10 +1629,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "8835f6d6-ac82-49fb-9abe-c04ffe8357e7" + "ab06c309-11e5-459d-9074-e24b4c787c76" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1642,19 +1642,19 @@ "11978" ], "x-ms-correlation-request-id": [ - "5e049d48-475a-4cd9-9d54-2488153489e6" + "9c6a1db2-557a-4453-8c4e-7f570fd52987" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T211548Z:5e049d48-475a-4cd9-9d54-2488153489e6" + "WESTCENTRALUS:20220813T005712Z:9c6a1db2-557a-4453-8c4e-7f570fd52987" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:15:47 GMT" + "Sat, 13 Aug 2022 00:57:11 GMT" ], "Content-Length": [ - "1591" + "2109" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1663,25 +1663,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1150/providers/Microsoft.Compute/galleries/galleryPsTestGallery8865/applications/galleryPsTestGalleryApplication5170/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://saforgallery4566.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=lQ%2Bdxgfy7ckhpxLe9vDzBLS6m6xMb2gvXnxLXcDyfJk%3D&st=2022-07-21T21%3A07%3A10Z&se=2022-07-24T21%3A07%3A10Z&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-07-22T17:08:15.0901913-04:00\",\r\n \"endOfLifeDate\": \"2022-10-30T00:00:00-04:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"safetyProfile\": {\r\n \"allowDeletionOfReplicatedLocations\": false\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1150/providers/Microsoft.Compute/galleries/galleryPsTestGallery8865/applications/galleryPsTestGalleryApplication5170/versions/1.0.0?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4NjUvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb241MTcwL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "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": [ - "d1408760-6a83-43b9-8d0b-bae8e13bf550" + "3c351500-2426-47df-9dfb-73a047125b01" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -1699,10 +1699,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "98430336-fd27-40c8-9a76-4fcdc1ab2756" + "29f128ea-aa46-4234-bfcb-e89f1908d21f" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1712,19 +1712,19 @@ "11977" ], "x-ms-correlation-request-id": [ - "a6caca27-9ff0-4048-a916-47b6f262942a" + "84758573-b995-4fd8-8deb-630da29d2282" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T211548Z:a6caca27-9ff0-4048-a916-47b6f262942a" + "WESTCENTRALUS:20220813T005712Z:84758573-b995-4fd8-8deb-630da29d2282" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:15:47 GMT" + "Sat, 13 Aug 2022 00:57:12 GMT" ], "Content-Length": [ - "1591" + "2109" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1733,25 +1733,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1150/providers/Microsoft.Compute/galleries/galleryPsTestGallery8865/applications/galleryPsTestGalleryApplication5170/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://saforgallery4566.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=lQ%2Bdxgfy7ckhpxLe9vDzBLS6m6xMb2gvXnxLXcDyfJk%3D&st=2022-07-21T21%3A07%3A10Z&se=2022-07-24T21%3A07%3A10Z&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-07-22T17:08:15.0901913-04:00\",\r\n \"endOfLifeDate\": \"2022-10-30T00:00:00-04:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"safetyProfile\": {\r\n \"allowDeletionOfReplicatedLocations\": false\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1150/providers/Microsoft.Compute/galleries/galleryPsTestGallery8865/applications/galleryPsTestGalleryApplication5170/versions/1.0.0?$expand=ReplicationStatus&api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4NjUvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb241MTcwL3ZlcnNpb25zLzEuMC4wPyRleHBhbmQ9UmVwbGljYXRpb25TdGF0dXMmYXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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": [ - "fbfac0a7-242f-4192-9149-3563231bb8a9" + "8dc9054a-ff99-46bc-87d2-7a1daffb881d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -1763,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": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "23c7a996-788b-4caa-83c2-8c9eab04b1bd" + "7669694a-d4c3-45b4-89e5-6ad59d413707" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1782,19 +1782,19 @@ "11985" ], "x-ms-correlation-request-id": [ - "ea17ae2a-7510-4265-bd5b-fece76d72a9a" + "53681d78-ad3c-4e00-962d-834a90125902" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T211247Z:ea17ae2a-7510-4265-bd5b-fece76d72a9a" + "WESTCENTRALUS:20220813T005411Z:53681d78-ad3c-4e00-962d-834a90125902" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:12:46 GMT" + "Sat, 13 Aug 2022 00:54:10 GMT" ], "Content-Length": [ - "1809" + "2327" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1803,19 +1803,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1150/providers/Microsoft.Compute/galleries/galleryPsTestGallery8865/applications/galleryPsTestGalleryApplication5170/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://saforgallery4566.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=lQ%2Bdxgfy7ckhpxLe9vDzBLS6m6xMb2gvXnxLXcDyfJk%3D&st=2022-07-21T21%3A07%3A10Z&se=2022-07-24T21%3A07%3A10Z&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-07-22T17:08:15.0901913-04:00\",\r\n \"endOfLifeDate\": \"2022-08-01T00:00:00-04:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"safetyProfile\": {\r\n \"allowDeletionOfReplicatedLocations\": 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/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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/ed102f65-71e7-4ebb-b88d-cf2c17b4dbe7?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lZDEwMmY2NS03MWU3LTRlYmItYjg4ZC1jZjJjMTdiNGRiZTc/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -1827,16 +1827,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4132" + "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4130" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "601a72ef-ec04-4d12-9fdb-189555a86100" + "f0567208-ce30-4e16-8dff-e5400179d815" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1846,16 +1846,16 @@ "11984" ], "x-ms-correlation-request-id": [ - "6b0828d2-595a-43ea-82df-8fed152a28cd" + "b7c0b686-6f51-42ff-965c-be4e9e9563aa" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T211317Z:6b0828d2-595a-43ea-82df-8fed152a28cd" + "WESTCENTRALUS:20220813T005441Z:b7c0b686-6f51-42ff-965c-be4e9e9563aa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:13:16 GMT" + "Sat, 13 Aug 2022 00:54:40 GMT" ], "Content-Length": [ "134" @@ -1867,19 +1867,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T17:12:47.3050639-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ed102f65-71e7-4ebb-b88d-cf2c17b4dbe7\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/ed102f65-71e7-4ebb-b88d-cf2c17b4dbe7?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lZDEwMmY2NS03MWU3LTRlYmItYjg4ZC1jZjJjMTdiNGRiZTc/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -1891,16 +1891,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4129" + "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4137" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "49543bcf-add9-4bc5-9108-bb98683ac79c" + "664cd6ab-abdd-4186-89dd-f80bddd46d0c" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1910,16 +1910,16 @@ "11983" ], "x-ms-correlation-request-id": [ - "1a66df8b-b221-4116-83be-2ede728c9ff5" + "9b129d02-6b8f-4c4b-a2fd-d5d438ecc229" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T211347Z:1a66df8b-b221-4116-83be-2ede728c9ff5" + "WESTCENTRALUS:20220813T005511Z:9b129d02-6b8f-4c4b-a2fd-d5d438ecc229" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:13:47 GMT" + "Sat, 13 Aug 2022 00:55:11 GMT" ], "Content-Length": [ "134" @@ -1931,19 +1931,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T17:12:47.3050639-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ed102f65-71e7-4ebb-b88d-cf2c17b4dbe7\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/ed102f65-71e7-4ebb-b88d-cf2c17b4dbe7?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lZDEwMmY2NS03MWU3LTRlYmItYjg4ZC1jZjJjMTdiNGRiZTc/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -1955,16 +1955,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4126" + "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4134" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "f7aa08a2-fa23-4b5b-8aa7-5637f3123dcb" + "9c6edde1-3bc5-4210-959a-360ae4b3af83" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1974,16 +1974,16 @@ "11982" ], "x-ms-correlation-request-id": [ - "b480f26d-1a82-488b-a99c-be9f059bd71d" + "9797d355-f403-4dab-b551-06dfe67162ef" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T211417Z:b480f26d-1a82-488b-a99c-be9f059bd71d" + "WESTCENTRALUS:20220813T005541Z:9797d355-f403-4dab-b551-06dfe67162ef" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:14:17 GMT" + "Sat, 13 Aug 2022 00:55:41 GMT" ], "Content-Length": [ "134" @@ -1995,19 +1995,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T17:12:47.3050639-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ed102f65-71e7-4ebb-b88d-cf2c17b4dbe7\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/ed102f65-71e7-4ebb-b88d-cf2c17b4dbe7?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lZDEwMmY2NS03MWU3LTRlYmItYjg4ZC1jZjJjMTdiNGRiZTc/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -2019,16 +2019,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4123" + "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4131" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "64fec503-e1b1-4438-90bc-2585de235027" + "e13f1bc2-32c9-44a7-a3df-e43e6ebdb2a4" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2038,16 +2038,16 @@ "11981" ], "x-ms-correlation-request-id": [ - "0a6ad807-a950-4bd3-a577-47f768322c76" + "8a648e6c-ba1c-4f77-9607-2765a84c7e0a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T211447Z:0a6ad807-a950-4bd3-a577-47f768322c76" + "WESTCENTRALUS:20220813T005612Z:8a648e6c-ba1c-4f77-9607-2765a84c7e0a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:14:47 GMT" + "Sat, 13 Aug 2022 00:56:11 GMT" ], "Content-Length": [ "134" @@ -2059,19 +2059,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T17:12:47.3050639-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ed102f65-71e7-4ebb-b88d-cf2c17b4dbe7\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/ed102f65-71e7-4ebb-b88d-cf2c17b4dbe7?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lZDEwMmY2NS03MWU3LTRlYmItYjg4ZC1jZjJjMTdiNGRiZTc/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -2083,16 +2083,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4130" + "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4128" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "b65b001a-83bb-4cbb-814f-c99622941186" + "a1b64362-d0fa-42e9-b467-457921e043bc" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2102,16 +2102,16 @@ "11980" ], "x-ms-correlation-request-id": [ - "2526eb37-6d72-495b-bfdc-fc8a46f769ca" + "fc06f39c-4d6c-427f-92cb-efed18592467" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T211517Z:2526eb37-6d72-495b-bfdc-fc8a46f769ca" + "WESTCENTRALUS:20220813T005642Z:fc06f39c-4d6c-427f-92cb-efed18592467" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:15:17 GMT" + "Sat, 13 Aug 2022 00:56:41 GMT" ], "Content-Length": [ "134" @@ -2123,19 +2123,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T17:12:47.3050639-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ed102f65-71e7-4ebb-b88d-cf2c17b4dbe7\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/ed102f65-71e7-4ebb-b88d-cf2c17b4dbe7?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lZDEwMmY2NS03MWU3LTRlYmItYjg4ZC1jZjJjMTdiNGRiZTc/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -2147,16 +2147,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4127" + "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4125" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "bdf0900d-f45f-4e0d-870e-6763ef91e85c" + "5e19a866-edf3-4dd3-8c48-aeff8d46ca69" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2166,16 +2166,16 @@ "11979" ], "x-ms-correlation-request-id": [ - "442e37ac-afb3-409f-8e51-980cccd80d35" + "4983bb0a-79fb-4f03-bc29-d31c5c0a5bf8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T211548Z:442e37ac-afb3-409f-8e51-980cccd80d35" + "WESTCENTRALUS:20220813T005712Z:4983bb0a-79fb-4f03-bc29-d31c5c0a5bf8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:15:47 GMT" + "Sat, 13 Aug 2022 00:57:11 GMT" ], "Content-Length": [ "184" @@ -2187,25 +2187,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T17:12:47.3050639-04:00\",\r\n \"endTime\": \"2022-07-22T17:15:47.4847868-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ed102f65-71e7-4ebb-b88d-cf2c17b4dbe7\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1150/providers/Microsoft.Compute/galleries/galleryPsTestGallery8865/applications/galleryPsTestGalleryApplication5170/versions/1.0.0?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4NjUvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb241MTcwL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "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": [ - "e06957d0-689b-41f3-87b0-95d6599d32ef" + "0db5a414-a22c-4bfa-8f59-e2f3bc39845b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -2217,10 +2217,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/f3efd253-99c0-4c8a-96ba-47d40e44f088?monitor=true&api-version=2022-03-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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/f3efd253-99c0-4c8a-96ba-47d40e44f088?api-version=2022-03-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" @@ -2229,10 +2229,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "f3efd253-99c0-4c8a-96ba-47d40e44f088" + "b00d2680-2ee4-49cc-b10a-bda1184a7fe1" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2242,16 +2242,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "5c2f5094-4a00-43bf-82a2-5bd012ccc075" + "0cd85e47-4853-468b-ac9f-ffde41de65ee" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T211548Z:5c2f5094-4a00-43bf-82a2-5bd012ccc075" + "WESTCENTRALUS:20220813T005712Z:0cd85e47-4853-468b-ac9f-ffde41de65ee" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:15:47 GMT" + "Sat, 13 Aug 2022 00:57:12 GMT" ], "Expires": [ "-1" @@ -2264,15 +2264,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/f3efd253-99c0-4c8a-96ba-47d40e44f088?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mM2VmZDI1My05OWMwLTRjOGEtOTZiYS00N2Q0MGU0NGYwODg/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -2284,16 +2284,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4124" + "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4122" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "02d5fb54-7024-4fed-a6e1-cbdfa6557de2" + "891075d9-113b-457d-ac55-a0ec7c228da1" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2303,16 +2303,16 @@ "11976" ], "x-ms-correlation-request-id": [ - "dd67c4e2-90fe-41d0-91c6-def46e9e3c0a" + "37f35c6d-3228-4efc-9d6c-164b28bcfc02" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T211618Z:dd67c4e2-90fe-41d0-91c6-def46e9e3c0a" + "WESTCENTRALUS:20220813T005743Z:37f35c6d-3228-4efc-9d6c-164b28bcfc02" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:16:17 GMT" + "Sat, 13 Aug 2022 00:57:42 GMT" ], "Content-Length": [ "134" @@ -2324,19 +2324,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T17:15:48.5160631-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f3efd253-99c0-4c8a-96ba-47d40e44f088\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/f3efd253-99c0-4c8a-96ba-47d40e44f088?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mM2VmZDI1My05OWMwLTRjOGEtOTZiYS00N2Q0MGU0NGYwODg/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -2348,35 +2348,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4121" + "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4119" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "08e4257d-226e-49c3-9c76-9858342fac7c" - ], - "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": [ - "4d9d9ceb-22b2-4288-8fb6-6d18306d555d" + "3d76a3f0-6096-44e6-9fe6-8523af32d05e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T211648Z:4d9d9ceb-22b2-4288-8fb6-6d18306d555d" + "WESTCENTRALUS:20220813T005813Z:3d76a3f0-6096-44e6-9fe6-8523af32d05e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:16:48 GMT" + "Sat, 13 Aug 2022 00:58:12 GMT" ], "Content-Length": [ "134" @@ -2388,19 +2388,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T17:15:48.5160631-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f3efd253-99c0-4c8a-96ba-47d40e44f088\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/f3efd253-99c0-4c8a-96ba-47d40e44f088?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mM2VmZDI1My05OWMwLTRjOGEtOTZiYS00N2Q0MGU0NGYwODg/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -2412,16 +2412,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4118" + "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4116" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "52987008-5875-40d0-94fa-bc5eee1bc194" + "ffe1d0a4-4bcb-4f5f-a58c-c3047b610e50" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2431,16 +2431,16 @@ "11974" ], "x-ms-correlation-request-id": [ - "45490162-b6ef-492f-a9c0-8a35d6367c93" + "ba08ef96-7b4a-48a1-b7e7-e93712871d2a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T211719Z:45490162-b6ef-492f-a9c0-8a35d6367c93" + "WESTCENTRALUS:20220813T005843Z:ba08ef96-7b4a-48a1-b7e7-e93712871d2a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:17:18 GMT" + "Sat, 13 Aug 2022 00:58:43 GMT" ], "Content-Length": [ "184" @@ -2452,19 +2452,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T17:15:48.5160631-04:00\",\r\n \"endTime\": \"2022-07-22T17:17:18.7543485-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f3efd253-99c0-4c8a-96ba-47d40e44f088\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/f3efd253-99c0-4c8a-96ba-47d40e44f088?monitor=true&api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mM2VmZDI1My05OWMwLTRjOGEtOTZiYS00N2Q0MGU0NGYwODg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -2476,16 +2476,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1182,Microsoft.Compute/GetOperationStatus30Min;4117" + "Microsoft.Compute/GetOperationStatus3Min;1182,Microsoft.Compute/GetOperationStatus30Min;4115" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "bc02d144-60db-4a89-b761-174b6b9b30ff" + "9226614c-ec21-4e62-92e4-929eea957f5c" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2495,16 +2495,16 @@ "11973" ], "x-ms-correlation-request-id": [ - "8f92e760-7f20-4b69-a461-aaae5e6531e1" + "69ea3bd4-7b52-4dc7-89ed-5b6fc77082fd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T211719Z:8f92e760-7f20-4b69-a461-aaae5e6531e1" + "WESTCENTRALUS:20220813T005843Z:69ea3bd4-7b52-4dc7-89ed-5b6fc77082fd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:17:18 GMT" + "Sat, 13 Aug 2022 00:58:43 GMT" ], "Expires": [ "-1" @@ -2517,21 +2517,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1150/providers/Microsoft.Compute/galleries/galleryPsTestGallery8865/applications/galleryPsTestGalleryApplication5170?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4NjUvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb241MTcwP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "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": [ - "2b38a20b-5281-42c6-a394-633292fdf187" + "d4c97f0f-f623-4099-b3ab-e05c89713d37" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -2549,10 +2549,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "916064c6-3102-4f46-bd92-88d094359116" + "6026eace-0320-4d53-8d0c-5b276282b6fc" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2562,16 +2562,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "99a9e2e0-d95f-4733-b810-5aa20413d75f" + "52b70e8a-7f49-4aa5-987a-7aa6dc7453f5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T212221Z:99a9e2e0-d95f-4733-b810-5aa20413d75f" + "WESTCENTRALUS:20220813T010346Z:52b70e8a-7f49-4aa5-987a-7aa6dc7453f5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:22:21 GMT" + "Sat, 13 Aug 2022 01:03:45 GMT" ], "Expires": [ "-1" @@ -2584,21 +2584,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1150/providers/Microsoft.Compute/galleries/galleryPsTestGallery8865?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4NjU/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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": [ - "bd468415-3bd6-4254-b257-e762ada08461" + "28631550-9b04-4621-bef9-c5a8c9e3650e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -2610,22 +2610,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/7209445a-80c3-49d1-8ce5-e3214c30fec5?monitor=true&api-version=2022-03-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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/7209445a-80c3-49d1-8ce5-e3214c30fec5?api-version=2022-03-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;298" + "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;898" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "7209445a-80c3-49d1-8ce5-e3214c30fec5" + "591edd2d-8acf-4c34-bfec-5fbf82b8675a" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2635,16 +2635,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "c5b01d84-ff3c-46ea-a716-a7cd69e30725" + "975f9342-9ad0-48db-9bf9-068590cfdbe1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T212221Z:c5b01d84-ff3c-46ea-a716-a7cd69e30725" + "WESTCENTRALUS:20220813T010346Z:975f9342-9ad0-48db-9bf9-068590cfdbe1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:22:21 GMT" + "Sat, 13 Aug 2022 01:03:46 GMT" ], "Expires": [ "-1" @@ -2657,15 +2657,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/7209445a-80c3-49d1-8ce5-e3214c30fec5?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83MjA5NDQ1YS04MGMzLTQ5ZDEtOGNlNS1lMzIxNGMzMGZlYzU/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -2677,16 +2677,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4124" + "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4122" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "07ae8320-5ebd-4b32-90e7-6293b539e435" + "cd8bc19a-01ce-471f-b0cd-a38483946faa" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2696,16 +2696,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "cefcbc8c-17be-485a-8779-fbc92e0202ae" + "391512e5-db9f-46bc-b27c-e12418d31bfc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T212251Z:cefcbc8c-17be-485a-8779-fbc92e0202ae" + "WESTCENTRALUS:20220813T010416Z:391512e5-db9f-46bc-b27c-e12418d31bfc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:22:51 GMT" + "Sat, 13 Aug 2022 01:04:16 GMT" ], "Content-Length": [ "184" @@ -2717,19 +2717,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T17:22:21.5644076-04:00\",\r\n \"endTime\": \"2022-07-22T17:22:21.7984164-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7209445a-80c3-49d1-8ce5-e3214c30fec5\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/7209445a-80c3-49d1-8ce5-e3214c30fec5?monitor=true&api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83MjA5NDQ1YS04MGMzLTQ5ZDEtOGNlNS1lMzIxNGMzMGZlYzU/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -2741,16 +2741,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4123" + "Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4121" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "833babe1-4596-4aef-9d4f-8d053de12a4d" + "ed339c16-de9a-4078-9f54-76757f3744c0" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2760,16 +2760,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "36644d14-0e40-455c-b61d-29a886edf786" + "2e6d46ac-a818-4e3a-91d7-2f5f9c3c576e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T212251Z:36644d14-0e40-455c-b61d-29a886edf786" + "WESTCENTRALUS:20220813T010417Z:2e6d46ac-a818-4e3a-91d7-2f5f9c3c576e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:22:51 GMT" + "Sat, 13 Aug 2022 01:04:16 GMT" ], "Expires": [ "-1" @@ -2784,17 +2784,17 @@ ], "Names": { "GalleryApplicationVersion_CRUD_Tests": [ - "galleryPsTestRg1150", - "psTestSourceApplication6892", - "galleryPsTestGallery8865", - "galleryPsTestGalleryApplication5170" + "galleryPsTestRg362", + "psTestSourceApplication7276", + "galleryPsTestGallery1466", + "galleryPsTestGalleryApplication6135" ], "CreateApplicationMediaLink": [ - "saforgallery4566", - "asforgallery7818" + "saforgallery9802", + "asforgallery9717" ] }, "Variables": { - "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871" + "SubscriptionId": "97f78232-382b-46a7-8a72-964d692c4f3f" } } 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 c5835e888cca..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/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/galleryPsTestRg7849?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc4NDk/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": [ - "1ed20d22-51ed-4c71-8e9b-bd0d68c0a725" + "9272a60e-a87a-4330-9dcb-55596424c2bd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "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": [ - "e8a45a56-63ef-4d13-b689-5178a6a03e00" + "41a5ad33-6913-44d3-aea5-5819f5227077" ], "x-ms-correlation-request-id": [ - "e8a45a56-63ef-4d13-b689-5178a6a03e00" + "41a5ad33-6913-44d3-aea5-5819f5227077" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203827Z:e8a45a56-63ef-4d13-b689-5178a6a03e00" + "WESTCENTRALUS:20220813T001958Z:41a5ad33-6913-44d3-aea5-5819f5227077" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:38:27 GMT" + "Sat, 13 Aug 2022 00:19:57 GMT" ], "Content-Length": [ "192" @@ -63,25 +63,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg7849\",\r\n \"name\": \"galleryPsTestRg7849\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg7849/providers/Microsoft.Compute/galleries/galleryPsTestGallery6405?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc4NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTY0MDU/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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": [ - "93581cef-5921-42f4-ac9d-de25e0e3f6e4" + "dfa9a467-89ef-4564-b9b2-8beb61b4ff5a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ], "Content-Type": [ @@ -99,19 +99,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/65660b02-791a-4da9-a37e-f0dfe91a9760?api-version=2022-03-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;49,Microsoft.Compute/CreateUpdateGallery30Min;297" + "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;295" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "65660b02-791a-4da9-a37e-f0dfe91a9760" + "66488f8f-8e45-4971-852e-34903c70add8" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -121,16 +121,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "6b1f3e48-745d-490a-b2a9-da73b306fc6e" + "b37a423d-258e-473e-929e-8d6810f99d1d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203830Z:6b1f3e48-745d-490a-b2a9-da73b306fc6e" + "WESTCENTRALUS:20220813T002001Z:b37a423d-258e-473e-929e-8d6810f99d1d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:38:30 GMT" + "Sat, 13 Aug 2022 00:20:00 GMT" ], "Content-Length": [ "508" @@ -142,19 +142,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery6405\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg7849/providers/Microsoft.Compute/galleries/galleryPsTestGallery6405\",\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-GALLERYPSTESTGALLERY6405\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/65660b02-791a-4da9-a37e-f0dfe91a9760?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy82NTY2MGIwMi03OTFhLTRkYTktYTM3ZS1mMGRmZTkxYTk3NjA/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -166,35 +166,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4175" + "Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4108" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "fdb04263-d8fa-4939-9a9d-1259a839e0b5" + "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": [ - "7c148187-36b4-4852-a523-ab997ad24e87" + "a66a8792-ce52-460a-b582-30fb7bb5f864" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203900Z:7c148187-36b4-4852-a523-ab997ad24e87" + "WESTCENTRALUS:20220813T002031Z:a66a8792-ce52-460a-b582-30fb7bb5f864" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:39:00 GMT" + "Sat, 13 Aug 2022 00:20:31 GMT" ], "Content-Length": [ "184" @@ -206,19 +206,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T16:38:30.2637569-04:00\",\r\n \"endTime\": \"2022-07-22T16:38:30.3731371-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"65660b02-791a-4da9-a37e-f0dfe91a9760\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg7849/providers/Microsoft.Compute/galleries/galleryPsTestGallery6405?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc4NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTY0MDU/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -230,35 +230,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;344,Microsoft.Compute/GetGallery30Min;2482" + "Microsoft.Compute/GetGallery3Min;344,Microsoft.Compute/GetGallery30Min;2459" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "c43efcd7-2694-4859-9249-230ea2c3eb51" + "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": [ - "cf2b8777-152e-4757-8801-94befbf6508c" + "39a90df2-ac59-4d6f-8828-bd207a07e174" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203900Z:cf2b8777-152e-4757-8801-94befbf6508c" + "WESTCENTRALUS:20220813T002031Z:39a90df2-ac59-4d6f-8828-bd207a07e174" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:39:00 GMT" + "Sat, 13 Aug 2022 00:20:31 GMT" ], "Content-Length": [ "509" @@ -270,25 +270,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery6405\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg7849/providers/Microsoft.Compute/galleries/galleryPsTestGallery6405\",\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-GALLERYPSTESTGALLERY6405\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg7849/providers/Microsoft.Compute/galleries/galleryPsTestGallery6405/applications/galleryPsTestGalleryApplication1180?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc4NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTY0MDUvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24xMTgwP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "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": [ - "881b80d8-45ab-4a3a-a446-83e6b83a1339" + "2ec154c1-a027-47ca-bd39-91c9fab4f458" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ], "Content-Type": [ @@ -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": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "28750d2f-9e77-414e-94f4-56b585fe05e5" + "26571a82-244f-4609-b5b9-b2b0fbe996e6" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -325,16 +325,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "613d7fc6-e0b1-4af0-85ac-0e730bf89cfb" + "45074903-3565-49d8-8b1d-4c0cc93c5191" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203901Z:613d7fc6-e0b1-4af0-85ac-0e730bf89cfb" + "WESTCENTRALUS:20220813T002036Z:45074903-3565-49d8-8b1d-4c0cc93c5191" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:39:01 GMT" + "Sat, 13 Aug 2022 00:20:36 GMT" ], "Content-Length": [ "628" @@ -346,25 +346,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication1180\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg7849/providers/Microsoft.Compute/galleries/galleryPsTestGallery6405/applications/galleryPsTestGalleryApplication1180\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg7849/providers/Microsoft.Compute/galleries/galleryPsTestGallery6405/applications/galleryPsTestGalleryApplication1180?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc4NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTY0MDUvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24xMTgwP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "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": [ - "b6216132-b8a5-4f81-bcbb-a0bd43451c6b" + "7484d3fd-13ea-4cba-91de-76b53937fdda" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ], "Content-Type": [ @@ -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": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "a78c213c-e31c-4597-bd0d-ae1fdb2765b4" + "27a9ca19-a2a2-4b3b-b02c-daf0e4790644" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -401,16 +401,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "2041e207-5f7f-4d9b-83db-3d0d536272fd" + "525ddaf6-5250-4043-bc85-11829045b1a5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203932Z:2041e207-5f7f-4d9b-83db-3d0d536272fd" + "WESTCENTRALUS:20220813T002107Z:525ddaf6-5250-4043-bc85-11829045b1a5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:39:31 GMT" + "Sat, 13 Aug 2022 00:21:06 GMT" ], "Content-Length": [ "604" @@ -422,19 +422,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication1180\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg7849/providers/Microsoft.Compute/galleries/galleryPsTestGallery6405/applications/galleryPsTestGalleryApplication1180\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg7849/providers/Microsoft.Compute/galleries/galleryPsTestGallery6405/applications/galleryPsTestGalleryApplication1180?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc4NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTY0MDUvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24xMTgwP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -446,35 +446,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryApplication3Min;297,Microsoft.Compute/GetGalleryApplication30Min;1997" + "Microsoft.Compute/GetGalleryApplication3Min;298,Microsoft.Compute/GetGalleryApplication30Min;1994" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "52aed816-13f4-48db-8c1b-e6bcd99da3c5" + "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": [ - "3187e5f3-b72c-4206-a752-57d753c0e049" + "081b5c83-6379-4949-9bc1-ac3cec958b38" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203931Z:3187e5f3-b72c-4206-a752-57d753c0e049" + "WESTCENTRALUS:20220813T002106Z:081b5c83-6379-4949-9bc1-ac3cec958b38" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:39:31 GMT" + "Sat, 13 Aug 2022 00:21:06 GMT" ], "Content-Length": [ "628" @@ -486,25 +486,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication1180\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg7849/providers/Microsoft.Compute/galleries/galleryPsTestGallery6405/applications/galleryPsTestGalleryApplication1180\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg7849/providers/Microsoft.Compute/galleries/galleryPsTestGallery6405/applications/galleryPsTestGalleryApplication1180?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc4NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTY0MDUvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24xMTgwP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "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": [ - "e73be03b-bbb1-43d9-afcc-5553d0db8945" + "0e12f3a1-7beb-42cd-be00-859a9fc33f69" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -516,35 +516,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryApplication3Min;296,Microsoft.Compute/GetGalleryApplication30Min;1996" + "Microsoft.Compute/GetGalleryApplication3Min;297,Microsoft.Compute/GetGalleryApplication30Min;1993" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "988e9494-e26c-430c-b0f0-963a2d959a3e" + "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": [ - "454f1007-833c-4d49-bcde-b6c1da1cf2dd" + "7f882e8d-dae6-4efb-a762-04191f4a9207" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203932Z:454f1007-833c-4d49-bcde-b6c1da1cf2dd" + "WESTCENTRALUS:20220813T002106Z:7f882e8d-dae6-4efb-a762-04191f4a9207" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:39:31 GMT" + "Sat, 13 Aug 2022 00:21:06 GMT" ], "Content-Length": [ "628" @@ -556,25 +556,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication1180\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg7849/providers/Microsoft.Compute/galleries/galleryPsTestGallery6405/applications/galleryPsTestGalleryApplication1180\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg7849/providers/Microsoft.Compute/galleries/galleryPsTestGallery6405/applications/galleryPsTestGalleryApplication1180?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc4NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTY0MDUvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24xMTgwP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "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": [ - "b59ff41e-7bc9-4fff-8c55-1c8f5c9440a0" + "32ede1a2-5100-4cb0-aee8-3eed9aa4f008" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -586,35 +586,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryApplication3Min;295,Microsoft.Compute/GetGalleryApplication30Min;1995" + "Microsoft.Compute/GetGalleryApplication3Min;296,Microsoft.Compute/GetGalleryApplication30Min;1992" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "f75ed81a-4a90-4d0d-bd70-4c112e6b09f6" + "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": [ - "a4ea3b6f-7ab5-4455-b987-12b404d7a89f" + "ef438eab-6423-42fe-81eb-c908175fab97" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203932Z:a4ea3b6f-7ab5-4455-b987-12b404d7a89f" + "WESTCENTRALUS:20220813T002107Z:ef438eab-6423-42fe-81eb-c908175fab97" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:39:31 GMT" + "Sat, 13 Aug 2022 00:21:06 GMT" ], "Content-Length": [ "604" @@ -626,25 +626,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication1180\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg7849/providers/Microsoft.Compute/galleries/galleryPsTestGallery6405/applications/galleryPsTestGalleryApplication1180\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg7849/providers/Microsoft.Compute/galleries/galleryPsTestGallery6405/applications/galleryPsTestGalleryApplication1180?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc4NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTY0MDUvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24xMTgwP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "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": [ - "ba428272-fabd-46ac-b1a8-0b9facf332e9" + "409fa6d2-21f0-4966-9894-261c44205a1d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -662,10 +662,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "29d108b5-7a2d-45b7-8333-7f1021295bcc" + "7ce260d2-2a67-463a-b4d6-c832283a2616" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -675,16 +675,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "c167424a-b541-42b8-b36d-16c9122f5e0b" + "f56f5998-a477-4bfe-b084-9967cf1cfd20" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203932Z:c167424a-b541-42b8-b36d-16c9122f5e0b" + "WESTCENTRALUS:20220813T002108Z:f56f5998-a477-4bfe-b084-9967cf1cfd20" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:39:32 GMT" + "Sat, 13 Aug 2022 00:21:07 GMT" ], "Expires": [ "-1" @@ -697,21 +697,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg7849/providers/Microsoft.Compute/galleries/galleryPsTestGallery6405?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc4NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTY0MDU/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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": [ - "db40b563-e1a1-4710-9028-7eec6a8a0d6d" + "d95a1b72-b21f-475d-ad5f-a3e5bc2fd216" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -723,22 +723,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/e860a633-995d-4999-ba92-e9dffa67e80a?monitor=true&api-version=2022-03-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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/e860a633-995d-4999-ba92-e9dffa67e80a?api-version=2022-03-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;297" + "Microsoft.Compute/DeleteGallery3Min;48,Microsoft.Compute/DeleteGallery30Min;896" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "e860a633-995d-4999-ba92-e9dffa67e80a" + "00786bd2-6a96-4e57-b051-e7f832947fce" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -748,16 +748,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "c9b94edd-75af-4bb5-bcdb-41a25d31833e" + "fac7c3a6-c125-474d-8d17-6c3a1514bf7d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203933Z:c9b94edd-75af-4bb5-bcdb-41a25d31833e" + "WESTCENTRALUS:20220813T002108Z:fac7c3a6-c125-474d-8d17-6c3a1514bf7d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:39:32 GMT" + "Sat, 13 Aug 2022 00:21:08 GMT" ], "Expires": [ "-1" @@ -770,15 +770,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/e860a633-995d-4999-ba92-e9dffa67e80a?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lODYwYTYzMy05OTVkLTQ5OTktYmE5Mi1lOWRmZmE2N2U4MGE/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -790,38 +790,38 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4173" + "Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4106" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "68b2fdae-f037-43ea-a343-9fbdddbcdc6f" + "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": [ - "f7018dcd-6433-443a-a066-fec6c7f81cc9" + "71c6f45c-7e3e-47aa-a023-956f8be791dd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204003Z:f7018dcd-6433-443a-a066-fec6c7f81cc9" + "WESTCENTRALUS:20220813T002138Z:71c6f45c-7e3e-47aa-a023-956f8be791dd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:40:02 GMT" + "Sat, 13 Aug 2022 00:21:38 GMT" ], "Content-Length": [ - "183" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -830,19 +830,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T16:39:33.1566607-04:00\",\r\n \"endTime\": \"2022-07-22T16:39:33.266085-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e860a633-995d-4999-ba92-e9dffa67e80a\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/e860a633-995d-4999-ba92-e9dffa67e80a?monitor=true&api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lODYwYTYzMy05OTVkLTQ5OTktYmE5Mi1lOWRmZmE2N2U4MGE/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -854,35 +854,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4172" + "Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4105" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "429f2d4b-6700-4df6-9789-dd249f0ece14" + "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": [ - "5cec3f38-a417-4ba3-b340-b88526d8ba08" + "04b6acad-ddf6-4441-ad2e-332a7e9d625a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204003Z:5cec3f38-a417-4ba3-b340-b88526d8ba08" + "WESTCENTRALUS:20220813T002138Z:04b6acad-ddf6-4441-ad2e-332a7e9d625a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:40:02 GMT" + "Sat, 13 Aug 2022 00:21:38 GMT" ], "Expires": [ "-1" @@ -897,12 +897,12 @@ ], "Names": { "GalleryApplication_CRUD_Tests": [ - "galleryPsTestRg7849", - "galleryPsTestGallery6405", - "galleryPsTestGalleryApplication1180" + "galleryPsTestRg3422", + "galleryPsTestGallery2127", + "galleryPsTestGalleryApplication8948" ] }, "Variables": { - "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871" + "SubscriptionId": "97f78232-382b-46a7-8a72-964d692c4f3f" } } \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryImageVersion_CRUD_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryImageVersion_CRUD_Tests.json index d303ab0e0ef9..e551958ad659 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryImageVersion_CRUD_Tests.json +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryImageVersion_CRUD_Tests.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDIyLTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDIyLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bee0ae1c-30b7-4f97-84b9-0a360ff9b58a" + "e4e28510-edbb-4d4c-b2c2-81e639edc1cc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43999" + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43998" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "19a6b8e7-2f9b-4b25-aea4-718323f85895_132975412725388469" + "19a6b8e7-2f9b-4b25-aea4-718323f85895_133034297084091256" ], "x-ms-request-id": [ - "e53c3745-9d6f-42a7-98da-ef5ab6a3b59b" + "0a2fecb2-2358-4069-b3d0-647c8b43d79d" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -46,16 +46,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "e2b93683-dce9-42dd-8dfa-95bbaeaaa861" + "3fb2e8d2-5033-4fb7-8677-a83b15435041" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204006Z:e2b93683-dce9-42dd-8dfa-95bbaeaaa861" + "WESTCENTRALUS:20220813T002142Z:3fb2e8d2-5033-4fb7-8677-a83b15435041" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:40:06 GMT" + "Sat, 13 Aug 2022 00:21:41 GMT" ], "Content-Length": [ "309" @@ -67,25 +67,25 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus2\",\r\n \"name\": \"4.127.20180315\",\r\n \"id\": \"/Subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/Providers/Microsoft.Compute/Locations/eastus2/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20180315\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus2\",\r\n \"name\": \"4.127.20180315\",\r\n \"id\": \"/Subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/Providers/Microsoft.Compute/Locations/eastus2/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20180315\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/galleryPsTestRg8953?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg5NTM/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg2588?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1ODg/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg8953\": \"2022-07-22 20:40:06Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg2588\": \"2022-08-13 00:21:42Z\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "91e8503e-11b7-4e2d-a86b-ea52c0151e86" + "a641556d-d79c-4ef7-8c9c-6bb89c004ccd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "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": [ @@ -106,13 +106,13 @@ "1199" ], "x-ms-request-id": [ - "0395f7e3-1e68-47f5-99f1-e258ea258557" + "3f143b95-db75-4096-8b68-b299e3be5714" ], "x-ms-correlation-request-id": [ - "0395f7e3-1e68-47f5-99f1-e258ea258557" + "3f143b95-db75-4096-8b68-b299e3be5714" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204008Z:0395f7e3-1e68-47f5-99f1-e258ea258557" + "WESTCENTRALUS:20220813T002143Z:3f143b95-db75-4096-8b68-b299e3be5714" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -121,7 +121,7 @@ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:40:08 GMT" + "Sat, 13 Aug 2022 00:21:42 GMT" ], "Content-Length": [ "246" @@ -133,25 +133,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953\",\r\n \"name\": \"galleryPsTestRg8953\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg8953\": \"2022-07-22 20:40:06Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588\",\r\n \"name\": \"galleryPsTestRg2588\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg2588\": \"2022-08-13 00:21:42Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/galleryPsTestRg8953?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg5NTM/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg2588?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1ODg/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg8953\": \"2022-07-22 20:40:39Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg2588\": \"2022-08-13 00:22:15Z\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7cd17c62-2629-4d1b-8748-fa7fae8ef63b" + "fd76a5d8-3f98-4e30-ab07-1c604d98835a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "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": [ @@ -172,13 +172,13 @@ "1198" ], "x-ms-request-id": [ - "b44e36e0-dd53-4795-a602-5149368190f3" + "922423b2-3615-4359-bb3c-c893446a52c8" ], "x-ms-correlation-request-id": [ - "b44e36e0-dd53-4795-a602-5149368190f3" + "922423b2-3615-4359-bb3c-c893446a52c8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204039Z:b44e36e0-dd53-4795-a602-5149368190f3" + "WESTCENTRALUS:20220813T002215Z:922423b2-3615-4359-bb3c-c893446a52c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -187,7 +187,7 @@ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:40:39 GMT" + "Sat, 13 Aug 2022 00:22:14 GMT" ], "Content-Length": [ "246" @@ -199,25 +199,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953\",\r\n \"name\": \"galleryPsTestRg8953\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg8953\": \"2022-07-22 20:40:39Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588\",\r\n \"name\": \"galleryPsTestRg2588\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg2588\": \"2022-08-13 00:22:15Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Storage/storageAccounts/saforgallery7338?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg5NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnk3MzM4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Storage/storageAccounts/saforgallery4030?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnk0MDMwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "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": [ - "29a56116-6ca8-4381-9883-f2937623ad17" + "6c70b61d-2b37-4206-a9c4-18af3cd4a85b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ], "Content-Type": [ @@ -235,13 +235,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Storage/locations/eastus2/asyncoperations/56bc9497-3a6e-469d-9789-a898be574907?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Storage/locations/eastus2/asyncoperations/dc27e1b3-1835-45cf-87e6-e811b2127a26?monitor=true&api-version=2015-06-15" ], "Retry-After": [ "17" ], "x-ms-request-id": [ - "56bc9497-3a6e-469d-9789-a898be574907" + "dc27e1b3-1835-45cf-87e6-e811b2127a26" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -253,16 +253,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "cde6613c-5d16-4e4d-8dac-e94364eb199b" + "8c779fcb-0e32-4372-b731-c99678a27ee8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204011Z:cde6613c-5d16-4e4d-8dac-e94364eb199b" + "WESTCENTRALUS:20220813T002147Z:8c779fcb-0e32-4372-b731-c99678a27ee8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:40:11 GMT" + "Sat, 13 Aug 2022 00:21:47 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -278,15 +278,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Storage/locations/eastus2/asyncoperations/56bc9497-3a6e-469d-9789-a898be574907?monitor=true&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMi9hc3luY29wZXJhdGlvbnMvNTZiYzk0OTctM2E2ZS00NjlkLTk3ODktYTg5OGJlNTc0OTA3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Storage/locations/eastus2/asyncoperations/dc27e1b3-1835-45cf-87e6-e811b2127a26?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMi9hc3luY29wZXJhdGlvbnMvZGMyN2UxYjMtMTgzNS00NWNmLTg3ZTYtZTgxMWIyMTI3YTI2P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ] }, @@ -298,7 +298,7 @@ "no-cache" ], "x-ms-request-id": [ - "61102f12-b61b-4d0b-8a96-f55fb2307e8e" + "6ef09459-7150-45d6-81ca-89dfc60a7136" ], "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": [ - "11999" + "11994" ], "x-ms-correlation-request-id": [ - "bdd74ddd-2311-4912-9ef5-6a3e1cf8dba9" + "40741100-2eb0-4005-a915-8e6e3e920895" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204028Z:bdd74ddd-2311-4912-9ef5-6a3e1cf8dba9" + "WESTCENTRALUS:20220813T002204Z:40741100-2eb0-4005-a915-8e6e3e920895" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:40:28 GMT" + "Sat, 13 Aug 2022 00:22:04 GMT" ], "Content-Length": [ "89" @@ -335,21 +335,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg5NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b9d461f-cc1a-4de9-b217-24dd86f98efa" + "b3ae510c-9d6d-474f-bbf9-862b7f7540e7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ] }, @@ -361,7 +361,7 @@ "no-cache" ], "x-ms-request-id": [ - "541c6644-a904-4f37-8689-9ac2f779588b" + "b5ffe4fe-072b-4ede-8050-ab2f55fa0543" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -370,19 +370,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11993" ], "x-ms-correlation-request-id": [ - "45f732be-4217-4516-8ffa-950bfe77ba50" + "d9cff52d-1ee8-480f-ab3a-f3d615d05d1d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204039Z:45f732be-4217-4516-8ffa-950bfe77ba50" + "WESTCENTRALUS:20220813T002214Z:d9cff52d-1ee8-480f-ab3a-f3d615d05d1d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:40:38 GMT" + "Sat, 13 Aug 2022 00:22:14 GMT" ], "Content-Length": [ "765" @@ -394,25 +394,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Storage/storageAccounts/saforgallery7338\",\r\n \"name\": \"saforgallery7338\",\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-07-22T20:40:10.3484236Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery7338.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery7338.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery7338.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery7338.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/galleryPsTestRg2588/providers/Microsoft.Storage/storageAccounts/saforgallery4030\",\r\n \"name\": \"saforgallery4030\",\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:21:46.0054612Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery4030.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery4030.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery4030.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery4030.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/galleryPsTestRg8953/providers/Microsoft.Storage/storageAccounts/saforgallery7338?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg5NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnk3MzM4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Storage/storageAccounts/saforgallery4030?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnk0MDMwP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b32591b9-0fda-44d8-b5dd-81884f9910de" + "403e1c2f-149f-42da-bb16-f38790497562" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ] }, @@ -424,7 +424,7 @@ "no-cache" ], "x-ms-request-id": [ - "a627458d-7bee-4e73-9b5a-0986f5bb2ebe" + "35cf4c9b-bb40-470c-bc21-bb3ed4f08228" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -433,19 +433,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11992" ], "x-ms-correlation-request-id": [ - "57857422-058a-4ff9-aac2-8221a3dd21d9" + "df604e23-f4ad-4d34-b1a2-7034814a6525" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204039Z:57857422-058a-4ff9-aac2-8221a3dd21d9" + "WESTCENTRALUS:20220813T002215Z:df604e23-f4ad-4d34-b1a2-7034814a6525" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:40:38 GMT" + "Sat, 13 Aug 2022 00:22:14 GMT" ], "Content-Length": [ "753" @@ -457,25 +457,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Storage/storageAccounts/saforgallery7338\",\r\n \"name\": \"saforgallery7338\",\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-07-22T20:40:10.3484236Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery7338.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery7338.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery7338.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery7338.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/galleryPsTestRg2588/providers/Microsoft.Storage/storageAccounts/saforgallery4030\",\r\n \"name\": \"saforgallery4030\",\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:21:46.0054612Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery4030.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery4030.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery4030.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery4030.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/galleryPsTestRg8953/providers/Microsoft.Network/publicIPAddresses/pip289?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg5NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDI4OT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Network/publicIPAddresses/pip2811?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDI4MTE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn3308\"\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\": \"dn9269\"\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": [ - "6de4e54a-a3f9-4a31-9750-586f209e5590" + "ee83c704-9484-4f5e-9a11-1e3caff0d3bb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ], "Content-Type": [ @@ -496,19 +496,19 @@ "1" ], "x-ms-request-id": [ - "6e329844-d701-403a-8ace-1570fb03a7e1" + "021aa566-f681-48e5-844c-3ef2ff374b81" ], - "azure-asyncoperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/eastus2/operations/6e329844-d701-403a-8ace-1570fb03a7e1?api-version=2019-09-01" + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Network/locations/eastus2/operations/021aa566-f681-48e5-844c-3ef2ff374b81?api-version=2019-09-01" ], "x-ms-correlation-request-id": [ - "736499f0-02ab-4363-a164-0ba67fe62f26" + "3c681c12-9580-4601-84a7-b1983820459f" ], - "azure-asyncnotification": [ + "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "b3e4799e-9a21-495c-a109-adbc69566218" + "66db10b8-c8c6-4d01-9bb6-6327596741c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -521,16 +521,16 @@ "1199" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204043Z:736499f0-02ab-4363-a164-0ba67fe62f26" + "WESTUS:20220813T002219Z:3c681c12-9580-4601-84a7-b1983820459f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:40:43 GMT" + "Sat, 13 Aug 2022 00:22:19 GMT" ], "Content-Length": [ - "761" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -539,19 +539,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pip289\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Network/publicIPAddresses/pip289\",\r\n \"etag\": \"W/\\\"605bfbc0-ba6b-4c13-a13c-70fd004dfdfc\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"267b231e-da30-476f-ab16-c30c7053225c\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn3308\",\r\n \"fqdn\": \"dn3308.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\": \"pip2811\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Network/publicIPAddresses/pip2811\",\r\n \"etag\": \"W/\\\"0319152d-d9b1-431a-8186-eee2caa37f7f\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"88292dbd-5074-4007-a715-39e767902101\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9269\",\r\n \"fqdn\": \"dn9269.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/6e329844-d701-403a-8ace-1570fb03a7e1?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzZlMzI5ODQ0LWQ3MDEtNDAzYS04YWNlLTE1NzBmYjAzYTdlMT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Network/locations/eastus2/operations/021aa566-f681-48e5-844c-3ef2ff374b81?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzAyMWFhNTY2LWY2ODEtNDhlNS04NDRjLTNlZjJmZjM3NGI4MT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ] }, @@ -563,13 +563,13 @@ "no-cache" ], "x-ms-request-id": [ - "9242eaae-62db-4d71-9686-76e659abd85a" + "99971144-5e1a-449f-b875-1c2e6ccca36f" ], "x-ms-correlation-request-id": [ - "dc79ef1b-9e26-472a-b899-c43f907b3133" + "7a60e9ac-6694-4398-a2f8-7c506cdd4a99" ], "x-ms-arm-service-request-id": [ - "79dbd56e-d1c7-4736-b318-58254dc38cc4" + "5a64712c-fbe5-4e7a-8b22-b1ba531e5899" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -582,13 +582,13 @@ "11999" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204044Z:dc79ef1b-9e26-472a-b899-c43f907b3133" + "WESTUS:20220813T002220Z:7a60e9ac-6694-4398-a2f8-7c506cdd4a99" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:40:44 GMT" + "Sat, 13 Aug 2022 00:22:20 GMT" ], "Content-Length": [ "29" @@ -604,15 +604,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Network/publicIPAddresses/pip289?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg5NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDI4OT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Network/publicIPAddresses/pip2811?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDI4MTE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ] }, @@ -624,16 +624,16 @@ "no-cache" ], "ETag": [ - "W/\"804142db-9d03-4f33-a456-a04170643365\"" + "W/\"754eb97b-9f03-46d4-b299-4f026c757e90\"" ], "x-ms-request-id": [ - "35dd6991-33f5-479f-8f05-35583b1b3f88" + "66c32a23-7944-49f4-8c10-46bd445e5894" ], "x-ms-correlation-request-id": [ - "d6d7fcb0-e394-4db7-85c4-4fce42719218" + "e8b4df72-8114-4f34-a81b-5833003de6bb" ], "x-ms-arm-service-request-id": [ - "55b04bcd-991d-4351-b9a8-251a4c33dfc5" + "4853a725-013e-4f04-9a4f-73992b64c9da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -646,16 +646,16 @@ "11998" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204044Z:d6d7fcb0-e394-4db7-85c4-4fce42719218" + "WESTUS:20220813T002220Z:e8b4df72-8114-4f34-a81b-5833003de6bb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:40:44 GMT" + "Sat, 13 Aug 2022 00:22:20 GMT" ], "Content-Length": [ - "762" + "764" ], "Content-Type": [ "application/json; charset=utf-8" @@ -664,25 +664,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pip289\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Network/publicIPAddresses/pip289\",\r\n \"etag\": \"W/\\\"804142db-9d03-4f33-a456-a04170643365\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"267b231e-da30-476f-ab16-c30c7053225c\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn3308\",\r\n \"fqdn\": \"dn3308.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\": \"pip2811\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Network/publicIPAddresses/pip2811\",\r\n \"etag\": \"W/\\\"754eb97b-9f03-46d4-b299-4f026c757e90\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"88292dbd-5074-4007-a715-39e767902101\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9269\",\r\n \"fqdn\": \"dn9269.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/galleryPsTestRg8953/providers/Microsoft.Network/publicIPAddresses/pip289?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg5NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDI4OT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Network/publicIPAddresses/pip2811?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDI4MTE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8cbeea2c-6aee-4591-94b1-bee1954bdfc6" + "d6276153-074c-4463-b930-2ab0c62c02c9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ] }, @@ -694,16 +694,16 @@ "no-cache" ], "ETag": [ - "W/\"804142db-9d03-4f33-a456-a04170643365\"" + "W/\"754eb97b-9f03-46d4-b299-4f026c757e90\"" ], "x-ms-request-id": [ - "203b5644-bd74-4b11-9530-aedef425cbeb" + "1e2d3241-67b7-4113-a3f8-2bd8fa03f0f8" ], "x-ms-correlation-request-id": [ - "1939c728-85a4-4d18-9259-944e7c98bf15" + "083edeab-6677-4d6b-b774-3b95b00f0cbe" ], "x-ms-arm-service-request-id": [ - "34bd113b-fcd4-43c4-bacb-0ac27dded143" + "ae4b82b9-2a74-4203-9556-41baeeefd270" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -716,16 +716,16 @@ "11997" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204044Z:1939c728-85a4-4d18-9259-944e7c98bf15" + "WESTUS:20220813T002220Z:083edeab-6677-4d6b-b774-3b95b00f0cbe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:40:44 GMT" + "Sat, 13 Aug 2022 00:22:20 GMT" ], "Content-Length": [ - "762" + "764" ], "Content-Type": [ "application/json; charset=utf-8" @@ -734,25 +734,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pip289\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Network/publicIPAddresses/pip289\",\r\n \"etag\": \"W/\\\"804142db-9d03-4f33-a456-a04170643365\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"267b231e-da30-476f-ab16-c30c7053225c\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn3308\",\r\n \"fqdn\": \"dn3308.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\": \"pip2811\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Network/publicIPAddresses/pip2811\",\r\n \"etag\": \"W/\\\"754eb97b-9f03-46d4-b299-4f026c757e90\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"88292dbd-5074-4007-a715-39e767902101\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9269\",\r\n \"fqdn\": \"dn9269.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/galleryPsTestRg8953/providers/Microsoft.Network/virtualNetworks/vn2132?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg5NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIxMzI/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Network/virtualNetworks/vn2081?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIwODE/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\": \"sn9121\"\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\": \"sn5134\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b7942497-5c68-4d4d-911c-bc63a30664bc" + "8be243aa-cb25-44b3-b7b4-3859fd698e27" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ], "Content-Type": [ @@ -773,19 +773,19 @@ "3" ], "x-ms-request-id": [ - "d15ff1be-9fa0-4703-bf09-2dca02c717fc" + "1649a7ea-2c38-4151-b916-8680f66c1c2b" ], - "azure-asyncoperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/eastus2/operations/d15ff1be-9fa0-4703-bf09-2dca02c717fc?api-version=2019-09-01" + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Network/locations/eastus2/operations/1649a7ea-2c38-4151-b916-8680f66c1c2b?api-version=2019-09-01" ], "x-ms-correlation-request-id": [ - "ea2c36b6-8ab5-46de-b5b5-ec23377b351f" + "af595a4a-f011-4173-9139-aa132505d5cd" ], - "azure-asyncnotification": [ + "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "04b57973-a675-42a8-93e2-e956fa2d42ad" + "f1d63310-ac3c-4868-953b-ca6b967243ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -798,13 +798,13 @@ "1198" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204046Z:ea2c36b6-8ab5-46de-b5b5-ec23377b351f" + "WESTUS:20220813T002223Z:af595a4a-f011-4173-9139-aa132505d5cd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:40:45 GMT" + "Sat, 13 Aug 2022 00:22:22 GMT" ], "Content-Length": [ "1328" @@ -816,19 +816,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vn2132\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Network/virtualNetworks/vn2132\",\r\n \"etag\": \"W/\\\"908b35ae-4eb3-4a35-a345-f57f76e208ca\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"d2599dd8-1c3c-4e5f-8fdb-1b91420e291c\",\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\": \"sn9121\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Network/virtualNetworks/vn2132/subnets/sn9121\",\r\n \"etag\": \"W/\\\"908b35ae-4eb3-4a35-a345-f57f76e208ca\\\"\",\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\": \"vn2081\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Network/virtualNetworks/vn2081\",\r\n \"etag\": \"W/\\\"82e57995-8930-4e1a-9cf2-d18e7ef0e105\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c53ca520-4d46-478a-a796-6777930aa813\",\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\": \"sn5134\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Network/virtualNetworks/vn2081/subnets/sn5134\",\r\n \"etag\": \"W/\\\"82e57995-8930-4e1a-9cf2-d18e7ef0e105\\\"\",\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/d15ff1be-9fa0-4703-bf09-2dca02c717fc?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2QxNWZmMWJlLTlmYTAtNDcwMy1iZjA5LTJkY2EwMmM3MTdmYz9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Network/locations/eastus2/operations/1649a7ea-2c38-4151-b916-8680f66c1c2b?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzE2NDlhN2VhLTJjMzgtNDE1MS1iOTE2LTg2ODBmNjZjMWMyYj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ] }, @@ -840,13 +840,13 @@ "no-cache" ], "x-ms-request-id": [ - "73426069-ae52-4125-b2c5-599be750806b" + "8549460f-fc61-4b28-9c90-00bd0f52d445" ], "x-ms-correlation-request-id": [ - "fe7c03d7-28a9-4323-b80b-3221b05af767" + "280af648-df48-4b32-ac78-2f28cd09fb70" ], "x-ms-arm-service-request-id": [ - "19485995-3d6f-4a5d-b7a8-a799e7ae1001" + "d058994e-6f12-4fd6-9d08-5c6649914a5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -859,13 +859,13 @@ "11996" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204049Z:fe7c03d7-28a9-4323-b80b-3221b05af767" + "WESTUS:20220813T002226Z:280af648-df48-4b32-ac78-2f28cd09fb70" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:40:49 GMT" + "Sat, 13 Aug 2022 00:22:25 GMT" ], "Content-Length": [ "29" @@ -881,15 +881,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Network/virtualNetworks/vn2132?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg5NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIxMzI/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Network/virtualNetworks/vn2081?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIwODE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ] }, @@ -901,16 +901,16 @@ "no-cache" ], "ETag": [ - "W/\"d75273bb-6bf2-44d7-b1a3-5cd3befe5dd3\"" + "W/\"f754b146-31b5-42c1-b8f0-61f9e39afbbc\"" ], "x-ms-request-id": [ - "72197ca2-f448-4f47-833a-5ed2816e778d" + "97114066-2d82-466d-8eae-5c04080ded32" ], "x-ms-correlation-request-id": [ - "dde2bf50-cecf-499a-9564-79a5dbac044d" + "5be61773-d1a8-43b8-acc0-5d7016f97599" ], "x-ms-arm-service-request-id": [ - "bc98c641-d33d-4028-9bdc-b8e5d0621be6" + "63078672-63cb-4200-970a-51643d835934" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -923,13 +923,13 @@ "11995" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204049Z:dde2bf50-cecf-499a-9564-79a5dbac044d" + "WESTUS:20220813T002226Z:5be61773-d1a8-43b8-acc0-5d7016f97599" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:40:49 GMT" + "Sat, 13 Aug 2022 00:22:26 GMT" ], "Content-Length": [ "1330" @@ -941,25 +941,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vn2132\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Network/virtualNetworks/vn2132\",\r\n \"etag\": \"W/\\\"d75273bb-6bf2-44d7-b1a3-5cd3befe5dd3\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d2599dd8-1c3c-4e5f-8fdb-1b91420e291c\",\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\": \"sn9121\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Network/virtualNetworks/vn2132/subnets/sn9121\",\r\n \"etag\": \"W/\\\"d75273bb-6bf2-44d7-b1a3-5cd3befe5dd3\\\"\",\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\": \"vn2081\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Network/virtualNetworks/vn2081\",\r\n \"etag\": \"W/\\\"f754b146-31b5-42c1-b8f0-61f9e39afbbc\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c53ca520-4d46-478a-a796-6777930aa813\",\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\": \"sn5134\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Network/virtualNetworks/vn2081/subnets/sn5134\",\r\n \"etag\": \"W/\\\"f754b146-31b5-42c1-b8f0-61f9e39afbbc\\\"\",\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/galleryPsTestRg8953/providers/Microsoft.Network/virtualNetworks/vn2132/subnets/sn9121?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg5NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIxMzIvc3VibmV0cy9zbjkxMjE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Network/virtualNetworks/vn2081/subnets/sn5134?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIwODEvc3VibmV0cy9zbjUxMzQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "07cf237c-f547-450a-a089-0611ab003b44" + "ccff222c-1835-4b6c-8d2c-2878706857a7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ] }, @@ -971,16 +971,16 @@ "no-cache" ], "ETag": [ - "W/\"d75273bb-6bf2-44d7-b1a3-5cd3befe5dd3\"" + "W/\"f754b146-31b5-42c1-b8f0-61f9e39afbbc\"" ], "x-ms-request-id": [ - "44173151-48ed-4aea-a3bc-9a80610ea636" + "db1bd1d8-9182-4473-a008-de3ea7082a68" ], "x-ms-correlation-request-id": [ - "b23df695-a33b-44e7-b807-9bdefb55e405" + "1712365a-56e4-4ae5-8e50-3af0a4f45dd0" ], "x-ms-arm-service-request-id": [ - "b4dd6daa-9db2-4d71-adf9-9ad354d618e2" + "28213519-2b5f-435d-acec-f136ae290813" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -993,13 +993,13 @@ "11994" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204049Z:b23df695-a33b-44e7-b807-9bdefb55e405" + "WESTUS:20220813T002226Z:1712365a-56e4-4ae5-8e50-3af0a4f45dd0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:40:49 GMT" + "Sat, 13 Aug 2022 00:22:26 GMT" ], "Content-Length": [ "530" @@ -1011,25 +1011,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"sn9121\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Network/virtualNetworks/vn2132/subnets/sn9121\",\r\n \"etag\": \"W/\\\"d75273bb-6bf2-44d7-b1a3-5cd3befe5dd3\\\"\",\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\": \"sn5134\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Network/virtualNetworks/vn2081/subnets/sn5134\",\r\n \"etag\": \"W/\\\"f754b146-31b5-42c1-b8f0-61f9e39afbbc\\\"\",\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/galleryPsTestRg8953/providers/Microsoft.Network/networkInterfaces/nic6946?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg5NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY5NDY/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Network/networkInterfaces/nic1688?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE2ODg/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\": \"sn9121\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Network/virtualNetworks/vn2132/subnets/sn9121\"\r\n }\r\n },\r\n \"name\": \"ip9448\"\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\": \"sn5134\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Network/virtualNetworks/vn2081/subnets/sn5134\"\r\n }\r\n },\r\n \"name\": \"ip8169\"\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": [ - "ddf6f495-7e80-4a0f-b15b-70400f1715f1" + "071150d4-8544-40ee-b499-989b1401c7f9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ], "Content-Type": [ @@ -1047,19 +1047,19 @@ "no-cache" ], "x-ms-request-id": [ - "5f66a974-52a7-4ea2-89dc-26aef16b4888" + "086d9609-68d0-485e-9df3-5e3b96fbf37c" ], - "azure-asyncoperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/eastus2/operations/5f66a974-52a7-4ea2-89dc-26aef16b4888?api-version=2019-09-01" + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Network/locations/eastus2/operations/086d9609-68d0-485e-9df3-5e3b96fbf37c?api-version=2019-09-01" ], "x-ms-correlation-request-id": [ - "d861b6d5-67c0-4bc6-89b1-5a4202c0ba21" + "2d616928-1982-4562-a7f4-d196e466b8b0" ], - "azure-asyncnotification": [ + "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "3449d0c4-0540-423c-b332-24a6bc6f6a16" + "87444c59-8adf-46c7-8f82-f9b2d6119e88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1072,13 +1072,13 @@ "1197" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204050Z:d861b6d5-67c0-4bc6-89b1-5a4202c0ba21" + "WESTUS:20220813T002227Z:2d616928-1982-4562-a7f4-d196e466b8b0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:40:50 GMT" + "Sat, 13 Aug 2022 00:22:27 GMT" ], "Content-Length": [ "1643" @@ -1090,19 +1090,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"nic6946\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Network/networkInterfaces/nic6946\",\r\n \"etag\": \"W/\\\"227b452f-87ee-452f-bc01-5c31ca1761f5\\\"\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c5b0b7ec-36de-41b1-98f1-9ac736922f91\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9448\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Network/networkInterfaces/nic6946/ipConfigurations/ip9448\",\r\n \"etag\": \"W/\\\"227b452f-87ee-452f-bc01-5c31ca1761f5\\\"\",\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/galleryPsTestRg8953/providers/Microsoft.Network/virtualNetworks/vn2132/subnets/sn9121\"\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\": \"1covtur2drpu3d41doiuedrjde.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\": \"nic1688\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Network/networkInterfaces/nic1688\",\r\n \"etag\": \"W/\\\"1a92b8b9-b074-456f-98c2-35fdff70537f\\\"\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5bda1cd6-8e64-45dc-8118-d84cc06ca5e6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip8169\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Network/networkInterfaces/nic1688/ipConfigurations/ip8169\",\r\n \"etag\": \"W/\\\"1a92b8b9-b074-456f-98c2-35fdff70537f\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Network/virtualNetworks/vn2081/subnets/sn5134\"\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\": \"ecstzrkgjwfepj2wm31zgcvicd.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/galleryPsTestRg8953/providers/Microsoft.Network/networkInterfaces/nic6946?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg5NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY5NDY/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Network/networkInterfaces/nic1688?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE2ODg/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ] }, @@ -1114,16 +1114,16 @@ "no-cache" ], "ETag": [ - "W/\"227b452f-87ee-452f-bc01-5c31ca1761f5\"" + "W/\"1a92b8b9-b074-456f-98c2-35fdff70537f\"" ], "x-ms-request-id": [ - "ada4b313-23c0-47d6-9447-633b615386f3" + "25006bd9-6b65-47b3-b7b3-e4f152eae84e" ], "x-ms-correlation-request-id": [ - "3401b234-7c73-4998-b8ec-534847431f2d" + "ca8e4d72-2dac-4aa0-979a-a1aebb2ef0c3" ], "x-ms-arm-service-request-id": [ - "81fe91da-a229-4ff2-a663-d28238dd7fbe" + "609db89e-f74c-45c2-82c2-53d9b6c4ef5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1136,13 +1136,13 @@ "11993" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204051Z:3401b234-7c73-4998-b8ec-534847431f2d" + "WESTUS:20220813T002228Z:ca8e4d72-2dac-4aa0-979a-a1aebb2ef0c3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:40:51 GMT" + "Sat, 13 Aug 2022 00:22:27 GMT" ], "Content-Length": [ "1643" @@ -1154,25 +1154,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"nic6946\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Network/networkInterfaces/nic6946\",\r\n \"etag\": \"W/\\\"227b452f-87ee-452f-bc01-5c31ca1761f5\\\"\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c5b0b7ec-36de-41b1-98f1-9ac736922f91\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9448\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Network/networkInterfaces/nic6946/ipConfigurations/ip9448\",\r\n \"etag\": \"W/\\\"227b452f-87ee-452f-bc01-5c31ca1761f5\\\"\",\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/galleryPsTestRg8953/providers/Microsoft.Network/virtualNetworks/vn2132/subnets/sn9121\"\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\": \"1covtur2drpu3d41doiuedrjde.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\": \"nic1688\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Network/networkInterfaces/nic1688\",\r\n \"etag\": \"W/\\\"1a92b8b9-b074-456f-98c2-35fdff70537f\\\"\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5bda1cd6-8e64-45dc-8118-d84cc06ca5e6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip8169\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Network/networkInterfaces/nic1688/ipConfigurations/ip8169\",\r\n \"etag\": \"W/\\\"1a92b8b9-b074-456f-98c2-35fdff70537f\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Network/virtualNetworks/vn2081/subnets/sn5134\"\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\": \"ecstzrkgjwfepj2wm31zgcvicd.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/galleryPsTestRg8953/providers/Microsoft.Network/networkInterfaces/nic6946?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg5NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY5NDY/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Network/networkInterfaces/nic1688?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE2ODg/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55c66a97-c396-4844-9827-8cf5b6d3ab10" + "fcf9814c-f6ce-44f3-a848-4cdd4668b7de" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ] }, @@ -1184,16 +1184,16 @@ "no-cache" ], "ETag": [ - "W/\"227b452f-87ee-452f-bc01-5c31ca1761f5\"" + "W/\"1a92b8b9-b074-456f-98c2-35fdff70537f\"" ], "x-ms-request-id": [ - "56300c35-3512-40e7-913c-60f170528bfa" + "bc0730aa-08c2-4c86-9652-eb3673961200" ], "x-ms-correlation-request-id": [ - "9902f3f3-f076-4050-a6a3-188f9549cd7d" + "41b00f2e-7f0e-48ad-8900-2e829ffa29ec" ], "x-ms-arm-service-request-id": [ - "b056082c-f6e5-4b52-8ce2-0edaddfbb455" + "9e07a799-44dc-4a0a-a9a0-d18a216ef71c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1206,13 +1206,13 @@ "11992" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204051Z:9902f3f3-f076-4050-a6a3-188f9549cd7d" + "WESTUS:20220813T002228Z:41b00f2e-7f0e-48ad-8900-2e829ffa29ec" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:40:51 GMT" + "Sat, 13 Aug 2022 00:22:27 GMT" ], "Content-Length": [ "1643" @@ -1224,25 +1224,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"nic6946\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Network/networkInterfaces/nic6946\",\r\n \"etag\": \"W/\\\"227b452f-87ee-452f-bc01-5c31ca1761f5\\\"\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c5b0b7ec-36de-41b1-98f1-9ac736922f91\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9448\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Network/networkInterfaces/nic6946/ipConfigurations/ip9448\",\r\n \"etag\": \"W/\\\"227b452f-87ee-452f-bc01-5c31ca1761f5\\\"\",\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/galleryPsTestRg8953/providers/Microsoft.Network/virtualNetworks/vn2132/subnets/sn9121\"\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\": \"1covtur2drpu3d41doiuedrjde.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\": \"nic1688\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Network/networkInterfaces/nic1688\",\r\n \"etag\": \"W/\\\"1a92b8b9-b074-456f-98c2-35fdff70537f\\\"\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5bda1cd6-8e64-45dc-8118-d84cc06ca5e6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip8169\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Network/networkInterfaces/nic1688/ipConfigurations/ip8169\",\r\n \"etag\": \"W/\\\"1a92b8b9-b074-456f-98c2-35fdff70537f\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Network/virtualNetworks/vn2081/subnets/sn5134\"\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\": \"ecstzrkgjwfepj2wm31zgcvicd.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/galleryPsTestRg8953/providers/Microsoft.Compute/availabilitySets/asforgallery1640?api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg5NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXNmb3JnYWxsZXJ5MTY0MD9hcGktdmVyc2lvbj0yMDIyLTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/availabilitySets/asforgallery7201?api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXNmb3JnYWxsZXJ5NzIwMT9hcGktdmVyc2lvbj0yMDIyLTAzLTAx", "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": [ - "afa7663c-d031-4554-8c24-af934cd88769" + "2254f7fc-25d7-4cc1-a310-96560d489262" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ], "Content-Type": [ @@ -1260,32 +1260,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199" + "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1197" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6f8b1ee3-6ead-4b47-bee0-ecd84b87eecf" + "4f3d7543-fee8-4651-8de9-bf22e2c2c0d3" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "f90fea26-17f8-44e7-ad1e-f4821006863d" + "c9e88b38-d7fd-4d5f-abc0-7c456ebf7e8e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204053Z:f90fea26-17f8-44e7-ad1e-f4821006863d" + "WESTCENTRALUS:20220813T002230Z:c9e88b38-d7fd-4d5f-abc0-7c456ebf7e8e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:40:53 GMT" + "Sat, 13 Aug 2022 00:22:29 GMT" ], "Content-Length": [ "464" @@ -1297,32 +1297,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"asforgallery1640\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Compute/availabilitySets/asforgallery1640\",\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\": \"asforgallery7201\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/availabilitySets/asforgallery7201\",\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/galleryPsTestRg8953/providers/Microsoft.Compute/virtualMachines/vm6644?api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg5NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY2NDQ/YXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/virtualMachines/vm2252?api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTIyNTI/YXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", "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://saforgallery7338.blob.core.windows.net/crptestar5161/oscrptestar1062.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/galleryPsTestRg8953/providers/Microsoft.Network/networkInterfaces/nic6946\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Compute/availabilitySets/asforgallery1640\"\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://saforgallery4030.blob.core.windows.net/crptestar483/oscrptestar2912.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"[PLACEHOLDEr1]\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Network/networkInterfaces/nic1688\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/availabilitySets/asforgallery7201\"\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": [ - "7f5810e1-5ce8-4477-8300-de6a39fcb070" + "7a20b131-5994-4d98-9464-73d354291b68" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1239" + "1238" ] }, "ResponseHeaders": { @@ -1336,41 +1336,41 @@ "10" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/e0c07fdd-897d-40ce-875e-c69967fef402?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-03-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/fa1bce27-a6ee-45c7-a121-96bcb6ba4fc1?p=0b6b958b-08c9-4eca-a759-7e84a44d7832&api-version=2022-03-01" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1198" + "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1196" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e0c07fdd-897d-40ce-875e-c69967fef402" + "fa1bce27-a6ee-45c7-a121-96bcb6ba4fc1" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "60b4013c-67cc-4628-a104-fa1786098616" + "714f8af6-9a27-42bf-b68b-9edae7ddc8eb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204055Z:60b4013c-67cc-4628-a104-fa1786098616" + "WESTCENTRALUS:20220813T002232Z:714f8af6-9a27-42bf-b68b-9edae7ddc8eb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:40:54 GMT" + "Sat, 13 Aug 2022 00:22:31 GMT" ], "Content-Length": [ - "2156" + "2155" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1379,19 +1379,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vm6644\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Compute/virtualMachines/vm6644\",\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\": \"de55b13f-1bf3-422c-9084-0007d759c546\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY1640\"\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://saforgallery7338.blob.core.windows.net/crptestar5161/oscrptestar1062.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/galleryPsTestRg8953/providers/Microsoft.Network/networkInterfaces/nic6946\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-07-22T16:40:54.5108906-04:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vm2252\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/virtualMachines/vm2252\",\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\": \"632c3834-3e04-433e-999a-6b8f28f6e1d9\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY7201\"\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://saforgallery4030.blob.core.windows.net/crptestar483/oscrptestar2912.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"deleteOption\": \"Detach\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Network/networkInterfaces/nic1688\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"timeCreated\": \"2022-08-12T17:22:32.0185022-07:00\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/e0c07fdd-897d-40ce-875e-c69967fef402?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2UwYzA3ZmRkLTg5N2QtNDBjZS04NzVlLWM2OTk2N2ZlZjQwMj9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZhcGktdmVyc2lvbj0yMDIyLTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/fa1bce27-a6ee-45c7-a121-96bcb6ba4fc1?p=0b6b958b-08c9-4eca-a759-7e84a44d7832&api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2ZhMWJjZTI3LWE2ZWUtNDVjNy1hMTIxLTk2YmNiNmJhNGZjMT9wPTBiNmI5NThiLTA4YzktNGVjYS1hNzU5LTdlODRhNDRkNzgzMiZhcGktdmVyc2lvbj0yMDIyLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -1406,13 +1406,13 @@ "50" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999" + "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29969" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "02468038-e8bb-4b77-a858-7346eb9845ce" + "0f13c26f-65c7-41e0-b934-c500902726e4" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1422,16 +1422,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "2155c318-6971-4a9e-bfab-4c54dbeaa0a6" + "a149cf31-03c2-47bb-983b-837cc9190ed0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204105Z:2155c318-6971-4a9e-bfab-4c54dbeaa0a6" + "WESTCENTRALUS:20220813T002242Z:a149cf31-03c2-47bb-983b-837cc9190ed0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:41:04 GMT" + "Sat, 13 Aug 2022 00:22:41 GMT" ], "Content-Length": [ "134" @@ -1443,19 +1443,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T16:40:54.3858882-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e0c07fdd-897d-40ce-875e-c69967fef402\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:22:31.9403823-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fa1bce27-a6ee-45c7-a121-96bcb6ba4fc1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/e0c07fdd-897d-40ce-875e-c69967fef402?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2UwYzA3ZmRkLTg5N2QtNDBjZS04NzVlLWM2OTk2N2ZlZjQwMj9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZhcGktdmVyc2lvbj0yMDIyLTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/fa1bce27-a6ee-45c7-a121-96bcb6ba4fc1?p=0b6b958b-08c9-4eca-a759-7e84a44d7832&api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2ZhMWJjZTI3LWE2ZWUtNDVjNy1hMTIxLTk2YmNiNmJhNGZjMT9wPTBiNmI5NThiLTA4YzktNGVjYS1hNzU5LTdlODRhNDRkNzgzMiZhcGktdmVyc2lvbj0yMDIyLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -1467,13 +1467,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998" + "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29968" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "566af921-3112-47c7-b1ed-d77041e12a2d" + "f937e0cd-49f6-4eb9-b1d0-368800e64535" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1483,16 +1483,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "0e42ea1e-9ee8-4cbf-b82b-a7019dfdfada" + "a1149388-202c-4b3b-b56e-18b84d0c5742" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204155Z:0e42ea1e-9ee8-4cbf-b82b-a7019dfdfada" + "WESTCENTRALUS:20220813T002332Z:a1149388-202c-4b3b-b56e-18b84d0c5742" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:41:55 GMT" + "Sat, 13 Aug 2022 00:23:32 GMT" ], "Content-Length": [ "134" @@ -1504,19 +1504,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T16:40:54.3858882-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e0c07fdd-897d-40ce-875e-c69967fef402\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:22:31.9403823-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fa1bce27-a6ee-45c7-a121-96bcb6ba4fc1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/e0c07fdd-897d-40ce-875e-c69967fef402?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2UwYzA3ZmRkLTg5N2QtNDBjZS04NzVlLWM2OTk2N2ZlZjQwMj9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZhcGktdmVyc2lvbj0yMDIyLTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/fa1bce27-a6ee-45c7-a121-96bcb6ba4fc1?p=0b6b958b-08c9-4eca-a759-7e84a44d7832&api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2ZhMWJjZTI3LWE2ZWUtNDVjNy1hMTIxLTk2YmNiNmJhNGZjMT9wPTBiNmI5NThiLTA4YzktNGVjYS1hNzU5LTdlODRhNDRkNzgzMiZhcGktdmVyc2lvbj0yMDIyLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -1528,13 +1528,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29996" + "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29966" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "704f8886-5f05-4c42-a78b-f3b489eeb769" + "685c21d4-7383-4046-b090-8c1ca6ac7b58" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1544,77 +1544,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "15ae0ecf-f692-451b-9d9b-5fb368866293" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204245Z:15ae0ecf-f692-451b-9d9b-5fb368866293" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 22 Jul 2022 20:42:44 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T16:40:54.3858882-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e0c07fdd-897d-40ce-875e-c69967fef402\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/e0c07fdd-897d-40ce-875e-c69967fef402?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2UwYzA3ZmRkLTg5N2QtNDBjZS04NzVlLWM2OTk2N2ZlZjQwMj9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZhcGktdmVyc2lvbj0yMDIyLTAzLTAx", - "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/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29994" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "6219e7fb-9cc9-4b89-80c9-e0c2b1330e72" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-correlation-request-id": [ - "bc217a35-0e42-4b83-a8bc-ceee0142b8ec" + "489df75e-d9f9-4df0-bc35-e8128e26fa61" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204335Z:bc217a35-0e42-4b83-a8bc-ceee0142b8ec" + "WESTCENTRALUS:20220813T002422Z:489df75e-d9f9-4df0-bc35-e8128e26fa61" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:43:34 GMT" + "Sat, 13 Aug 2022 00:24:22 GMT" ], "Content-Length": [ "184" @@ -1626,19 +1565,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T16:40:54.3858882-04:00\",\r\n \"endTime\": \"2022-07-22T16:42:53.8126454-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e0c07fdd-897d-40ce-875e-c69967fef402\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:22:31.9403823-07:00\",\r\n \"endTime\": \"2022-08-12T17:24:20.8532301-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"fa1bce27-a6ee-45c7-a121-96bcb6ba4fc1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Compute/virtualMachines/vm6644?api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg5NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY2NDQ/YXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/virtualMachines/vm2252?api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTIyNTI/YXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -1650,35 +1589,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31988" + "Microsoft.Compute/LowCostGet3Min;3986,Microsoft.Compute/LowCostGet30Min;31910" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fe299f31-c1db-47f0-9720-bf07e0550d1f" + "70399a78-eb56-4759-a1c6-f5b8e26a7e62" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11995" ], "x-ms-correlation-request-id": [ - "a5e57cd9-a2c2-4a24-aed2-26b3505f6bd0" + "94f06e6c-b757-4120-b964-39517e61192b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204335Z:a5e57cd9-a2c2-4a24-aed2-26b3505f6bd0" + "WESTCENTRALUS:20220813T002423Z:94f06e6c-b757-4120-b964-39517e61192b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:43:35 GMT" + "Sat, 13 Aug 2022 00:24:22 GMT" ], "Content-Length": [ - "2185" + "2184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1687,25 +1626,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vm6644\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Compute/virtualMachines/vm6644\",\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\": \"de55b13f-1bf3-422c-9084-0007d759c546\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY1640\"\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://saforgallery7338.blob.core.windows.net/crptestar5161/oscrptestar1062.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/galleryPsTestRg8953/providers/Microsoft.Network/networkInterfaces/nic6946\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-07-22T16:40:54.5108906-04:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vm2252\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/virtualMachines/vm2252\",\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\": \"632c3834-3e04-433e-999a-6b8f28f6e1d9\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY7201\"\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://saforgallery4030.blob.core.windows.net/crptestar483/oscrptestar2912.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Network/networkInterfaces/nic1688\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-08-12T17:22:32.0185022-07:00\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Compute/virtualMachines/vm6644?api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg5NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY2NDQ/YXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/virtualMachines/vm2252?api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTIyNTI/YXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40b6406b-2c3c-4cd7-a835-0b693cfa77e6" + "91bb9e54-0496-4dd8-bc08-606013558d8a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -1717,35 +1656,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31987" + "Microsoft.Compute/LowCostGet3Min;3985,Microsoft.Compute/LowCostGet30Min;31909" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "41030b33-5df8-4195-b139-5b1b00492618" + "ff5af119-db7c-4091-b335-2c9721458d24" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11994" ], "x-ms-correlation-request-id": [ - "b29f6514-3ba2-4fa4-a90b-2b46c7545112" + "3afe7dea-3477-4f97-9e27-27a9f2705e48" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204335Z:b29f6514-3ba2-4fa4-a90b-2b46c7545112" + "WESTCENTRALUS:20220813T002423Z:3afe7dea-3477-4f97-9e27-27a9f2705e48" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:43:35 GMT" + "Sat, 13 Aug 2022 00:24:22 GMT" ], "Content-Length": [ - "2185" + "2184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1754,32 +1693,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vm6644\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Compute/virtualMachines/vm6644\",\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\": \"de55b13f-1bf3-422c-9084-0007d759c546\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY1640\"\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://saforgallery7338.blob.core.windows.net/crptestar5161/oscrptestar1062.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/galleryPsTestRg8953/providers/Microsoft.Network/networkInterfaces/nic6946\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-07-22T16:40:54.5108906-04:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vm2252\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/virtualMachines/vm2252\",\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\": \"632c3834-3e04-433e-999a-6b8f28f6e1d9\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY7201\"\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://saforgallery4030.blob.core.windows.net/crptestar483/oscrptestar2912.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Network/networkInterfaces/nic1688\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2022-08-12T17:22:32.0185022-07:00\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Compute/images/psTestSourceImage2970?api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg5NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTI5NzA/YXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/images/psTestSourceImage6321?api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTYzMjE/YXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"blobUri\": \"https://saforgallery7338.blob.core.windows.net/crptestar5161/oscrptestar1062.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://saforgallery4030.blob.core.windows.net/crptestar483/oscrptestar2912.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": [ - "e5363a70-81cc-4dc9-b315-8d036a500a53" + "c87f14c7-dc6e-44ed-ab8f-da9fb80e39fa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "399" + "398" ] }, "ResponseHeaders": { @@ -1790,41 +1729,41 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/dfd8f858-5c30-464a-887b-3ef50bfd17f7?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-03-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/a75ad1d0-ef70-453d-b4ee-482c9693fe62?p=0b6b958b-08c9-4eca-a759-7e84a44d7832&api-version=2022-03-01" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateImages3Min;39,Microsoft.Compute/CreateImages30Min;199" + "Microsoft.Compute/CreateImages3Min;39,Microsoft.Compute/CreateImages30Min;198" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dfd8f858-5c30-464a-887b-3ef50bfd17f7" + "a75ad1d0-ef70-453d-b4ee-482c9693fe62" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-correlation-request-id": [ - "320a280e-00bf-4772-91f4-0353c9ab3f25" + "791e75f7-f833-478c-85f4-8d74b2e28e4f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204342Z:320a280e-00bf-4772-91f4-0353c9ab3f25" + "WESTCENTRALUS:20220813T002429Z:791e75f7-f833-478c-85f4-8d74b2e28e4f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:43:41 GMT" + "Sat, 13 Aug 2022 00:24:29 GMT" ], "Content-Length": [ - "767" + "766" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1833,19 +1772,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"psTestSourceImage2970\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Compute/images/psTestSourceImage2970\",\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://saforgallery7338.blob.core.windows.net/crptestar5161/oscrptestar1062.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\": \"psTestSourceImage6321\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/images/psTestSourceImage6321\",\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://saforgallery4030.blob.core.windows.net/crptestar483/oscrptestar2912.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/dfd8f858-5c30-464a-887b-3ef50bfd17f7?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2RmZDhmODU4LTVjMzAtNDY0YS04ODdiLTNlZjUwYmZkMTdmNz9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZhcGktdmVyc2lvbj0yMDIyLTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/a75ad1d0-ef70-453d-b4ee-482c9693fe62?p=0b6b958b-08c9-4eca-a759-7e84a44d7832&api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2E3NWFkMWQwLWVmNzAtNDUzZC1iNGVlLTQ4MmM5NjkzZmU2Mj9wPTBiNmI5NThiLTA4YzktNGVjYS1hNzU5LTdlODRhNDRkNzgzMiZhcGktdmVyc2lvbj0yMDIyLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -1857,32 +1796,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29992" + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29964" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4d50e5b4-2739-445f-8a5a-d739093571c4" + "51c8a42f-0451-4693-b567-9cb19a079ea7" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11993" ], "x-ms-correlation-request-id": [ - "dc28d91d-4d24-4b7e-be22-f54fcae56568" + "8ee759dc-d687-478b-ae58-38b0e8fd98a5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204412Z:dc28d91d-4d24-4b7e-be22-f54fcae56568" + "WESTCENTRALUS:20220813T002459Z:8ee759dc-d687-478b-ae58-38b0e8fd98a5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:44:11 GMT" + "Sat, 13 Aug 2022 00:24:59 GMT" ], "Content-Length": [ "184" @@ -1894,19 +1833,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T16:43:36.6267818-04:00\",\r\n \"endTime\": \"2022-07-22T16:43:52.0805527-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"dfd8f858-5c30-464a-887b-3ef50bfd17f7\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:24:24.1190274-07:00\",\r\n \"endTime\": \"2022-08-12T17:24:34.2913379-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a75ad1d0-ef70-453d-b4ee-482c9693fe62\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Compute/images/psTestSourceImage2970?api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg5NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTI5NzA/YXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/images/psTestSourceImage6321?api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTYzMjE/YXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -1918,35 +1857,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetImages3Min;358,Microsoft.Compute/GetImages30Min;1798" + "Microsoft.Compute/GetImages3Min;357,Microsoft.Compute/GetImages30Min;1793" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "98496ec9-66cd-4723-9877-395c29ab1425" + "686fe2ec-3e32-4d83-a133-bbdb39fc812b" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11992" ], "x-ms-correlation-request-id": [ - "2a489259-72a7-49ce-b8db-72eb0f425ca3" + "6b88869c-6211-4783-bd20-aa9036123e73" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204412Z:2a489259-72a7-49ce-b8db-72eb0f425ca3" + "WESTCENTRALUS:20220813T002500Z:6b88869c-6211-4783-bd20-aa9036123e73" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:44:11 GMT" + "Sat, 13 Aug 2022 00:24:59 GMT" ], "Content-Length": [ - "796" + "795" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1955,25 +1894,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"psTestSourceImage2970\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Compute/images/psTestSourceImage2970\",\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://saforgallery7338.blob.core.windows.net/crptestar5161/oscrptestar1062.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\": \"psTestSourceImage6321\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/images/psTestSourceImage6321\",\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://saforgallery4030.blob.core.windows.net/crptestar483/oscrptestar2912.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/galleryPsTestRg8953/providers/Microsoft.Compute/images/psTestSourceImage2970?api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg5NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTI5NzA/YXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/images/psTestSourceImage6321?api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTYzMjE/YXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3221cc53-0a5a-4ae9-95dd-ec4532d9471d" + "032381a0-8d06-4ff3-8ee8-f841182f29da" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -1985,35 +1924,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetImages3Min;357,Microsoft.Compute/GetImages30Min;1797" + "Microsoft.Compute/GetImages3Min;356,Microsoft.Compute/GetImages30Min;1792" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c4ca583c-5c0c-4f4d-a49b-2c4b1b8165ed" + "89793886-a856-49fe-8566-ef0d9c0d3df1" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11991" ], "x-ms-correlation-request-id": [ - "8001add3-ca42-4256-a4ae-07fdd057a7ad" + "f2fa1fed-4be0-48f2-9845-5d0928df6e59" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204412Z:8001add3-ca42-4256-a4ae-07fdd057a7ad" + "WESTCENTRALUS:20220813T002500Z:f2fa1fed-4be0-48f2-9845-5d0928df6e59" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:44:11 GMT" + "Sat, 13 Aug 2022 00:25:00 GMT" ], "Content-Length": [ - "796" + "795" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2022,25 +1961,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"psTestSourceImage2970\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Compute/images/psTestSourceImage2970\",\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://saforgallery7338.blob.core.windows.net/crptestar5161/oscrptestar1062.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\": \"psTestSourceImage6321\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/images/psTestSourceImage6321\",\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://saforgallery4030.blob.core.windows.net/crptestar483/oscrptestar2912.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/galleryPsTestRg8953/providers/Microsoft.Compute/galleries/galleryPsTestGallery2923?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg5NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTI5MjM/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/galleries/galleryPsTestGallery5159?api-version=2022-03-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxNTk/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": [ - "f532495e-e8a6-4030-8806-2fda4a6ddd0f" + "36266d6d-e54c-435e-91a0-9fa993508ab3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ], "Content-Type": [ @@ -2058,38 +1997,38 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/86000023-6b4e-4bc3-a0c1-1d20176b0c5c?api-version=2022-03-03" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/71aeb14e-00b0-4eeb-9cf2-0c38faff0d00?api-version=2022-03-03" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;296" + "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;295" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "86000023-6b4e-4bc3-a0c1-1d20176b0c5c" + "71aeb14e-00b0-4eeb-9cf2-0c38faff0d00" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1195" ], "x-ms-correlation-request-id": [ - "746ffc5f-6d51-4dd0-ab9a-7a8243fad387" + "d95020c1-6574-4529-9f80-233333547900" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204413Z:746ffc5f-6d51-4dd0-ab9a-7a8243fad387" + "WESTCENTRALUS:20220813T002505Z:d95020c1-6574-4529-9f80-233333547900" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:44:12 GMT" + "Sat, 13 Aug 2022 00:25:05 GMT" ], "Content-Length": [ "508" @@ -2101,19 +2040,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery2923\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Compute/galleries/galleryPsTestGallery2923\",\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-GALLERYPSTESTGALLERY2923\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery5159\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/galleries/galleryPsTestGallery5159\",\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-GALLERYPSTESTGALLERY5159\"\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/86000023-6b4e-4bc3-a0c1-1d20176b0c5c?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy84NjAwMDAyMy02YjRlLTRiYzMtYTBjMS0xZDIwMTc2YjBjNWM/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/71aeb14e-00b0-4eeb-9cf2-0c38faff0d00?api-version=2022-03-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83MWFlYjE0ZS0wMGIwLTRlZWItOWNmMi0wYzM4ZmFmZjBkMDA/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -2125,38 +2064,38 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4170" + "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4113" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "75ccb9c9-5ddb-437e-99df-00d820fe9c95" + "eba291d6-58c2-4289-a167-a4fa8412462d" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11990" ], "x-ms-correlation-request-id": [ - "cef8b6e2-e4e5-4ced-ad7d-1dc8e72256f2" + "c320989e-edd6-48fa-b6eb-ca88c7aad2cb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204443Z:cef8b6e2-e4e5-4ced-ad7d-1dc8e72256f2" + "WESTCENTRALUS:20220813T002535Z:c320989e-edd6-48fa-b6eb-ca88c7aad2cb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:44:43 GMT" + "Sat, 13 Aug 2022 00:25:34 GMT" ], "Content-Length": [ - "184" + "183" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2165,19 +2104,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T16:44:13.4035806-04:00\",\r\n \"endTime\": \"2022-07-22T16:44:13.6067171-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"86000023-6b4e-4bc3-a0c1-1d20176b0c5c\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:25:01.9982533-07:00\",\r\n \"endTime\": \"2022-08-12T17:25:02.185729-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"71aeb14e-00b0-4eeb-9cf2-0c38faff0d00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Compute/galleries/galleryPsTestGallery2923?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg5NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTI5MjM/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/galleries/galleryPsTestGallery5159?api-version=2022-03-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxNTk/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -2189,35 +2128,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2476" + "Microsoft.Compute/GetGallery3Min;345,Microsoft.Compute/GetGallery30Min;2452" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "9f0cbe04-598a-4c51-afac-e648e6489c27" + "1198b26c-01f4-4dee-9dad-475e6b5e87a3" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11989" ], "x-ms-correlation-request-id": [ - "f162ed2a-9e00-418c-a8d4-28698422f750" + "b28152fa-6229-4bf8-89a7-778b0ceb34b7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204444Z:f162ed2a-9e00-418c-a8d4-28698422f750" + "WESTCENTRALUS:20220813T002535Z:b28152fa-6229-4bf8-89a7-778b0ceb34b7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:44:43 GMT" + "Sat, 13 Aug 2022 00:25:35 GMT" ], "Content-Length": [ "509" @@ -2229,25 +2168,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery2923\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Compute/galleries/galleryPsTestGallery2923\",\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-GALLERYPSTESTGALLERY2923\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery5159\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/galleries/galleryPsTestGallery5159\",\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-GALLERYPSTESTGALLERY5159\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Compute/galleries/galleryPsTestGallery2923/images/galleryPsTestGalleryImage6788?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg5NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTI5MjMvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U2Nzg4P2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/galleries/galleryPsTestGallery5159/images/galleryPsTestGalleryImage6275?api-version=2022-03-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxNTkvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U2Mjc1P2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", "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": [ - "ff4e2972-c78b-43a2-9643-c37fa5f27683" + "9ec26871-fbef-4314-9920-b55b153f3037" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ], "Content-Type": [ @@ -2265,38 +2204,38 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/8661a8ac-462b-4724-b2f5-11c8572c347e?api-version=2022-03-03" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/24e18c8e-48e3-42bc-86a4-2524783f0b22?api-version=2022-03-03" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;747" + "Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;746" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "8661a8ac-462b-4724-b2f5-11c8572c347e" + "24e18c8e-48e3-42bc-86a4-2524783f0b22" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1194" ], "x-ms-correlation-request-id": [ - "35c25421-cf39-4345-a80f-9c107c1e0671" + "cde5fe51-b511-4ce6-9926-44772aa23d36" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204445Z:35c25421-cf39-4345-a80f-9c107c1e0671" + "WESTCENTRALUS:20220813T002537Z:cde5fe51-b511-4ce6-9926-44772aa23d36" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:44:44 GMT" + "Sat, 13 Aug 2022 00:25:36 GMT" ], "Content-Length": [ "674" @@ -2308,19 +2247,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage6788\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Compute/galleries/galleryPsTestGallery2923/images/galleryPsTestGalleryImage6788\",\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\": \"galleryPsTestGalleryImage6275\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/galleries/galleryPsTestGallery5159/images/galleryPsTestGalleryImage6275\",\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/8661a8ac-462b-4724-b2f5-11c8572c347e?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy84NjYxYThhYy00NjJiLTQ3MjQtYjJmNS0xMWM4NTcyYzM0N2U/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/24e18c8e-48e3-42bc-86a4-2524783f0b22?api-version=2022-03-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yNGUxOGM4ZS00OGUzLTQyYmMtODZhNC0yNTI0NzgzZjBiMjI/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -2332,35 +2271,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4168" + "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4111" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "87459800-a565-4110-9098-386abda30af7" + "39b64c44-7f4e-4709-ab93-db084ffb80e3" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11988" ], "x-ms-correlation-request-id": [ - "986ba3f6-b3bd-445b-93d6-18a245d3d6c9" + "7608d1f9-680a-465a-b2be-7afaf4caca23" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204515Z:986ba3f6-b3bd-445b-93d6-18a245d3d6c9" + "WESTCENTRALUS:20220813T002607Z:7608d1f9-680a-465a-b2be-7afaf4caca23" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:45:14 GMT" + "Sat, 13 Aug 2022 00:26:06 GMT" ], "Content-Length": [ "184" @@ -2372,19 +2311,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T16:44:44.7955506-04:00\",\r\n \"endTime\": \"2022-07-22T16:44:44.8893065-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8661a8ac-462b-4724-b2f5-11c8572c347e\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:25:36.7485038-07:00\",\r\n \"endTime\": \"2022-08-12T17:25:36.8422319-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"24e18c8e-48e3-42bc-86a4-2524783f0b22\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Compute/galleries/galleryPsTestGallery2923/images/galleryPsTestGalleryImage6788?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg5NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTI5MjMvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U2Nzg4P2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/galleries/galleryPsTestGallery5159/images/galleryPsTestGalleryImage6275?api-version=2022-03-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxNTkvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U2Mjc1P2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -2396,35 +2335,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImage3Min;595,Microsoft.Compute/GetGalleryImage30Min;2983" + "Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2972" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "f2e4a518-599c-48c0-9d26-5fb56981495e" + "98855811-d095-4cbf-8b6e-2481f7fb3049" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11987" ], "x-ms-correlation-request-id": [ - "f4d0a374-f977-4979-b6fd-31ba1a7cf946" + "3127a13c-46a0-4b66-abbc-3297a2e033e1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204515Z:f4d0a374-f977-4979-b6fd-31ba1a7cf946" + "WESTCENTRALUS:20220813T002607Z:3127a13c-46a0-4b66-abbc-3297a2e033e1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:45:15 GMT" + "Sat, 13 Aug 2022 00:26:06 GMT" ], "Content-Length": [ "675" @@ -2436,32 +2375,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage6788\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Compute/galleries/galleryPsTestGallery2923/images/galleryPsTestGalleryImage6788\",\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\": \"galleryPsTestGalleryImage6275\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/galleries/galleryPsTestGallery5159/images/galleryPsTestGalleryImage6275\",\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/galleryPsTestRg8953/providers/Microsoft.Compute/galleries/galleryPsTestGallery2923/images/galleryPsTestGalleryImage6788/versions/1.0.0?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg5NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTI5MjMvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U2Nzg4L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/galleries/galleryPsTestGallery5159/images/galleryPsTestGalleryImage6275/versions/1.0.0?api-version=2022-03-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxNTkvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U2Mjc1L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", "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-01T04: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/galleryPsTestRg8953/providers/Microsoft.Compute/images/psTestSourceImage2970\"\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-08-22T07:00:00Z\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/images/psTestSourceImage6321\"\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": [ - "0453e7b9-168c-4010-9c70-d50c106afbd6" + "2b047584-1e5e-4aed-8c5b-d7b4c0987dd0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "603" + "685" ] }, "ResponseHeaders": { @@ -2475,41 +2414,41 @@ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/e0f6ef69-c278-4bfa-9de2-5c83fa14e465?api-version=2022-03-03" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/08061336-7dd0-4de6-a7ec-e1c57da1e370?api-version=2022-03-03" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1199" + "Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1198" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "e0f6ef69-c278-4bfa-9de2-5c83fa14e465" + "08061336-7dd0-4de6-a7ec-e1c57da1e370" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1193" ], "x-ms-correlation-request-id": [ - "0c2ab556-8053-425e-a229-f908b20c1c29" + "a126dd70-cbb8-4703-81fa-865ec246d4ac" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204516Z:0c2ab556-8053-425e-a229-f908b20c1c29" + "WESTCENTRALUS:20220813T002608Z:a126dd70-cbb8-4703-81fa-865ec246d4ac" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:45:16 GMT" + "Sat, 13 Aug 2022 00:26:07 GMT" ], "Content-Length": [ - "1163" + "1162" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2518,32 +2457,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Compute/galleries/galleryPsTestGallery2923/images/galleryPsTestGalleryImage6788/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-07-22T16:45:16.0000414-04:00\",\r\n \"endOfLifeDate\": \"2022-08-01T00: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/galleryPsTestRg8953/providers/Microsoft.Compute/images/psTestSourceImage2970\"\r\n }\r\n },\r\n \"safetyProfile\": {\r\n \"reportedForPolicyViolation\": false,\r\n \"allowDeletionOfReplicatedLocations\": false\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/galleryPsTestRg2588/providers/Microsoft.Compute/galleries/galleryPsTestGallery5159/images/galleryPsTestGalleryImage6275/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-12T17:26:08.1236468-07:00\",\r\n \"endOfLifeDate\": \"2022-08-22T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/images/psTestSourceImage6321\"\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/galleryPsTestRg8953/providers/Microsoft.Compute/galleries/galleryPsTestGallery2923/images/galleryPsTestGalleryImage6788/versions/1.0.0?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg5NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTI5MjMvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U2Nzg4L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/galleries/galleryPsTestGallery5159/images/galleryPsTestGalleryImage6275/versions/1.0.0?api-version=2022-03-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxNTkvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U2Mjc1L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", "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-10-30T04: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/galleryPsTestRg8953/providers/Microsoft.Compute/images/psTestSourceImage2970\"\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-11-20T08:00:00Z\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/images/psTestSourceImage6321\"\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": [ - "8eecdaf4-1307-488a-b615-6cad7d09260c" + "77534095-692d-497a-bc93-2b04b31ab3e8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "603" + "685" ] }, "ResponseHeaders": { @@ -2557,7 +2496,7 @@ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/092f0ca9-80b2-499b-97f4-058386d30386?api-version=2022-03-03" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/dfb52868-a5a7-4b0a-97c1-19f8e8c9d691?api-version=2022-03-03" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1198" @@ -2566,32 +2505,32 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "092f0ca9-80b2-499b-97f4-058386d30386" + "dfb52868-a5a7-4b0a-97c1-19f8e8c9d691" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1192" ], "x-ms-correlation-request-id": [ - "d5a6b81b-9a82-4b1e-97ac-5fa07b874167" + "9b2e522b-67ff-41bb-9433-94a35298dbd6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T205419Z:d5a6b81b-9a82-4b1e-97ac-5fa07b874167" + "WESTCENTRALUS:20220813T003511Z:9b2e522b-67ff-41bb-9433-94a35298dbd6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:54:18 GMT" + "Sat, 13 Aug 2022 00:35:10 GMT" ], "Content-Length": [ - "1277" + "1276" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2600,19 +2539,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Compute/galleries/galleryPsTestGallery2923/images/galleryPsTestGalleryImage6788/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-07-22T16:45:16.0000414-04:00\",\r\n \"endOfLifeDate\": \"2022-10-30T00: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/galleryPsTestRg8953/providers/Microsoft.Compute/images/psTestSourceImage2970\"\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\": false\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/galleryPsTestRg2588/providers/Microsoft.Compute/galleries/galleryPsTestGallery5159/images/galleryPsTestGalleryImage6275/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-12T17:26:08.1236468-07:00\",\r\n \"endOfLifeDate\": \"2022-11-20T00:00:00-08:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/images/psTestSourceImage6321\"\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/e0f6ef69-c278-4bfa-9de2-5c83fa14e465?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lMGY2ZWY2OS1jMjc4LTRiZmEtOWRlMi01YzgzZmExNGU0NjU/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/08061336-7dd0-4de6-a7ec-e1c57da1e370?api-version=2022-03-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wODA2MTMzNi03ZGQwLTRkZTYtYTdlYy1lMWM1N2RhMWUzNzA/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -2627,35 +2566,35 @@ "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4166" + "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4109" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "57ddc101-1a60-4a0f-ad5f-c18fe12d6917" + "19c59931-8894-4073-ad63-e0419e7a2f60" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11986" ], "x-ms-correlation-request-id": [ - "8bdf4065-4ebf-4614-ab50-5cf85ff8adc9" + "f67b8d0e-b81b-4fc6-bb30-95c93e470d96" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204616Z:8bdf4065-4ebf-4614-ab50-5cf85ff8adc9" + "WESTCENTRALUS:20220813T002708Z:f67b8d0e-b81b-4fc6-bb30-95c93e470d96" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:46:16 GMT" + "Sat, 13 Aug 2022 00:27:08 GMT" ], "Content-Length": [ "134" @@ -2667,19 +2606,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T16:45:15.9844148-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e0f6ef69-c278-4bfa-9de2-5c83fa14e465\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:26:08.1236468-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"08061336-7dd0-4de6-a7ec-e1c57da1e370\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/e0f6ef69-c278-4bfa-9de2-5c83fa14e465?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lMGY2ZWY2OS1jMjc4LTRiZmEtOWRlMi01YzgzZmExNGU0NjU/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/08061336-7dd0-4de6-a7ec-e1c57da1e370?api-version=2022-03-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wODA2MTMzNi03ZGQwLTRkZTYtYTdlYy1lMWM1N2RhMWUzNzA/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -2694,35 +2633,35 @@ "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4164" + "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4108" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "a3cf68ab-6ef5-4470-86e5-bb8195774cda" + "a4894576-8bc3-41a8-b8cf-7898bb77dfbb" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11985" ], "x-ms-correlation-request-id": [ - "12526ee8-281f-43f2-abcf-10da190e0807" + "ec2bb3c9-792a-48de-975f-d5e98dc0aff3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204716Z:12526ee8-281f-43f2-abcf-10da190e0807" + "WESTCENTRALUS:20220813T002808Z:ec2bb3c9-792a-48de-975f-d5e98dc0aff3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:47:16 GMT" + "Sat, 13 Aug 2022 00:28:07 GMT" ], "Content-Length": [ "134" @@ -2734,19 +2673,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T16:45:15.9844148-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e0f6ef69-c278-4bfa-9de2-5c83fa14e465\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:26:08.1236468-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"08061336-7dd0-4de6-a7ec-e1c57da1e370\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/e0f6ef69-c278-4bfa-9de2-5c83fa14e465?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lMGY2ZWY2OS1jMjc4LTRiZmEtOWRlMi01YzgzZmExNGU0NjU/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/08061336-7dd0-4de6-a7ec-e1c57da1e370?api-version=2022-03-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wODA2MTMzNi03ZGQwLTRkZTYtYTdlYy1lMWM1N2RhMWUzNzA/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -2761,35 +2700,35 @@ "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4162" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4106" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "37e5801f-716e-4b4d-b925-4f175fb1dee8" + "2e85dc6f-aeb9-4eaa-9696-824ab42d6931" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11984" ], "x-ms-correlation-request-id": [ - "c872233b-83d6-4cec-820f-fb7028fdc8b1" + "f7be24af-4ec3-4eca-ae78-a24f1c09efc0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204817Z:c872233b-83d6-4cec-820f-fb7028fdc8b1" + "WESTCENTRALUS:20220813T002909Z:f7be24af-4ec3-4eca-ae78-a24f1c09efc0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:48:17 GMT" + "Sat, 13 Aug 2022 00:29:08 GMT" ], "Content-Length": [ "134" @@ -2801,19 +2740,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T16:45:15.9844148-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e0f6ef69-c278-4bfa-9de2-5c83fa14e465\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:26:08.1236468-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"08061336-7dd0-4de6-a7ec-e1c57da1e370\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/e0f6ef69-c278-4bfa-9de2-5c83fa14e465?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lMGY2ZWY2OS1jMjc4LTRiZmEtOWRlMi01YzgzZmExNGU0NjU/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/08061336-7dd0-4de6-a7ec-e1c57da1e370?api-version=2022-03-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wODA2MTMzNi03ZGQwLTRkZTYtYTdlYy1lMWM1N2RhMWUzNzA/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -2828,35 +2767,35 @@ "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4160" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4118" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "99b46c25-f1fa-4358-8c3e-63fac6aab4ae" + "88cb179c-a878-4073-8eef-5e942fc99508" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11983" ], "x-ms-correlation-request-id": [ - "d9764e96-10bb-4cee-9d86-89b87f680ba7" + "9ea770c1-ed8c-49e2-be4d-a8d8570e0f0f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T204917Z:d9764e96-10bb-4cee-9d86-89b87f680ba7" + "WESTCENTRALUS:20220813T003009Z:9ea770c1-ed8c-49e2-be4d-a8d8570e0f0f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:49:16 GMT" + "Sat, 13 Aug 2022 00:30:09 GMT" ], "Content-Length": [ "134" @@ -2868,19 +2807,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T16:45:15.9844148-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e0f6ef69-c278-4bfa-9de2-5c83fa14e465\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:26:08.1236468-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"08061336-7dd0-4de6-a7ec-e1c57da1e370\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/e0f6ef69-c278-4bfa-9de2-5c83fa14e465?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lMGY2ZWY2OS1jMjc4LTRiZmEtOWRlMi01YzgzZmExNGU0NjU/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/08061336-7dd0-4de6-a7ec-e1c57da1e370?api-version=2022-03-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wODA2MTMzNi03ZGQwLTRkZTYtYTdlYy1lMWM1N2RhMWUzNzA/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -2895,35 +2834,35 @@ "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4159" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4116" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "38874a7a-035c-48db-a626-e25d179e5c84" + "00adbb13-888f-45a0-a0c6-5f5386b5ac84" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11982" ], "x-ms-correlation-request-id": [ - "0630ffff-0120-4136-938b-c60b4df9fb54" + "31ac554b-63b8-4480-826d-7de3f80ba6f3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T205017Z:0630ffff-0120-4136-938b-c60b4df9fb54" + "WESTCENTRALUS:20220813T003109Z:31ac554b-63b8-4480-826d-7de3f80ba6f3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:50:16 GMT" + "Sat, 13 Aug 2022 00:31:08 GMT" ], "Content-Length": [ "134" @@ -2935,19 +2874,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T16:45:15.9844148-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e0f6ef69-c278-4bfa-9de2-5c83fa14e465\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:26:08.1236468-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"08061336-7dd0-4de6-a7ec-e1c57da1e370\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/e0f6ef69-c278-4bfa-9de2-5c83fa14e465?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lMGY2ZWY2OS1jMjc4LTRiZmEtOWRlMi01YzgzZmExNGU0NjU/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/08061336-7dd0-4de6-a7ec-e1c57da1e370?api-version=2022-03-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wODA2MTMzNi03ZGQwLTRkZTYtYTdlYy1lMWM1N2RhMWUzNzA/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -2962,35 +2901,35 @@ "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4156" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4114" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "dd3444d6-b8e0-46e5-89e1-18434730a3b6" + "18f94fdf-5cb8-40d8-830e-468fe581e7b8" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11981" ], "x-ms-correlation-request-id": [ - "ddcd4e68-d7f1-4b63-a20d-37d32dd49420" + "6f98aa15-bbce-41ee-b452-b61d08c43dd6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T205117Z:ddcd4e68-d7f1-4b63-a20d-37d32dd49420" + "WESTCENTRALUS:20220813T003210Z:6f98aa15-bbce-41ee-b452-b61d08c43dd6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:51:16 GMT" + "Sat, 13 Aug 2022 00:32:09 GMT" ], "Content-Length": [ "134" @@ -3002,19 +2941,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T16:45:15.9844148-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e0f6ef69-c278-4bfa-9de2-5c83fa14e465\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:26:08.1236468-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"08061336-7dd0-4de6-a7ec-e1c57da1e370\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/e0f6ef69-c278-4bfa-9de2-5c83fa14e465?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lMGY2ZWY2OS1jMjc4LTRiZmEtOWRlMi01YzgzZmExNGU0NjU/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/08061336-7dd0-4de6-a7ec-e1c57da1e370?api-version=2022-03-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wODA2MTMzNi03ZGQwLTRkZTYtYTdlYy1lMWM1N2RhMWUzNzA/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -3029,35 +2968,35 @@ "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4154" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4112" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "cc17a952-29c0-4ba4-b7e1-a32e52e056c0" + "b4908132-6230-4f5c-a103-4b715bba81e4" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11980" ], "x-ms-correlation-request-id": [ - "ac2a48e8-6983-42bd-9f60-e9eeca58ad9d" + "a3fc7f6c-fb7c-4866-91f8-f09fd2e22e99" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T205218Z:ac2a48e8-6983-42bd-9f60-e9eeca58ad9d" + "WESTCENTRALUS:20220813T003310Z:a3fc7f6c-fb7c-4866-91f8-f09fd2e22e99" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:52:18 GMT" + "Sat, 13 Aug 2022 00:33:10 GMT" ], "Content-Length": [ "134" @@ -3069,19 +3008,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T16:45:15.9844148-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e0f6ef69-c278-4bfa-9de2-5c83fa14e465\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:26:08.1236468-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"08061336-7dd0-4de6-a7ec-e1c57da1e370\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/e0f6ef69-c278-4bfa-9de2-5c83fa14e465?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lMGY2ZWY2OS1jMjc4LTRiZmEtOWRlMi01YzgzZmExNGU0NjU/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/08061336-7dd0-4de6-a7ec-e1c57da1e370?api-version=2022-03-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wODA2MTMzNi03ZGQwLTRkZTYtYTdlYy1lMWM1N2RhMWUzNzA/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -3096,35 +3035,35 @@ "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4152" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4110" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "5d5361be-5081-4bc1-a49b-a487a30f015e" + "de452e71-b8d7-43e6-8c33-ede130197c3b" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11979" ], "x-ms-correlation-request-id": [ - "de20b381-b252-4286-9d3a-ada1fa778907" + "b574c5df-23f5-43c4-bc03-79b264366c6c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T205318Z:de20b381-b252-4286-9d3a-ada1fa778907" + "WESTCENTRALUS:20220813T003410Z:b574c5df-23f5-43c4-bc03-79b264366c6c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:53:17 GMT" + "Sat, 13 Aug 2022 00:34:10 GMT" ], "Content-Length": [ "134" @@ -3136,19 +3075,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T16:45:15.9844148-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e0f6ef69-c278-4bfa-9de2-5c83fa14e465\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:26:08.1236468-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"08061336-7dd0-4de6-a7ec-e1c57da1e370\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/e0f6ef69-c278-4bfa-9de2-5c83fa14e465?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lMGY2ZWY2OS1jMjc4LTRiZmEtOWRlMi01YzgzZmExNGU0NjU/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/08061336-7dd0-4de6-a7ec-e1c57da1e370?api-version=2022-03-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wODA2MTMzNi03ZGQwLTRkZTYtYTdlYy1lMWM1N2RhMWUzNzA/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -3160,35 +3099,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4151" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4121" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "0e692328-3c4e-427b-b803-1ed586914c3e" + "93850a57-3d93-4887-b66a-2c492163bf22" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11978" ], "x-ms-correlation-request-id": [ - "0ae9dea4-4a66-4a45-80c7-dc71923cb244" + "642fd2d5-d0c9-42c2-84b3-0fae97501234" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T205418Z:0ae9dea4-4a66-4a45-80c7-dc71923cb244" + "WESTCENTRALUS:20220813T003510Z:642fd2d5-d0c9-42c2-84b3-0fae97501234" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:54:17 GMT" + "Sat, 13 Aug 2022 00:35:09 GMT" ], "Content-Length": [ "184" @@ -3200,19 +3139,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T16:45:15.9844148-04:00\",\r\n \"endTime\": \"2022-07-22T16:53:32.1300199-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e0f6ef69-c278-4bfa-9de2-5c83fa14e465\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:26:08.1236468-07:00\",\r\n \"endTime\": \"2022-08-12T17:34:24.0637093-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"08061336-7dd0-4de6-a7ec-e1c57da1e370\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Compute/galleries/galleryPsTestGallery2923/images/galleryPsTestGalleryImage6788/versions/1.0.0?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg5NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTI5MjMvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U2Nzg4L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/galleries/galleryPsTestGallery5159/images/galleryPsTestGalleryImage6275/versions/1.0.0?api-version=2022-03-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxNTkvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U2Mjc1L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -3224,38 +3163,38 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImageVersion3Min;1998,Microsoft.Compute/GetGalleryImageVersion30Min;9996" + "Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9989" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "971334bb-d794-4d40-8ca1-eb59a65d1bfa" + "95819ce1-3aeb-43d7-bcac-11aec5c710b5" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11977" ], "x-ms-correlation-request-id": [ - "65cb4d6f-78cf-4881-a0ef-851932b68605" + "3afd43b9-7b4d-4386-a6f6-891d460b2628" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T205418Z:65cb4d6f-78cf-4881-a0ef-851932b68605" + "WESTCENTRALUS:20220813T003511Z:3afd43b9-7b4d-4386-a6f6-891d460b2628" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:54:18 GMT" + "Sat, 13 Aug 2022 00:35:10 GMT" ], "Content-Length": [ - "1278" + "1277" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3264,25 +3203,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Compute/galleries/galleryPsTestGallery2923/images/galleryPsTestGalleryImage6788/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-07-22T16:45:16.0000414-04:00\",\r\n \"endOfLifeDate\": \"2022-08-01T00: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/galleryPsTestRg8953/providers/Microsoft.Compute/images/psTestSourceImage2970\"\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\": false\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/galleryPsTestRg2588/providers/Microsoft.Compute/galleries/galleryPsTestGallery5159/images/galleryPsTestGalleryImage6275/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-12T17:26:08.1236468-07:00\",\r\n \"endOfLifeDate\": \"2022-08-22T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/images/psTestSourceImage6321\"\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/galleryPsTestRg8953/providers/Microsoft.Compute/galleries/galleryPsTestGallery2923/images/galleryPsTestGalleryImage6788/versions/1.0.0?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg5NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTI5MjMvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U2Nzg4L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/galleries/galleryPsTestGallery5159/images/galleryPsTestGalleryImage6275/versions/1.0.0?api-version=2022-03-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxNTkvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U2Mjc1L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6900fbf7-00ae-452c-bbd7-8e729ccf8df9" + "90e5b4e3-70b4-422f-8ff2-767cdaffbb73" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -3294,38 +3233,38 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImageVersion3Min;1997,Microsoft.Compute/GetGalleryImageVersion30Min;9995" + "Microsoft.Compute/GetGalleryImageVersion3Min;1998,Microsoft.Compute/GetGalleryImageVersion30Min;9988" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "3a30e01f-6d3f-48ae-b9f0-01c287b88980" + "d66ca532-dffe-46ef-800a-88ec5645c8c0" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11976" ], "x-ms-correlation-request-id": [ - "8f66075c-ca7b-43f8-b571-c77d369bec4e" + "8985e6f2-4aa2-48a6-ac1a-a52937d78f81" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T205418Z:8f66075c-ca7b-43f8-b571-c77d369bec4e" + "WESTCENTRALUS:20220813T003511Z:8985e6f2-4aa2-48a6-ac1a-a52937d78f81" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:54:18 GMT" + "Sat, 13 Aug 2022 00:35:10 GMT" ], "Content-Length": [ - "1278" + "1277" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3334,19 +3273,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Compute/galleries/galleryPsTestGallery2923/images/galleryPsTestGalleryImage6788/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-07-22T16:45:16.0000414-04:00\",\r\n \"endOfLifeDate\": \"2022-08-01T00: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/galleryPsTestRg8953/providers/Microsoft.Compute/images/psTestSourceImage2970\"\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\": false\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/galleryPsTestRg2588/providers/Microsoft.Compute/galleries/galleryPsTestGallery5159/images/galleryPsTestGalleryImage6275/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-12T17:26:08.1236468-07:00\",\r\n \"endOfLifeDate\": \"2022-08-22T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/images/psTestSourceImage6321\"\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/galleryPsTestRg8953/providers/Microsoft.Compute/galleries/galleryPsTestGallery2923/images/galleryPsTestGalleryImage6788/versions/1.0.0?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg5NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTI5MjMvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U2Nzg4L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/galleries/galleryPsTestGallery5159/images/galleryPsTestGalleryImage6275/versions/1.0.0?api-version=2022-03-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxNTkvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U2Mjc1L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -3358,38 +3297,38 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImageVersion3Min;1998,Microsoft.Compute/GetGalleryImageVersion30Min;9990" + "Microsoft.Compute/GetGalleryImageVersion3Min;1998,Microsoft.Compute/GetGalleryImageVersion30Min;9982" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "6f1be8a2-708c-476e-b69a-ee24547e95f1" + "b82d54e1-f098-4056-9073-d9e8ed024ae4" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11971" ], "x-ms-correlation-request-id": [ - "77f13de3-c295-4aba-8231-f63fb1641ba3" + "718d35d9-ee54-4703-9706-777c35ac0b7e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T205720Z:77f13de3-c295-4aba-8231-f63fb1641ba3" + "WESTCENTRALUS:20220813T003812Z:718d35d9-ee54-4703-9706-777c35ac0b7e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:57:20 GMT" + "Sat, 13 Aug 2022 00:38:11 GMT" ], "Content-Length": [ - "1278" + "1277" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3398,25 +3337,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Compute/galleries/galleryPsTestGallery2923/images/galleryPsTestGalleryImage6788/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-07-22T16:45:16.0000414-04:00\",\r\n \"endOfLifeDate\": \"2022-10-30T00: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/galleryPsTestRg8953/providers/Microsoft.Compute/images/psTestSourceImage2970\"\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\": false\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/galleryPsTestRg2588/providers/Microsoft.Compute/galleries/galleryPsTestGallery5159/images/galleryPsTestGalleryImage6275/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-12T17:26:08.1236468-07:00\",\r\n \"endOfLifeDate\": \"2022-11-20T00:00:00-08:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/images/psTestSourceImage6321\"\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/galleryPsTestRg8953/providers/Microsoft.Compute/galleries/galleryPsTestGallery2923/images/galleryPsTestGalleryImage6788/versions/1.0.0?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg5NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTI5MjMvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U2Nzg4L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/galleries/galleryPsTestGallery5159/images/galleryPsTestGalleryImage6275/versions/1.0.0?api-version=2022-03-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxNTkvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U2Mjc1L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d98f97a-2f28-4dd1-97c6-2dff09bf1796" + "3ef4e43e-df20-45ba-92cf-4a5e8880dbd7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -3428,38 +3367,38 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImageVersion3Min;1997,Microsoft.Compute/GetGalleryImageVersion30Min;9989" + "Microsoft.Compute/GetGalleryImageVersion3Min;1997,Microsoft.Compute/GetGalleryImageVersion30Min;9981" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "bf372e25-b697-49b0-8ded-81b430a5d040" + "593a89c3-b2f3-4fa4-9fc9-a1e5bcf01e32" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11970" ], "x-ms-correlation-request-id": [ - "432d0053-b9e3-4a11-8e98-b99cc789ede7" + "4ed187fc-3384-408e-8764-c11c83e9e38f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T205720Z:432d0053-b9e3-4a11-8e98-b99cc789ede7" + "WESTCENTRALUS:20220813T003812Z:4ed187fc-3384-408e-8764-c11c83e9e38f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:57:20 GMT" + "Sat, 13 Aug 2022 00:38:12 GMT" ], "Content-Length": [ - "1278" + "1277" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3468,25 +3407,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Compute/galleries/galleryPsTestGallery2923/images/galleryPsTestGalleryImage6788/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-07-22T16:45:16.0000414-04:00\",\r\n \"endOfLifeDate\": \"2022-10-30T00: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/galleryPsTestRg8953/providers/Microsoft.Compute/images/psTestSourceImage2970\"\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\": false\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/galleryPsTestRg2588/providers/Microsoft.Compute/galleries/galleryPsTestGallery5159/images/galleryPsTestGalleryImage6275/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-12T17:26:08.1236468-07:00\",\r\n \"endOfLifeDate\": \"2022-11-20T00:00:00-08:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/images/psTestSourceImage6321\"\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/galleryPsTestRg8953/providers/Microsoft.Compute/galleries/galleryPsTestGallery2923/images/galleryPsTestGalleryImage6788/versions/1.0.0?$expand=ReplicationStatus&api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg5NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTI5MjMvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U2Nzg4L3ZlcnNpb25zLzEuMC4wPyRleHBhbmQ9UmVwbGljYXRpb25TdGF0dXMmYXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/galleries/galleryPsTestGallery5159/images/galleryPsTestGalleryImage6275/versions/1.0.0?$expand=ReplicationStatus&api-version=2022-03-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxNTkvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U2Mjc1L3ZlcnNpb25zLzEuMC4wPyRleHBhbmQ9UmVwbGljYXRpb25TdGF0dXMmYXBpLXZlcnNpb249MjAyMi0wMy0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03e80a0f-f36c-4542-96e2-0d7d20877cc8" + "255317de-2082-415c-a2dc-0139bcc6c7bd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -3498,38 +3437,38 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImageVersion3Min;1996,Microsoft.Compute/GetGalleryImageVersion30Min;9994" + "Microsoft.Compute/GetGalleryImageVersion3Min;1997,Microsoft.Compute/GetGalleryImageVersion30Min;9987" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "91fe0e66-40b0-4430-83c1-d1056a2979a2" + "fc681009-06a6-4f22-b10a-1c4ae0a5ac5f" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11975" ], "x-ms-correlation-request-id": [ - "54fb93d9-36b4-4ac3-8efe-5033d5a3178c" + "50e7cf23-c8ac-4b1c-aeb0-1f0bd87b6b76" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T205419Z:54fb93d9-36b4-4ac3-8efe-5033d5a3178c" + "WESTCENTRALUS:20220813T003511Z:50e7cf23-c8ac-4b1c-aeb0-1f0bd87b6b76" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:54:18 GMT" + "Sat, 13 Aug 2022 00:35:10 GMT" ], "Content-Length": [ - "1496" + "1495" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3538,19 +3477,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Compute/galleries/galleryPsTestGallery2923/images/galleryPsTestGalleryImage6788/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-07-22T16:45:16.0000414-04:00\",\r\n \"endOfLifeDate\": \"2022-08-01T00: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/galleryPsTestRg8953/providers/Microsoft.Compute/images/psTestSourceImage2970\"\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\": 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/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/galleries/galleryPsTestGallery5159/images/galleryPsTestGalleryImage6275/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-12T17:26:08.1236468-07:00\",\r\n \"endOfLifeDate\": \"2022-08-22T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/images/psTestSourceImage6321\"\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/092f0ca9-80b2-499b-97f4-058386d30386?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wOTJmMGNhOS04MGIyLTQ5OWItOTdmNC0wNTgzODZkMzAzODY/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/dfb52868-a5a7-4b0a-97c1-19f8e8c9d691?api-version=2022-03-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9kZmI1Mjg2OC1hNWE3LTRiMGEtOTdjMS0xOWY4ZThjOWQ2OTE/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -3565,35 +3504,35 @@ "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4149" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4119" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "8e6f88d8-cea4-42eb-8cae-fde32a39b424" + "6cc38468-a00d-4ea4-b1b5-d1e2627c983c" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11974" ], "x-ms-correlation-request-id": [ - "122f8cf4-7275-417d-bf87-b54b19e316cf" + "8ed39a1c-9632-4709-9bf1-6e10a4fd32f3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T205519Z:122f8cf4-7275-417d-bf87-b54b19e316cf" + "WESTCENTRALUS:20220813T003612Z:8ed39a1c-9632-4709-9bf1-6e10a4fd32f3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:55:18 GMT" + "Sat, 13 Aug 2022 00:36:11 GMT" ], "Content-Length": [ "134" @@ -3605,19 +3544,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T16:54:19.2412849-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"092f0ca9-80b2-499b-97f4-058386d30386\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:35:11.7342787-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"dfb52868-a5a7-4b0a-97c1-19f8e8c9d691\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/092f0ca9-80b2-499b-97f4-058386d30386?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wOTJmMGNhOS04MGIyLTQ5OWItOTdmNC0wNTgzODZkMzAzODY/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/dfb52868-a5a7-4b0a-97c1-19f8e8c9d691?api-version=2022-03-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9kZmI1Mjg2OC1hNWE3LTRiMGEtOTdjMS0xOWY4ZThjOWQ2OTE/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -3632,35 +3571,35 @@ "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4147" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4117" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "a61231fa-c7fe-4834-a3c1-719a71609344" + "1db4392b-a681-4377-aea1-18fdabf82081" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11973" ], "x-ms-correlation-request-id": [ - "f37ee28f-3602-4525-9e77-c4968fae5a21" + "264a2b4b-4e36-494c-9747-3821b4cd96b9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T205619Z:f37ee28f-3602-4525-9e77-c4968fae5a21" + "WESTCENTRALUS:20220813T003712Z:264a2b4b-4e36-494c-9747-3821b4cd96b9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:56:19 GMT" + "Sat, 13 Aug 2022 00:37:12 GMT" ], "Content-Length": [ "134" @@ -3672,19 +3611,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T16:54:19.2412849-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"092f0ca9-80b2-499b-97f4-058386d30386\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:35:11.7342787-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"dfb52868-a5a7-4b0a-97c1-19f8e8c9d691\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/092f0ca9-80b2-499b-97f4-058386d30386?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wOTJmMGNhOS04MGIyLTQ5OWItOTdmNC0wNTgzODZkMzAzODY/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/dfb52868-a5a7-4b0a-97c1-19f8e8c9d691?api-version=2022-03-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9kZmI1Mjg2OC1hNWE3LTRiMGEtOTdjMS0xOWY4ZThjOWQ2OTE/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -3696,35 +3635,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4145" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4115" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "81d809b5-a062-4ed9-b210-7fa60879ee32" + "35d4618b-5109-453b-a224-f5c8948fa68e" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11972" ], "x-ms-correlation-request-id": [ - "d5db24c4-2c18-44d8-ba8f-520e17842b50" + "9d406115-f413-4828-8b6a-571bedd7bf7a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T205720Z:d5db24c4-2c18-44d8-ba8f-520e17842b50" + "WESTCENTRALUS:20220813T003812Z:9d406115-f413-4828-8b6a-571bedd7bf7a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:57:19 GMT" + "Sat, 13 Aug 2022 00:38:11 GMT" ], "Content-Length": [ "184" @@ -3736,25 +3675,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T16:54:19.2412849-04:00\",\r\n \"endTime\": \"2022-07-22T16:56:49.3721202-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"092f0ca9-80b2-499b-97f4-058386d30386\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:35:11.7342787-07:00\",\r\n \"endTime\": \"2022-08-12T17:37:41.8615854-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"dfb52868-a5a7-4b0a-97c1-19f8e8c9d691\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Compute/galleries/galleryPsTestGallery2923/images/galleryPsTestGalleryImage6788/versions?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg5NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTI5MjMvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U2Nzg4L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/galleries/galleryPsTestGallery5159/images/galleryPsTestGalleryImage6275/versions?api-version=2022-03-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxNTkvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U2Mjc1L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "447d5453-47c5-4de7-bd37-7b096cb6bc7c" + "98933082-0bd7-46a1-b416-456ed79f7c43" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -3772,32 +3711,32 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "990f4d2e-dfc4-4c95-a046-cd8de4a04733" + "910be0ad-395d-428b-8269-1c131638d66c" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11969" ], "x-ms-correlation-request-id": [ - "a2f260c3-dc9b-4ade-9aeb-ca2bb30a83c3" + "6603a980-fdfa-4a19-ae66-5a332be6b927" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T205721Z:a2f260c3-dc9b-4ade-9aeb-ca2bb30a83c3" + "WESTCENTRALUS:20220813T003812Z:6603a980-fdfa-4a19-ae66-5a332be6b927" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:57:20 GMT" + "Sat, 13 Aug 2022 00:38:12 GMT" ], "Content-Length": [ - "1451" + "1450" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3806,25 +3745,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Compute/galleries/galleryPsTestGallery2923/images/galleryPsTestGalleryImage6788/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-07-22T16:45:16.0000414-04:00\",\r\n \"endOfLifeDate\": \"2022-10-30T00: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/galleryPsTestRg8953/providers/Microsoft.Compute/images/psTestSourceImage2970\"\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\": 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/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/galleries/galleryPsTestGallery5159/images/galleryPsTestGalleryImage6275/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-12T17:26:08.1236468-07:00\",\r\n \"endOfLifeDate\": \"2022-11-20T00:00:00-08:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/images/psTestSourceImage6321\"\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/galleryPsTestRg8953/providers/Microsoft.Compute/galleries/galleryPsTestGallery2923/images/galleryPsTestGalleryImage6788/versions?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg5NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTI5MjMvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U2Nzg4L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/galleries/galleryPsTestGallery5159/images/galleryPsTestGalleryImage6275/versions?api-version=2022-03-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxNTkvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U2Mjc1L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eef87d01-3409-4cef-8184-408fd0ba98f1" + "c85cd8b7-b6b8-4006-875a-5029cc43959f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -3842,29 +3781,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "eceff7e9-6dd3-4d74-82c5-4865d53186d5" + "81bde491-88cf-4cde-bb20-03f648c1c252" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11965" ], "x-ms-correlation-request-id": [ - "47bbebfc-969f-460b-ba49-4397c0d39cba" + "02e3a7ab-c7d1-4827-98c7-59a9099aa0fd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T205922Z:47bbebfc-969f-460b-ba49-4397c0d39cba" + "WESTCENTRALUS:20220813T004014Z:02e3a7ab-c7d1-4827-98c7-59a9099aa0fd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:59:21 GMT" + "Sat, 13 Aug 2022 00:40:13 GMT" ], "Content-Length": [ "19" @@ -3880,21 +3819,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Compute/galleries/galleryPsTestGallery2923/images/galleryPsTestGalleryImage6788/versions/1.0.0?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg5NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTI5MjMvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U2Nzg4L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/galleries/galleryPsTestGallery5159/images/galleryPsTestGalleryImage6275/versions/1.0.0?api-version=2022-03-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxNTkvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U2Mjc1L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "59410063-5a1a-4004-af09-d6ef7d643734" + "90aa19ca-cfe5-4943-839b-6a00005af4be" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -3906,25 +3845,25 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/2d958eed-9284-4972-8115-cce98b5690c5?monitor=true&api-version=2022-03-03" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/5af59b2a-060d-42b1-b2e6-4de1ded36bb2?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/2d958eed-9284-4972-8115-cce98b5690c5?api-version=2022-03-03" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/5af59b2a-060d-42b1-b2e6-4de1ded36bb2?api-version=2022-03-03" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/DeleteGalleryImageVersion3Min;149,Microsoft.Compute/DeleteGalleryImageVersion30Min;999" + "Microsoft.Compute/DeleteGalleryImageVersion3Min;149,Microsoft.Compute/DeleteGalleryImageVersion30Min;998" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "2d958eed-9284-4972-8115-cce98b5690c5" + "5af59b2a-060d-42b1-b2e6-4de1ded36bb2" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -3934,16 +3873,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "aa260d3b-ebb8-441f-b35a-71fedb0e7218" + "2fd60fac-e07e-47dd-835c-fca6b6570fd8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T205721Z:aa260d3b-ebb8-441f-b35a-71fedb0e7218" + "WESTCENTRALUS:20220813T003813Z:2fd60fac-e07e-47dd-835c-fca6b6570fd8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:57:21 GMT" + "Sat, 13 Aug 2022 00:38:12 GMT" ], "Expires": [ "-1" @@ -3956,15 +3895,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/2d958eed-9284-4972-8115-cce98b5690c5?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yZDk1OGVlZC05Mjg0LTQ5NzItODExNS1jY2U5OGI1NjkwYzU/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/5af59b2a-060d-42b1-b2e6-4de1ded36bb2?api-version=2022-03-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy81YWY1OWIyYS0wNjBkLTQyYjEtYjJlNi00ZGUxZGVkMzZiYjI/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -3979,35 +3918,35 @@ "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4143" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4113" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "6a805d02-b49e-46d3-91e2-7f83a3e6abb4" + "f66a28e4-ad68-402c-9589-49367be114e4" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11968" ], "x-ms-correlation-request-id": [ - "2942bef5-01b4-4b01-bf25-aa6c4d72cbeb" + "4718e3a4-ca5a-483c-9baf-6a4dba394d6c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T205821Z:2942bef5-01b4-4b01-bf25-aa6c4d72cbeb" + "WESTCENTRALUS:20220813T003913Z:4718e3a4-ca5a-483c-9baf-6a4dba394d6c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:58:21 GMT" + "Sat, 13 Aug 2022 00:39:13 GMT" ], "Content-Length": [ "134" @@ -4019,19 +3958,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T16:57:21.4672315-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2d958eed-9284-4972-8115-cce98b5690c5\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:38:13.3460605-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5af59b2a-060d-42b1-b2e6-4de1ded36bb2\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/2d958eed-9284-4972-8115-cce98b5690c5?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yZDk1OGVlZC05Mjg0LTQ5NzItODExNS1jY2U5OGI1NjkwYzU/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/5af59b2a-060d-42b1-b2e6-4de1ded36bb2?api-version=2022-03-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy81YWY1OWIyYS0wNjBkLTQyYjEtYjJlNi00ZGUxZGVkMzZiYjI/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -4043,35 +3982,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4141" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4131" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "ce950455-59d1-4660-a61f-d8fad2887193" + "99ab4e76-2bd9-42b2-8b5e-2b7f884ba668" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11967" ], "x-ms-correlation-request-id": [ - "b2c55271-73c2-424f-bf8c-5953e1cc83e8" + "b7b0a7c4-1789-44cf-a80f-c746dc01ff5c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T205922Z:b2c55271-73c2-424f-bf8c-5953e1cc83e8" + "WESTCENTRALUS:20220813T004013Z:b7b0a7c4-1789-44cf-a80f-c746dc01ff5c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:59:21 GMT" + "Sat, 13 Aug 2022 00:40:13 GMT" ], "Content-Length": [ "184" @@ -4083,19 +4022,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T16:57:21.4672315-04:00\",\r\n \"endTime\": \"2022-07-22T16:58:51.7211268-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2d958eed-9284-4972-8115-cce98b5690c5\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:38:13.3460605-07:00\",\r\n \"endTime\": \"2022-08-12T17:39:43.5027788-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5af59b2a-060d-42b1-b2e6-4de1ded36bb2\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/2d958eed-9284-4972-8115-cce98b5690c5?monitor=true&api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yZDk1OGVlZC05Mjg0LTQ5NzItODExNS1jY2U5OGI1NjkwYzU/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/5af59b2a-060d-42b1-b2e6-4de1ded36bb2?monitor=true&api-version=2022-03-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy81YWY1OWIyYS0wNjBkLTQyYjEtYjJlNi00ZGUxZGVkMzZiYjI/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDMtMDM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -4107,35 +4046,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4140" + "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4130" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "910a7d91-d0e7-45e4-a7b9-b8ef83d98cd0" + "b4fff37d-2ad3-4c81-833f-41ae58f2abee" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11966" ], "x-ms-correlation-request-id": [ - "368230f3-3712-4923-a39d-e43e33d210c1" + "14090e5a-c240-4809-a9d3-630683f0ae48" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T205922Z:368230f3-3712-4923-a39d-e43e33d210c1" + "WESTCENTRALUS:20220813T004014Z:14090e5a-c240-4809-a9d3-630683f0ae48" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:59:21 GMT" + "Sat, 13 Aug 2022 00:40:13 GMT" ], "Expires": [ "-1" @@ -4148,21 +4087,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Compute/images/psTestSourceImage2970?api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg5NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTI5NzA/YXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/images/psTestSourceImage6321?api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTYzMjE/YXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1a2ce97-e156-4eb5-b621-987d2e7c212b" + "057e1ba2-6e36-4766-af22-add4957fa162" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -4174,10 +4113,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/bf303c35-c2a0-4c64-9396-3593c8e92f59?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&monitor=true&api-version=2022-03-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/7db320c4-d153-4526-9b3a-41ffa1411697?p=0b6b958b-08c9-4eca-a759-7e84a44d7832&monitor=true&api-version=2022-03-01" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/bf303c35-c2a0-4c64-9396-3593c8e92f59?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-03-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/7db320c4-d153-4526-9b3a-41ffa1411697?p=0b6b958b-08c9-4eca-a759-7e84a44d7832&api-version=2022-03-01" ], "Azure-AsyncNotification": [ "Enabled" @@ -4189,7 +4128,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bf303c35-c2a0-4c64-9396-3593c8e92f59" + "7db320c4-d153-4526-9b3a-41ffa1411697" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4199,16 +4138,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "d4fa6717-ce0f-46f3-9ef4-922b41f4368f" + "1a0c8caa-265f-4a34-b2dd-cfcd7dc0aa46" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T210423Z:d4fa6717-ce0f-46f3-9ef4-922b41f4368f" + "WESTUS:20220813T004515Z:1a0c8caa-265f-4a34-b2dd-cfcd7dc0aa46" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:04:23 GMT" + "Sat, 13 Aug 2022 00:45:15 GMT" ], "Expires": [ "-1" @@ -4221,21 +4160,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Compute/images/psTestSourceImage2970?api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg5NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTI5NzA/YXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/images/psTestSourceImage6321?api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTYzMjE/YXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ed545496-2b56-4ae6-acea-a3d0ceb7dffd" + "88d83dc6-ff52-4858-8de5-d39039ee0acd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -4250,13 +4189,13 @@ "14994" ], "x-ms-request-id": [ - "a6f31b8d-bd3a-45fd-a476-edcb0bf4fccf" + "e35d6b1d-1f58-4b39-85ac-e46447e518f2" ], "x-ms-correlation-request-id": [ - "a6f31b8d-bd3a-45fd-a476-edcb0bf4fccf" + "e35d6b1d-1f58-4b39-85ac-e46447e518f2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T210636Z:a6f31b8d-bd3a-45fd-a476-edcb0bf4fccf" + "WESTUS:20220813T004758Z:e35d6b1d-1f58-4b39-85ac-e46447e518f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4265,7 +4204,7 @@ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:06:35 GMT" + "Sat, 13 Aug 2022 00:47:57 GMT" ], "Expires": [ "-1" @@ -4275,15 +4214,15 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/bf303c35-c2a0-4c64-9396-3593c8e92f59?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2JmMzAzYzM1LWMyYTAtNGM2NC05Mzk2LTM1OTNjOGU5MmY1OT9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZhcGktdmVyc2lvbj0yMDIyLTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/7db320c4-d153-4526-9b3a-41ffa1411697?p=0b6b958b-08c9-4eca-a759-7e84a44d7832&api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzdkYjMyMGM0LWQxNTMtNDUyNi05YjNhLTQxZmZhMTQxMTY5Nz9wPTBiNmI5NThiLTA4YzktNGVjYS1hNzU5LTdlODRhNDRkNzgzMiZhcGktdmVyc2lvbj0yMDIyLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -4295,13 +4234,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29976" + "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29979" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ee866b97-b14a-4048-b758-7ec6b731eee0" + "ebb7e3a9-0fc8-4d11-b51f-3394bbe3c90e" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4311,16 +4250,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "057bd0f9-464b-44db-8b88-1f4e86fdd769" + "142d3d0f-fd47-42a4-8639-bb3bdd2d20ee" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T210453Z:057bd0f9-464b-44db-8b88-1f4e86fdd769" + "WESTUS:20220813T004545Z:142d3d0f-fd47-42a4-8639-bb3bdd2d20ee" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:04:53 GMT" + "Sat, 13 Aug 2022 00:45:45 GMT" ], "Content-Length": [ "184" @@ -4332,19 +4271,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T17:04:23.6463319-04:00\",\r\n \"endTime\": \"2022-07-22T17:04:28.8028552-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"bf303c35-c2a0-4c64-9396-3593c8e92f59\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:45:15.5943189-07:00\",\r\n \"endTime\": \"2022-08-12T17:45:20.7039018-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7db320c4-d153-4526-9b3a-41ffa1411697\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/bf303c35-c2a0-4c64-9396-3593c8e92f59?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&monitor=true&api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2JmMzAzYzM1LWMyYTAtNGM2NC05Mzk2LTM1OTNjOGU5MmY1OT9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZtb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/7db320c4-d153-4526-9b3a-41ffa1411697?p=0b6b958b-08c9-4eca-a759-7e84a44d7832&monitor=true&api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzdkYjMyMGM0LWQxNTMtNDUyNi05YjNhLTQxZmZhMTQxMTY5Nz9wPTBiNmI5NThiLTA4YzktNGVjYS1hNzU5LTdlODRhNDRkNzgzMiZtb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -4356,13 +4295,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29975" + "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29978" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "43a641b9-9546-4c56-a41b-eda87cb5fdaa" + "bb3b3783-b0d1-476d-877f-e2e003252c6b" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4372,16 +4311,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "24f3dfbb-92eb-4804-af5a-c6cc22e4d47f" + "fd4ae602-1d64-45e3-8c69-883fcdbbaf6d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T210454Z:24f3dfbb-92eb-4804-af5a-c6cc22e4d47f" + "WESTUS:20220813T004545Z:fd4ae602-1d64-45e3-8c69-883fcdbbaf6d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:04:53 GMT" + "Sat, 13 Aug 2022 00:45:45 GMT" ], "Expires": [ "-1" @@ -4394,21 +4333,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Compute/virtualMachines/vm6644?api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg5NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY2NDQ/YXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/virtualMachines/vm2252?api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTIyNTI/YXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3fa82cf2-d908-4e5a-b497-63fa38f39899" + "0dd48541-da46-4087-a1dd-7efb2aa05b6e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -4420,13 +4359,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/6940bca4-2d29-49da-8949-c60a4341465b?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&monitor=true&api-version=2022-03-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/7ff4e1dc-e8b3-4755-87c0-c29b54dcbcc9?p=0b6b958b-08c9-4eca-a759-7e84a44d7832&monitor=true&api-version=2022-03-01" ], "Retry-After": [ "10" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/6940bca4-2d29-49da-8949-c60a4341465b?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-03-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/7ff4e1dc-e8b3-4755-87c0-c29b54dcbcc9?p=0b6b958b-08c9-4eca-a759-7e84a44d7832&api-version=2022-03-01" ], "Azure-AsyncNotification": [ "Enabled" @@ -4438,7 +4377,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6940bca4-2d29-49da-8949-c60a4341465b" + "7ff4e1dc-e8b3-4755-87c0-c29b54dcbcc9" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4448,16 +4387,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "5f5b7e44-7094-4ca8-9434-af0f21844322" + "28878fb2-0351-40f1-8f05-638d1b98cb26" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T210454Z:5f5b7e44-7094-4ca8-9434-af0f21844322" + "WESTUS:20220813T004546Z:28878fb2-0351-40f1-8f05-638d1b98cb26" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:04:53 GMT" + "Sat, 13 Aug 2022 00:45:45 GMT" ], "Expires": [ "-1" @@ -4470,21 +4409,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Compute/virtualMachines/vm6644?api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg5NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY2NDQ/YXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/virtualMachines/vm2252?api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTIyNTI/YXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae62c8c2-23a4-4af9-9fd4-aa5ffef39af2" + "ab70f4d3-8606-45f9-a1d2-866b92ca8c60" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -4499,13 +4438,13 @@ "14995" ], "x-ms-request-id": [ - "9c858789-ee09-40f6-ada0-9de42de0b428" + "b9b4c3ab-9262-47d0-8779-5a0069501dd8" ], "x-ms-correlation-request-id": [ - "9c858789-ee09-40f6-ada0-9de42de0b428" + "b9b4c3ab-9262-47d0-8779-5a0069501dd8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T210636Z:9c858789-ee09-40f6-ada0-9de42de0b428" + "WESTUS:20220813T004758Z:b9b4c3ab-9262-47d0-8779-5a0069501dd8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4514,7 +4453,7 @@ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:06:35 GMT" + "Sat, 13 Aug 2022 00:47:57 GMT" ], "Expires": [ "-1" @@ -4524,15 +4463,15 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/6940bca4-2d29-49da-8949-c60a4341465b?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzY5NDBiY2E0LTJkMjktNDlkYS04OTQ5LWM2MGE0MzQxNDY1Yj9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZhcGktdmVyc2lvbj0yMDIyLTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/7ff4e1dc-e8b3-4755-87c0-c29b54dcbcc9?p=0b6b958b-08c9-4eca-a759-7e84a44d7832&api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzdmZjRlMWRjLWU4YjMtNDc1NS04N2MwLWMyOWI1NGRjYmNjOT9wPTBiNmI5NThiLTA4YzktNGVjYS1hNzU5LTdlODRhNDRkNzgzMiZhcGktdmVyc2lvbj0yMDIyLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -4547,13 +4486,13 @@ "30" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29974" + "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29977" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "94ce6cd3-3c7d-4914-a5da-079197ff56f7" + "7ed3c473-cb37-4ee9-a259-b22641536d0d" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4563,16 +4502,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "4eca0c9a-38c7-4399-8f4f-0e52c412cbfd" + "d182e2db-5514-430c-a618-e27fe3114187" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T210504Z:4eca0c9a-38c7-4399-8f4f-0e52c412cbfd" + "WESTUS:20220813T004556Z:d182e2db-5514-430c-a618-e27fe3114187" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:05:03 GMT" + "Sat, 13 Aug 2022 00:45:55 GMT" ], "Content-Length": [ "134" @@ -4584,19 +4523,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T17:04:54.3041198-04:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6940bca4-2d29-49da-8949-c60a4341465b\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:45:46.0956432-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7ff4e1dc-e8b3-4755-87c0-c29b54dcbcc9\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/6940bca4-2d29-49da-8949-c60a4341465b?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzY5NDBiY2E0LTJkMjktNDlkYS04OTQ5LWM2MGE0MzQxNDY1Yj9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZhcGktdmVyc2lvbj0yMDIyLTAzLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/7ff4e1dc-e8b3-4755-87c0-c29b54dcbcc9?p=0b6b958b-08c9-4eca-a759-7e84a44d7832&api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzdmZjRlMWRjLWU4YjMtNDc1NS04N2MwLWMyOWI1NGRjYmNjOT9wPTBiNmI5NThiLTA4YzktNGVjYS1hNzU5LTdlODRhNDRkNzgzMiZhcGktdmVyc2lvbj0yMDIyLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -4608,13 +4547,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29973" + "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29976" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6d92c707-9ef9-4aae-8e88-924a3763bf9d" + "68325580-f2a0-456e-87f4-bfe76722532c" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4624,19 +4563,19 @@ "11996" ], "x-ms-correlation-request-id": [ - "5f662fba-aed2-4109-a5b0-798c5c751c63" + "d7d0cb78-b059-4323-bf08-f77ff0c2657e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T210534Z:5f662fba-aed2-4109-a5b0-798c5c751c63" + "WESTUS:20220813T004626Z:d7d0cb78-b059-4323-bf08-f77ff0c2657e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:05:34 GMT" + "Sat, 13 Aug 2022 00:46:25 GMT" ], "Content-Length": [ - "184" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4645,19 +4584,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T17:04:54.3041198-04:00\",\r\n \"endTime\": \"2022-07-22T17:05:33.5713321-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"6940bca4-2d29-49da-8949-c60a4341465b\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:45:46.0956432-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7ff4e1dc-e8b3-4755-87c0-c29b54dcbcc9\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/6940bca4-2d29-49da-8949-c60a4341465b?p=41da89ab-29fa-414a-bb5c-9eea1ddab902&monitor=true&api-version=2022-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzY5NDBiY2E0LTJkMjktNDlkYS04OTQ5LWM2MGE0MzQxNDY1Yj9wPTQxZGE4OWFiLTI5ZmEtNDE0YS1iYjVjLTllZWExZGRhYjkwMiZtb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/7ff4e1dc-e8b3-4755-87c0-c29b54dcbcc9?p=0b6b958b-08c9-4eca-a759-7e84a44d7832&api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzdmZjRlMWRjLWU4YjMtNDc1NS04N2MwLWMyOWI1NGRjYmNjOT9wPTBiNmI5NThiLTA4YzktNGVjYS1hNzU5LTdlODRhNDRkNzgzMiZhcGktdmVyc2lvbj0yMDIyLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -4669,13 +4608,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29972" + "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29975" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f1257237-fa66-444c-968a-631721ed05a0" + "0f55875a-7b0c-43f6-98df-1f4b2587c366" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4685,16 +4624,77 @@ "11995" ], "x-ms-correlation-request-id": [ - "04b0c0ce-e258-40ea-ae52-f4a38833ac6f" + "e5760ef7-75d0-4514-a5fc-8ac3c8b49b4e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T210534Z:04b0c0ce-e258-40ea-ae52-f4a38833ac6f" + "WESTUS:20220813T004656Z:e5760ef7-75d0-4514-a5fc-8ac3c8b49b4e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:05:34 GMT" + "Sat, 13 Aug 2022 00:46:56 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:45:46.0956432-07:00\",\r\n \"endTime\": \"2022-08-12T17:46:28.5341754-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7ff4e1dc-e8b3-4755-87c0-c29b54dcbcc9\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/7ff4e1dc-e8b3-4755-87c0-c29b54dcbcc9?p=0b6b958b-08c9-4eca-a759-7e84a44d7832&monitor=true&api-version=2022-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzdmZjRlMWRjLWU4YjMtNDc1NS04N2MwLWMyOWI1NGRjYmNjOT9wPTBiNmI5NThiLTA4YzktNGVjYS1hNzU5LTdlODRhNDRkNzgzMiZtb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMi0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.36202", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19044", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29974" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8a8cb315-9204-4a0e-80cd-8341c2cad173" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "4b6f4ef5-e8af-476b-a2de-9fed985a9b80" + ], + "x-ms-routing-request-id": [ + "WESTUS:20220813T004656Z:4b6f4ef5-e8af-476b-a2de-9fed985a9b80" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Aug 2022 00:46:56 GMT" ], "Expires": [ "-1" @@ -4707,21 +4707,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Compute/galleries/galleryPsTestGallery2923/images/galleryPsTestGalleryImage6788?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg5NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTI5MjMvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U2Nzg4P2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/galleries/galleryPsTestGallery5159/images/galleryPsTestGalleryImage6275?api-version=2022-03-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxNTkvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U2Mjc1P2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fd2fdcb9-b5ff-40a6-b869-59ccba4e8955" + "6c214270-8c80-4641-9ca3-508bee7f087c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -4733,10 +4733,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/2e6fd458-3a3c-48b1-bebe-32430f5284cb?monitor=true&api-version=2022-03-03" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/bd8d7066-c8f6-472a-8a65-11d2654cd7c7?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/2e6fd458-3a3c-48b1-bebe-32430f5284cb?api-version=2022-03-03" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/bd8d7066-c8f6-472a-8a65-11d2654cd7c7?api-version=2022-03-03" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/DeleteGalleryImage3Min;49,Microsoft.Compute/DeleteGalleryImage30Min;299" @@ -4745,10 +4745,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "2e6fd458-3a3c-48b1-bebe-32430f5284cb" + "bd8d7066-c8f6-472a-8a65-11d2654cd7c7" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4758,16 +4758,16 @@ "14997" ], "x-ms-correlation-request-id": [ - "22cfedb1-d52f-434f-a9ac-3a680c9b86cf" + "4159a968-e4ad-463b-9e03-fcb6184feea7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T210535Z:22cfedb1-d52f-434f-a9ac-3a680c9b86cf" + "WESTUS:20220813T004657Z:4159a968-e4ad-463b-9e03-fcb6184feea7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:05:35 GMT" + "Sat, 13 Aug 2022 00:46:57 GMT" ], "Expires": [ "-1" @@ -4780,15 +4780,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/2e6fd458-3a3c-48b1-bebe-32430f5284cb?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yZTZmZDQ1OC0zYTNjLTQ4YjEtYmViZS0zMjQzMGY1Mjg0Y2I/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/bd8d7066-c8f6-472a-8a65-11d2654cd7c7?api-version=2022-03-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iZDhkNzA2Ni1jOGY2LTQ3MmEtOGE2NS0xMWQyNjU0Y2Q3Yzc/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -4800,35 +4800,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4163" + "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4160" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "9e11bece-a71b-4ea9-8b90-7171a4e11c12" + "b56683b4-1fa1-46bb-b597-5d4b57b63a43" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-correlation-request-id": [ - "5521d1d8-95a0-4560-a769-cf6fd599ddf5" + "e1365825-a882-4b95-b5e2-8125999350fc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T210605Z:5521d1d8-95a0-4560-a769-cf6fd599ddf5" + "WESTUS:20220813T004727Z:e1365825-a882-4b95-b5e2-8125999350fc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:06:04 GMT" + "Sat, 13 Aug 2022 00:47:26 GMT" ], "Content-Length": [ "184" @@ -4840,19 +4840,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T17:05:35.0675616-04:00\",\r\n \"endTime\": \"2022-07-22T17:05:35.2863233-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2e6fd458-3a3c-48b1-bebe-32430f5284cb\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:46:57.0834942-07:00\",\r\n \"endTime\": \"2022-08-12T17:46:57.5991459-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"bd8d7066-c8f6-472a-8a65-11d2654cd7c7\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/2e6fd458-3a3c-48b1-bebe-32430f5284cb?monitor=true&api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yZTZmZDQ1OC0zYTNjLTQ4YjEtYmViZS0zMjQzMGY1Mjg0Y2I/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/bd8d7066-c8f6-472a-8a65-11d2654cd7c7?monitor=true&api-version=2022-03-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iZDhkNzA2Ni1jOGY2LTQ3MmEtOGE2NS0xMWQyNjU0Y2Q3Yzc/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDMtMDM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -4864,35 +4864,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4162" + "Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4159" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "a5b51b92-347a-4b35-a7d3-4db046b4db10" + "1d5583cb-44f1-4d18-9143-fcbbfb3c58b2" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-correlation-request-id": [ - "b0a9b226-8f36-4a6c-b9f0-72c192f66a63" + "e6df2126-6e78-48a9-ab01-003d3633bfe2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T210605Z:b0a9b226-8f36-4a6c-b9f0-72c192f66a63" + "WESTUS:20220813T004727Z:e6df2126-6e78-48a9-ab01-003d3633bfe2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:06:05 GMT" + "Sat, 13 Aug 2022 00:47:26 GMT" ], "Expires": [ "-1" @@ -4905,21 +4905,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8953/providers/Microsoft.Compute/galleries/galleryPsTestGallery2923?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg5NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTI5MjM/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg2588/providers/Microsoft.Compute/galleries/galleryPsTestGallery5159?api-version=2022-03-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI1ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxNTk/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e5b1394-8594-42a2-94b5-f72ebeced9e3" + "db652e96-89f3-4788-a559-6b7f06d24ff7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -4931,22 +4931,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/a2bc5acd-c78f-416e-b3db-5a1ac1860a92?monitor=true&api-version=2022-03-03" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/5d8a8c99-0247-4718-9340-80be3d9ceeb0?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/a2bc5acd-c78f-416e-b3db-5a1ac1860a92?api-version=2022-03-03" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/5d8a8c99-0247-4718-9340-80be3d9ceeb0?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": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "a2bc5acd-c78f-416e-b3db-5a1ac1860a92" + "5d8a8c99-0247-4718-9340-80be3d9ceeb0" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4956,16 +4956,16 @@ "14996" ], "x-ms-correlation-request-id": [ - "3a7d9d8b-bf7f-4b77-8366-ee5e324cbd0a" + "cdfb12af-c5e2-41e7-92a8-ec45621ff306" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T210605Z:3a7d9d8b-bf7f-4b77-8366-ee5e324cbd0a" + "WESTUS:20220813T004727Z:cdfb12af-c5e2-41e7-92a8-ec45621ff306" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:06:05 GMT" + "Sat, 13 Aug 2022 00:47:27 GMT" ], "Expires": [ "-1" @@ -4978,15 +4978,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/a2bc5acd-c78f-416e-b3db-5a1ac1860a92?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hMmJjNWFjZC1jNzhmLTQxNmUtYjNkYi01YTFhYzE4NjBhOTI/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/5d8a8c99-0247-4718-9340-80be3d9ceeb0?api-version=2022-03-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy81ZDhhOGM5OS0wMjQ3LTQ3MTgtOTM0MC04MGJlM2Q5Y2VlYjA/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -4998,35 +4998,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4160" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4157" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "b4acf0ee-74c1-41b2-91f1-39ab9bff4132" + "55f21126-9702-4bd7-b1ec-36af267e61d7" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-correlation-request-id": [ - "14f06c29-1ec0-4260-a8d0-3618bb8320c3" + "091b6f25-3c0f-4680-93fd-5ea8b88ffca4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T210635Z:14f06c29-1ec0-4260-a8d0-3618bb8320c3" + "WESTUS:20220813T004757Z:091b6f25-3c0f-4680-93fd-5ea8b88ffca4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:06:35 GMT" + "Sat, 13 Aug 2022 00:47:57 GMT" ], "Content-Length": [ "184" @@ -5038,19 +5038,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T17:06:05.7251497-04:00\",\r\n \"endTime\": \"2022-07-22T17:06:05.8189019-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a2bc5acd-c78f-416e-b3db-5a1ac1860a92\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-08-12T17:47:27.6618179-07:00\",\r\n \"endTime\": \"2022-08-12T17:47:27.7555719-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5d8a8c99-0247-4718-9340-80be3d9ceeb0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/a2bc5acd-c78f-416e-b3db-5a1ac1860a92?monitor=true&api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hMmJjNWFjZC1jNzhmLTQxNmUtYjNkYi01YTFhYzE4NjBhOTI/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/5d8a8c99-0247-4718-9340-80be3d9ceeb0?monitor=true&api-version=2022-03-03", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy81ZDhhOGM5OS0wMjQ3LTQ3MTgtOTM0MC04MGJlM2Q5Y2VlYjA/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDMtMDM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -5062,35 +5062,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4159" + "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4156" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "d1ed69b4-a0f1-46e5-8e07-27499b30377e" + "e0b50083-f149-40b4-ae36-7f91b85808f9" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11990" ], "x-ms-correlation-request-id": [ - "e74ff48f-1915-4270-b356-331d32b3daf0" + "efa476e9-b1e9-448b-a0ea-acef9d826e55" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T210636Z:e74ff48f-1915-4270-b356-331d32b3daf0" + "WESTUS:20220813T004757Z:efa476e9-b1e9-448b-a0ea-acef9d826e55" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:06:35 GMT" + "Sat, 13 Aug 2022 00:47:57 GMT" ], "Expires": [ "-1" @@ -5105,36 +5105,36 @@ ], "Names": { "GalleryImageVersion_CRUD_Tests": [ - "galleryPsTestRg8953", - "psTestSourceImage2970", - "galleryPsTestGallery2923", - "galleryPsTestGalleryImage6788" + "galleryPsTestRg2588", + "psTestSourceImage6321", + "galleryPsTestGallery5159", + "galleryPsTestGalleryImage6275" ], "CreateCRPImage": [ - "saforgallery7338", - "asforgallery1640" + "saforgallery4030", + "asforgallery7201" ], "CreatePublicIP": [ - "pip289", - "dn3308" + "pip2811", + "dn9269" ], "CreateVNET": [ - "vn2132", - "sn9121" + "vn2081", + "sn5134" ], "CreateNIC": [ - "nic6946", - "ip9448" + "nic1688", + "ip8169" ], "CreateDefaultVMInput": [ - "crptestar5161", - "crptestar2417", - "crptestar1062", - "vm6644", - "Microsoft.Compute/virtualMachines7890" + "crptestar483", + "crptestar5048", + "crptestar2912", + "vm2252", + "Microsoft.Compute/virtualMachines4502" ] }, "Variables": { - "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871" + "SubscriptionId": "97f78232-382b-46a7-8a72-964d692c4f3f" } } \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryImage_CRUD_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryImage_CRUD_Tests.json index 0e791203361c..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/galleryPsTestRg8092?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzgwOTI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "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": [ - "a47674ce-c3c0-474f-85d8-801e1dc344b7" + "8dcd9b2f-1ec8-444b-9171-4d3f611d594f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "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": [ - "71fbc19a-273f-4507-8171-5043d2e7c549" + "8e936ece-c88a-4e5e-94ae-2406bbfdf199" ], "x-ms-correlation-request-id": [ - "71fbc19a-273f-4507-8171-5043d2e7c549" + "8e936ece-c88a-4e5e-94ae-2406bbfdf199" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203547Z:71fbc19a-273f-4507-8171-5043d2e7c549" + "WESTCENTRALUS:20220813T001716Z:8e936ece-c88a-4e5e-94ae-2406bbfdf199" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:35:47 GMT" + "Sat, 13 Aug 2022 00:17:15 GMT" ], "Content-Length": [ "192" @@ -63,25 +63,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8092\",\r\n \"name\": \"galleryPsTestRg8092\",\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/galleryPsTestRg8092/providers/Microsoft.Compute/galleries/galleryPsTestGallery4756?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzgwOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ3NTY/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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": [ - "4c8a5c67-ba68-4a43-bf24-ae834ec12226" + "144162cd-342a-4044-a5d8-cef70c2cc587" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ], "Content-Type": [ @@ -99,19 +99,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/5dee7c77-3388-4c9c-9089-e5fb07f77d7f?api-version=2022-03-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;48,Microsoft.Compute/CreateUpdateGallery30Min;298" + "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;294" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "5dee7c77-3388-4c9c-9089-e5fb07f77d7f" + "93b85236-9fa2-4e38-90fd-e01451e3b46e" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -121,16 +121,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "fd8a6c8e-d85f-47a7-a1a4-2b8cf2b385d3" + "e82a5463-b929-453f-bef5-ea5e7b3ea898" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203550Z:fd8a6c8e-d85f-47a7-a1a4-2b8cf2b385d3" + "WESTCENTRALUS:20220813T001719Z:e82a5463-b929-453f-bef5-ea5e7b3ea898" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:35:49 GMT" + "Sat, 13 Aug 2022 00:17:18 GMT" ], "Content-Length": [ "508" @@ -142,19 +142,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery4756\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8092/providers/Microsoft.Compute/galleries/galleryPsTestGallery4756\",\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-GALLERYPSTESTGALLERY4756\"\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/5dee7c77-3388-4c9c-9089-e5fb07f77d7f?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy81ZGVlN2M3Ny0zMzg4LTRjOWMtOTA4OS1lNWZiMDdmNzdkN2Y/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -166,16 +166,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4187" + "Microsoft.Compute/GetOperationStatus3Min;1179,Microsoft.Compute/GetOperationStatus30Min;4098" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "51768c54-553a-47be-8073-77701a9c796c" + "ce0bc963-f145-4133-a49a-9e9e3f37f40d" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -185,19 +185,19 @@ "11999" ], "x-ms-correlation-request-id": [ - "0624ffc0-b510-49ed-b101-5ba14b120dfa" + "14c33598-c47e-4e9a-9fe9-1e12cb046087" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203620Z:0624ffc0-b510-49ed-b101-5ba14b120dfa" + "WESTCENTRALUS:20220813T001749Z:14c33598-c47e-4e9a-9fe9-1e12cb046087" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:36:19 GMT" + "Sat, 13 Aug 2022 00:17:49 GMT" ], "Content-Length": [ - "184" + "183" ], "Content-Type": [ "application/json; charset=utf-8" @@ -206,19 +206,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T16:35:49.9601079-04:00\",\r\n \"endTime\": \"2022-07-22T16:35:50.0538387-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5dee7c77-3388-4c9c-9089-e5fb07f77d7f\"\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/galleryPsTestRg8092/providers/Microsoft.Compute/galleries/galleryPsTestGallery4756?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzgwOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ3NTY/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -230,16 +230,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;339,Microsoft.Compute/GetGallery30Min;2488" + "Microsoft.Compute/GetGallery3Min;344,Microsoft.Compute/GetGallery30Min;2449" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "0d89dea9-83aa-4a58-b61d-6284de9df4ff" + "520e6db8-cd2e-4622-8cc6-e793e0c523e3" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -249,16 +249,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "e7af21b2-34d1-4584-a624-20b799f13ceb" + "ebce38ad-9cfb-4a76-ba6b-21c73c58b470" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203620Z:e7af21b2-34d1-4584-a624-20b799f13ceb" + "WESTCENTRALUS:20220813T001749Z:ebce38ad-9cfb-4a76-ba6b-21c73c58b470" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:36:19 GMT" + "Sat, 13 Aug 2022 00:17:49 GMT" ], "Content-Length": [ "509" @@ -270,25 +270,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery4756\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8092/providers/Microsoft.Compute/galleries/galleryPsTestGallery4756\",\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-GALLERYPSTESTGALLERY4756\"\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/galleryPsTestRg8092/providers/Microsoft.Compute/galleries/galleryPsTestGallery4756/images/galleryPsTestGalleryImage8249?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzgwOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ3NTYvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4MjQ5P2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "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": [ - "53684ac5-e994-48da-a4cb-8b39e5fc4490" + "9c23454c-3bab-44c1-a6ee-cd6568da9517" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ], "Content-Type": [ @@ -306,19 +306,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/b4c3ae73-6333-4a78-9b96-d2b3b2e404de?api-version=2022-03-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;749" + "Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;746" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "b4c3ae73-6333-4a78-9b96-d2b3b2e404de" + "cccb8cfa-309d-4db7-a677-86dcdc628a08" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -328,16 +328,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "8dad11a0-da06-4ad9-968e-e022ce3ffd8b" + "27e5ce1d-1eaa-4ad2-8d8f-3749c8487db2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203621Z:8dad11a0-da06-4ad9-968e-e022ce3ffd8b" + "WESTCENTRALUS:20220813T001750Z:27e5ce1d-1eaa-4ad2-8d8f-3749c8487db2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:36:21 GMT" + "Sat, 13 Aug 2022 00:17:50 GMT" ], "Content-Length": [ "674" @@ -349,25 +349,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage8249\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8092/providers/Microsoft.Compute/galleries/galleryPsTestGallery4756/images/galleryPsTestGalleryImage8249\",\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/galleryPsTestRg8092/providers/Microsoft.Compute/galleries/galleryPsTestGallery4756/images/galleryPsTestGalleryImage8249?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzgwOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ3NTYvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4MjQ5P2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "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": [ - "170b4e7e-5491-48d9-9091-e67dbd3e70b2" + "b8a2518d-8db1-4030-b205-1e6271a998e7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ], "Content-Type": [ @@ -385,19 +385,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/3655c003-3ba0-4b56-977c-65a426f38fd6?api-version=2022-03-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;748" + "Microsoft.Compute/CreateUpdateGalleryImage3Min;148,Microsoft.Compute/CreateUpdateGalleryImage30Min;745" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "3655c003-3ba0-4b56-977c-65a426f38fd6" + "8bd8b52f-f3c3-4398-a4b9-f3d28917def5" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -407,16 +407,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "673818cc-e616-40a2-8031-88cef948f885" + "8ba53ae9-8cc1-465b-a836-f28784cdf465" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203652Z:673818cc-e616-40a2-8031-88cef948f885" + "WESTCENTRALUS:20220813T001821Z:8ba53ae9-8cc1-465b-a836-f28784cdf465" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:36:51 GMT" + "Sat, 13 Aug 2022 00:18:21 GMT" ], "Content-Length": [ "656" @@ -428,19 +428,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage8249\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8092/providers/Microsoft.Compute/galleries/galleryPsTestGallery4756/images/galleryPsTestGalleryImage8249\",\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/b4c3ae73-6333-4a78-9b96-d2b3b2e404de?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iNGMzYWU3My02MzMzLTRhNzgtOWI5Ni1kMmIzYjJlNDA0ZGU/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -452,16 +452,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4185" + "Microsoft.Compute/GetOperationStatus3Min;1181,Microsoft.Compute/GetOperationStatus30Min;4095" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "71adabaf-2a8a-469c-a71e-e75eb5e92afa" + "00dc58f0-1e41-4eb5-b9a4-72c82e2f876c" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -471,16 +471,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "1382bf4e-e6d5-442d-a137-24b6b0e7034f" + "b826a1e8-2e52-4430-a81e-0ef67dc00404" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203651Z:1382bf4e-e6d5-442d-a137-24b6b0e7034f" + "WESTCENTRALUS:20220813T001821Z:b826a1e8-2e52-4430-a81e-0ef67dc00404" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:36:51 GMT" + "Sat, 13 Aug 2022 00:18:20 GMT" ], "Content-Length": [ "184" @@ -492,19 +492,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T16:36:21.3677135-04:00\",\r\n \"endTime\": \"2022-07-22T16:36:21.4926946-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b4c3ae73-6333-4a78-9b96-d2b3b2e404de\"\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/galleryPsTestRg8092/providers/Microsoft.Compute/galleries/galleryPsTestGallery4756/images/galleryPsTestGalleryImage8249?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzgwOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ3NTYvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4MjQ5P2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -516,16 +516,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2996" + "Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2971" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "b667739c-1b9b-4b34-b434-775286cca927" + "7f9c5db5-f4ef-44d2-b9c0-b80c5c3a9663" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -535,16 +535,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "a2d72e68-e4fb-4f09-9ec2-b597be7dc32d" + "064fd41d-71c1-4d2f-99fe-c563b7208f98" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203652Z:a2d72e68-e4fb-4f09-9ec2-b597be7dc32d" + "WESTCENTRALUS:20220813T001821Z:064fd41d-71c1-4d2f-99fe-c563b7208f98" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:36:51 GMT" + "Sat, 13 Aug 2022 00:18:20 GMT" ], "Content-Length": [ "675" @@ -556,25 +556,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage8249\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8092/providers/Microsoft.Compute/galleries/galleryPsTestGallery4756/images/galleryPsTestGalleryImage8249\",\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/galleryPsTestRg8092/providers/Microsoft.Compute/galleries/galleryPsTestGallery4756/images/galleryPsTestGalleryImage8249?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzgwOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ3NTYvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4MjQ5P2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "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": [ - "8b226ab2-24cb-4904-932b-2a04d3d52d35" + "d9c3d6fe-b4dd-4aab-b8b5-918b5f342a6d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -586,16 +586,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImage3Min;595,Microsoft.Compute/GetGalleryImage30Min;2995" + "Microsoft.Compute/GetGalleryImage3Min;595,Microsoft.Compute/GetGalleryImage30Min;2970" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "ab0d6c3a-3d6c-48df-ac86-4471fedfed89" + "653bca32-b95a-49bc-aa15-0d1898d404fe" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -605,16 +605,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "675aa0b3-1b6e-40e1-b603-439039009aa3" + "5a69b3f7-6d04-4713-8893-3f9b92a583b4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203652Z:675aa0b3-1b6e-40e1-b603-439039009aa3" + "WESTCENTRALUS:20220813T001821Z:5a69b3f7-6d04-4713-8893-3f9b92a583b4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:36:51 GMT" + "Sat, 13 Aug 2022 00:18:21 GMT" ], "Content-Length": [ "675" @@ -626,19 +626,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage8249\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8092/providers/Microsoft.Compute/galleries/galleryPsTestGallery4756/images/galleryPsTestGalleryImage8249\",\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/galleryPsTestRg8092/providers/Microsoft.Compute/galleries/galleryPsTestGallery4756/images/galleryPsTestGalleryImage8249?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzgwOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ3NTYvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4MjQ5P2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -650,16 +650,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImage3Min;591,Microsoft.Compute/GetGalleryImage30Min;2991" + "Microsoft.Compute/GetGalleryImage3Min;591,Microsoft.Compute/GetGalleryImage30Min;2966" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "c45b8de5-9dde-4f81-b06a-89cdfee1efb4" + "79595ff5-8d4c-41b9-b726-c35eb3d075cc" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -669,16 +669,16 @@ "11993" ], "x-ms-correlation-request-id": [ - "5a9a7365-b470-45a5-92d6-2b3a275276ce" + "82dbe9f6-8816-4781-8dbf-dd650d7d4a53" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203722Z:5a9a7365-b470-45a5-92d6-2b3a275276ce" + "WESTCENTRALUS:20220813T001852Z:82dbe9f6-8816-4781-8dbf-dd650d7d4a53" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:37:22 GMT" + "Sat, 13 Aug 2022 00:18:51 GMT" ], "Content-Length": [ "657" @@ -690,25 +690,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage8249\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8092/providers/Microsoft.Compute/galleries/galleryPsTestGallery4756/images/galleryPsTestGalleryImage8249\",\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/galleryPsTestRg8092/providers/Microsoft.Compute/galleries/galleryPsTestGallery4756/images/galleryPsTestGalleryImage8249?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzgwOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ3NTYvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4MjQ5P2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "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": [ - "4b32544a-5e08-4749-a39e-7145ccc7d60c" + "00db8258-8723-43d0-b4a9-be2e7d7e9be7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -720,16 +720,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImage3Min;590,Microsoft.Compute/GetGalleryImage30Min;2990" + "Microsoft.Compute/GetGalleryImage3Min;590,Microsoft.Compute/GetGalleryImage30Min;2965" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "da847c02-694b-4836-9d9e-96fdb822d187" + "3b2afd16-0576-44f1-92c9-581aeddcdea4" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -739,16 +739,16 @@ "11992" ], "x-ms-correlation-request-id": [ - "a28ef93e-77ba-433a-b7be-f14b15d6c946" + "fcc12355-a58f-45b1-96da-ef7ce4853918" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203722Z:a28ef93e-77ba-433a-b7be-f14b15d6c946" + "WESTCENTRALUS:20220813T001852Z:fcc12355-a58f-45b1-96da-ef7ce4853918" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:37:22 GMT" + "Sat, 13 Aug 2022 00:18:51 GMT" ], "Content-Length": [ "657" @@ -760,19 +760,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage8249\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8092/providers/Microsoft.Compute/galleries/galleryPsTestGallery4756/images/galleryPsTestGalleryImage8249\",\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/3655c003-3ba0-4b56-977c-65a426f38fd6?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zNjU1YzAwMy0zYmEwLTRiNTYtOTc3Yy02NWE0MjZmMzhmZDY/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -784,16 +784,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4183" + "Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4093" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "f8ad79c9-c975-4bc9-b36b-617067e0d8ea" + "da337d80-970f-4289-bdaa-bd4e6184a835" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -803,16 +803,16 @@ "11994" ], "x-ms-correlation-request-id": [ - "db720fd6-54a8-48a0-8eac-11579d571f01" + "011569d4-a7ae-4b93-8849-44fb01ca9ba1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203722Z:db720fd6-54a8-48a0-8eac-11579d571f01" + "WESTCENTRALUS:20220813T001852Z:011569d4-a7ae-4b93-8849-44fb01ca9ba1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:37:22 GMT" + "Sat, 13 Aug 2022 00:18:51 GMT" ], "Content-Length": [ "184" @@ -824,25 +824,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T16:36:52.4627393-04:00\",\r\n \"endTime\": \"2022-07-22T16:36:52.5097335-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3655c003-3ba0-4b56-977c-65a426f38fd6\"\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/galleryPsTestRg8092/providers/Microsoft.Compute/galleries/galleryPsTestGallery4756/images?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzgwOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ3NTYvaW1hZ2VzP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "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": [ - "cc95576b-b493-493f-abda-cee6f207d37e" + "1b1ea7b5-d535-48bc-9600-d5519704f38a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -854,16 +854,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/ListGalleryImagesInGallery3Min;1499,Microsoft.Compute/ListGalleryImagesInGallery30Min;9999" + "Microsoft.Compute/ListGalleryImagesInGallery3Min;1499,Microsoft.Compute/ListGalleryImagesInGallery30Min;9998" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "4ba9c186-3107-4e57-91cf-697f155fec06" + "497cdcbc-e1e9-4191-b120-a3dc318276ee" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -873,16 +873,16 @@ "11991" ], "x-ms-correlation-request-id": [ - "cdb3fec9-4b72-4af8-af99-5ad6ef04b37b" + "259ce2bd-0545-48d5-be1a-a739b1c13648" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203723Z:cdb3fec9-4b72-4af8-af99-5ad6ef04b37b" + "WESTCENTRALUS:20220813T001852Z:259ce2bd-0545-48d5-be1a-a739b1c13648" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:37:22 GMT" + "Sat, 13 Aug 2022 00:18:51 GMT" ], "Content-Length": [ "758" @@ -894,25 +894,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"galleryPsTestGalleryImage8249\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8092/providers/Microsoft.Compute/galleries/galleryPsTestGallery4756/images/galleryPsTestGalleryImage8249\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": \"x64\",\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Updated description.\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"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/galleryPsTestRg8092/providers/Microsoft.Compute/galleries/galleryPsTestGallery4756/images?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzgwOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ3NTYvaW1hZ2VzP2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "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": [ - "51224b1d-c396-4c99-8c4c-27da6e1abd4b" + "e819cad2-9e47-43da-ac0d-360889fce487" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -927,13 +927,13 @@ "11988" ], "x-ms-request-id": [ - "9db1d4ad-d92e-4e36-9368-c04812a6cf28" + "c1fa2fd0-2756-4fec-ab14-fdaa7e005cfa" ], "x-ms-correlation-request-id": [ - "9db1d4ad-d92e-4e36-9368-c04812a6cf28" + "c1fa2fd0-2756-4fec-ab14-fdaa7e005cfa" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203753Z:9db1d4ad-d92e-4e36-9368-c04812a6cf28" + "WESTCENTRALUS:20220813T001923Z:c1fa2fd0-2756-4fec-ab14-fdaa7e005cfa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -942,7 +942,7 @@ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:37:53 GMT" + "Sat, 13 Aug 2022 00:19:22 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -958,21 +958,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8092/providers/Microsoft.Compute/galleries/galleryPsTestGallery4756/images/galleryPsTestGalleryImage8249?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzgwOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ3NTYvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4MjQ5P2FwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "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": [ - "192cf020-55c6-403b-82e5-47e24eb5eb40" + "78c1a94d-8fc9-461f-a054-56d6ff7bd2a7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -984,22 +984,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/9fed7978-7999-47d6-853b-71cdec907001?monitor=true&api-version=2022-03-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/9fed7978-7999-47d6-853b-71cdec907001?api-version=2022-03-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;299" + "Microsoft.Compute/DeleteGalleryImage3Min;49,Microsoft.Compute/DeleteGalleryImage30Min;297" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "9fed7978-7999-47d6-853b-71cdec907001" + "f8b8494b-fac0-4671-b742-5682da672a0c" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1009,16 +1009,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "a2abc485-efdd-4f40-9ea4-dfd57014b16f" + "b48bd16d-d248-4a6b-9d9d-02b77421de22" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203723Z:a2abc485-efdd-4f40-9ea4-dfd57014b16f" + "WESTCENTRALUS:20220813T001853Z:b48bd16d-d248-4a6b-9d9d-02b77421de22" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:37:23 GMT" + "Sat, 13 Aug 2022 00:18:52 GMT" ], "Expires": [ "-1" @@ -1031,15 +1031,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/9fed7978-7999-47d6-853b-71cdec907001?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy85ZmVkNzk3OC03OTk5LTQ3ZDYtODUzYi03MWNkZWM5MDcwMDE/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -1051,16 +1051,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4181" + "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4090" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "b1f0733b-a044-4aa4-84f6-d75ab6d3f076" + "00611083-7e15-4d1c-a6f5-fb2a27e3d9d9" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1070,19 +1070,19 @@ "11990" ], "x-ms-correlation-request-id": [ - "8ba46b47-98c5-4ffc-9255-2de68e2c31b2" + "939ea10f-61bc-45a2-8cf9-4cf78322449d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203753Z:8ba46b47-98c5-4ffc-9255-2de68e2c31b2" + "WESTCENTRALUS:20220813T001923Z:939ea10f-61bc-45a2-8cf9-4cf78322449d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:37:53 GMT" + "Sat, 13 Aug 2022 00:19:22 GMT" ], "Content-Length": [ - "183" + "182" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1091,19 +1091,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T16:37:23.401515-04:00\",\r\n \"endTime\": \"2022-07-22T16:37:23.5734028-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9fed7978-7999-47d6-853b-71cdec907001\"\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/9fed7978-7999-47d6-853b-71cdec907001?monitor=true&api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy85ZmVkNzk3OC03OTk5LTQ3ZDYtODUzYi03MWNkZWM5MDcwMDE/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -1115,16 +1115,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4180" + "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4089" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "3016e6ae-fd86-4b05-8330-ae595fdeb9ad" + "73d32349-1e53-4d02-8fbf-dfba1bc4898f" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1134,16 +1134,16 @@ "11989" ], "x-ms-correlation-request-id": [ - "d7d4b5e0-0d8c-47b0-b73c-c5936c7fa49e" + "2c797a96-d44f-4b16-9059-6e74241ded94" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203753Z:d7d4b5e0-0d8c-47b0-b73c-c5936c7fa49e" + "WESTCENTRALUS:20220813T001923Z:2c797a96-d44f-4b16-9059-6e74241ded94" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:37:53 GMT" + "Sat, 13 Aug 2022 00:19:22 GMT" ], "Expires": [ "-1" @@ -1156,21 +1156,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8092/providers/Microsoft.Compute/galleries/galleryPsTestGallery4756?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzgwOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ3NTY/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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": [ - "84efc7f7-d8f3-43ce-98b1-9f0212f8b049" + "e644073a-c926-4d33-b74f-db3e581af0d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -1182,22 +1182,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/30f0724a-5358-41bb-8650-8446082d2c79?monitor=true&api-version=2022-03-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/30f0724a-5358-41bb-8650-8446082d2c79?api-version=2022-03-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;298" + "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;894" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "30f0724a-5358-41bb-8650-8446082d2c79" + "9fe1ee87-6b77-4113-a00d-9d69bdcf2458" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1207,16 +1207,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "63de2674-a776-492c-b8b1-c05c4f7736af" + "38b1f57c-899e-4609-bdb5-4432b17ebb88" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203754Z:63de2674-a776-492c-b8b1-c05c4f7736af" + "WESTCENTRALUS:20220813T001923Z:38b1f57c-899e-4609-bdb5-4432b17ebb88" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:37:53 GMT" + "Sat, 13 Aug 2022 00:19:22 GMT" ], "Expires": [ "-1" @@ -1229,15 +1229,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/30f0724a-5358-41bb-8650-8446082d2c79?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zMGYwNzI0YS01MzU4LTQxYmItODY1MC04NDQ2MDgyZDJjNzk/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -1249,16 +1249,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4178" + "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4087" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "6a072584-373f-4ca7-884b-36cdf809a990" + "e4e3aac0-146b-4c89-8191-8bbb5ee6d214" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1268,19 +1268,19 @@ "11987" ], "x-ms-correlation-request-id": [ - "7779e460-9140-4543-b8ad-0f22f4e7d255" + "172268be-b9ab-4b41-94a2-d606f5526b2b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203824Z:7779e460-9140-4543-b8ad-0f22f4e7d255" + "WESTCENTRALUS:20220813T001953Z:172268be-b9ab-4b41-94a2-d606f5526b2b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:38:23 GMT" + "Sat, 13 Aug 2022 00:19:53 GMT" ], "Content-Length": [ - "183" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1289,19 +1289,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T16:37:54.1216076-04:00\",\r\n \"endTime\": \"2022-07-22T16:37:54.262216-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"30f0724a-5358-41bb-8650-8446082d2c79\"\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/30f0724a-5358-41bb-8650-8446082d2c79?monitor=true&api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zMGYwNzI0YS01MzU4LTQxYmItODY1MC04NDQ2MDgyZDJjNzk/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -1313,16 +1313,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4177" + "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4086" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "a6e0a88b-1265-4c90-83f8-6870e95fb107" + "3688b894-a2de-4da3-b20f-5e640daf0e6a" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1332,16 +1332,16 @@ "11986" ], "x-ms-correlation-request-id": [ - "8b13c7eb-4d62-4db6-b828-9e8fa8d596c2" + "8136e9b7-c679-4bd9-bf34-43fea154fa7e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203824Z:8b13c7eb-4d62-4db6-b828-9e8fa8d596c2" + "WESTCENTRALUS:20220813T001954Z:8136e9b7-c679-4bd9-bf34-43fea154fa7e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:38:23 GMT" + "Sat, 13 Aug 2022 00:19:53 GMT" ], "Expires": [ "-1" @@ -1356,12 +1356,12 @@ ], "Names": { "GalleryImage_CRUD_Tests": [ - "galleryPsTestRg8092", - "galleryPsTestGallery4756", - "galleryPsTestGalleryImage8249" + "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_SharingToCommunity_CRUD_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_SharingToCommunity_CRUD_Tests.json index da7be7b4fc9c..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/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/galleryPsTestRg9788?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk3ODg/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": [ - "77148efd-83f8-4bcb-b0c7-6bc466711d96" + "a6fee4ab-502f-4545-a7bd-06a00bb2dcd8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "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": [ - "b1b50f64-3c81-4354-8ca7-032fe494cfd5" + "3ad2f2fe-9ac2-408d-96ac-fd084c7ae2b0" ], "x-ms-correlation-request-id": [ - "b1b50f64-3c81-4354-8ca7-032fe494cfd5" + "3ad2f2fe-9ac2-408d-96ac-fd084c7ae2b0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T212516Z:b1b50f64-3c81-4354-8ca7-032fe494cfd5" + "WESTUS:20220815T195815Z:3ad2f2fe-9ac2-408d-96ac-fd084c7ae2b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:25:16 GMT" + "Mon, 15 Aug 2022 19:58:14 GMT" ], "Content-Length": [ "192" @@ -63,25 +63,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg9788\",\r\n \"name\": \"galleryPsTestRg9788\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg9788/providers/Microsoft.Compute/galleries/galleryPsTestGallery3338?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk3ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTMzMzg/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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": [ - "bf4182ce-605a-4d09-830a-bbd5173df933" + "3dc08b97-a22e-4024-9b90-645ec836ebf5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ], "Content-Type": [ @@ -99,19 +99,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/163c4c5f-2d97-48dd-9f84-1e8888c9035a?api-version=2022-03-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;46,Microsoft.Compute/CreateUpdateGallery30Min;295" + "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;288" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "163c4c5f-2d97-48dd-9f84-1e8888c9035a" + "4b296955-f316-4540-866e-fac182ef500c" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -121,16 +121,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "30bd4126-0423-4bee-8055-6b0409d354e4" + "f8750c0a-1cbb-4410-9c38-bd635517c7e5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T212518Z:30bd4126-0423-4bee-8055-6b0409d354e4" + "WESTUS:20220815T195818Z:f8750c0a-1cbb-4410-9c38-bd635517c7e5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:25:18 GMT" + "Mon, 15 Aug 2022 19:58:18 GMT" ], "Content-Length": [ "872" @@ -142,19 +142,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery3338\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg9788/providers/Microsoft.Compute/galleries/galleryPsTestGallery3338\",\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-GALLERYPSTESTGALLERY3338\"\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-37b10c2d-34c5-4a8b-bb49-ce95315e8f09\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/163c4c5f-2d97-48dd-9f84-1e8888c9035a?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8xNjNjNGM1Zi0yZDk3LTQ4ZGQtOWY4NC0xZTg4ODhjOTAzNWE/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -166,16 +166,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4122" + "Microsoft.Compute/GetOperationStatus3Min;1177,Microsoft.Compute/GetOperationStatus30Min;3436" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "6b77b995-954d-4407-b773-a704f820f4d9" + "a6bf0ba8-782f-47c4-bf40-59314c68b3aa" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -185,19 +185,19 @@ "11999" ], "x-ms-correlation-request-id": [ - "ef978ca3-dfc2-40b9-9354-8c32ee84b3d5" + "2d80572b-1efc-45b5-9fdc-e4b651f36bb6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T212549Z:ef978ca3-dfc2-40b9-9354-8c32ee84b3d5" + "WESTUS:20220815T195849Z:2d80572b-1efc-45b5-9fdc-e4b651f36bb6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:25:48 GMT" + "Mon, 15 Aug 2022 19:58:48 GMT" ], "Content-Length": [ - "183" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -206,19 +206,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T17:25:18.5404352-04:00\",\r\n \"endTime\": \"2022-07-22T17:25:18.665434-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"163c4c5f-2d97-48dd-9f84-1e8888c9035a\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg9788/providers/Microsoft.Compute/galleries/galleryPsTestGallery3338?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk3ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTMzMzg/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -230,16 +230,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;331,Microsoft.Compute/GetGallery30Min;2467" + "Microsoft.Compute/GetGallery3Min;329,Microsoft.Compute/GetGallery30Min;2197" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "2da39c01-0c03-4ab3-9015-72a5a916e919" + "43fddeb6-08c4-49ea-9604-5576bd84f256" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -249,16 +249,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "481ad88f-8a70-4bf5-a141-a1e5d600e05f" + "7fc27144-4cb7-4213-a087-8e035513a363" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T212549Z:481ad88f-8a70-4bf5-a141-a1e5d600e05f" + "WESTUS:20220815T195849Z:7fc27144-4cb7-4213-a087-8e035513a363" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:25:48 GMT" + "Mon, 15 Aug 2022 19:58:48 GMT" ], "Content-Length": [ "873" @@ -270,25 +270,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery3338\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg9788/providers/Microsoft.Compute/galleries/galleryPsTestGallery3338\",\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-GALLERYPSTESTGALLERY3338\"\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-37b10c2d-34c5-4a8b-bb49-ce95315e8f09\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg9788/providers/Microsoft.Compute/galleries/galleryPsTestGallery3338?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk3ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTMzMzg/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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": [ - "874b3b09-3fcb-488b-8a91-53c8dca149d2" + "e05186ed-27c0-415c-b8cb-cdf3dea22560" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -300,16 +300,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;330,Microsoft.Compute/GetGallery30Min;2466" + "Microsoft.Compute/GetGallery3Min;328,Microsoft.Compute/GetGallery30Min;2196" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "f002054d-9cf1-442b-aa51-94c9f8a826ef" + "4450b97e-04ea-4771-ba16-3d0c2a548c36" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -319,16 +319,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "fa400c9e-0f07-49a3-ac07-1a3e11354d2b" + "17620f04-1e8f-462c-9ed9-3d57c24a32c5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T212549Z:fa400c9e-0f07-49a3-ac07-1a3e11354d2b" + "WESTUS:20220815T195849Z:17620f04-1e8f-462c-9ed9-3d57c24a32c5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:25:48 GMT" + "Mon, 15 Aug 2022 19:58:48 GMT" ], "Content-Length": [ "873" @@ -340,25 +340,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery3338\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg9788/providers/Microsoft.Compute/galleries/galleryPsTestGallery3338\",\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-GALLERYPSTESTGALLERY3338\"\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-37b10c2d-34c5-4a8b-bb49-ce95315e8f09\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg9788/providers/Microsoft.Compute/galleries/galleryPsTestGallery3338/share?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk3ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTMzMzgvc2hhcmU/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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": [ - "6b120a76-9c75-4e27-9dd7-ced6ad6cf23c" + "4df82ab2-1fed-47f0-8fe1-4be692dcdf7a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ], "Content-Type": [ @@ -376,22 +376,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/c943b184-b7bc-48cb-923f-0d816cc1e1fb?monitor=true&api-version=2022-03-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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/c943b184-b7bc-48cb-923f-0d816cc1e1fb?api-version=2022-03-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;9,Microsoft.Compute/PostShareGallery30Min;59" + "Microsoft.Compute/PostShareGallery3Min;26,Microsoft.Compute/PostShareGallery30Min;73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "c943b184-b7bc-48cb-923f-0d816cc1e1fb" + "3e65162c-528b-4df3-97f7-b25fb6bf56c3" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -401,16 +401,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "d4584e43-290a-49fe-9827-5fc7c89280ef" + "25f2b2d4-c7ed-4422-a89f-7576d724a33c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T212549Z:d4584e43-290a-49fe-9827-5fc7c89280ef" + "WESTUS:20220815T195849Z:25f2b2d4-c7ed-4422-a89f-7576d724a33c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:25:48 GMT" + "Mon, 15 Aug 2022 19:58:48 GMT" ], "Expires": [ "-1" @@ -423,21 +423,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg9788/providers/Microsoft.Compute/galleries/galleryPsTestGallery3338/share?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk3ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTMzMzgvc2hhcmU/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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": [ - "1ddfa2e5-41b1-4e64-b0d1-28620aa50ca9" + "b7721230-a8e0-4f32-be81-42868098fcc2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ], "Content-Type": [ @@ -455,22 +455,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/38712dd7-cd5f-4e0a-9983-3bff6958f147?monitor=true&api-version=2022-03-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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/38712dd7-cd5f-4e0a-9983-3bff6958f147?api-version=2022-03-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;8,Microsoft.Compute/PostShareGallery30Min;58" + "Microsoft.Compute/PostShareGallery3Min;25,Microsoft.Compute/PostShareGallery30Min;72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "38712dd7-cd5f-4e0a-9983-3bff6958f147" + "3b002f65-f31f-4889-9513-4de1308360e0" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -480,16 +480,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "a6c90f70-27c5-4a59-887e-1cd273835e08" + "2066cb74-5c62-49ad-9668-ebd3b294b79c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T212620Z:a6c90f70-27c5-4a59-887e-1cd273835e08" + "WESTUS:20220815T195920Z:2066cb74-5c62-49ad-9668-ebd3b294b79c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:26:20 GMT" + "Mon, 15 Aug 2022 19:59:19 GMT" ], "Expires": [ "-1" @@ -502,15 +502,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/c943b184-b7bc-48cb-923f-0d816cc1e1fb?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9jOTQzYjE4NC1iN2JjLTQ4Y2ItOTIzZi0wZDgxNmNjMWUxZmI/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -522,16 +522,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4120" + "Microsoft.Compute/GetOperationStatus3Min;1181,Microsoft.Compute/GetOperationStatus30Min;3434" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "08ef66d8-dadb-454e-9eab-56433f6c9b71" + "69791e57-3846-40c1-9cb1-d3284bac98e0" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -541,16 +541,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "f6604b44-9767-4e8b-b683-4ba56ecac062" + "9b30a628-b4cf-48c9-9999-05231d71e827" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T212619Z:f6604b44-9767-4e8b-b683-4ba56ecac062" + "WESTUS:20220815T195919Z:9b30a628-b4cf-48c9-9999-05231d71e827" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:26:19 GMT" + "Mon, 15 Aug 2022 19:59:18 GMT" ], "Content-Length": [ "184" @@ -562,19 +562,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T17:25:49.5574013-04:00\",\r\n \"endTime\": \"2022-07-22T17:25:50.8074571-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c943b184-b7bc-48cb-923f-0d816cc1e1fb\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/c943b184-b7bc-48cb-923f-0d816cc1e1fb?monitor=true&api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9jOTQzYjE4NC1iN2JjLTQ4Y2ItOTIzZi0wZDgxNmNjMWUxZmI/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -586,16 +586,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4119" + "Microsoft.Compute/GetOperationStatus3Min;1180,Microsoft.Compute/GetOperationStatus30Min;3433" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "ef2ce2c1-06d1-4a10-a43a-17f433118b8d" + "69680142-d030-471b-a671-02d32063a43b" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -605,16 +605,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "deec027c-162d-4e5c-9200-78d0fcf18509" + "f4017671-2972-4254-9998-d12a482518bd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T212619Z:deec027c-162d-4e5c-9200-78d0fcf18509" + "WESTUS:20220815T195919Z:f4017671-2972-4254-9998-d12a482518bd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:26:19 GMT" + "Mon, 15 Aug 2022 19:59:18 GMT" ], "Expires": [ "-1" @@ -627,21 +627,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg9788/providers/Microsoft.Compute/galleries/galleryPsTestGallery3338?api-version=2022-03-03&$select=Permissions", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk3ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTMzMzg/YXBpLXZlcnNpb249MjAyMi0wMy0wMyYkc2VsZWN0PVBlcm1pc3Npb25z", + "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": [ - "c83b2d03-c1ed-4e02-8fb9-bfa30211caa8" + "355f9343-b278-4ece-aed5-9a91dea63450" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -653,16 +653,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;336,Microsoft.Compute/GetGallery30Min;2465" + "Microsoft.Compute/GetGallery3Min;328,Microsoft.Compute/GetGallery30Min;2191" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "a0e7aba0-1fdd-45c0-8b67-8f8ef5e04975" + "95e35c36-fbce-4332-a9af-77435f7ffc32" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -672,16 +672,16 @@ "11994" ], "x-ms-correlation-request-id": [ - "4124f97a-e02f-4687-ab84-d5738dbddb25" + "a8007634-01b1-4149-9150-1c48199d85bf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T212620Z:4124f97a-e02f-4687-ab84-d5738dbddb25" + "WESTUS:20220815T195920Z:a8007634-01b1-4149-9150-1c48199d85bf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:26:19 GMT" + "Mon, 15 Aug 2022 19:59:19 GMT" ], "Content-Length": [ "872" @@ -693,19 +693,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery3338\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg9788/providers/Microsoft.Compute/galleries/galleryPsTestGallery3338\",\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-GALLERYPSTESTGALLERY3338\"\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-37b10c2d-34c5-4a8b-bb49-ce95315e8f09\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/38712dd7-cd5f-4e0a-9983-3bff6958f147?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zODcxMmRkNy1jZDVmLTRlMGEtOTk4My0zYmZmNjk1OGYxNDc/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -717,16 +717,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;4117" + "Microsoft.Compute/GetOperationStatus3Min;1181,Microsoft.Compute/GetOperationStatus30Min;3431" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "7fcb66d0-9840-4eea-9436-b4a0e100d95b" + "4269c800-28b5-4e39-aa76-cfbe2da442b6" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -736,16 +736,16 @@ "11993" ], "x-ms-correlation-request-id": [ - "a349b6fc-f657-4281-b93c-dcd433112435" + "6afb0403-5154-4aff-96d0-eb1a451282f9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T212650Z:a349b6fc-f657-4281-b93c-dcd433112435" + "WESTUS:20220815T195950Z:6afb0403-5154-4aff-96d0-eb1a451282f9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:26:50 GMT" + "Mon, 15 Aug 2022 19:59:50 GMT" ], "Content-Length": [ "184" @@ -757,19 +757,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T17:26:20.1681442-04:00\",\r\n \"endTime\": \"2022-07-22T17:26:20.5431796-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"38712dd7-cd5f-4e0a-9983-3bff6958f147\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/38712dd7-cd5f-4e0a-9983-3bff6958f147?monitor=true&api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zODcxMmRkNy1jZDVmLTRlMGEtOTk4My0zYmZmNjk1OGYxNDc/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -781,16 +781,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4116" + "Microsoft.Compute/GetOperationStatus3Min;1180,Microsoft.Compute/GetOperationStatus30Min;3430" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "9d7d7d9b-cbed-400f-8aa6-1195a0848dc7" + "d7dfc7d9-48c5-4130-93dc-ccc5fb9b60e9" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -800,16 +800,16 @@ "11992" ], "x-ms-correlation-request-id": [ - "91ae7fb8-fcd4-459c-9725-8c4dfc350348" + "901cf9e5-39c3-443c-9dd3-d66a98636f20" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T212650Z:91ae7fb8-fcd4-459c-9725-8c4dfc350348" + "WESTUS:20220815T195950Z:901cf9e5-39c3-443c-9dd3-d66a98636f20" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:26:50 GMT" + "Mon, 15 Aug 2022 19:59:50 GMT" ], "Expires": [ "-1" @@ -822,21 +822,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg9788/providers/Microsoft.Compute/galleries/galleryPsTestGallery3338?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk3ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTMzMzg/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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": [ - "04f8cadd-e767-445b-84e8-2f6a507f7f5f" + "e55bfec3-b889-41c6-8d07-d8a1b1943dd3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -848,22 +848,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/b5a96062-22bd-45c1-9a76-49427a3c162a?monitor=true&api-version=2022-03-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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/b5a96062-22bd-45c1-9a76-49427a3c162a?api-version=2022-03-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;47,Microsoft.Compute/DeleteGallery30Min;295" + "Microsoft.Compute/DeleteGallery3Min;36,Microsoft.Compute/DeleteGallery30Min;760" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "b5a96062-22bd-45c1-9a76-49427a3c162a" + "9d78024a-2402-4099-92bb-b3c63cb04a17" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -873,16 +873,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "9e93691a-6478-430e-9c4e-328eacafc276" + "a549e8e0-79ec-4d08-af61-962041314f24" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T212651Z:9e93691a-6478-430e-9c4e-328eacafc276" + "WESTUS:20220815T195950Z:a549e8e0-79ec-4d08-af61-962041314f24" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:26:50 GMT" + "Mon, 15 Aug 2022 19:59:50 GMT" ], "Expires": [ "-1" @@ -895,15 +895,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/b5a96062-22bd-45c1-9a76-49427a3c162a?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iNWE5NjA2Mi0yMmJkLTQ1YzEtOWE3Ni00OTQyN2EzYzE2MmE/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -915,16 +915,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4114" + "Microsoft.Compute/GetOperationStatus3Min;1180,Microsoft.Compute/GetOperationStatus30Min;3620" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "dfabcb18-9b93-4ad7-ac36-8b07d15629d0" + "73b3153f-8b7f-4454-b364-fbfad6e55965" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -934,16 +934,16 @@ "11991" ], "x-ms-correlation-request-id": [ - "248dfc83-3ce1-4880-ac75-25586370fe8d" + "06165c77-a7fb-410c-b7a2-c3872422c88f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T212721Z:248dfc83-3ce1-4880-ac75-25586370fe8d" + "WESTUS:20220815T200021Z:06165c77-a7fb-410c-b7a2-c3872422c88f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:27:20 GMT" + "Mon, 15 Aug 2022 20:00:20 GMT" ], "Content-Length": [ "184" @@ -955,19 +955,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T17:26:50.9975837-04:00\",\r\n \"endTime\": \"2022-07-22T17:26:51.0913405-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b5a96062-22bd-45c1-9a76-49427a3c162a\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/b5a96062-22bd-45c1-9a76-49427a3c162a?monitor=true&api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iNWE5NjA2Mi0yMmJkLTQ1YzEtOWE3Ni00OTQyN2EzYzE2MmE/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -979,16 +979,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4113" + "Microsoft.Compute/GetOperationStatus3Min;1179,Microsoft.Compute/GetOperationStatus30Min;3619" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "3bd2a5c0-6126-4d0c-87a1-75e94399bf1a" + "eb07111f-ab47-453f-a962-0b55b144f34b" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -998,16 +998,16 @@ "11990" ], "x-ms-correlation-request-id": [ - "850945a6-23ff-49bf-8e9f-a7145e2a81f7" + "baac9049-9c1a-4949-a86e-0f74132998c6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T212721Z:850945a6-23ff-49bf-8e9f-a7145e2a81f7" + "WESTUS:20220815T200021Z:baac9049-9c1a-4949-a86e-0f74132998c6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:27:20 GMT" + "Mon, 15 Aug 2022 20:00:20 GMT" ], "Expires": [ "-1" @@ -1020,21 +1020,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/galleryPsTestRg9788?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk3ODg/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": [ - "4404c4f9-e110-415c-947c-957982307c86" + "1c43cea5-fcdb-44b1-84cd-c6f6c6cc77b7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "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/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkc5Nzg4LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?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": [ - "64120d5e-0506-4242-a4d3-cd5d2d17d52c" + "43b57e16-bb06-4164-99ef-9b65409899d9" ], "x-ms-correlation-request-id": [ - "64120d5e-0506-4242-a4d3-cd5d2d17d52c" + "43b57e16-bb06-4164-99ef-9b65409899d9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T212721Z:64120d5e-0506-4242-a4d3-cd5d2d17d52c" + "WESTCENTRALUS:20220815T200023Z:43b57e16-bb06-4164-99ef-9b65409899d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1070,7 +1070,7 @@ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:27:21 GMT" + "Mon, 15 Aug 2022 20:00:23 GMT" ], "Expires": [ "-1" @@ -1083,15 +1083,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkc5Nzg4LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIUVV4TVJWSlpVRk5VUlZOVVVrYzVOemc0TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "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.30802", + "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,23 @@ "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": [ - "0af15774-9d84-40e4-937c-80471132d70a" + "d874f8cd-55bc-431b-b8a5-dae575dca6e6" ], "x-ms-correlation-request-id": [ - "0af15774-9d84-40e4-937c-80471132d70a" + "d874f8cd-55bc-431b-b8a5-dae575dca6e6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T212737Z:0af15774-9d84-40e4-937c-80471132d70a" + "WESTCENTRALUS:20220815T200038Z:d874f8cd-55bc-431b-b8a5-dae575dca6e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1121,7 +1127,229 @@ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:27:36 GMT" + "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": [ + "63809dbf-e0c5-4aa9-9142-35f7c45932e2" + ], + "x-ms-correlation-request-id": [ + "63809dbf-e0c5-4aa9-9142-35f7c45932e2" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20220815T200124Z:63809dbf-e0c5-4aa9-9142-35f7c45932e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "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/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkc5Nzg4LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIUVV4TVJWSlpVRk5VUlZOVVVrYzVOemc0TFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "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.30802", + "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": [ - "c5ab5ce9-a808-454b-b354-274287dfa9f9" + "7cc811a4-a046-4dec-aec6-aedeffb04115" ], "x-ms-correlation-request-id": [ - "c5ab5ce9-a808-454b-b354-274287dfa9f9" + "7cc811a4-a046-4dec-aec6-aedeffb04115" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T212737Z:c5ab5ce9-a808-454b-b354-274287dfa9f9" + "WESTCENTRALUS:20220815T200139Z:7cc811a4-a046-4dec-aec6-aedeffb04115" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1172,7 +1400,7 @@ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 21:27:36 GMT" + "Mon, 15 Aug 2022 20:01:39 GMT" ], "Expires": [ "-1" @@ -1187,11 +1415,11 @@ ], "Names": { "Gallery_SharingToCommunity_CRUD_Tests": [ - "galleryPsTestRg9788", - "galleryPsTestGallery3338" + "galleryPsTestRg3339", + "galleryPsTestGallery6234" ] }, "Variables": { - "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871" + "SubscriptionId": "97f78232-382b-46a7-8a72-964d692c4f3f" } } \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_SharingToSubscriptionAndTenant_CRUD_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_SharingToSubscriptionAndTenant_CRUD_Tests.json index 3274cfa7a27a..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/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/galleryPsTestRg1127?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExMjc/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": [ - "24339915-754a-4d4a-a56f-a9ef933f26ae" + "7fb9a00c-7567-4651-a400-1a088616fbef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "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": [ - "da01c5b4-2bed-4df9-bcd7-d144b469f53b" + "e6788295-ddc5-466b-b272-4785741317fb" ], "x-ms-correlation-request-id": [ - "da01c5b4-2bed-4df9-bcd7-d144b469f53b" + "e6788295-ddc5-466b-b272-4785741317fb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203323Z:da01c5b4-2bed-4df9-bcd7-d144b469f53b" + "WESTCENTRALUS:20220813T001349Z:e6788295-ddc5-466b-b272-4785741317fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:33:23 GMT" + "Sat, 13 Aug 2022 00:13:48 GMT" ], "Content-Length": [ "192" @@ -63,25 +63,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1127\",\r\n \"name\": \"galleryPsTestRg1127\",\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1127/providers/Microsoft.Compute/galleries/galleryPsTestGallery4470?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ0NzA/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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": [ - "52b23867-6a3f-4d78-8b1c-d29d6f48070c" + "d1ab9fc2-77ab-4d35-aae4-5734057e8672" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ], "Content-Type": [ @@ -99,19 +99,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/e912dc1c-b738-47e8-8581-2b4088510b74?api-version=2022-03-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": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "e912dc1c-b738-47e8-8581-2b4088510b74" + "42de90e1-e7d4-4a42-b81c-cd1251f342eb" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -121,16 +121,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "3bc8a236-d2e2-4095-8077-243fed499a1c" + "13aa6743-3dff-4f06-9e17-6b80433776d4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203325Z:3bc8a236-d2e2-4095-8077-243fed499a1c" + "WESTCENTRALUS:20220813T001352Z:13aa6743-3dff-4f06-9e17-6b80433776d4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:33:25 GMT" + "Sat, 13 Aug 2022 00:13:51 GMT" ], "Content-Length": [ "572" @@ -142,19 +142,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery4470\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1127/providers/Microsoft.Compute/galleries/galleryPsTestGallery4470\",\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-GALLERYPSTESTGALLERY4470\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/e912dc1c-b738-47e8-8581-2b4088510b74?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lOTEyZGMxYy1iNzM4LTQ3ZTgtODU4MS0yYjQwODg1MTBiNzQ/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -166,35 +166,35 @@ "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": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "f4ed7fd9-6b96-4701-a9b6-7d191402c23c" + "27d4e195-bc13-434d-8dfa-326a77104c8d" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11991" ], "x-ms-correlation-request-id": [ - "49765a78-5722-427d-965a-f1d75feb1149" + "e29bb51a-7b21-4684-a0a3-49dfea760f79" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203356Z:49765a78-5722-427d-965a-f1d75feb1149" + "WESTCENTRALUS:20220813T001422Z:e29bb51a-7b21-4684-a0a3-49dfea760f79" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:33:56 GMT" + "Sat, 13 Aug 2022 00:14:22 GMT" ], "Content-Length": [ "184" @@ -206,19 +206,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T16:33:25.5475124-04:00\",\r\n \"endTime\": \"2022-07-22T16:33:26.1256654-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e912dc1c-b738-47e8-8581-2b4088510b74\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1127/providers/Microsoft.Compute/galleries/galleryPsTestGallery4470?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ0NzA/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -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": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "cc2706ae-ee4d-4204-a532-6f16a723fc57" + "54e2afc2-843a-4363-b600-2488be66a6b9" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11990" ], "x-ms-correlation-request-id": [ - "fd55b1b0-2c04-46e0-9c53-eaaa2352c99e" + "6c4f18e8-3298-460d-a1e1-91d1e2e5ad9c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203356Z:fd55b1b0-2c04-46e0-9c53-eaaa2352c99e" + "WESTCENTRALUS:20220813T001423Z:6c4f18e8-3298-460d-a1e1-91d1e2e5ad9c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:33:56 GMT" + "Sat, 13 Aug 2022 00:14:22 GMT" ], "Content-Length": [ "573" @@ -270,25 +270,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery4470\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1127/providers/Microsoft.Compute/galleries/galleryPsTestGallery4470\",\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-GALLERYPSTESTGALLERY4470\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1127/providers/Microsoft.Compute/galleries/galleryPsTestGallery4470?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ0NzA/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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": [ - "4fb7984c-cdc2-4e84-af1f-def3fb60c7d7" + "7c155cca-b96c-467b-b5f9-800178c7f44f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -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": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "582b77c6-52a8-4109-975f-f0a907c013c3" + "b529ded7-1993-407c-bcdf-a9d410f63316" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11989" ], "x-ms-correlation-request-id": [ - "28b89117-ca92-406b-bbb0-ca39c64699fb" + "8c0ea399-4335-418a-9d94-8309752562df" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203356Z:28b89117-ca92-406b-bbb0-ca39c64699fb" + "WESTCENTRALUS:20220813T001423Z:8c0ea399-4335-418a-9d94-8309752562df" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:33:56 GMT" + "Sat, 13 Aug 2022 00:14:23 GMT" ], "Content-Length": [ "573" @@ -340,25 +340,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery4470\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1127/providers/Microsoft.Compute/galleries/galleryPsTestGallery4470\",\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-GALLERYPSTESTGALLERY4470\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1127/providers/Microsoft.Compute/galleries/galleryPsTestGallery4470/share?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ0NzAvc2hhcmU/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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": [ - "43f793d6-df6e-45db-86e7-f6ec9b9f873d" + "818946b3-2c1c-4388-bcce-68fde4ddf0a3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ], "Content-Type": [ @@ -376,22 +376,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/ab892ec5-0c75-4bbf-bf41-cba740909277?monitor=true&api-version=2022-03-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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/ab892ec5-0c75-4bbf-bf41-cba740909277?api-version=2022-03-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;9,Microsoft.Compute/PostShareGallery30Min;59" + "Microsoft.Compute/PostShareGallery3Min;29,Microsoft.Compute/PostShareGallery30Min;114" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "ab892ec5-0c75-4bbf-bf41-cba740909277" + "34e6f506-094c-4e26-a0d3-78d53508b8b4" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -401,16 +401,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "87c303c3-6857-4925-a4e8-03a37612a7ed" + "41bc6c6c-ae02-4cc6-9746-46ab2b88eb18" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203356Z:87c303c3-6857-4925-a4e8-03a37612a7ed" + "WESTCENTRALUS:20220813T001423Z:41bc6c6c-ae02-4cc6-9746-46ab2b88eb18" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:33:56 GMT" + "Sat, 13 Aug 2022 00:14:23 GMT" ], "Expires": [ "-1" @@ -423,21 +423,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1127/providers/Microsoft.Compute/galleries/galleryPsTestGallery4470/share?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ0NzAvc2hhcmU/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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": [ - "6c785c42-fb74-4dd3-ad94-568d000ca099" + "0c569736-6376-419e-b9f8-4a35b8d17176" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ], "Content-Type": [ @@ -455,22 +455,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/73d95a80-ac86-4a5d-99ca-b73bbfd514dc?monitor=true&api-version=2022-03-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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/73d95a80-ac86-4a5d-99ca-b73bbfd514dc?api-version=2022-03-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;8,Microsoft.Compute/PostShareGallery30Min;58" + "Microsoft.Compute/PostShareGallery3Min;28,Microsoft.Compute/PostShareGallery30Min;113" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "73d95a80-ac86-4a5d-99ca-b73bbfd514dc" + "3921b30f-2814-40eb-9a71-3775ef860c45" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -480,16 +480,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "95077ae0-3f7b-48c1-a235-6ccca59f5b71" + "24aed308-67e0-4375-a589-acbd3e89ba12" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203427Z:95077ae0-3f7b-48c1-a235-6ccca59f5b71" + "WESTCENTRALUS:20220813T001454Z:24aed308-67e0-4375-a589-acbd3e89ba12" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:34:27 GMT" + "Sat, 13 Aug 2022 00:14:54 GMT" ], "Expires": [ "-1" @@ -502,15 +502,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/ab892ec5-0c75-4bbf-bf41-cba740909277?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hYjg5MmVjNS0wYzc1LTRiYmYtYmY0MS1jYmE3NDA5MDkyNzc/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -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": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "94945591-eb5f-46ff-b65a-e12bb39ed44e" + "cfb35fb4-d229-41fc-9736-3d828815165c" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11987" ], "x-ms-correlation-request-id": [ - "88caf825-b2f1-49f7-ac7b-5ff7f3736e40" + "9b96be29-ea39-4a4f-b804-66b42d193744" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203427Z:88caf825-b2f1-49f7-ac7b-5ff7f3736e40" + "WESTCENTRALUS:20220813T001453Z:9b96be29-ea39-4a4f-b804-66b42d193744" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:34:26 GMT" + "Sat, 13 Aug 2022 00:14:53 GMT" ], "Content-Length": [ "184" @@ -562,19 +562,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T16:33:56.7989096-04:00\",\r\n \"endTime\": \"2022-07-22T16:34:00.3146837-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ab892ec5-0c75-4bbf-bf41-cba740909277\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/ab892ec5-0c75-4bbf-bf41-cba740909277?monitor=true&api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hYjg5MmVjNS0wYzc1LTRiYmYtYmY0MS1jYmE3NDA5MDkyNzc/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -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": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "260b153f-2341-46f2-ab57-ecdb0e602382" + "aacf90ae-4f4f-4c11-a1c7-77c61efd7d13" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11986" ], "x-ms-correlation-request-id": [ - "4125add9-2dce-40a9-a94f-255e4e6a45d7" + "c243d39f-7770-47cb-ab46-e1ff672b385f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203427Z:4125add9-2dce-40a9-a94f-255e4e6a45d7" + "WESTCENTRALUS:20220813T001453Z:c243d39f-7770-47cb-ab46-e1ff672b385f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:34:26 GMT" + "Sat, 13 Aug 2022 00:14:53 GMT" ], "Expires": [ "-1" @@ -627,21 +627,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1127/providers/Microsoft.Compute/galleries/galleryPsTestGallery4470?api-version=2022-03-03&$select=Permissions", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ0NzA/YXBpLXZlcnNpb249MjAyMi0wMy0wMyYkc2VsZWN0PVBlcm1pc3Npb25z", + "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": [ - "a9c10dd2-e316-4fe8-b744-5c9832293851" + "008513db-2f06-42e2-b976-888143e9a225" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -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": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "2dc9ce03-93c5-41b0-bbfa-96a644f1e541" + "45549040-3ae3-47a3-97ce-3516d81bf767" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11985" ], "x-ms-correlation-request-id": [ - "81c3af58-ae2d-4cbb-9a4c-7c231acf08dd" + "3c844143-cbf8-4b1b-95d4-45df2f07da31" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203427Z:81c3af58-ae2d-4cbb-9a4c-7c231acf08dd" + "WESTCENTRALUS:20220813T001453Z:3c844143-cbf8-4b1b-95d4-45df2f07da31" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:34:27 GMT" + "Sat, 13 Aug 2022 00:14:53 GMT" ], "Content-Length": [ "886" @@ -693,19 +693,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery4470\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1127/providers/Microsoft.Compute/galleries/galleryPsTestGallery4470\",\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-GALLERYPSTESTGALLERY4470\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/73d95a80-ac86-4a5d-99ca-b73bbfd514dc?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83M2Q5NWE4MC1hYzg2LTRhNWQtOTljYS1iNzNiYmZkNTE0ZGM/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -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": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "5ca2fedb-57e3-41b3-b982-9b9322c1f697" + "305ac106-d2f6-42b7-bc08-785b9a3e2fb4" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11984" ], "x-ms-correlation-request-id": [ - "24461667-56f2-4331-8383-f2d325b7fe19" + "0a946b07-3758-42f8-b940-f2e7f5ab567b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203457Z:24461667-56f2-4331-8383-f2d325b7fe19" + "WESTCENTRALUS:20220813T001524Z:0a946b07-3758-42f8-b940-f2e7f5ab567b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:34:57 GMT" + "Sat, 13 Aug 2022 00:15:24 GMT" ], "Content-Length": [ "184" @@ -757,19 +757,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T16:34:27.5034025-04:00\",\r\n \"endTime\": \"2022-07-22T16:34:27.9409135-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"73d95a80-ac86-4a5d-99ca-b73bbfd514dc\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/73d95a80-ac86-4a5d-99ca-b73bbfd514dc?monitor=true&api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83M2Q5NWE4MC1hYzg2LTRhNWQtOTljYS1iNzNiYmZkNTE0ZGM/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -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": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "8d859e07-6fd8-44d0-a4db-eb452d59e1f2" + "e7dd3b0b-1b74-46f0-ae5b-3a985d4f2329" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11983" ], "x-ms-correlation-request-id": [ - "51c88c0b-396f-4830-8a91-6c8e2dd5d8bd" + "a3408f05-eb0d-4032-929d-d991a6ffb846" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203457Z:51c88c0b-396f-4830-8a91-6c8e2dd5d8bd" + "WESTCENTRALUS:20220813T001524Z:a3408f05-eb0d-4032-929d-d991a6ffb846" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:34:57 GMT" + "Sat, 13 Aug 2022 00:15:24 GMT" ], "Expires": [ "-1" @@ -822,21 +822,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg1127/providers/Microsoft.Compute/galleries/galleryPsTestGallery4470?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ0NzA/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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": [ - "550b61aa-c74b-452c-855f-65435bd7ecb3" + "ec36e64e-28a6-4898-974b-13593ff3e940" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -848,22 +848,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/8be356e1-ea84-4df2-8517-930aeadb4517?monitor=true&api-version=2022-03-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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/8be356e1-ea84-4df2-8517-930aeadb4517?api-version=2022-03-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;299" + "Microsoft.Compute/DeleteGallery3Min;48,Microsoft.Compute/DeleteGallery30Min;895" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "8be356e1-ea84-4df2-8517-930aeadb4517" + "f0253790-6607-4a2e-8c5b-a8d4a1b7a58d" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -873,16 +873,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "3724e411-4091-41ef-8f01-d428fdc58309" + "cfe58edb-7ce6-4408-9790-db94bcb2d6a8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203458Z:3724e411-4091-41ef-8f01-d428fdc58309" + "WESTCENTRALUS:20220813T001524Z:cfe58edb-7ce6-4408-9790-db94bcb2d6a8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:34:58 GMT" + "Sat, 13 Aug 2022 00:15:24 GMT" ], "Expires": [ "-1" @@ -895,15 +895,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/8be356e1-ea84-4df2-8517-930aeadb4517?api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy84YmUzNTZlMS1lYTg0LTRkZjItODUxNy05MzBhZWFkYjQ1MTc/YXBpLXZlcnNpb249MjAyMi0wMy0wMw==", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -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": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "1cde722d-bb7e-47b0-be71-4b90a73f7eb5" + "cbbb9590-9361-4a45-9031-e0994eb6ea23" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11982" ], "x-ms-correlation-request-id": [ - "944e60dd-8737-4af3-a2e7-cc02ffbcdf49" + "b988c3af-e03e-4bf7-819d-87e388a2042d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203528Z:944e60dd-8737-4af3-a2e7-cc02ffbcdf49" + "WESTCENTRALUS:20220813T001555Z:b988c3af-e03e-4bf7-819d-87e388a2042d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:35:28 GMT" + "Sat, 13 Aug 2022 00:15:54 GMT" ], "Content-Length": [ - "184" + "183" ], "Content-Type": [ "application/json; charset=utf-8" @@ -955,19 +955,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2022-07-22T16:34:57.9734407-04:00\",\r\n \"endTime\": \"2022-07-22T16:34:58.8016031-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8be356e1-ea84-4df2-8517-930aeadb4517\"\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/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/8be356e1-ea84-4df2-8517-930aeadb4517?monitor=true&api-version=2022-03-03", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy84YmUzNTZlMS1lYTg0LTRkZjItODUxNy05MzBhZWFkYjQ1MTc/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDMtMDM=", + "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.30802", + "FxVersion/4.700.22.36202", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", + "OSVersion/Microsoft.Windows.10.0.19044", "Microsoft.Azure.Management.Compute.ComputeManagementClient/57.0.0" ] }, @@ -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": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044,a129388d-91d6-4310-81e1-d02ce40a61ca_132955611512477044" + "1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721,1dd04696-ef54-4aec-bada-944b3b397491_133022767171121721" ], "x-ms-request-id": [ - "138d00e6-d4e3-4621-b759-23744b35b6ff" + "2176d65c-d71d-4573-903b-819bfff04bcf" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11981" ], "x-ms-correlation-request-id": [ - "b65776a6-ed66-48e9-924a-3a1584c6184f" + "298f4880-8d6a-4d33-9376-ad69261beded" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203528Z:b65776a6-ed66-48e9-924a-3a1584c6184f" + "WESTCENTRALUS:20220813T001555Z:298f4880-8d6a-4d33-9376-ad69261beded" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:35:28 GMT" + "Sat, 13 Aug 2022 00:15:54 GMT" ], "Expires": [ "-1" @@ -1020,21 +1020,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/galleryPsTestRg1127?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExMjc/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": [ - "a02d492c-f15f-4470-86b0-5b2a32cc96a3" + "3c2c26a5-f44a-4bb9-9250-b9d4c9157e6b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.30802", + "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/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkcxMTI3LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?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": [ - "7b252bb6-162a-40f3-aac0-3812d1b33402" + "52e02362-dd22-4b06-aa59-a085f46f41a2" ], "x-ms-correlation-request-id": [ - "7b252bb6-162a-40f3-aac0-3812d1b33402" + "52e02362-dd22-4b06-aa59-a085f46f41a2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203529Z:7b252bb6-162a-40f3-aac0-3812d1b33402" + "WESTCENTRALUS:20220813T001557Z:52e02362-dd22-4b06-aa59-a085f46f41a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1070,7 +1070,7 @@ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:35:29 GMT" + "Sat, 13 Aug 2022 00:15:56 GMT" ], "Expires": [ "-1" @@ -1083,15 +1083,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkcxMTI3LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIUVV4TVJWSlpVRk5VUlZOVVVrY3hNVEkzTFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "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.30802", + "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,23 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkc3NTMwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-request-id": [ - "39baeae2-9855-4505-950f-e39c925dd19b" + "d91b1ffb-687c-44e1-bfc3-1b4b67ebfdbc" ], "x-ms-correlation-request-id": [ - "39baeae2-9855-4505-950f-e39c925dd19b" + "d91b1ffb-687c-44e1-bfc3-1b4b67ebfdbc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203545Z:39baeae2-9855-4505-950f-e39c925dd19b" + "WESTCENTRALUS:20220813T001612Z:d91b1ffb-687c-44e1-bfc3-1b4b67ebfdbc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1121,7 +1127,7 @@ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:35:44 GMT" + "Sat, 13 Aug 2022 00:16:12 GMT" ], "Expires": [ "-1" @@ -1131,18 +1137,18 @@ ] }, "ResponseBody": "", - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkcxMTI3LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIUVV4TVJWSlpVRk5VUlZOVVVrY3hNVEkzTFVWQlUxUlZVeklpTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "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.30802", + "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" ] }, @@ -1153,17 +1159,239 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkc3NTMwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-request-id": [ - "79d2f943-680b-4151-be23-5227fead2759" + "688b60b9-ccab-4b09-97a0-1543468c75ce" + ], + "x-ms-correlation-request-id": [ + "688b60b9-ccab-4b09-97a0-1543468c75ce" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20220813T001628Z:688b60b9-ccab-4b09-97a0-1543468c75ce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Aug 2022 00:16:27 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "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.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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkc3NTMwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "7cc21746-3ab7-4f59-a30c-0d7be727f96b" + ], + "x-ms-correlation-request-id": [ + "7cc21746-3ab7-4f59-a30c-0d7be727f96b" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20220813T001643Z:7cc21746-3ab7-4f59-a30c-0d7be727f96b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Aug 2022 00:16:42 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "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.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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HQUxMRVJZUFNURVNUUkc3NTMwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "11da3914-1f34-47f3-a483-8233d532a958" + ], + "x-ms-correlation-request-id": [ + "11da3914-1f34-47f3-a483-8233d532a958" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20220813T001658Z:11da3914-1f34-47f3-a483-8233d532a958" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Aug 2022 00:16:57 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "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.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": [ + "11995" + ], + "x-ms-request-id": [ + "f7a2929d-0b2d-4bb6-8568-967dbee066c5" + ], + "x-ms-correlation-request-id": [ + "f7a2929d-0b2d-4bb6-8568-967dbee066c5" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20220813T001713Z:f7a2929d-0b2d-4bb6-8568-967dbee066c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Aug 2022 00:17:12 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "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.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": [ + "11994" + ], + "x-ms-request-id": [ + "a35cad35-469a-45d5-a0d6-5a5ed6ea9525" ], "x-ms-correlation-request-id": [ - "79d2f943-680b-4151-be23-5227fead2759" + "a35cad35-469a-45d5-a0d6-5a5ed6ea9525" ], "x-ms-routing-request-id": [ - "CENTRALUS:20220722T203545Z:79d2f943-680b-4151-be23-5227fead2759" + "WESTCENTRALUS:20220813T001713Z:a35cad35-469a-45d5-a0d6-5a5ed6ea9525" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1172,7 +1400,7 @@ "nosniff" ], "Date": [ - "Fri, 22 Jul 2022 20:35:44 GMT" + "Sat, 13 Aug 2022 00:17:12 GMT" ], "Expires": [ "-1" @@ -1187,11 +1415,11 @@ ], "Names": { "Gallery_SharingToSubscriptionAndTenant_CRUD_Tests": [ - "galleryPsTestRg1127", - "galleryPsTestGallery4470" + "galleryPsTestRg7530", + "galleryPsTestGallery3631" ] }, "Variables": { - "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871" + "SubscriptionId": "97f78232-382b-46a7-8a72-964d692c4f3f" } } \ No newline at end of file