From d57e4a290630a4fc04bfb7ca3c3ea0742bd3dfca Mon Sep 17 00:00:00 2001 From: Kang Sun Date: Sat, 10 Oct 2020 17:43:59 -0700 Subject: [PATCH 01/27] save the auto-generation work --- .../AzSdk.RP.props | 2 +- .../src/Generated/ComputeManagementClient.cs | 24 + .../src/Generated/GalleriesOperations.cs | 23 +- .../GalleriesOperationsExtensions.cs | 16 +- .../GalleryApplicationVersionsOperations.cs | 10 +- .../GalleryApplicationsOperations.cs | 10 +- .../GalleryImageVersionsOperations.cs | 64 +- ...alleryImageVersionsOperationsExtensions.cs | 108 +-- .../src/Generated/GalleryImagesOperations.cs | 38 +- .../GalleryImagesOperationsExtensions.cs | 56 +- .../GallerySharingProfileOperations.cs | 309 +++++++++ ...llerySharingProfileOperationsExtensions.cs | 117 ++++ .../src/Generated/IComputeManagementClient.cs | 20 + .../src/Generated/IGalleriesOperations.cs | 6 +- .../IGalleryImageVersionsOperations.cs | 54 +- .../src/Generated/IGalleryImagesOperations.cs | 28 +- .../IGallerySharingProfileOperations.cs | 83 +++ .../Generated/ISharedGalleriesOperations.cs | 100 +++ .../ISharedGalleryImageVersionsOperations.cs | 118 ++++ .../ISharedGalleryImagesOperations.cs | 107 +++ .../Generated/IVirtualMachinesOperations.cs | 10 +- .../src/Generated/Models/Gallery.cs | 8 +- ...leryApplicationVersionPublishingProfile.cs | 6 +- .../GalleryArtifactPublishingProfileBase.cs | 8 +- .../Models/GalleryArtifactVersionSource.cs | 18 +- .../src/Generated/Models/GalleryImage.cs | 32 +- .../Generated/Models/GalleryImageFeature.cs | 59 ++ .../Models/GalleryImageIdentifier.cs | 14 +- .../Generated/Models/GalleryImageUpdate.cs | 32 +- .../Generated/Models/GalleryImageVersion.cs | 6 +- .../GalleryImageVersionPublishingProfile.cs | 6 +- .../Models/GalleryImageVersionUpdate.cs | 6 +- .../Models/GallerySharingPermissionTypes.cs | 22 + .../src/Generated/Models/GalleryUpdate.cs | 8 +- .../src/Generated/Models/ImagePurchasePlan.cs | 2 +- .../src/Generated/Models/PirResource.cs | 59 ++ .../Models/PirSharedGalleryResource.cs | 58 ++ .../Models/RegionalReplicationStatus.cs | 4 +- .../src/Generated/Models/ReplicationStatus.cs | 2 +- .../src/Generated/Models/SelectPermissions.cs | 21 + .../src/Generated/Models/SharedGallery.cs | 48 ++ .../Generated/Models/SharedGalleryImage.cs | 157 +++++ .../Models/SharedGalleryImageVersion.cs | 76 ++ .../src/Generated/Models/SharedToValues.cs | 21 + .../src/Generated/Models/SharingProfile.cs | 68 ++ .../Generated/Models/SharingProfileGroup.cs | 71 ++ .../Models/SharingProfileGroupTypes.cs | 22 + .../src/Generated/Models/SharingUpdate.cs | 85 +++ .../Models/SharingUpdateOperationTypes.cs | 23 + .../SdkInfo_ComputeManagementClient.cs | 25 +- .../Generated/SharedGalleriesOperations.cs | 615 ++++++++++++++++ .../SharedGalleriesOperationsExtensions.cs | 141 ++++ .../SharedGalleryImageVersionsOperations.cs | 656 ++++++++++++++++++ ...alleryImageVersionsOperationsExtensions.cs | 175 +++++ .../SharedGalleryImagesOperations.cs | 634 +++++++++++++++++ ...SharedGalleryImagesOperationsExtensions.cs | 155 +++++ .../Generated/VirtualMachinesOperations.cs | 17 +- .../VirtualMachinesOperationsExtensions.cs | 28 +- 58 files changed, 4409 insertions(+), 282 deletions(-) create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GallerySharingProfileOperations.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GallerySharingProfileOperationsExtensions.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IGallerySharingProfileOperations.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ISharedGalleriesOperations.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ISharedGalleryImageVersionsOperations.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ISharedGalleryImagesOperations.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageFeature.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GallerySharingPermissionTypes.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PirResource.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PirSharedGalleryResource.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SelectPermissions.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGallery.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGalleryImage.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGalleryImageVersion.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedToValues.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingProfile.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingProfileGroup.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingProfileGroupTypes.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingUpdate.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingUpdateOperationTypes.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleriesOperations.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleriesOperationsExtensions.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleryImageVersionsOperations.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleryImageVersionsOperationsExtensions.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleryImagesOperations.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleryImagesOperationsExtensions.cs diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/AzSdk.RP.props b/sdk/compute/Microsoft.Azure.Management.Compute/AzSdk.RP.props index e4eb4735d52c..6d728081a5dc 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/AzSdk.RP.props +++ b/sdk/compute/Microsoft.Azure.Management.Compute/AzSdk.RP.props @@ -1,7 +1,7 @@  - Compute_2020-06-30;Compute_2020-05-01;Compute_2019-12-01;Compute_2019-11-01;Compute_2019-04-01;ContainerService_2017-01-31; + Compute_2020-06-01;Compute_2020-06-30;Compute_2020-09-30;Compute_2019-04-01;ContainerService_2017-01-31; $(PackageTags);$(CommonTags);$(AzureApiTag); \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ComputeManagementClient.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ComputeManagementClient.cs index de53f6a7b193..fbee80e1b87f 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ComputeManagementClient.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ComputeManagementClient.cs @@ -221,6 +221,26 @@ public partial class ComputeManagementClient : ServiceClient public virtual IGalleryApplicationVersionsOperations GalleryApplicationVersions { get; private set; } + /// + /// Gets the IGallerySharingProfileOperations. + /// + public virtual IGallerySharingProfileOperations GallerySharingProfile { get; private set; } + + /// + /// Gets the ISharedGalleriesOperations. + /// + public virtual ISharedGalleriesOperations SharedGalleries { get; private set; } + + /// + /// Gets the ISharedGalleryImagesOperations. + /// + public virtual ISharedGalleryImagesOperations SharedGalleryImages { get; private set; } + + /// + /// Gets the ISharedGalleryImageVersionsOperations. + /// + public virtual ISharedGalleryImageVersionsOperations SharedGalleryImageVersions { get; private set; } + /// /// Gets the IContainerServicesOperations. /// @@ -497,6 +517,10 @@ private void Initialize() GalleryImageVersions = new GalleryImageVersionsOperations(this); GalleryApplications = new GalleryApplicationsOperations(this); GalleryApplicationVersions = new GalleryApplicationVersionsOperations(this); + GallerySharingProfile = new GallerySharingProfileOperations(this); + SharedGalleries = new SharedGalleriesOperations(this); + SharedGalleryImages = new SharedGalleryImagesOperations(this); + SharedGalleryImageVersions = new SharedGalleryImageVersionsOperations(this); ContainerServices = new ContainerServicesOperations(this); BaseUri = new System.Uri("https://management.azure.com"); AcceptLanguage = "en-US"; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleriesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleriesOperations.cs index 26c248d669a7..cd1041750010 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleriesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleriesOperations.cs @@ -113,6 +113,10 @@ internal GalleriesOperations(ComputeManagementClient client) /// /// The name of the Shared Image Gallery. /// + /// + /// The select expression to apply on the operation. Possible values include: + /// 'Permissions' + /// /// /// Headers that will be added to request. /// @@ -134,7 +138,7 @@ internal GalleriesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName, string select = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -148,7 +152,7 @@ internal GalleriesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -159,6 +163,7 @@ internal GalleriesOperations(ComputeManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("galleryName", galleryName); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("select", select); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } @@ -173,6 +178,10 @@ internal GalleriesOperations(ComputeManagementClient client) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } + if (select != null) + { + _queryParameters.Add(string.Format("$select={0}", System.Uri.EscapeDataString(select))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -357,7 +366,7 @@ internal GalleriesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -535,7 +544,7 @@ internal GalleriesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -738,7 +747,7 @@ internal GalleriesOperations(ComputeManagementClient client) { gallery.Validate(); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -984,7 +993,7 @@ internal GalleriesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "gallery"); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1182,7 +1191,7 @@ internal GalleriesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleriesOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleriesOperationsExtensions.cs index 200ecf5072b8..d5c55ace52ec 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleriesOperationsExtensions.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleriesOperationsExtensions.cs @@ -133,9 +133,13 @@ public static Gallery Update(this IGalleriesOperations operations, string resour /// /// The name of the Shared Image Gallery. /// - public static Gallery Get(this IGalleriesOperations operations, string resourceGroupName, string galleryName) + /// + /// The select expression to apply on the operation. Possible values include: + /// 'Permissions' + /// + public static Gallery Get(this IGalleriesOperations operations, string resourceGroupName, string galleryName, string select = default(string)) { - return operations.GetAsync(resourceGroupName, galleryName).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, galleryName, select).GetAwaiter().GetResult(); } /// @@ -150,12 +154,16 @@ public static Gallery Get(this IGalleriesOperations operations, string resourceG /// /// The name of the Shared Image Gallery. /// + /// + /// The select expression to apply on the operation. Possible values include: + /// 'Permissions' + /// /// /// The cancellation token. /// - public static async Task GetAsync(this IGalleriesOperations operations, string resourceGroupName, string galleryName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IGalleriesOperations operations, string resourceGroupName, string galleryName, string select = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, galleryName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, galleryName, select, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryApplicationVersionsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryApplicationVersionsOperations.cs index 5ee6cdad2a4f..7fee20b39f3c 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryApplicationVersionsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryApplicationVersionsOperations.cs @@ -187,7 +187,7 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryApplicationVersionName"); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -429,7 +429,7 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryApplicationName"); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -656,7 +656,7 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) { galleryApplicationVersion.Validate(); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -923,7 +923,7 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryApplicationVersion"); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1141,7 +1141,7 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryApplicationVersionName"); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryApplicationsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryApplicationsOperations.cs index 1d36b379d0e5..ee8bf60a5e4e 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryApplicationsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryApplicationsOperations.cs @@ -164,7 +164,7 @@ internal GalleryApplicationsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryApplicationName"); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -387,7 +387,7 @@ internal GalleryApplicationsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -602,7 +602,7 @@ internal GalleryApplicationsOperations(ComputeManagementClient client) { galleryApplication.Validate(); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -858,7 +858,7 @@ internal GalleryApplicationsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryApplication"); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1066,7 +1066,7 @@ internal GalleryApplicationsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryApplicationName"); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImageVersionsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImageVersionsOperations.cs index 69cb3fd8df8c..112a66063ee3 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImageVersionsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImageVersionsOperations.cs @@ -51,7 +51,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) public ComputeManagementClient Client { get; private set; } /// - /// Create or update a gallery Image Version. + /// Create or update a gallery image version. /// /// /// The name of the resource group. @@ -60,17 +60,17 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) /// The name of the Shared Image Gallery in which the Image Definition resides. /// /// - /// The name of the gallery Image Definition in which the Image Version is to + /// The name of the gallery image definition in which the Image Version is to /// be created. /// /// - /// The name of the gallery Image Version to be created. Needs to follow + /// The name of the gallery image version to be created. Needs to follow /// semantic version name pattern: The allowed characters are digit and period. /// Digits must be within the range of a 32-bit integer. Format: /// <MajorVersion>.<MinorVersion>.<Patch> /// /// - /// Parameters supplied to the create or update gallery Image Version + /// Parameters supplied to the create or update gallery image version /// operation. /// /// @@ -87,7 +87,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) } /// - /// Update a gallery Image Version. + /// Update a gallery image version. /// /// /// The name of the resource group. @@ -96,17 +96,17 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) /// The name of the Shared Image Gallery in which the Image Definition resides. /// /// - /// The name of the gallery Image Definition in which the Image Version is to + /// The name of the gallery image definition in which the Image Version is to /// be updated. /// /// - /// The name of the gallery Image Version to be updated. Needs to follow + /// The name of the gallery image version to be updated. Needs to follow /// semantic version name pattern: The allowed characters are digit and period. /// Digits must be within the range of a 32-bit integer. Format: /// <MajorVersion>.<MinorVersion>.<Patch> /// /// - /// Parameters supplied to the update gallery Image Version operation. + /// Parameters supplied to the update gallery image version operation. /// /// /// The headers that will be added to request. @@ -122,7 +122,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) } /// - /// Retrieves information about a gallery Image Version. + /// Retrieves information about a gallery image version. /// /// /// The name of the resource group. @@ -131,11 +131,11 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) /// The name of the Shared Image Gallery in which the Image Definition resides. /// /// - /// The name of the gallery Image Definition in which the Image Version + /// The name of the gallery image definition in which the Image Version /// resides. /// /// - /// The name of the gallery Image Version to be retrieved. + /// The name of the gallery image version to be retrieved. /// /// /// The expand expression to apply on the operation. Possible values include: @@ -184,7 +184,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageVersionName"); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -344,7 +344,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) } /// - /// Delete a gallery Image Version. + /// Delete a gallery image version. /// /// /// The name of the resource group. @@ -353,11 +353,11 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) /// The name of the Shared Image Gallery in which the Image Definition resides. /// /// - /// The name of the gallery Image Definition in which the Image Version + /// The name of the gallery image definition in which the Image Version /// resides. /// /// - /// The name of the gallery Image Version to be deleted. + /// The name of the gallery image version to be deleted. /// /// /// The headers that will be added to request. @@ -373,7 +373,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) } /// - /// List gallery Image Versions in a gallery Image Definition. + /// List gallery image versions in a gallery image definition. /// /// /// The name of the resource group. @@ -424,7 +424,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageName"); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -577,7 +577,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) } /// - /// Create or update a gallery Image Version. + /// Create or update a gallery image version. /// /// /// The name of the resource group. @@ -586,17 +586,17 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) /// The name of the Shared Image Gallery in which the Image Definition resides. /// /// - /// The name of the gallery Image Definition in which the Image Version is to + /// The name of the gallery image definition in which the Image Version is to /// be created. /// /// - /// The name of the gallery Image Version to be created. Needs to follow + /// The name of the gallery image version to be created. Needs to follow /// semantic version name pattern: The allowed characters are digit and period. /// Digits must be within the range of a 32-bit integer. Format: /// <MajorVersion>.<MinorVersion>.<Patch> /// /// - /// Parameters supplied to the create or update gallery Image Version + /// Parameters supplied to the create or update gallery image version /// operation. /// /// @@ -650,7 +650,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) { galleryImageVersion.Validate(); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -848,7 +848,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) } /// - /// Update a gallery Image Version. + /// Update a gallery image version. /// /// /// The name of the resource group. @@ -857,17 +857,17 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) /// The name of the Shared Image Gallery in which the Image Definition resides. /// /// - /// The name of the gallery Image Definition in which the Image Version is to + /// The name of the gallery image definition in which the Image Version is to /// be updated. /// /// - /// The name of the gallery Image Version to be updated. Needs to follow + /// The name of the gallery image version to be updated. Needs to follow /// semantic version name pattern: The allowed characters are digit and period. /// Digits must be within the range of a 32-bit integer. Format: /// <MajorVersion>.<MinorVersion>.<Patch> /// /// - /// Parameters supplied to the update gallery Image Version operation. + /// Parameters supplied to the update gallery image version operation. /// /// /// Headers that will be added to request. @@ -916,7 +916,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageVersion"); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1078,7 +1078,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) } /// - /// Delete a gallery Image Version. + /// Delete a gallery image version. /// /// /// The name of the resource group. @@ -1087,11 +1087,11 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) /// The name of the Shared Image Gallery in which the Image Definition resides. /// /// - /// The name of the gallery Image Definition in which the Image Version + /// The name of the gallery image definition in which the Image Version /// resides. /// /// - /// The name of the gallery Image Version to be deleted. + /// The name of the gallery image version to be deleted. /// /// /// Headers that will be added to request. @@ -1133,7 +1133,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageVersionName"); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1270,7 +1270,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) } /// - /// List gallery Image Versions in a gallery Image Definition. + /// List gallery image versions in a gallery image definition. /// /// /// The NextLink from the previous successful call to List operation. diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImageVersionsOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImageVersionsOperationsExtensions.cs index 7b915d62dfdf..f77ed912503e 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImageVersionsOperationsExtensions.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImageVersionsOperationsExtensions.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Management.Compute public static partial class GalleryImageVersionsOperationsExtensions { /// - /// Create or update a gallery Image Version. + /// Create or update a gallery image version. /// /// /// The operations group for this extension method. @@ -34,17 +34,17 @@ public static partial class GalleryImageVersionsOperationsExtensions /// The name of the Shared Image Gallery in which the Image Definition resides. /// /// - /// The name of the gallery Image Definition in which the Image Version is to + /// The name of the gallery image definition in which the Image Version is to /// be created. /// /// - /// The name of the gallery Image Version to be created. Needs to follow + /// The name of the gallery image version to be created. Needs to follow /// semantic version name pattern: The allowed characters are digit and period. /// Digits must be within the range of a 32-bit integer. Format: /// <MajorVersion>.<MinorVersion>.<Patch> /// /// - /// Parameters supplied to the create or update gallery Image Version + /// Parameters supplied to the create or update gallery image version /// operation. /// public static GalleryImageVersion CreateOrUpdate(this IGalleryImageVersionsOperations operations, string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, GalleryImageVersion galleryImageVersion) @@ -53,7 +53,7 @@ public static GalleryImageVersion CreateOrUpdate(this IGalleryImageVersionsOpera } /// - /// Create or update a gallery Image Version. + /// Create or update a gallery image version. /// /// /// The operations group for this extension method. @@ -65,17 +65,17 @@ public static GalleryImageVersion CreateOrUpdate(this IGalleryImageVersionsOpera /// The name of the Shared Image Gallery in which the Image Definition resides. /// /// - /// The name of the gallery Image Definition in which the Image Version is to + /// The name of the gallery image definition in which the Image Version is to /// be created. /// /// - /// The name of the gallery Image Version to be created. Needs to follow + /// The name of the gallery image version to be created. Needs to follow /// semantic version name pattern: The allowed characters are digit and period. /// Digits must be within the range of a 32-bit integer. Format: /// <MajorVersion>.<MinorVersion>.<Patch> /// /// - /// Parameters supplied to the create or update gallery Image Version + /// Parameters supplied to the create or update gallery image version /// operation. /// /// @@ -90,7 +90,7 @@ public static GalleryImageVersion CreateOrUpdate(this IGalleryImageVersionsOpera } /// - /// Update a gallery Image Version. + /// Update a gallery image version. /// /// /// The operations group for this extension method. @@ -102,17 +102,17 @@ public static GalleryImageVersion CreateOrUpdate(this IGalleryImageVersionsOpera /// The name of the Shared Image Gallery in which the Image Definition resides. /// /// - /// The name of the gallery Image Definition in which the Image Version is to + /// The name of the gallery image definition in which the Image Version is to /// be updated. /// /// - /// The name of the gallery Image Version to be updated. Needs to follow + /// The name of the gallery image version to be updated. Needs to follow /// semantic version name pattern: The allowed characters are digit and period. /// Digits must be within the range of a 32-bit integer. Format: /// <MajorVersion>.<MinorVersion>.<Patch> /// /// - /// Parameters supplied to the update gallery Image Version operation. + /// Parameters supplied to the update gallery image version operation. /// public static GalleryImageVersion Update(this IGalleryImageVersionsOperations operations, string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, GalleryImageVersionUpdate galleryImageVersion) { @@ -120,7 +120,7 @@ public static GalleryImageVersion Update(this IGalleryImageVersionsOperations op } /// - /// Update a gallery Image Version. + /// Update a gallery image version. /// /// /// The operations group for this extension method. @@ -132,17 +132,17 @@ public static GalleryImageVersion Update(this IGalleryImageVersionsOperations op /// The name of the Shared Image Gallery in which the Image Definition resides. /// /// - /// The name of the gallery Image Definition in which the Image Version is to + /// The name of the gallery image definition in which the Image Version is to /// be updated. /// /// - /// The name of the gallery Image Version to be updated. Needs to follow + /// The name of the gallery image version to be updated. Needs to follow /// semantic version name pattern: The allowed characters are digit and period. /// Digits must be within the range of a 32-bit integer. Format: /// <MajorVersion>.<MinorVersion>.<Patch> /// /// - /// Parameters supplied to the update gallery Image Version operation. + /// Parameters supplied to the update gallery image version operation. /// /// /// The cancellation token. @@ -156,7 +156,7 @@ public static GalleryImageVersion Update(this IGalleryImageVersionsOperations op } /// - /// Retrieves information about a gallery Image Version. + /// Retrieves information about a gallery image version. /// /// /// The operations group for this extension method. @@ -168,11 +168,11 @@ public static GalleryImageVersion Update(this IGalleryImageVersionsOperations op /// The name of the Shared Image Gallery in which the Image Definition resides. /// /// - /// The name of the gallery Image Definition in which the Image Version + /// The name of the gallery image definition in which the Image Version /// resides. /// /// - /// The name of the gallery Image Version to be retrieved. + /// The name of the gallery image version to be retrieved. /// /// /// The expand expression to apply on the operation. Possible values include: @@ -184,7 +184,7 @@ public static GalleryImageVersion Update(this IGalleryImageVersionsOperations op } /// - /// Retrieves information about a gallery Image Version. + /// Retrieves information about a gallery image version. /// /// /// The operations group for this extension method. @@ -196,11 +196,11 @@ public static GalleryImageVersion Update(this IGalleryImageVersionsOperations op /// The name of the Shared Image Gallery in which the Image Definition resides. /// /// - /// The name of the gallery Image Definition in which the Image Version + /// The name of the gallery image definition in which the Image Version /// resides. /// /// - /// The name of the gallery Image Version to be retrieved. + /// The name of the gallery image version to be retrieved. /// /// /// The expand expression to apply on the operation. Possible values include: @@ -218,7 +218,7 @@ public static GalleryImageVersion Update(this IGalleryImageVersionsOperations op } /// - /// Delete a gallery Image Version. + /// Delete a gallery image version. /// /// /// The operations group for this extension method. @@ -230,11 +230,11 @@ public static GalleryImageVersion Update(this IGalleryImageVersionsOperations op /// The name of the Shared Image Gallery in which the Image Definition resides. /// /// - /// The name of the gallery Image Definition in which the Image Version + /// The name of the gallery image definition in which the Image Version /// resides. /// /// - /// The name of the gallery Image Version to be deleted. + /// The name of the gallery image version to be deleted. /// public static void Delete(this IGalleryImageVersionsOperations operations, string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName) { @@ -242,7 +242,7 @@ public static void Delete(this IGalleryImageVersionsOperations operations, strin } /// - /// Delete a gallery Image Version. + /// Delete a gallery image version. /// /// /// The operations group for this extension method. @@ -254,11 +254,11 @@ public static void Delete(this IGalleryImageVersionsOperations operations, strin /// The name of the Shared Image Gallery in which the Image Definition resides. /// /// - /// The name of the gallery Image Definition in which the Image Version + /// The name of the gallery image definition in which the Image Version /// resides. /// /// - /// The name of the gallery Image Version to be deleted. + /// The name of the gallery image version to be deleted. /// /// /// The cancellation token. @@ -269,7 +269,7 @@ public static void Delete(this IGalleryImageVersionsOperations operations, strin } /// - /// List gallery Image Versions in a gallery Image Definition. + /// List gallery image versions in a gallery image definition. /// /// /// The operations group for this extension method. @@ -290,7 +290,7 @@ public static IPage ListByGalleryImage(this IGalleryImageVe } /// - /// List gallery Image Versions in a gallery Image Definition. + /// List gallery image versions in a gallery image definition. /// /// /// The operations group for this extension method. @@ -317,7 +317,7 @@ public static IPage ListByGalleryImage(this IGalleryImageVe } /// - /// Create or update a gallery Image Version. + /// Create or update a gallery image version. /// /// /// The operations group for this extension method. @@ -329,17 +329,17 @@ public static IPage ListByGalleryImage(this IGalleryImageVe /// The name of the Shared Image Gallery in which the Image Definition resides. /// /// - /// The name of the gallery Image Definition in which the Image Version is to + /// The name of the gallery image definition in which the Image Version is to /// be created. /// /// - /// The name of the gallery Image Version to be created. Needs to follow + /// The name of the gallery image version to be created. Needs to follow /// semantic version name pattern: The allowed characters are digit and period. /// Digits must be within the range of a 32-bit integer. Format: /// <MajorVersion>.<MinorVersion>.<Patch> /// /// - /// Parameters supplied to the create or update gallery Image Version + /// Parameters supplied to the create or update gallery image version /// operation. /// public static GalleryImageVersion BeginCreateOrUpdate(this IGalleryImageVersionsOperations operations, string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, GalleryImageVersion galleryImageVersion) @@ -348,7 +348,7 @@ public static GalleryImageVersion BeginCreateOrUpdate(this IGalleryImageVersions } /// - /// Create or update a gallery Image Version. + /// Create or update a gallery image version. /// /// /// The operations group for this extension method. @@ -360,17 +360,17 @@ public static GalleryImageVersion BeginCreateOrUpdate(this IGalleryImageVersions /// The name of the Shared Image Gallery in which the Image Definition resides. /// /// - /// The name of the gallery Image Definition in which the Image Version is to + /// The name of the gallery image definition in which the Image Version is to /// be created. /// /// - /// The name of the gallery Image Version to be created. Needs to follow + /// The name of the gallery image version to be created. Needs to follow /// semantic version name pattern: The allowed characters are digit and period. /// Digits must be within the range of a 32-bit integer. Format: /// <MajorVersion>.<MinorVersion>.<Patch> /// /// - /// Parameters supplied to the create or update gallery Image Version + /// Parameters supplied to the create or update gallery image version /// operation. /// /// @@ -385,7 +385,7 @@ public static GalleryImageVersion BeginCreateOrUpdate(this IGalleryImageVersions } /// - /// Update a gallery Image Version. + /// Update a gallery image version. /// /// /// The operations group for this extension method. @@ -397,17 +397,17 @@ public static GalleryImageVersion BeginCreateOrUpdate(this IGalleryImageVersions /// The name of the Shared Image Gallery in which the Image Definition resides. /// /// - /// The name of the gallery Image Definition in which the Image Version is to + /// The name of the gallery image definition in which the Image Version is to /// be updated. /// /// - /// The name of the gallery Image Version to be updated. Needs to follow + /// The name of the gallery image version to be updated. Needs to follow /// semantic version name pattern: The allowed characters are digit and period. /// Digits must be within the range of a 32-bit integer. Format: /// <MajorVersion>.<MinorVersion>.<Patch> /// /// - /// Parameters supplied to the update gallery Image Version operation. + /// Parameters supplied to the update gallery image version operation. /// public static GalleryImageVersion BeginUpdate(this IGalleryImageVersionsOperations operations, string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, GalleryImageVersionUpdate galleryImageVersion) { @@ -415,7 +415,7 @@ public static GalleryImageVersion BeginUpdate(this IGalleryImageVersionsOperatio } /// - /// Update a gallery Image Version. + /// Update a gallery image version. /// /// /// The operations group for this extension method. @@ -427,17 +427,17 @@ public static GalleryImageVersion BeginUpdate(this IGalleryImageVersionsOperatio /// The name of the Shared Image Gallery in which the Image Definition resides. /// /// - /// The name of the gallery Image Definition in which the Image Version is to + /// The name of the gallery image definition in which the Image Version is to /// be updated. /// /// - /// The name of the gallery Image Version to be updated. Needs to follow + /// The name of the gallery image version to be updated. Needs to follow /// semantic version name pattern: The allowed characters are digit and period. /// Digits must be within the range of a 32-bit integer. Format: /// <MajorVersion>.<MinorVersion>.<Patch> /// /// - /// Parameters supplied to the update gallery Image Version operation. + /// Parameters supplied to the update gallery image version operation. /// /// /// The cancellation token. @@ -451,7 +451,7 @@ public static GalleryImageVersion BeginUpdate(this IGalleryImageVersionsOperatio } /// - /// Delete a gallery Image Version. + /// Delete a gallery image version. /// /// /// The operations group for this extension method. @@ -463,11 +463,11 @@ public static GalleryImageVersion BeginUpdate(this IGalleryImageVersionsOperatio /// The name of the Shared Image Gallery in which the Image Definition resides. /// /// - /// The name of the gallery Image Definition in which the Image Version + /// The name of the gallery image definition in which the Image Version /// resides. /// /// - /// The name of the gallery Image Version to be deleted. + /// The name of the gallery image version to be deleted. /// public static void BeginDelete(this IGalleryImageVersionsOperations operations, string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName) { @@ -475,7 +475,7 @@ public static void BeginDelete(this IGalleryImageVersionsOperations operations, } /// - /// Delete a gallery Image Version. + /// Delete a gallery image version. /// /// /// The operations group for this extension method. @@ -487,11 +487,11 @@ public static void BeginDelete(this IGalleryImageVersionsOperations operations, /// The name of the Shared Image Gallery in which the Image Definition resides. /// /// - /// The name of the gallery Image Definition in which the Image Version + /// The name of the gallery image definition in which the Image Version /// resides. /// /// - /// The name of the gallery Image Version to be deleted. + /// The name of the gallery image version to be deleted. /// /// /// The cancellation token. @@ -502,7 +502,7 @@ public static void BeginDelete(this IGalleryImageVersionsOperations operations, } /// - /// List gallery Image Versions in a gallery Image Definition. + /// List gallery image versions in a gallery image definition. /// /// /// The operations group for this extension method. @@ -516,7 +516,7 @@ public static IPage ListByGalleryImageNext(this IGalleryIma } /// - /// List gallery Image Versions in a gallery Image Definition. + /// List gallery image versions in a gallery image definition. /// /// /// The operations group for this extension method. 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 f9021f2d57a9..02f11b8fd7ac 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImagesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImagesOperations.cs @@ -51,7 +51,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) public ComputeManagementClient Client { get; private set; } /// - /// Create or update a gallery Image Definition. + /// Create or update a gallery image definition. /// /// /// The name of the resource group. @@ -61,7 +61,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) /// created. /// /// - /// The name of the gallery Image Definition to be created or updated. The + /// The name of the gallery image definition to be created or updated. The /// allowed characters are alphabets and numbers with dots, dashes, and periods /// allowed in the middle. The maximum length is 80 characters. /// @@ -82,7 +82,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) } /// - /// Update a gallery Image Definition. + /// Update a gallery image definition. /// /// /// The name of the resource group. @@ -92,7 +92,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) /// updated. /// /// - /// The name of the gallery Image Definition to be updated. The allowed + /// The name of the gallery image definition to be updated. The allowed /// characters are alphabets and numbers with dots, dashes, and periods allowed /// in the middle. The maximum length is 80 characters. /// @@ -113,7 +113,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) } /// - /// Retrieves information about a gallery Image Definition. + /// Retrieves information about a gallery image definition. /// /// /// The name of the resource group. @@ -123,7 +123,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) /// to be retrieved. /// /// - /// The name of the gallery Image Definition to be retrieved. + /// The name of the gallery image definition to be retrieved. /// /// /// Headers that will be added to request. @@ -164,7 +164,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageName"); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -327,7 +327,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) /// deleted. /// /// - /// The name of the gallery Image Definition to be deleted. + /// The name of the gallery image definition to be deleted. /// /// /// The headers that will be added to request. @@ -343,7 +343,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) } /// - /// List gallery Image Definitions in a gallery. + /// List gallery image definitions in a gallery. /// /// /// The name of the resource group. @@ -387,7 +387,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -538,7 +538,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) } /// - /// Create or update a gallery Image Definition. + /// Create or update a gallery image definition. /// /// /// The name of the resource group. @@ -548,7 +548,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) /// created. /// /// - /// The name of the gallery Image Definition to be created or updated. The + /// The name of the gallery image definition to be created or updated. The /// allowed characters are alphabets and numbers with dots, dashes, and periods /// allowed in the middle. The maximum length is 80 characters. /// @@ -602,7 +602,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) { galleryImage.Validate(); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -798,7 +798,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) } /// - /// Update a gallery Image Definition. + /// Update a gallery image definition. /// /// /// The name of the resource group. @@ -808,7 +808,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) /// updated. /// /// - /// The name of the gallery Image Definition to be updated. The allowed + /// The name of the gallery image definition to be updated. The allowed /// characters are alphabets and numbers with dots, dashes, and periods allowed /// in the middle. The maximum length is 80 characters. /// @@ -858,7 +858,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryImage"); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1028,7 +1028,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) /// deleted. /// /// - /// The name of the gallery Image Definition to be deleted. + /// The name of the gallery image definition to be deleted. /// /// /// Headers that will be added to request. @@ -1066,7 +1066,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageName"); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1201,7 +1201,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) } /// - /// List gallery Image Definitions in a gallery. + /// List gallery image definitions in a gallery. /// /// /// The NextLink from the previous successful call to List operation. 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 0f2a873723dd..578c096bffa6 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImagesOperationsExtensions.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImagesOperationsExtensions.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Management.Compute public static partial class GalleryImagesOperationsExtensions { /// - /// Create or update a gallery Image Definition. + /// Create or update a gallery image definition. /// /// /// The operations group for this extension method. @@ -35,7 +35,7 @@ public static partial class GalleryImagesOperationsExtensions /// created. /// /// - /// The name of the gallery Image Definition to be created or updated. The + /// The name of the gallery image definition to be created or updated. The /// allowed characters are alphabets and numbers with dots, dashes, and periods /// allowed in the middle. The maximum length is 80 characters. /// @@ -48,7 +48,7 @@ public static GalleryImage CreateOrUpdate(this IGalleryImagesOperations operatio } /// - /// Create or update a gallery Image Definition. + /// Create or update a gallery image definition. /// /// /// The operations group for this extension method. @@ -61,7 +61,7 @@ public static GalleryImage CreateOrUpdate(this IGalleryImagesOperations operatio /// created. /// /// - /// The name of the gallery Image Definition to be created or updated. The + /// The name of the gallery image definition to be created or updated. The /// allowed characters are alphabets and numbers with dots, dashes, and periods /// allowed in the middle. The maximum length is 80 characters. /// @@ -80,7 +80,7 @@ public static GalleryImage CreateOrUpdate(this IGalleryImagesOperations operatio } /// - /// Update a gallery Image Definition. + /// Update a gallery image definition. /// /// /// The operations group for this extension method. @@ -93,7 +93,7 @@ public static GalleryImage CreateOrUpdate(this IGalleryImagesOperations operatio /// updated. /// /// - /// The name of the gallery Image Definition to be updated. The allowed + /// The name of the gallery image definition to be updated. The allowed /// characters are alphabets and numbers with dots, dashes, and periods allowed /// in the middle. The maximum length is 80 characters. /// @@ -106,7 +106,7 @@ public static GalleryImage Update(this IGalleryImagesOperations operations, stri } /// - /// Update a gallery Image Definition. + /// Update a gallery image definition. /// /// /// The operations group for this extension method. @@ -119,7 +119,7 @@ public static GalleryImage Update(this IGalleryImagesOperations operations, stri /// updated. /// /// - /// The name of the gallery Image Definition to be updated. The allowed + /// The name of the gallery image definition to be updated. The allowed /// characters are alphabets and numbers with dots, dashes, and periods allowed /// in the middle. The maximum length is 80 characters. /// @@ -138,7 +138,7 @@ public static GalleryImage Update(this IGalleryImagesOperations operations, stri } /// - /// Retrieves information about a gallery Image Definition. + /// Retrieves information about a gallery image definition. /// /// /// The operations group for this extension method. @@ -151,7 +151,7 @@ public static GalleryImage Update(this IGalleryImagesOperations operations, stri /// to be retrieved. /// /// - /// The name of the gallery Image Definition to be retrieved. + /// The name of the gallery image definition to be retrieved. /// public static GalleryImage Get(this IGalleryImagesOperations operations, string resourceGroupName, string galleryName, string galleryImageName) { @@ -159,7 +159,7 @@ public static GalleryImage Get(this IGalleryImagesOperations operations, string } /// - /// Retrieves information about a gallery Image Definition. + /// Retrieves information about a gallery image definition. /// /// /// The operations group for this extension method. @@ -172,7 +172,7 @@ public static GalleryImage Get(this IGalleryImagesOperations operations, string /// to be retrieved. /// /// - /// The name of the gallery Image Definition to be retrieved. + /// The name of the gallery image definition to be retrieved. /// /// /// The cancellation token. @@ -199,7 +199,7 @@ public static GalleryImage Get(this IGalleryImagesOperations operations, string /// deleted. /// /// - /// The name of the gallery Image Definition to be deleted. + /// The name of the gallery image definition to be deleted. /// public static void Delete(this IGalleryImagesOperations operations, string resourceGroupName, string galleryName, string galleryImageName) { @@ -220,7 +220,7 @@ public static void Delete(this IGalleryImagesOperations operations, string resou /// deleted. /// /// - /// The name of the gallery Image Definition to be deleted. + /// The name of the gallery image definition to be deleted. /// /// /// The cancellation token. @@ -231,7 +231,7 @@ public static void Delete(this IGalleryImagesOperations operations, string resou } /// - /// List gallery Image Definitions in a gallery. + /// List gallery image definitions in a gallery. /// /// /// The operations group for this extension method. @@ -249,7 +249,7 @@ public static IPage ListByGallery(this IGalleryImagesOperations op } /// - /// List gallery Image Definitions in a gallery. + /// List gallery image definitions in a gallery. /// /// /// The operations group for this extension method. @@ -273,7 +273,7 @@ public static IPage ListByGallery(this IGalleryImagesOperations op } /// - /// Create or update a gallery Image Definition. + /// Create or update a gallery image definition. /// /// /// The operations group for this extension method. @@ -286,7 +286,7 @@ public static IPage ListByGallery(this IGalleryImagesOperations op /// created. /// /// - /// The name of the gallery Image Definition to be created or updated. The + /// The name of the gallery image definition to be created or updated. The /// allowed characters are alphabets and numbers with dots, dashes, and periods /// allowed in the middle. The maximum length is 80 characters. /// @@ -299,7 +299,7 @@ public static GalleryImage BeginCreateOrUpdate(this IGalleryImagesOperations ope } /// - /// Create or update a gallery Image Definition. + /// Create or update a gallery image definition. /// /// /// The operations group for this extension method. @@ -312,7 +312,7 @@ public static GalleryImage BeginCreateOrUpdate(this IGalleryImagesOperations ope /// created. /// /// - /// The name of the gallery Image Definition to be created or updated. The + /// The name of the gallery image definition to be created or updated. The /// allowed characters are alphabets and numbers with dots, dashes, and periods /// allowed in the middle. The maximum length is 80 characters. /// @@ -331,7 +331,7 @@ public static GalleryImage BeginCreateOrUpdate(this IGalleryImagesOperations ope } /// - /// Update a gallery Image Definition. + /// Update a gallery image definition. /// /// /// The operations group for this extension method. @@ -344,7 +344,7 @@ public static GalleryImage BeginCreateOrUpdate(this IGalleryImagesOperations ope /// updated. /// /// - /// The name of the gallery Image Definition to be updated. The allowed + /// The name of the gallery image definition to be updated. The allowed /// characters are alphabets and numbers with dots, dashes, and periods allowed /// in the middle. The maximum length is 80 characters. /// @@ -357,7 +357,7 @@ public static GalleryImage BeginUpdate(this IGalleryImagesOperations operations, } /// - /// Update a gallery Image Definition. + /// Update a gallery image definition. /// /// /// The operations group for this extension method. @@ -370,7 +370,7 @@ public static GalleryImage BeginUpdate(this IGalleryImagesOperations operations, /// updated. /// /// - /// The name of the gallery Image Definition to be updated. The allowed + /// The name of the gallery image definition to be updated. The allowed /// characters are alphabets and numbers with dots, dashes, and periods allowed /// in the middle. The maximum length is 80 characters. /// @@ -402,7 +402,7 @@ public static GalleryImage BeginUpdate(this IGalleryImagesOperations operations, /// deleted. /// /// - /// The name of the gallery Image Definition to be deleted. + /// The name of the gallery image definition to be deleted. /// public static void BeginDelete(this IGalleryImagesOperations operations, string resourceGroupName, string galleryName, string galleryImageName) { @@ -423,7 +423,7 @@ public static void BeginDelete(this IGalleryImagesOperations operations, string /// deleted. /// /// - /// The name of the gallery Image Definition to be deleted. + /// The name of the gallery image definition to be deleted. /// /// /// The cancellation token. @@ -434,7 +434,7 @@ public static void BeginDelete(this IGalleryImagesOperations operations, string } /// - /// List gallery Image Definitions in a gallery. + /// List gallery image definitions in a gallery. /// /// /// The operations group for this extension method. @@ -448,7 +448,7 @@ public static IPage ListByGalleryNext(this IGalleryImagesOperation } /// - /// List gallery Image Definitions in a gallery. + /// List gallery image definitions in a gallery. /// /// /// The operations group for this extension method. diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GallerySharingProfileOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GallerySharingProfileOperations.cs new file mode 100644 index 000000000000..36d20e5f894b --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GallerySharingProfileOperations.cs @@ -0,0 +1,309 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// GallerySharingProfileOperations operations. + /// + internal partial class GallerySharingProfileOperations : IServiceOperations, IGallerySharingProfileOperations + { + /// + /// Initializes a new instance of the GallerySharingProfileOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal GallerySharingProfileOperations(ComputeManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the ComputeManagementClient + /// + public ComputeManagementClient Client { get; private set; } + + /// + /// Update sharing profile of a gallery. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// Parameters supplied to the update gallery sharing profile. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, SharingUpdate sharingUpdate, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, sharingUpdate, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Update sharing profile of a gallery. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// Parameters supplied to the update gallery sharing profile. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, SharingUpdate sharingUpdate, 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 (sharingUpdate == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "sharingUpdate"); + } + if (sharingUpdate != null) + { + sharingUpdate.Validate(); + } + string apiVersion = "2020-09-30"; + // 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("apiVersion", apiVersion); + tracingParameters.Add("sharingUpdate", sharingUpdate); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/share").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)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(sharingUpdate != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(sharingUpdate, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + // Deserialize Response + if ((int)_statusCode == 202) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GallerySharingProfileOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GallerySharingProfileOperationsExtensions.cs new file mode 100644 index 000000000000..9ab1747dd236 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GallerySharingProfileOperationsExtensions.cs @@ -0,0 +1,117 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for GallerySharingProfileOperations. + /// + public static partial class GallerySharingProfileOperationsExtensions + { + /// + /// Update sharing profile of a gallery. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// Parameters supplied to the update gallery sharing profile. + /// + public static SharingUpdate Update(this IGallerySharingProfileOperations operations, string resourceGroupName, string galleryName, SharingUpdate sharingUpdate) + { + return operations.UpdateAsync(resourceGroupName, galleryName, sharingUpdate).GetAwaiter().GetResult(); + } + + /// + /// Update sharing profile of a gallery. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// Parameters supplied to the update gallery sharing profile. + /// + /// + /// The cancellation token. + /// + public static async Task UpdateAsync(this IGallerySharingProfileOperations operations, string resourceGroupName, string galleryName, SharingUpdate sharingUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, galleryName, sharingUpdate, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Update sharing profile of a gallery. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// Parameters supplied to the update gallery sharing profile. + /// + public static SharingUpdate BeginUpdate(this IGallerySharingProfileOperations operations, string resourceGroupName, string galleryName, SharingUpdate sharingUpdate) + { + return operations.BeginUpdateAsync(resourceGroupName, galleryName, sharingUpdate).GetAwaiter().GetResult(); + } + + /// + /// Update sharing profile of a gallery. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// Parameters supplied to the update gallery sharing profile. + /// + /// + /// The cancellation token. + /// + public static async Task BeginUpdateAsync(this IGallerySharingProfileOperations operations, string resourceGroupName, string galleryName, SharingUpdate sharingUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, sharingUpdate, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IComputeManagementClient.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IComputeManagementClient.cs index 12145c0f68bc..1ba1b794cb2d 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IComputeManagementClient.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IComputeManagementClient.cs @@ -216,6 +216,26 @@ public partial interface IComputeManagementClient : System.IDisposable /// IGalleryApplicationVersionsOperations GalleryApplicationVersions { get; } + /// + /// Gets the IGallerySharingProfileOperations. + /// + IGallerySharingProfileOperations GallerySharingProfile { get; } + + /// + /// Gets the ISharedGalleriesOperations. + /// + ISharedGalleriesOperations SharedGalleries { get; } + + /// + /// Gets the ISharedGalleryImagesOperations. + /// + ISharedGalleryImagesOperations SharedGalleryImages { get; } + + /// + /// Gets the ISharedGalleryImageVersionsOperations. + /// + ISharedGalleryImageVersionsOperations SharedGalleryImageVersions { get; } + /// /// Gets the IContainerServicesOperations. /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IGalleriesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IGalleriesOperations.cs index ca3cfebcee4c..2e17fe75814a 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IGalleriesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IGalleriesOperations.cs @@ -93,6 +93,10 @@ public partial interface IGalleriesOperations /// /// The name of the Shared Image Gallery. /// + /// + /// The select expression to apply on the operation. Possible values + /// include: 'Permissions' + /// /// /// The headers that will be added to request. /// @@ -108,7 +112,7 @@ public partial interface IGalleriesOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName, string select = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Delete a Shared Image Gallery. /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IGalleryImageVersionsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IGalleryImageVersionsOperations.cs index 48a1efb60205..60387a8991fe 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IGalleryImageVersionsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IGalleryImageVersionsOperations.cs @@ -24,7 +24,7 @@ namespace Microsoft.Azure.Management.Compute public partial interface IGalleryImageVersionsOperations { /// - /// Create or update a gallery Image Version. + /// Create or update a gallery image version. /// /// /// The name of the resource group. @@ -34,18 +34,18 @@ public partial interface IGalleryImageVersionsOperations /// resides. /// /// - /// The name of the gallery Image Definition in which the Image Version + /// The name of the gallery image definition in which the Image Version /// is to be created. /// /// - /// The name of the gallery Image Version to be created. Needs to + /// The name of the gallery image version to be created. Needs to /// follow semantic version name pattern: The allowed characters are /// digit and period. Digits must be within the range of a 32-bit /// integer. Format: /// <MajorVersion>.<MinorVersion>.<Patch> /// /// - /// Parameters supplied to the create or update gallery Image Version + /// Parameters supplied to the create or update gallery image version /// operation. /// /// @@ -65,7 +65,7 @@ public partial interface IGalleryImageVersionsOperations /// Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, GalleryImageVersion galleryImageVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Update a gallery Image Version. + /// Update a gallery image version. /// /// /// The name of the resource group. @@ -75,18 +75,18 @@ public partial interface IGalleryImageVersionsOperations /// resides. /// /// - /// The name of the gallery Image Definition in which the Image Version + /// The name of the gallery image definition in which the Image Version /// is to be updated. /// /// - /// The name of the gallery Image Version to be updated. Needs to + /// The name of the gallery image version to be updated. Needs to /// follow semantic version name pattern: The allowed characters are /// digit and period. Digits must be within the range of a 32-bit /// integer. Format: /// <MajorVersion>.<MinorVersion>.<Patch> /// /// - /// Parameters supplied to the update gallery Image Version operation. + /// Parameters supplied to the update gallery image version operation. /// /// /// The headers that will be added to request. @@ -105,7 +105,7 @@ public partial interface IGalleryImageVersionsOperations /// Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, GalleryImageVersionUpdate galleryImageVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Retrieves information about a gallery Image Version. + /// Retrieves information about a gallery image version. /// /// /// The name of the resource group. @@ -115,11 +115,11 @@ public partial interface IGalleryImageVersionsOperations /// resides. /// /// - /// The name of the gallery Image Definition in which the Image Version + /// The name of the gallery image definition in which the Image Version /// resides. /// /// - /// The name of the gallery Image Version to be retrieved. + /// The name of the gallery image version to be retrieved. /// /// /// The expand expression to apply on the operation. Possible values @@ -142,7 +142,7 @@ public partial interface IGalleryImageVersionsOperations /// Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Delete a gallery Image Version. + /// Delete a gallery image version. /// /// /// The name of the resource group. @@ -152,11 +152,11 @@ public partial interface IGalleryImageVersionsOperations /// resides. /// /// - /// The name of the gallery Image Definition in which the Image Version + /// The name of the gallery image definition in which the Image Version /// resides. /// /// - /// The name of the gallery Image Version to be deleted. + /// The name of the gallery image version to be deleted. /// /// /// The headers that will be added to request. @@ -172,7 +172,7 @@ public partial interface IGalleryImageVersionsOperations /// Task DeleteWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// List gallery Image Versions in a gallery Image Definition. + /// List gallery image versions in a gallery image definition. /// /// /// The name of the resource group. @@ -202,7 +202,7 @@ public partial interface IGalleryImageVersionsOperations /// Task>> ListByGalleryImageWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Create or update a gallery Image Version. + /// Create or update a gallery image version. /// /// /// The name of the resource group. @@ -212,18 +212,18 @@ public partial interface IGalleryImageVersionsOperations /// resides. /// /// - /// The name of the gallery Image Definition in which the Image Version + /// The name of the gallery image definition in which the Image Version /// is to be created. /// /// - /// The name of the gallery Image Version to be created. Needs to + /// The name of the gallery image version to be created. Needs to /// follow semantic version name pattern: The allowed characters are /// digit and period. Digits must be within the range of a 32-bit /// integer. Format: /// <MajorVersion>.<MinorVersion>.<Patch> /// /// - /// Parameters supplied to the create or update gallery Image Version + /// Parameters supplied to the create or update gallery image version /// operation. /// /// @@ -243,7 +243,7 @@ public partial interface IGalleryImageVersionsOperations /// Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, GalleryImageVersion galleryImageVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Update a gallery Image Version. + /// Update a gallery image version. /// /// /// The name of the resource group. @@ -253,18 +253,18 @@ public partial interface IGalleryImageVersionsOperations /// resides. /// /// - /// The name of the gallery Image Definition in which the Image Version + /// The name of the gallery image definition in which the Image Version /// is to be updated. /// /// - /// The name of the gallery Image Version to be updated. Needs to + /// The name of the gallery image version to be updated. Needs to /// follow semantic version name pattern: The allowed characters are /// digit and period. Digits must be within the range of a 32-bit /// integer. Format: /// <MajorVersion>.<MinorVersion>.<Patch> /// /// - /// Parameters supplied to the update gallery Image Version operation. + /// Parameters supplied to the update gallery image version operation. /// /// /// The headers that will be added to request. @@ -283,7 +283,7 @@ public partial interface IGalleryImageVersionsOperations /// Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, GalleryImageVersionUpdate galleryImageVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Delete a gallery Image Version. + /// Delete a gallery image version. /// /// /// The name of the resource group. @@ -293,11 +293,11 @@ public partial interface IGalleryImageVersionsOperations /// resides. /// /// - /// The name of the gallery Image Definition in which the Image Version + /// The name of the gallery image definition in which the Image Version /// resides. /// /// - /// The name of the gallery Image Version to be deleted. + /// The name of the gallery image version to be deleted. /// /// /// The headers that will be added to request. @@ -313,7 +313,7 @@ public partial interface IGalleryImageVersionsOperations /// Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// List gallery Image Versions in a gallery Image Definition. + /// List gallery image versions in a gallery image definition. /// /// /// The NextLink from the previous successful call to List operation. 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 523c2ffc9ffc..bfe8aaf91f55 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IGalleryImagesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IGalleryImagesOperations.cs @@ -24,7 +24,7 @@ namespace Microsoft.Azure.Management.Compute public partial interface IGalleryImagesOperations { /// - /// Create or update a gallery Image Definition. + /// Create or update a gallery image definition. /// /// /// The name of the resource group. @@ -34,7 +34,7 @@ public partial interface IGalleryImagesOperations /// is to be created. /// /// - /// The name of the gallery Image Definition to be created or updated. + /// The name of the gallery image definition to be created or updated. /// The allowed characters are alphabets and numbers with dots, dashes, /// and periods allowed in the middle. The maximum length is 80 /// characters. @@ -60,7 +60,7 @@ public partial interface IGalleryImagesOperations /// Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, GalleryImage galleryImage, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Update a gallery Image Definition. + /// Update a gallery image definition. /// /// /// The name of the resource group. @@ -70,7 +70,7 @@ public partial interface IGalleryImagesOperations /// is to be updated. /// /// - /// The name of the gallery Image Definition to be updated. The allowed + /// The name of the gallery image definition to be updated. The allowed /// characters are alphabets and numbers with dots, dashes, and periods /// allowed in the middle. The maximum length is 80 characters. /// @@ -94,7 +94,7 @@ public partial interface IGalleryImagesOperations /// Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, GalleryImageUpdate galleryImage, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Retrieves information about a gallery Image Definition. + /// Retrieves information about a gallery image definition. /// /// /// The name of the resource group. @@ -104,7 +104,7 @@ public partial interface IGalleryImagesOperations /// Definitions are to be retrieved. /// /// - /// The name of the gallery Image Definition to be retrieved. + /// The name of the gallery image definition to be retrieved. /// /// /// The headers that will be added to request. @@ -133,7 +133,7 @@ public partial interface IGalleryImagesOperations /// is to be deleted. /// /// - /// The name of the gallery Image Definition to be deleted. + /// The name of the gallery image definition to be deleted. /// /// /// The headers that will be added to request. @@ -149,7 +149,7 @@ public partial interface IGalleryImagesOperations /// Task DeleteWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// List gallery Image Definitions in a gallery. + /// List gallery image definitions in a gallery. /// /// /// The name of the resource group. @@ -175,7 +175,7 @@ public partial interface IGalleryImagesOperations /// Task>> ListByGalleryWithHttpMessagesAsync(string resourceGroupName, string galleryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Create or update a gallery Image Definition. + /// Create or update a gallery image definition. /// /// /// The name of the resource group. @@ -185,7 +185,7 @@ public partial interface IGalleryImagesOperations /// is to be created. /// /// - /// The name of the gallery Image Definition to be created or updated. + /// The name of the gallery image definition to be created or updated. /// The allowed characters are alphabets and numbers with dots, dashes, /// and periods allowed in the middle. The maximum length is 80 /// characters. @@ -211,7 +211,7 @@ public partial interface IGalleryImagesOperations /// Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, GalleryImage galleryImage, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Update a gallery Image Definition. + /// Update a gallery image definition. /// /// /// The name of the resource group. @@ -221,7 +221,7 @@ public partial interface IGalleryImagesOperations /// is to be updated. /// /// - /// The name of the gallery Image Definition to be updated. The allowed + /// The name of the gallery image definition to be updated. The allowed /// characters are alphabets and numbers with dots, dashes, and periods /// allowed in the middle. The maximum length is 80 characters. /// @@ -255,7 +255,7 @@ public partial interface IGalleryImagesOperations /// is to be deleted. /// /// - /// The name of the gallery Image Definition to be deleted. + /// The name of the gallery image definition to be deleted. /// /// /// The headers that will be added to request. @@ -271,7 +271,7 @@ public partial interface IGalleryImagesOperations /// Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// List gallery Image Definitions in a gallery. + /// List gallery image definitions in a gallery. /// /// /// The NextLink from the previous successful call to List operation. diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IGallerySharingProfileOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IGallerySharingProfileOperations.cs new file mode 100644 index 000000000000..851857bc297a --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IGallerySharingProfileOperations.cs @@ -0,0 +1,83 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// GallerySharingProfileOperations operations. + /// + public partial interface IGallerySharingProfileOperations + { + /// + /// Update sharing profile of a gallery. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// Parameters supplied to the update gallery sharing profile. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, SharingUpdate sharingUpdate, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Update sharing profile of a gallery. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// Parameters supplied to the update gallery sharing profile. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, SharingUpdate sharingUpdate, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ISharedGalleriesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ISharedGalleriesOperations.cs new file mode 100644 index 000000000000..369d638e16b0 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ISharedGalleriesOperations.cs @@ -0,0 +1,100 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// SharedGalleriesOperations operations. + /// + public partial interface ISharedGalleriesOperations + { + /// + /// List shared galleries by subscription id or tenant id. + /// + /// + /// Resource location. + /// + /// + /// The query parameter to decide what shared galleries to fetch when + /// doing listing operations. Possible values include: 'tenant' + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListWithHttpMessagesAsync(string location, string sharedTo = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Get a shared gallery by subscription id or tenant id. + /// + /// + /// Resource location. + /// + /// + /// The unique name of the Shared Gallery. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string location, string galleryUniqueName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List shared galleries by subscription id or tenant id. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ISharedGalleryImageVersionsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ISharedGalleryImageVersionsOperations.cs new file mode 100644 index 000000000000..f885944fb8f4 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ISharedGalleryImageVersionsOperations.cs @@ -0,0 +1,118 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// SharedGalleryImageVersionsOperations operations. + /// + public partial interface ISharedGalleryImageVersionsOperations + { + /// + /// List shared gallery image versions by subscription id or tenant id. + /// + /// + /// Resource location. + /// + /// + /// The unique name of the Shared Gallery. + /// + /// + /// The name of the Shared Gallery Image Definition from which the + /// Image Versions are to be listed. + /// + /// + /// The query parameter to decide what shared galleries to fetch when + /// doing listing operations. Possible values include: 'tenant' + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListWithHttpMessagesAsync(string location, string galleryUniqueName, string galleryImageName, string sharedTo = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Get a shared gallery image version by subscription id or tenant id. + /// + /// + /// Resource location. + /// + /// + /// The unique name of the Shared Gallery. + /// + /// + /// The name of the Shared Gallery Image Definition from which the + /// Image Versions are to be listed. + /// + /// + /// The name of the gallery image version to be created. Needs to + /// follow semantic version name pattern: The allowed characters are + /// digit and period. Digits must be within the range of a 32-bit + /// integer. Format: + /// <MajorVersion>.<MinorVersion>.<Patch> + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string location, string galleryUniqueName, string galleryImageName, string galleryImageVersionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List shared gallery image versions by subscription id or tenant id. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ISharedGalleryImagesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ISharedGalleryImagesOperations.cs new file mode 100644 index 000000000000..29684dfca5e7 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ISharedGalleryImagesOperations.cs @@ -0,0 +1,107 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// SharedGalleryImagesOperations operations. + /// + public partial interface ISharedGalleryImagesOperations + { + /// + /// List shared gallery images by subscription id or tenant id. + /// + /// + /// Resource location. + /// + /// + /// The unique name of the Shared Gallery. + /// + /// + /// The query parameter to decide what shared galleries to fetch when + /// doing listing operations. Possible values include: 'tenant' + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListWithHttpMessagesAsync(string location, string galleryUniqueName, string sharedTo = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Get a shared gallery image by subscription id or tenant id. + /// + /// + /// Resource location. + /// + /// + /// The unique name of the Shared Gallery. + /// + /// + /// The name of the Shared Gallery Image Definition from which the + /// Image Versions are to be listed. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string location, string galleryUniqueName, string galleryImageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List shared gallery images by subscription id or tenant id. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachinesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachinesOperations.cs index cd0a8bbcdd18..a0386139bd1e 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachinesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachinesOperations.cs @@ -142,6 +142,9 @@ public partial interface IVirtualMachinesOperations /// /// The name of the virtual machine. /// + /// + /// Optional parameter to force delete virtual machines. + /// /// /// The headers that will be added to request. /// @@ -154,7 +157,7 @@ public partial interface IVirtualMachinesOperations /// /// Thrown when a required parameter is null /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Retrieves information about the model view or the instance view of /// a virtual machine. @@ -733,6 +736,9 @@ public partial interface IVirtualMachinesOperations /// /// The name of the virtual machine. /// + /// + /// Optional parameter to force delete virtual machines. + /// /// /// The headers that will be added to request. /// @@ -745,7 +751,7 @@ public partial interface IVirtualMachinesOperations /// /// Thrown when a required parameter is null /// - Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Converts virtual machine disks from blob-based to managed disks. /// Virtual machine must be stop-deallocated before invoking this diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/Gallery.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/Gallery.cs index 3164fc5d8259..df6b6a84056c 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/Gallery.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/Gallery.cs @@ -44,12 +44,13 @@ public Gallery() /// Gallery resource. This property is updatable. /// The current state of the /// gallery. - public Gallery(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string description = default(string), GalleryIdentifier identifier = default(GalleryIdentifier), string provisioningState = default(string)) + public Gallery(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string description = default(string), GalleryIdentifier identifier = default(GalleryIdentifier), string provisioningState = default(string), SharingProfile sharingProfile = default(SharingProfile)) : base(location, id, name, type, tags) { Description = description; Identifier = identifier; ProvisioningState = provisioningState; + SharingProfile = sharingProfile; CustomInit(); } @@ -81,6 +82,11 @@ public Gallery() [JsonProperty(PropertyName = "properties.provisioningState")] public string ProvisioningState { get; private set; } + /// + /// + [JsonProperty(PropertyName = "properties.sharingProfile")] + public SharingProfile SharingProfile { get; set; } + /// /// Validate the object. /// 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 3705c404cf17..f6e7ac008e70 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 @@ -17,7 +17,7 @@ namespace Microsoft.Azure.Management.Compute.Models using System.Linq; /// - /// The publishing profile of a gallery Image Version. + /// The publishing profile of a gallery image version. /// public partial class GalleryApplicationVersionPublishingProfile : GalleryArtifactPublishingProfileBase { @@ -45,9 +45,9 @@ public GalleryApplicationVersionPublishingProfile() /// deployed from the latest version of the Image Definition won't use /// this Image Version. /// The timestamp for when the gallery - /// Image Version is published. + /// image version is published. /// The end of life date of the gallery - /// Image Version. This property can be used for decommissioning + /// image version. This property can be used for decommissioning /// purposes. This property is updatable. /// Specifies the storage account type /// to be used to store the image. This property is not updatable. diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryArtifactPublishingProfileBase.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryArtifactPublishingProfileBase.cs index 1b6b478f2b6b..8f21c927feef 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryArtifactPublishingProfileBase.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryArtifactPublishingProfileBase.cs @@ -44,9 +44,9 @@ public GalleryArtifactPublishingProfileBase() /// deployed from the latest version of the Image Definition won't use /// this Image Version. /// The timestamp for when the gallery - /// Image Version is published. + /// image version is published. /// The end of life date of the gallery - /// Image Version. This property can be used for decommissioning + /// image version. This property can be used for decommissioning /// purposes. This property is updatable. /// Specifies the storage account type /// to be used to store the image. This property is not updatable. @@ -93,13 +93,13 @@ public GalleryArtifactPublishingProfileBase() public bool? ExcludeFromLatest { get; set; } /// - /// Gets the timestamp for when the gallery Image Version is published. + /// Gets the timestamp for when the gallery image version is published. /// [JsonProperty(PropertyName = "publishedDate")] public System.DateTime? PublishedDate { get; private set; } /// - /// Gets or sets the end of life date of the gallery Image Version. + /// Gets or sets the end of life date of the gallery image version. /// This property can be used for decommissioning purposes. This /// property is updatable. /// 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 7617dbe21556..ebe95fdfc09b 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 @@ -32,10 +32,14 @@ public GalleryArtifactVersionSource() /// class. /// /// The id of the gallery artifact version source. Can - /// specify a disk uri, snapshot uri, or user image. - public GalleryArtifactVersionSource(string id = default(string)) + /// 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)) { Id = id; + Uri = uri; CustomInit(); } @@ -46,10 +50,18 @@ public GalleryArtifactVersionSource() /// /// Gets or sets the id of the gallery artifact version source. Can - /// specify a disk uri, snapshot uri, or user image. + /// specify a disk uri, snapshot uri, user image or storage account + /// resource. /// [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/GalleryImage.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImage.cs index 276cb3aeaae5..62dbb59864df 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImage.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImage.cs @@ -18,7 +18,7 @@ namespace Microsoft.Azure.Management.Compute.Models using System.Linq; /// - /// Specifies information about the gallery Image Definition that you want + /// Specifies information about the gallery image definition that you want /// to create or update. /// [Rest.Serialization.JsonTransformation] @@ -49,22 +49,23 @@ public GalleryImage() /// Resource name /// Resource type /// Resource tags - /// The description of this gallery Image - /// Definition resource. This property is updatable. - /// The Eula agreement for the gallery Image - /// Definition. + /// The description of this gallery image + /// definition resource. This property is updatable. + /// The Eula agreement for the gallery image + /// definition. /// The privacy statement /// uri. /// The release note uri. /// The hypervisor generation of the /// Virtual Machine. Applicable to OS disks only. Possible values /// include: 'V1', 'V2' + /// A list of gallery image features. /// The end of life date of the gallery - /// Image Definition. This property can be used for decommissioning + /// image definition. This property can be used for decommissioning /// purposes. This property is updatable. /// The current state of the gallery - /// Image Definition. - public GalleryImage(string location, OperatingSystemTypes osType, OperatingSystemStateTypes osState, GalleryImageIdentifier identifier, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string description = default(string), string eula = default(string), string privacyStatementUri = default(string), string releaseNoteUri = default(string), string hyperVGeneration = default(string), System.DateTime? endOfLifeDate = default(System.DateTime?), RecommendedMachineConfiguration recommended = default(RecommendedMachineConfiguration), Disallowed disallowed = default(Disallowed), ImagePurchasePlan purchasePlan = default(ImagePurchasePlan), string provisioningState = default(string)) + /// image definition. + public GalleryImage(string location, OperatingSystemTypes osType, OperatingSystemStateTypes osState, GalleryImageIdentifier identifier, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string description = default(string), string eula = default(string), string privacyStatementUri = default(string), string releaseNoteUri = default(string), string hyperVGeneration = default(string), IList features = default(IList), System.DateTime? endOfLifeDate = default(System.DateTime?), RecommendedMachineConfiguration recommended = default(RecommendedMachineConfiguration), Disallowed disallowed = default(Disallowed), ImagePurchasePlan purchasePlan = default(ImagePurchasePlan), string provisioningState = default(string)) : base(location, id, name, type, tags) { Description = description; @@ -74,6 +75,7 @@ public GalleryImage() OsType = osType; OsState = osState; HyperVGeneration = hyperVGeneration; + Features = features; EndOfLifeDate = endOfLifeDate; Identifier = identifier; Recommended = recommended; @@ -89,14 +91,14 @@ public GalleryImage() partial void CustomInit(); /// - /// Gets or sets the description of this gallery Image Definition + /// Gets or sets the description of this gallery image definition /// resource. This property is updatable. /// [JsonProperty(PropertyName = "properties.description")] public string Description { get; set; } /// - /// Gets or sets the Eula agreement for the gallery Image Definition. + /// Gets or sets the Eula agreement for the gallery image definition. /// [JsonProperty(PropertyName = "properties.eula")] public string Eula { get; set; } @@ -141,7 +143,13 @@ public GalleryImage() public string HyperVGeneration { get; set; } /// - /// Gets or sets the end of life date of the gallery Image Definition. + /// Gets or sets a list of gallery image features. + /// + [JsonProperty(PropertyName = "properties.features")] + public IList Features { get; set; } + + /// + /// Gets or sets the end of life date of the gallery image definition. /// This property can be used for decommissioning purposes. This /// property is updatable. /// @@ -169,7 +177,7 @@ public GalleryImage() public ImagePurchasePlan PurchasePlan { get; set; } /// - /// Gets the current state of the gallery Image Definition. + /// Gets the current state of the gallery image definition. /// /// /// The provisioning state, which only appears in the response. diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageFeature.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageFeature.cs new file mode 100644 index 000000000000..2aa52c29b60b --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageFeature.cs @@ -0,0 +1,59 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// A feature for gallery image. + /// + public partial class GalleryImageFeature + { + /// + /// Initializes a new instance of the GalleryImageFeature class. + /// + public GalleryImageFeature() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the GalleryImageFeature class. + /// + /// The name of the gallery image feature. + /// The value of the gallery image feature. + public GalleryImageFeature(string name = default(string), string value = default(string)) + { + Name = name; + Value = value; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the name of the gallery image feature. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets the value of the gallery image feature. + /// + [JsonProperty(PropertyName = "value")] + public string Value { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageIdentifier.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageIdentifier.cs index b18ce093894f..5f3835b6879f 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageIdentifier.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageIdentifier.cs @@ -15,7 +15,7 @@ namespace Microsoft.Azure.Management.Compute.Models using System.Linq; /// - /// This is the gallery Image Definition identifier. + /// This is the gallery image definition identifier. /// public partial class GalleryImageIdentifier { @@ -30,11 +30,11 @@ public GalleryImageIdentifier() /// /// Initializes a new instance of the GalleryImageIdentifier class. /// - /// The name of the gallery Image Definition + /// The name of the gallery image definition /// publisher. - /// The name of the gallery Image Definition + /// The name of the gallery image definition /// offer. - /// The name of the gallery Image Definition + /// The name of the gallery image definition /// SKU. public GalleryImageIdentifier(string publisher, string offer, string sku) { @@ -50,19 +50,19 @@ public GalleryImageIdentifier(string publisher, string offer, string sku) partial void CustomInit(); /// - /// Gets or sets the name of the gallery Image Definition publisher. + /// Gets or sets the name of the gallery image definition publisher. /// [JsonProperty(PropertyName = "publisher")] public string Publisher { get; set; } /// - /// Gets or sets the name of the gallery Image Definition offer. + /// Gets or sets the name of the gallery image definition offer. /// [JsonProperty(PropertyName = "offer")] public string Offer { get; set; } /// - /// Gets or sets the name of the gallery Image Definition SKU. + /// Gets or sets the name of the gallery image definition SKU. /// [JsonProperty(PropertyName = "sku")] public string Sku { get; set; } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageUpdate.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageUpdate.cs index 4ac822d3c550..de806c8b415b 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageUpdate.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageUpdate.cs @@ -18,7 +18,7 @@ namespace Microsoft.Azure.Management.Compute.Models using System.Linq; /// - /// Specifies information about the gallery Image Definition that you want + /// Specifies information about the gallery image definition that you want /// to update. /// [Rest.Serialization.JsonTransformation] @@ -48,22 +48,23 @@ public GalleryImageUpdate() /// Resource name /// Resource type /// Resource tags - /// The description of this gallery Image - /// Definition resource. This property is updatable. - /// The Eula agreement for the gallery Image - /// Definition. + /// The description of this gallery image + /// definition resource. This property is updatable. + /// The Eula agreement for the gallery image + /// definition. /// The privacy statement /// uri. /// The release note uri. /// The hypervisor generation of the /// Virtual Machine. Applicable to OS disks only. Possible values /// include: 'V1', 'V2' + /// A list of gallery image features. /// The end of life date of the gallery - /// Image Definition. This property can be used for decommissioning + /// image definition. This property can be used for decommissioning /// purposes. This property is updatable. /// The current state of the gallery - /// Image Definition. - public GalleryImageUpdate(OperatingSystemTypes osType, OperatingSystemStateTypes osState, GalleryImageIdentifier identifier, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string description = default(string), string eula = default(string), string privacyStatementUri = default(string), string releaseNoteUri = default(string), string hyperVGeneration = default(string), System.DateTime? endOfLifeDate = default(System.DateTime?), RecommendedMachineConfiguration recommended = default(RecommendedMachineConfiguration), Disallowed disallowed = default(Disallowed), ImagePurchasePlan purchasePlan = default(ImagePurchasePlan), string provisioningState = default(string)) + /// image definition. + public GalleryImageUpdate(OperatingSystemTypes osType, OperatingSystemStateTypes osState, GalleryImageIdentifier identifier, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string description = default(string), string eula = default(string), string privacyStatementUri = default(string), string releaseNoteUri = default(string), string hyperVGeneration = default(string), IList features = default(IList), System.DateTime? endOfLifeDate = default(System.DateTime?), RecommendedMachineConfiguration recommended = default(RecommendedMachineConfiguration), Disallowed disallowed = default(Disallowed), ImagePurchasePlan purchasePlan = default(ImagePurchasePlan), string provisioningState = default(string)) : base(id, name, type, tags) { Description = description; @@ -73,6 +74,7 @@ public GalleryImageUpdate() OsType = osType; OsState = osState; HyperVGeneration = hyperVGeneration; + Features = features; EndOfLifeDate = endOfLifeDate; Identifier = identifier; Recommended = recommended; @@ -88,14 +90,14 @@ public GalleryImageUpdate() partial void CustomInit(); /// - /// Gets or sets the description of this gallery Image Definition + /// Gets or sets the description of this gallery image definition /// resource. This property is updatable. /// [JsonProperty(PropertyName = "properties.description")] public string Description { get; set; } /// - /// Gets or sets the Eula agreement for the gallery Image Definition. + /// Gets or sets the Eula agreement for the gallery image definition. /// [JsonProperty(PropertyName = "properties.eula")] public string Eula { get; set; } @@ -140,7 +142,13 @@ public GalleryImageUpdate() public string HyperVGeneration { get; set; } /// - /// Gets or sets the end of life date of the gallery Image Definition. + /// Gets or sets a list of gallery image features. + /// + [JsonProperty(PropertyName = "properties.features")] + public IList Features { get; set; } + + /// + /// Gets or sets the end of life date of the gallery image definition. /// This property can be used for decommissioning purposes. This /// property is updatable. /// @@ -168,7 +176,7 @@ public GalleryImageUpdate() public ImagePurchasePlan PurchasePlan { get; set; } /// - /// Gets the current state of the gallery Image Definition. + /// Gets the current state of the gallery image definition. /// /// /// The provisioning state, which only appears in the response. 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 a7ad1dea5fab..707a553ae2c5 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 @@ -18,7 +18,7 @@ namespace Microsoft.Azure.Management.Compute.Models using System.Linq; /// - /// Specifies information about the gallery Image Version that you want to + /// Specifies information about the gallery image version that you want to /// create or update. /// [Rest.Serialization.JsonTransformation] @@ -41,7 +41,7 @@ public GalleryImageVersion() /// Resource type /// Resource tags /// The current state of the gallery - /// Image Version. + /// image version. public GalleryImageVersion(string location, GalleryImageVersionStorageProfile storageProfile, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), GalleryImageVersionPublishingProfile publishingProfile = default(GalleryImageVersionPublishingProfile), string provisioningState = default(string), ReplicationStatus replicationStatus = default(ReplicationStatus)) : base(location, id, name, type, tags) { @@ -63,7 +63,7 @@ public GalleryImageVersion() public GalleryImageVersionPublishingProfile PublishingProfile { get; set; } /// - /// Gets the current state of the gallery Image Version. + /// Gets the current state of the gallery image version. /// /// /// The provisioning state, which only appears in the response. diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageVersionPublishingProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageVersionPublishingProfile.cs index 6881266310aa..d047e097275a 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageVersionPublishingProfile.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageVersionPublishingProfile.cs @@ -15,7 +15,7 @@ namespace Microsoft.Azure.Management.Compute.Models using System.Linq; /// - /// The publishing profile of a gallery Image Version. + /// The publishing profile of a gallery image Version. /// public partial class GalleryImageVersionPublishingProfile : GalleryArtifactPublishingProfileBase { @@ -43,9 +43,9 @@ public GalleryImageVersionPublishingProfile() /// deployed from the latest version of the Image Definition won't use /// this Image Version. /// The timestamp for when the gallery - /// Image Version is published. + /// image version is published. /// The end of life date of the gallery - /// Image Version. This property can be used for decommissioning + /// image version. This property can be used for decommissioning /// purposes. This property is updatable. /// Specifies the storage account type /// to be used to store the image. This property is not updatable. 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 95a7c06e84e8..174e5218e0fe 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 @@ -18,7 +18,7 @@ namespace Microsoft.Azure.Management.Compute.Models using System.Linq; /// - /// Specifies information about the gallery Image Version that you want to + /// Specifies information about the gallery image version that you want to /// update. /// [Rest.Serialization.JsonTransformation] @@ -40,7 +40,7 @@ public GalleryImageVersionUpdate() /// Resource type /// Resource tags /// The current state of the gallery - /// Image Version. + /// image version. public GalleryImageVersionUpdate(GalleryImageVersionStorageProfile storageProfile, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), GalleryImageVersionPublishingProfile publishingProfile = default(GalleryImageVersionPublishingProfile), string provisioningState = default(string), ReplicationStatus replicationStatus = default(ReplicationStatus)) : base(id, name, type, tags) { @@ -62,7 +62,7 @@ public GalleryImageVersionUpdate() public GalleryImageVersionPublishingProfile PublishingProfile { get; set; } /// - /// Gets the current state of the gallery Image Version. + /// Gets the current state of the gallery image version. /// /// /// The provisioning state, which only appears in the response. diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GallerySharingPermissionTypes.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GallerySharingPermissionTypes.cs new file mode 100644 index 000000000000..22f0125b9557 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GallerySharingPermissionTypes.cs @@ -0,0 +1,22 @@ +// +// 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 GallerySharingPermissionTypes. + /// + public static class GallerySharingPermissionTypes + { + public const string Private = "Private"; + public const string Groups = "Groups"; + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryUpdate.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryUpdate.cs index e46c769da8b3..23ea5f90f3c5 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryUpdate.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryUpdate.cs @@ -43,12 +43,13 @@ public GalleryUpdate() /// Gallery resource. This property is updatable. /// The current state of the /// gallery. - public GalleryUpdate(string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string description = default(string), GalleryIdentifier identifier = default(GalleryIdentifier), string provisioningState = default(string)) + public GalleryUpdate(string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string description = default(string), GalleryIdentifier identifier = default(GalleryIdentifier), string provisioningState = default(string), SharingProfile sharingProfile = default(SharingProfile)) : base(id, name, type, tags) { Description = description; Identifier = identifier; ProvisioningState = provisioningState; + SharingProfile = sharingProfile; CustomInit(); } @@ -80,5 +81,10 @@ public GalleryUpdate() [JsonProperty(PropertyName = "properties.provisioningState")] public string ProvisioningState { get; private set; } + /// + /// + [JsonProperty(PropertyName = "properties.sharingProfile")] + public SharingProfile SharingProfile { get; set; } + } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ImagePurchasePlan.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ImagePurchasePlan.cs index 8c15c2873d2e..491af12db0e4 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ImagePurchasePlan.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ImagePurchasePlan.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.Management.Compute.Models using System.Linq; /// - /// Describes the gallery Image Definition purchase plan. This is used by + /// Describes the gallery image definition purchase plan. This is used by /// marketplace images. /// public partial class ImagePurchasePlan diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PirResource.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PirResource.cs new file mode 100644 index 000000000000..7a1e494e0651 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PirResource.cs @@ -0,0 +1,59 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// The Resource model definition. + /// + public partial class PirResource + { + /// + /// Initializes a new instance of the PirResource class. + /// + public PirResource() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PirResource class. + /// + /// Resource name + /// Resource location + public PirResource(string name = default(string), string location = default(string)) + { + Name = name; + Location = location; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets resource name + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// + /// Gets resource location + /// + [JsonProperty(PropertyName = "location")] + public string Location { get; private set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PirSharedGalleryResource.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PirSharedGalleryResource.cs new file mode 100644 index 000000000000..1ee9785ad48c --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PirSharedGalleryResource.cs @@ -0,0 +1,58 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Base information about the shared gallery resource in pir. + /// + [Rest.Serialization.JsonTransformation] + public partial class PirSharedGalleryResource : PirResource + { + /// + /// Initializes a new instance of the PirSharedGalleryResource class. + /// + public PirSharedGalleryResource() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PirSharedGalleryResource class. + /// + /// Resource name + /// Resource location + /// The unique id of this shared + /// gallery. + public PirSharedGalleryResource(string name = default(string), string location = default(string), string uniqueId = default(string)) + : base(name, location) + { + UniqueId = uniqueId; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the unique id of this shared gallery. + /// + [JsonProperty(PropertyName = "identifier.uniqueId")] + public string UniqueId { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RegionalReplicationStatus.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RegionalReplicationStatus.cs index 1723a9663fe3..a40af552a406 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RegionalReplicationStatus.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RegionalReplicationStatus.cs @@ -29,7 +29,7 @@ public RegionalReplicationStatus() /// /// Initializes a new instance of the RegionalReplicationStatus class. /// - /// The region to which the gallery Image Version + /// The region to which the gallery image version /// is being replicated to. /// This is the regional replication state. /// Possible values include: 'Unknown', 'Replicating', 'Completed', @@ -53,7 +53,7 @@ public RegionalReplicationStatus() partial void CustomInit(); /// - /// Gets the region to which the gallery Image Version is being + /// Gets the region to which the gallery image version is being /// replicated to. /// [JsonProperty(PropertyName = "region")] diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ReplicationStatus.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ReplicationStatus.cs index 17e4a4ad55a5..5263ab577613 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ReplicationStatus.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ReplicationStatus.cs @@ -16,7 +16,7 @@ namespace Microsoft.Azure.Management.Compute.Models using System.Linq; /// - /// This is the replication status of the gallery Image Version. + /// This is the replication status of the gallery image version. /// public partial class ReplicationStatus { diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SelectPermissions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SelectPermissions.cs new file mode 100644 index 000000000000..dcd358cd68e3 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SelectPermissions.cs @@ -0,0 +1,21 @@ +// +// 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 SelectPermissions. + /// + public static class SelectPermissions + { + public const string Permissions = "Permissions"; + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGallery.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGallery.cs new file mode 100644 index 000000000000..aef86d0b185c --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGallery.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; + + /// + /// Specifies information about the Shared Gallery that you want to create + /// or update. + /// + public partial class SharedGallery : PirSharedGalleryResource + { + /// + /// Initializes a new instance of the SharedGallery class. + /// + public SharedGallery() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the SharedGallery class. + /// + /// Resource name + /// Resource location + /// The unique id of this shared + /// gallery. + public SharedGallery(string name = default(string), string location = default(string), string uniqueId = default(string)) + : base(name, location, uniqueId) + { + 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/SharedGalleryImage.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGalleryImage.cs new file mode 100644 index 000000000000..e64cdf38245e --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGalleryImage.cs @@ -0,0 +1,157 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Specifies information about the gallery image definition that you want + /// to create or update. + /// + [Rest.Serialization.JsonTransformation] + public partial class SharedGalleryImage : PirSharedGalleryResource + { + /// + /// Initializes a new instance of the SharedGalleryImage class. + /// + public SharedGalleryImage() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the SharedGalleryImage class. + /// + /// This property allows you to specify the type + /// of the OS that is included in the disk when creating a VM from a + /// managed image. <br><br> Possible values are: + /// <br><br> **Windows** <br><br> **Linux**. + /// Possible values include: 'Windows', 'Linux' + /// This property allows the user to specify + /// whether the virtual machines created under this image are + /// 'Generalized' or 'Specialized'. Possible values include: + /// 'Generalized', 'Specialized' + /// Resource name + /// Resource location + /// The unique id of this shared + /// gallery. + /// The end of life date of the gallery + /// image definition. This property can be used for decommissioning + /// purposes. This property is updatable. + /// The hypervisor generation of the + /// Virtual Machine. Applicable to OS disks only. Possible values + /// include: 'V1', 'V2' + /// A list of gallery image features. + public SharedGalleryImage(OperatingSystemTypes osType, OperatingSystemStateTypes osState, GalleryImageIdentifier identifier, string name = default(string), string location = default(string), string uniqueId = default(string), System.DateTime? endOfLifeDate = default(System.DateTime?), RecommendedMachineConfiguration recommended = default(RecommendedMachineConfiguration), Disallowed disallowed = default(Disallowed), string hyperVGeneration = default(string), IList features = default(IList), ImagePurchasePlan purchasePlan = default(ImagePurchasePlan)) + : base(name, location, uniqueId) + { + OsType = osType; + OsState = osState; + EndOfLifeDate = endOfLifeDate; + Identifier = identifier; + Recommended = recommended; + Disallowed = disallowed; + HyperVGeneration = hyperVGeneration; + Features = features; + PurchasePlan = purchasePlan; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets this property allows you to specify the type of the OS + /// that is included in the disk when creating a VM from a managed + /// image. &lt;br&gt;&lt;br&gt; Possible values are: + /// &lt;br&gt;&lt;br&gt; **Windows** + /// &lt;br&gt;&lt;br&gt; **Linux**. Possible values + /// include: 'Windows', 'Linux' + /// + [JsonProperty(PropertyName = "properties.osType")] + public OperatingSystemTypes OsType { get; set; } + + /// + /// Gets or sets this property allows the user to specify whether the + /// virtual machines created under this image are 'Generalized' or + /// 'Specialized'. Possible values include: 'Generalized', + /// 'Specialized' + /// + [JsonProperty(PropertyName = "properties.osState")] + public OperatingSystemStateTypes OsState { get; set; } + + /// + /// Gets or sets the end of life date of the gallery image definition. + /// This property can be used for decommissioning purposes. This + /// property is updatable. + /// + [JsonProperty(PropertyName = "properties.endOfLifeDate")] + public System.DateTime? EndOfLifeDate { get; set; } + + /// + /// + [JsonProperty(PropertyName = "properties.identifier")] + public GalleryImageIdentifier Identifier { get; set; } + + /// + /// + [JsonProperty(PropertyName = "properties.recommended")] + public RecommendedMachineConfiguration Recommended { get; set; } + + /// + /// + [JsonProperty(PropertyName = "properties.disallowed")] + public Disallowed Disallowed { get; set; } + + /// + /// Gets or sets the hypervisor generation of the Virtual Machine. + /// Applicable to OS disks only. Possible values include: 'V1', 'V2' + /// + [JsonProperty(PropertyName = "properties.hyperVGeneration")] + public string HyperVGeneration { get; set; } + + /// + /// Gets or sets a list of gallery image features. + /// + [JsonProperty(PropertyName = "properties.features")] + public IList Features { get; set; } + + /// + /// + [JsonProperty(PropertyName = "properties.purchasePlan")] + public ImagePurchasePlan PurchasePlan { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Identifier == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Identifier"); + } + if (Identifier != null) + { + Identifier.Validate(); + } + } + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGalleryImageVersion.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGalleryImageVersion.cs new file mode 100644 index 000000000000..b51fcbd0b480 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGalleryImageVersion.cs @@ -0,0 +1,76 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Specifies information about the gallery image version that you want to + /// create or update. + /// + [Rest.Serialization.JsonTransformation] + public partial class SharedGalleryImageVersion : PirSharedGalleryResource + { + /// + /// Initializes a new instance of the SharedGalleryImageVersion class. + /// + public SharedGalleryImageVersion() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the SharedGalleryImageVersion class. + /// + /// Resource name + /// Resource location + /// The unique id of this shared + /// gallery. + /// The published date of the gallery image + /// version Definition. This property can be used for decommissioning + /// purposes. This property is updatable. + /// The end of life date of the gallery + /// image version Definition. This property can be used for + /// decommissioning purposes. This property is updatable. + public SharedGalleryImageVersion(string name = default(string), string location = default(string), string uniqueId = default(string), System.DateTime? publishedDate = default(System.DateTime?), System.DateTime? endOfLifeDate = default(System.DateTime?)) + : base(name, location, uniqueId) + { + PublishedDate = publishedDate; + EndOfLifeDate = endOfLifeDate; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the published date of the gallery image version + /// Definition. This property can be used for decommissioning purposes. + /// This property is updatable. + /// + [JsonProperty(PropertyName = "properties.publishedDate")] + public System.DateTime? PublishedDate { get; set; } + + /// + /// Gets or sets the end of life date of the gallery image version + /// Definition. This property can be used for decommissioning purposes. + /// This property is updatable. + /// + [JsonProperty(PropertyName = "properties.endOfLifeDate")] + public System.DateTime? EndOfLifeDate { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedToValues.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedToValues.cs new file mode 100644 index 000000000000..463c15183c04 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedToValues.cs @@ -0,0 +1,21 @@ +// +// 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 SharedToValues. + /// + public static class SharedToValues + { + public const string Tenant = "tenant"; + } +} 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 new file mode 100644 index 000000000000..772a9e641f95 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingProfile.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.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Profile for gallery sharing to subscription or tenant + /// + public partial class SharingProfile + { + /// + /// Initializes a new instance of the SharingProfile class. + /// + public SharingProfile() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the SharingProfile class. + /// + /// This property allows you to specify the + /// permission of sharing gallery. <br><br> Possible values + /// are: <br><br> **Private** <br><br> + /// **Groups**. Possible values include: 'Private', 'Groups' + /// A list of sharing profile groups. + public SharingProfile(string permissions = default(string), IList groups = default(IList)) + { + Permissions = permissions; + Groups = groups; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets this property allows you to specify the permission of + /// sharing gallery. &lt;br&gt;&lt;br&gt; Possible + /// values are: &lt;br&gt;&lt;br&gt; **Private** + /// &lt;br&gt;&lt;br&gt; **Groups**. Possible values + /// include: 'Private', 'Groups' + /// + [JsonProperty(PropertyName = "permissions")] + public string Permissions { get; set; } + + /// + /// Gets a list of sharing profile groups. + /// + [JsonProperty(PropertyName = "groups")] + public IList Groups { get; private set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingProfileGroup.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingProfileGroup.cs new file mode 100644 index 000000000000..7a8e4df6262c --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingProfileGroup.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; + + /// + /// Group of the gallery sharing profile + /// + public partial class SharingProfileGroup + { + /// + /// Initializes a new instance of the SharingProfileGroup class. + /// + public SharingProfileGroup() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the SharingProfileGroup class. + /// + /// This property allows you to specify the type of + /// sharing group. <br><br> Possible values are: + /// <br><br> **Subscriptions** <br><br> + /// **AADTenants**. Possible values include: 'Subscriptions', + /// 'AADTenants' + /// A list of subscription/tenant ids the gallery is + /// aimed to be shared to. + public SharingProfileGroup(string type = default(string), IList ids = default(IList)) + { + Type = type; + Ids = ids; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets this property allows you to specify the type of + /// sharing group. &lt;br&gt;&lt;br&gt; Possible values + /// are: &lt;br&gt;&lt;br&gt; **Subscriptions** + /// &lt;br&gt;&lt;br&gt; **AADTenants**. Possible + /// values include: 'Subscriptions', 'AADTenants' + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; set; } + + /// + /// Gets or sets a list of subscription/tenant ids the gallery is aimed + /// to be shared to. + /// + [JsonProperty(PropertyName = "ids")] + public IList Ids { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingProfileGroupTypes.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingProfileGroupTypes.cs new file mode 100644 index 000000000000..1f1724bed836 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingProfileGroupTypes.cs @@ -0,0 +1,22 @@ +// +// 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 SharingProfileGroupTypes. + /// + public static class SharingProfileGroupTypes + { + public const string Subscriptions = "Subscriptions"; + public const string AADTenants = "AADTenants"; + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingUpdate.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingUpdate.cs new file mode 100644 index 000000000000..a51aa0ad30dc --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingUpdate.cs @@ -0,0 +1,85 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Specifies information about the gallery sharing profile update. + /// + public partial class SharingUpdate : IResource + { + /// + /// Initializes a new instance of the SharingUpdate class. + /// + public SharingUpdate() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the SharingUpdate class. + /// + /// This property allows you to specify the + /// operation type of gallery sharing update. <br><br> + /// Possible values are: <br><br> **Add** + /// <br><br> **Remove** <br><br> **Reset**. + /// Possible values include: 'Add', 'Remove', 'Reset' + /// A list of sharing profile groups. + public SharingUpdate(string operationType, IList groups = default(IList)) + { + OperationType = operationType; + Groups = groups; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets this property allows you to specify the operation type + /// of gallery sharing update. &lt;br&gt;&lt;br&gt; + /// Possible values are: &lt;br&gt;&lt;br&gt; **Add** + /// &lt;br&gt;&lt;br&gt; **Remove** + /// &lt;br&gt;&lt;br&gt; **Reset**. Possible values + /// include: 'Add', 'Remove', 'Reset' + /// + [JsonProperty(PropertyName = "operationType")] + public string OperationType { get; set; } + + /// + /// Gets or sets a list of sharing profile groups. + /// + [JsonProperty(PropertyName = "groups")] + public IList Groups { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (OperationType == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "OperationType"); + } + } + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingUpdateOperationTypes.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingUpdateOperationTypes.cs new file mode 100644 index 000000000000..821acf46873f --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingUpdateOperationTypes.cs @@ -0,0 +1,23 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + + /// + /// Defines values for SharingUpdateOperationTypes. + /// + public static class SharingUpdateOperationTypes + { + public const string Add = "Add"; + public const string Remove = "Remove"; + public const string Reset = "Reset"; + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SdkInfo_ComputeManagementClient.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SdkInfo_ComputeManagementClient.cs index feef0f055adb..a4713a4eba45 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SdkInfo_ComputeManagementClient.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SdkInfo_ComputeManagementClient.cs @@ -25,16 +25,20 @@ public static IEnumerable> ApiInfo_ComputeManageme new Tuple("Compute", "DiskAccesses", "2020-06-30"), new Tuple("Compute", "DiskEncryptionSets", "2020-06-30"), new Tuple("Compute", "Disks", "2020-06-30"), - new Tuple("Compute", "Galleries", "2019-12-01"), - new Tuple("Compute", "GalleryApplicationVersions", "2019-12-01"), - new Tuple("Compute", "GalleryApplications", "2019-12-01"), - new Tuple("Compute", "GalleryImageVersions", "2019-12-01"), - new Tuple("Compute", "GalleryImages", "2019-12-01"), + new Tuple("Compute", "Galleries", "2020-09-30"), + new Tuple("Compute", "GalleryApplicationVersions", "2020-09-30"), + new Tuple("Compute", "GalleryApplications", "2020-09-30"), + new Tuple("Compute", "GalleryImageVersions", "2020-09-30"), + new Tuple("Compute", "GalleryImages", "2020-09-30"), + new Tuple("Compute", "GallerySharingProfile", "2020-09-30"), new Tuple("Compute", "Images", "2020-06-01"), new Tuple("Compute", "LogAnalytics", "2020-06-01"), new Tuple("Compute", "Operations", "2020-06-01"), new Tuple("Compute", "ProximityPlacementGroups", "2020-06-01"), new Tuple("Compute", "ResourceSkus", "2019-04-01"), + new Tuple("Compute", "SharedGalleries", "2020-09-30"), + new Tuple("Compute", "SharedGalleryImageVersions", "2020-09-30"), + new Tuple("Compute", "SharedGalleryImages", "2020-09-30"), new Tuple("Compute", "Snapshots", "2020-06-30"), new Tuple("Compute", "SshPublicKeys", "2020-06-01"), new Tuple("Compute", "Usage", "2020-06-01"), @@ -53,16 +57,5 @@ public static IEnumerable> ApiInfo_ComputeManageme }.AsEnumerable(); } } - // BEGIN: Code Generation Metadata Section - public static readonly String AutoRestVersion = "v2"; - public static readonly String AutoRestBootStrapperVersion = "autorest@2.0.4413"; - public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/compute/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=E:\\azure-sdk-for-net\\sdk"; - public static readonly String GithubForkName = "Azure"; - public static readonly String GithubBranchName = "master"; - public static readonly String GithubCommidId = "1959aa63dd7a626aac36cc0e6b8c656dd2c1791d"; - public static readonly String CodeGenerationErrors = ""; - public static readonly String GithubRepoName = "azure-rest-api-specs"; - // END: Code Generation Metadata Section } } - diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleriesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleriesOperations.cs new file mode 100644 index 000000000000..409b39892dba --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleriesOperations.cs @@ -0,0 +1,615 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// SharedGalleriesOperations operations. + /// + internal partial class SharedGalleriesOperations : IServiceOperations, ISharedGalleriesOperations + { + /// + /// Initializes a new instance of the SharedGalleriesOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal SharedGalleriesOperations(ComputeManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the ComputeManagementClient + /// + public ComputeManagementClient Client { get; private set; } + + /// + /// List shared galleries by subscription id or tenant id. + /// + /// + /// Resource location. + /// + /// + /// The query parameter to decide what shared galleries to fetch when doing + /// listing operations. Possible values include: 'tenant' + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListWithHttpMessagesAsync(string location, string sharedTo = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "location"); + } + string apiVersion = "2020-09-30"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("location", location); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("sharedTo", sharedTo); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/sharedGalleries").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (sharedTo != null) + { + _queryParameters.Add(string.Format("sharedTo={0}", System.Uri.EscapeDataString(sharedTo))); + } + 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; + } + + /// + /// Get a shared gallery by subscription id or tenant id. + /// + /// + /// Resource location. + /// + /// + /// The unique name of the Shared Gallery. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string location, string galleryUniqueName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "location"); + } + if (galleryUniqueName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "galleryUniqueName"); + } + string apiVersion = "2020-09-30"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("location", location); + tracingParameters.Add("galleryUniqueName", galleryUniqueName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/sharedGalleries/{galleryUniqueName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); + _url = _url.Replace("{galleryUniqueName}", System.Uri.EscapeDataString(galleryUniqueName)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// List shared galleries by subscription id or tenant id. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleriesOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleriesOperationsExtensions.cs new file mode 100644 index 000000000000..fbc46821ac94 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleriesOperationsExtensions.cs @@ -0,0 +1,141 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for SharedGalleriesOperations. + /// + public static partial class SharedGalleriesOperationsExtensions + { + /// + /// List shared galleries by subscription id or tenant id. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Resource location. + /// + /// + /// The query parameter to decide what shared galleries to fetch when doing + /// listing operations. Possible values include: 'tenant' + /// + public static IPage List(this ISharedGalleriesOperations operations, string location, string sharedTo = default(string)) + { + return operations.ListAsync(location, sharedTo).GetAwaiter().GetResult(); + } + + /// + /// List shared galleries by subscription id or tenant id. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Resource location. + /// + /// + /// The query parameter to decide what shared galleries to fetch when doing + /// listing operations. Possible values include: 'tenant' + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this ISharedGalleriesOperations operations, string location, string sharedTo = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(location, sharedTo, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Get a shared gallery by subscription id or tenant id. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Resource location. + /// + /// + /// The unique name of the Shared Gallery. + /// + public static SharedGallery Get(this ISharedGalleriesOperations operations, string location, string galleryUniqueName) + { + return operations.GetAsync(location, galleryUniqueName).GetAwaiter().GetResult(); + } + + /// + /// Get a shared gallery by subscription id or tenant id. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Resource location. + /// + /// + /// The unique name of the Shared Gallery. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this ISharedGalleriesOperations operations, string location, string galleryUniqueName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(location, galleryUniqueName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// List shared galleries by subscription id or tenant id. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this ISharedGalleriesOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// List shared galleries by subscription id or tenant id. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListNextAsync(this ISharedGalleriesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleryImageVersionsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleryImageVersionsOperations.cs new file mode 100644 index 000000000000..f86e48b89e02 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleryImageVersionsOperations.cs @@ -0,0 +1,656 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// SharedGalleryImageVersionsOperations operations. + /// + internal partial class SharedGalleryImageVersionsOperations : IServiceOperations, ISharedGalleryImageVersionsOperations + { + /// + /// Initializes a new instance of the SharedGalleryImageVersionsOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal SharedGalleryImageVersionsOperations(ComputeManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the ComputeManagementClient + /// + public ComputeManagementClient Client { get; private set; } + + /// + /// List shared gallery image versions by subscription id or tenant id. + /// + /// + /// Resource location. + /// + /// + /// The unique name of the Shared Gallery. + /// + /// + /// The name of the Shared Gallery Image Definition from which the Image + /// Versions are to be listed. + /// + /// + /// The query parameter to decide what shared galleries to fetch when doing + /// listing operations. Possible values include: 'tenant' + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListWithHttpMessagesAsync(string location, string galleryUniqueName, string galleryImageName, string sharedTo = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "location"); + } + if (galleryUniqueName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "galleryUniqueName"); + } + if (galleryImageName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageName"); + } + string apiVersion = "2020-09-30"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("location", location); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("galleryUniqueName", galleryUniqueName); + tracingParameters.Add("galleryImageName", galleryImageName); + tracingParameters.Add("sharedTo", sharedTo); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/sharedGalleries/{galleryUniqueName}/images/{galleryImageName}/versions").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); + _url = _url.Replace("{galleryUniqueName}", System.Uri.EscapeDataString(galleryUniqueName)); + _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 (sharedTo != null) + { + _queryParameters.Add(string.Format("sharedTo={0}", System.Uri.EscapeDataString(sharedTo))); + } + 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; + } + + /// + /// Get a shared gallery image version by subscription id or tenant id. + /// + /// + /// Resource location. + /// + /// + /// The unique name of the Shared Gallery. + /// + /// + /// The name of the Shared Gallery Image Definition from which the Image + /// Versions are to be listed. + /// + /// + /// The name of the gallery image version to be created. Needs to follow + /// semantic version name pattern: The allowed characters are digit and period. + /// Digits must be within the range of a 32-bit integer. Format: + /// <MajorVersion>.<MinorVersion>.<Patch> + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string location, string galleryUniqueName, string galleryImageName, string galleryImageVersionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "location"); + } + if (galleryUniqueName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "galleryUniqueName"); + } + if (galleryImageName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageName"); + } + if (galleryImageVersionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageVersionName"); + } + string apiVersion = "2020-09-30"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("location", location); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("galleryUniqueName", galleryUniqueName); + tracingParameters.Add("galleryImageName", galleryImageName); + tracingParameters.Add("galleryImageVersionName", galleryImageVersionName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/sharedGalleries/{galleryUniqueName}/images/{galleryImageName}/versions/{galleryImageVersionName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); + _url = _url.Replace("{galleryUniqueName}", System.Uri.EscapeDataString(galleryUniqueName)); + _url = _url.Replace("{galleryImageName}", System.Uri.EscapeDataString(galleryImageName)); + _url = _url.Replace("{galleryImageVersionName}", System.Uri.EscapeDataString(galleryImageVersionName)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// List shared gallery image versions by subscription id or tenant id. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleryImageVersionsOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleryImageVersionsOperationsExtensions.cs new file mode 100644 index 000000000000..30ce93c9da32 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleryImageVersionsOperationsExtensions.cs @@ -0,0 +1,175 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for SharedGalleryImageVersionsOperations. + /// + public static partial class SharedGalleryImageVersionsOperationsExtensions + { + /// + /// List shared gallery image versions by subscription id or tenant id. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Resource location. + /// + /// + /// The unique name of the Shared Gallery. + /// + /// + /// The name of the Shared Gallery Image Definition from which the Image + /// Versions are to be listed. + /// + /// + /// The query parameter to decide what shared galleries to fetch when doing + /// listing operations. Possible values include: 'tenant' + /// + public static IPage List(this ISharedGalleryImageVersionsOperations operations, string location, string galleryUniqueName, string galleryImageName, string sharedTo = default(string)) + { + return operations.ListAsync(location, galleryUniqueName, galleryImageName, sharedTo).GetAwaiter().GetResult(); + } + + /// + /// List shared gallery image versions by subscription id or tenant id. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Resource location. + /// + /// + /// The unique name of the Shared Gallery. + /// + /// + /// The name of the Shared Gallery Image Definition from which the Image + /// Versions are to be listed. + /// + /// + /// The query parameter to decide what shared galleries to fetch when doing + /// listing operations. Possible values include: 'tenant' + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this ISharedGalleryImageVersionsOperations operations, string location, string galleryUniqueName, string galleryImageName, string sharedTo = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(location, galleryUniqueName, galleryImageName, sharedTo, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Get a shared gallery image version by subscription id or tenant id. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Resource location. + /// + /// + /// The unique name of the Shared Gallery. + /// + /// + /// The name of the Shared Gallery Image Definition from which the Image + /// Versions are to be listed. + /// + /// + /// The name of the gallery image version to be created. Needs to follow + /// semantic version name pattern: The allowed characters are digit and period. + /// Digits must be within the range of a 32-bit integer. Format: + /// <MajorVersion>.<MinorVersion>.<Patch> + /// + public static SharedGalleryImageVersion Get(this ISharedGalleryImageVersionsOperations operations, string location, string galleryUniqueName, string galleryImageName, string galleryImageVersionName) + { + return operations.GetAsync(location, galleryUniqueName, galleryImageName, galleryImageVersionName).GetAwaiter().GetResult(); + } + + /// + /// Get a shared gallery image version by subscription id or tenant id. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Resource location. + /// + /// + /// The unique name of the Shared Gallery. + /// + /// + /// The name of the Shared Gallery Image Definition from which the Image + /// Versions are to be listed. + /// + /// + /// The name of the gallery image version to be created. Needs to follow + /// semantic version name pattern: The allowed characters are digit and period. + /// Digits must be within the range of a 32-bit integer. Format: + /// <MajorVersion>.<MinorVersion>.<Patch> + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this ISharedGalleryImageVersionsOperations operations, string location, string galleryUniqueName, string galleryImageName, string galleryImageVersionName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(location, galleryUniqueName, galleryImageName, galleryImageVersionName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// List shared gallery image versions by subscription id or tenant id. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this ISharedGalleryImageVersionsOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// List shared gallery image versions by subscription id or tenant id. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListNextAsync(this ISharedGalleryImageVersionsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleryImagesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleryImagesOperations.cs new file mode 100644 index 000000000000..e6d129ddf34d --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleryImagesOperations.cs @@ -0,0 +1,634 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// SharedGalleryImagesOperations operations. + /// + internal partial class SharedGalleryImagesOperations : IServiceOperations, ISharedGalleryImagesOperations + { + /// + /// Initializes a new instance of the SharedGalleryImagesOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal SharedGalleryImagesOperations(ComputeManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the ComputeManagementClient + /// + public ComputeManagementClient Client { get; private set; } + + /// + /// List shared gallery images by subscription id or tenant id. + /// + /// + /// Resource location. + /// + /// + /// The unique name of the Shared Gallery. + /// + /// + /// The query parameter to decide what shared galleries to fetch when doing + /// listing operations. Possible values include: 'tenant' + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListWithHttpMessagesAsync(string location, string galleryUniqueName, string sharedTo = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "location"); + } + if (galleryUniqueName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "galleryUniqueName"); + } + string apiVersion = "2020-09-30"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("location", location); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("galleryUniqueName", galleryUniqueName); + tracingParameters.Add("sharedTo", sharedTo); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/sharedGalleries/{galleryUniqueName}/images").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); + _url = _url.Replace("{galleryUniqueName}", System.Uri.EscapeDataString(galleryUniqueName)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (sharedTo != null) + { + _queryParameters.Add(string.Format("sharedTo={0}", System.Uri.EscapeDataString(sharedTo))); + } + 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; + } + + /// + /// Get a shared gallery image by subscription id or tenant id. + /// + /// + /// Resource location. + /// + /// + /// The unique name of the Shared Gallery. + /// + /// + /// The name of the Shared Gallery Image Definition from which the Image + /// Versions are to be listed. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string location, string galleryUniqueName, string galleryImageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "location"); + } + if (galleryUniqueName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "galleryUniqueName"); + } + if (galleryImageName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageName"); + } + string apiVersion = "2020-09-30"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("location", location); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("galleryUniqueName", galleryUniqueName); + tracingParameters.Add("galleryImageName", galleryImageName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/sharedGalleries/{galleryUniqueName}/images/{galleryImageName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); + _url = _url.Replace("{galleryUniqueName}", System.Uri.EscapeDataString(galleryUniqueName)); + _url = _url.Replace("{galleryImageName}", System.Uri.EscapeDataString(galleryImageName)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// List shared gallery images by subscription id or tenant id. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleryImagesOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleryImagesOperationsExtensions.cs new file mode 100644 index 000000000000..6f7b97ca6e91 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleryImagesOperationsExtensions.cs @@ -0,0 +1,155 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for SharedGalleryImagesOperations. + /// + public static partial class SharedGalleryImagesOperationsExtensions + { + /// + /// List shared gallery images by subscription id or tenant id. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Resource location. + /// + /// + /// The unique name of the Shared Gallery. + /// + /// + /// The query parameter to decide what shared galleries to fetch when doing + /// listing operations. Possible values include: 'tenant' + /// + public static IPage List(this ISharedGalleryImagesOperations operations, string location, string galleryUniqueName, string sharedTo = default(string)) + { + return operations.ListAsync(location, galleryUniqueName, sharedTo).GetAwaiter().GetResult(); + } + + /// + /// List shared gallery images by subscription id or tenant id. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Resource location. + /// + /// + /// The unique name of the Shared Gallery. + /// + /// + /// The query parameter to decide what shared galleries to fetch when doing + /// listing operations. Possible values include: 'tenant' + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this ISharedGalleryImagesOperations operations, string location, string galleryUniqueName, string sharedTo = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(location, galleryUniqueName, sharedTo, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Get a shared gallery image by subscription id or tenant id. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Resource location. + /// + /// + /// The unique name of the Shared Gallery. + /// + /// + /// The name of the Shared Gallery Image Definition from which the Image + /// Versions are to be listed. + /// + public static SharedGalleryImage Get(this ISharedGalleryImagesOperations operations, string location, string galleryUniqueName, string galleryImageName) + { + return operations.GetAsync(location, galleryUniqueName, galleryImageName).GetAwaiter().GetResult(); + } + + /// + /// Get a shared gallery image by subscription id or tenant id. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Resource location. + /// + /// + /// The unique name of the Shared Gallery. + /// + /// + /// The name of the Shared Gallery Image Definition from which the Image + /// Versions are to be listed. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this ISharedGalleryImagesOperations operations, string location, string galleryUniqueName, string galleryImageName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(location, galleryUniqueName, galleryImageName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// List shared gallery images by subscription id or tenant id. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this ISharedGalleryImagesOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// List shared gallery images by subscription id or tenant id. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListNextAsync(this ISharedGalleryImagesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperations.cs index 7c170b6402a6..443773a98417 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperations.cs @@ -329,16 +329,19 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// The name of the virtual machine. /// + /// + /// Optional parameter to force delete virtual machines. + /// /// /// The headers that will be added to request. /// /// /// The cancellation token. /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request - AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmName, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmName, forceDeletion, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } @@ -2804,6 +2807,9 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// The name of the virtual machine. /// + /// + /// Optional parameter to force delete virtual machines. + /// /// /// Headers that will be added to request. /// @@ -2822,7 +2828,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -2846,6 +2852,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmName", vmName); + tracingParameters.Add("forceDeletion", forceDeletion); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); @@ -2857,6 +2864,10 @@ internal VirtualMachinesOperations(ComputeManagementClient client) _url = _url.Replace("{vmName}", System.Uri.EscapeDataString(vmName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); + if (forceDeletion != null) + { + _queryParameters.Add(string.Format("forceDeletion={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(forceDeletion, Client.SerializationSettings).Trim('"')))); + } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperationsExtensions.cs index 495ef93f9b68..17ea6694c4c7 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperationsExtensions.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperationsExtensions.cs @@ -213,9 +213,12 @@ public static VirtualMachine Update(this IVirtualMachinesOperations operations, /// /// The name of the virtual machine. /// - public static void Delete(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName) + /// + /// Optional parameter to force delete virtual machines. + /// + public static void Delete(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, bool? forceDeletion = default(bool?)) { - operations.DeleteAsync(resourceGroupName, vmName).GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, vmName, forceDeletion).GetAwaiter().GetResult(); } /// @@ -230,12 +233,15 @@ public static void Delete(this IVirtualMachinesOperations operations, string res /// /// The name of the virtual machine. /// + /// + /// Optional parameter to force delete virtual machines. + /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, bool? forceDeletion = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, vmName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, vmName, forceDeletion, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -1187,9 +1193,12 @@ public static VirtualMachine BeginUpdate(this IVirtualMachinesOperations operati /// /// The name of the virtual machine. /// - public static void BeginDelete(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName) + /// + /// Optional parameter to force delete virtual machines. + /// + public static void BeginDelete(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, bool? forceDeletion = default(bool?)) { - operations.BeginDeleteAsync(resourceGroupName, vmName).GetAwaiter().GetResult(); + operations.BeginDeleteAsync(resourceGroupName, vmName, forceDeletion).GetAwaiter().GetResult(); } /// @@ -1204,12 +1213,15 @@ public static void BeginDelete(this IVirtualMachinesOperations operations, strin /// /// The name of the virtual machine. /// + /// + /// Optional parameter to force delete virtual machines. + /// /// /// The cancellation token. /// - public static async Task BeginDeleteAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginDeleteAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, bool? forceDeletion = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmName, forceDeletion, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// From ab94c6d4009fc068d961a39bf8cf6ed3547d7d3a Mon Sep 17 00:00:00 2001 From: Kang Sun Date: Thu, 22 Oct 2020 15:03:33 -0700 Subject: [PATCH 02/27] add gallery application version update auto-generation --- .../Generated/IVirtualMachinesOperations.cs | 12 +-- ...leryApplicationVersionPublishingProfile.cs | 17 ++-- .../Generated/Models/UserArtifactManage.cs | 95 +++++++++++++++++++ .../Generated/Models/UserArtifactSource.cs | 30 +++--- .../Generated/VirtualMachinesOperations.cs | 19 +--- .../VirtualMachinesOperationsExtensions.cs | 30 ++---- 6 files changed, 133 insertions(+), 70 deletions(-) create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/UserArtifactManage.cs diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachinesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachinesOperations.cs index a0386139bd1e..00a60521e784 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachinesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachinesOperations.cs @@ -142,9 +142,6 @@ public partial interface IVirtualMachinesOperations /// /// The name of the virtual machine. /// - /// - /// Optional parameter to force delete virtual machines. - /// /// /// The headers that will be added to request. /// @@ -157,7 +154,7 @@ public partial interface IVirtualMachinesOperations /// /// Thrown when a required parameter is null /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Retrieves information about the model view or the instance view of /// a virtual machine. @@ -736,9 +733,6 @@ public partial interface IVirtualMachinesOperations /// /// The name of the virtual machine. /// - /// - /// Optional parameter to force delete virtual machines. - /// /// /// The headers that will be added to request. /// @@ -751,7 +745,7 @@ public partial interface IVirtualMachinesOperations /// /// Thrown when a required parameter is null /// - Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Converts virtual machine disks from blob-based to managed disks. /// Virtual machine must be stop-deallocated before invoking this @@ -1093,4 +1087,4 @@ public partial interface IVirtualMachinesOperations /// Task>> ListAllNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } -} +} \ No newline at end of file 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 f6e7ac008e70..90a4c08c1c33 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 @@ -53,16 +53,13 @@ public GalleryApplicationVersionPublishingProfile() /// to be used to store the image. This property is not updatable. /// Possible values include: 'Standard_LRS', 'Standard_ZRS', /// 'Premium_LRS' - /// Optional. May be used to help process - /// this file. The type of file contained in the source, e.g. zip, - /// json, etc. /// 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 contentType = default(string), bool? enableHealthCheck = default(bool?)) + public GalleryApplicationVersionPublishingProfile(UserArtifactSource source, IList targetRegions = default(IList), int? replicaCount = default(int?), bool? excludeFromLatest = default(bool?), System.DateTime? publishedDate = default(System.DateTime?), System.DateTime? endOfLifeDate = default(System.DateTime?), string storageAccountType = default(string), UserArtifactManage manageActions = default(UserArtifactManage), bool? enableHealthCheck = default(bool?)) : base(targetRegions, replicaCount, excludeFromLatest, publishedDate, endOfLifeDate, storageAccountType) { Source = source; - ContentType = contentType; + ManageActions = manageActions; EnableHealthCheck = enableHealthCheck; CustomInit(); } @@ -78,11 +75,9 @@ public GalleryApplicationVersionPublishingProfile() public UserArtifactSource Source { get; set; } /// - /// Gets or sets optional. May be used to help process this file. The - /// type of file contained in the source, e.g. zip, json, etc. /// - [JsonProperty(PropertyName = "contentType")] - public string ContentType { get; set; } + [JsonProperty(PropertyName = "manageActions")] + public UserArtifactManage ManageActions { get; set; } /// /// Gets or sets optional. Whether or not this application reports @@ -107,6 +102,10 @@ public virtual void Validate() { Source.Validate(); } + if (ManageActions != null) + { + ManageActions.Validate(); + } } } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/UserArtifactManage.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/UserArtifactManage.cs new file mode 100644 index 000000000000..c071bf5d91f4 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/UserArtifactManage.cs @@ -0,0 +1,95 @@ +// +// 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; + + public partial class UserArtifactManage + { + /// + /// Initializes a new instance of the UserArtifactManage class. + /// + public UserArtifactManage() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the UserArtifactManage class. + /// + /// Required. The path and arguments to install + /// the gallery application. This is limited to 4096 + /// characters. + /// Required. The path and arguments to remove the + /// gallery application. This is limited to 4096 characters. + /// Optional. The path and arguments to update the + /// gallery application. If not present, then update operation will + /// invoke remove command on the previous version and install command + /// on the current version of the gallery application. This is limited + /// to 4096 characters. + public UserArtifactManage(string install, string remove, string update = default(string)) + { + Install = install; + Remove = remove; + Update = update; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets required. The path and arguments to install the + /// gallery application. This is limited to 4096 characters. + /// + [JsonProperty(PropertyName = "install")] + public string Install { get; set; } + + /// + /// Gets or sets required. The path and arguments to remove the gallery + /// application. This is limited to 4096 characters. + /// + [JsonProperty(PropertyName = "remove")] + public string Remove { get; set; } + + /// + /// Gets or sets optional. The path and arguments to update the gallery + /// application. If not present, then update operation will invoke + /// remove command on the previous version and install command on the + /// current version of the gallery application. This is limited to 4096 + /// characters. + /// + [JsonProperty(PropertyName = "update")] + public string Update { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Install == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Install"); + } + if (Remove == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Remove"); + } + } + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/UserArtifactSource.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/UserArtifactSource.cs index a37d1ec81227..3af7ac1a8a5d 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/UserArtifactSource.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/UserArtifactSource.cs @@ -30,14 +30,15 @@ public UserArtifactSource() /// /// Initializes a new instance of the UserArtifactSource class. /// - /// Required. The fileName of the - /// artifact. /// Required. The mediaLink of the artifact, - /// must be a readable storage blob. - public UserArtifactSource(string fileName, string mediaLink) + /// must be a readable storage page blob. + /// Optional. The + /// defaultConfigurationLink of the artifact, must be a readable + /// storage page blob. + public UserArtifactSource(string mediaLink, string defaultConfigurationLink = default(string)) { - FileName = fileName; MediaLink = mediaLink; + DefaultConfigurationLink = defaultConfigurationLink; CustomInit(); } @@ -46,19 +47,20 @@ public UserArtifactSource(string fileName, string mediaLink) /// partial void CustomInit(); - /// - /// Gets or sets required. The fileName of the artifact. - /// - [JsonProperty(PropertyName = "fileName")] - public string FileName { get; set; } - /// /// Gets or sets required. The mediaLink of the artifact, must be a - /// readable storage blob. + /// readable storage page blob. /// [JsonProperty(PropertyName = "mediaLink")] public string MediaLink { get; set; } + /// + /// Gets or sets optional. The defaultConfigurationLink of the + /// artifact, must be a readable storage page blob. + /// + [JsonProperty(PropertyName = "defaultConfigurationLink")] + public string DefaultConfigurationLink { get; set; } + /// /// Validate the object. /// @@ -67,10 +69,6 @@ public UserArtifactSource(string fileName, string mediaLink) /// public virtual void Validate() { - if (FileName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "FileName"); - } if (MediaLink == null) { throw new ValidationException(ValidationRules.CannotBeNull, "MediaLink"); diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperations.cs index 443773a98417..b3870ca8987e 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperations.cs @@ -329,19 +329,16 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// The name of the virtual machine. /// - /// - /// Optional parameter to force delete virtual machines. - /// /// /// The headers that will be added to request. /// /// /// The cancellation token. /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request - AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmName, forceDeletion, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmName, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } @@ -2807,9 +2804,6 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// The name of the virtual machine. /// - /// - /// Optional parameter to force delete virtual machines. - /// /// /// Headers that will be added to request. /// @@ -2828,7 +2822,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -2852,7 +2846,6 @@ internal VirtualMachinesOperations(ComputeManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmName", vmName); - tracingParameters.Add("forceDeletion", forceDeletion); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); @@ -2864,10 +2857,6 @@ internal VirtualMachinesOperations(ComputeManagementClient client) _url = _url.Replace("{vmName}", System.Uri.EscapeDataString(vmName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (forceDeletion != null) - { - _queryParameters.Add(string.Format("forceDeletion={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(forceDeletion, Client.SerializationSettings).Trim('"')))); - } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -5499,4 +5488,4 @@ internal VirtualMachinesOperations(ComputeManagementClient client) } } -} +} \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperationsExtensions.cs index 17ea6694c4c7..6353d0c2129e 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperationsExtensions.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperationsExtensions.cs @@ -213,12 +213,9 @@ public static VirtualMachine Update(this IVirtualMachinesOperations operations, /// /// The name of the virtual machine. /// - /// - /// Optional parameter to force delete virtual machines. - /// - public static void Delete(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, bool? forceDeletion = default(bool?)) + public static void Delete(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName) { - operations.DeleteAsync(resourceGroupName, vmName, forceDeletion).GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, vmName).GetAwaiter().GetResult(); } /// @@ -233,15 +230,12 @@ public static VirtualMachine Update(this IVirtualMachinesOperations operations, /// /// The name of the virtual machine. /// - /// - /// Optional parameter to force delete virtual machines. - /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, bool? forceDeletion = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, vmName, forceDeletion, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, vmName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -1193,12 +1187,9 @@ public static VirtualMachine BeginUpdate(this IVirtualMachinesOperations operati /// /// The name of the virtual machine. /// - /// - /// Optional parameter to force delete virtual machines. - /// - public static void BeginDelete(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, bool? forceDeletion = default(bool?)) + public static void BeginDelete(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName) { - operations.BeginDeleteAsync(resourceGroupName, vmName, forceDeletion).GetAwaiter().GetResult(); + operations.BeginDeleteAsync(resourceGroupName, vmName).GetAwaiter().GetResult(); } /// @@ -1213,15 +1204,12 @@ public static VirtualMachine BeginUpdate(this IVirtualMachinesOperations operati /// /// The name of the virtual machine. /// - /// - /// Optional parameter to force delete virtual machines. - /// /// /// The cancellation token. /// - public static async Task BeginDeleteAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, bool? forceDeletion = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginDeleteAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmName, forceDeletion, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -1784,4 +1772,4 @@ public static IPage ListAllNext(this IVirtualMachinesOperations } } -} +} \ No newline at end of file From ecaa68e1980550ba1bc9d2481c3d4129b52f0fc9 Mon Sep 17 00:00:00 2001 From: Kang Sun Date: Thu, 22 Oct 2020 15:06:36 -0700 Subject: [PATCH 03/27] nit, add new line --- .../src/Generated/IVirtualMachinesOperations.cs | 2 +- .../src/Generated/VirtualMachinesOperations.cs | 2 +- .../src/Generated/VirtualMachinesOperationsExtensions.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachinesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachinesOperations.cs index 00a60521e784..cd0a8bbcdd18 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachinesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachinesOperations.cs @@ -1087,4 +1087,4 @@ public partial interface IVirtualMachinesOperations /// Task>> ListAllNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } -} \ No newline at end of file +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperations.cs index b3870ca8987e..7c170b6402a6 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperations.cs @@ -5488,4 +5488,4 @@ internal VirtualMachinesOperations(ComputeManagementClient client) } } -} \ No newline at end of file +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperationsExtensions.cs index 6353d0c2129e..495ef93f9b68 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperationsExtensions.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperationsExtensions.cs @@ -1772,4 +1772,4 @@ public static IPage ListAllNext(this IVirtualMachinesOperations } } -} \ No newline at end of file +} From 565c469fcd19f0519254c3acd38a6159366106a0 Mon Sep 17 00:00:00 2001 From: Kang Sun Date: Thu, 22 Oct 2020 17:53:57 -0700 Subject: [PATCH 04/27] update record json --- .../src/Properties/AssemblyInfo.cs | 4 +- .../tests/ScenarioTests/GalleryTests.cs | 6 +- .../GalleryApplicationVersion_CRUD_Tests.json | 1781 +++--- .../GalleryApplication_CRUD_Tests.json | 520 +- .../GalleryImageVersion_CRUD_Tests.json | 5126 ++++++----------- .../GalleryTests/GalleryImage_CRUD_Tests.json | 945 +-- .../GalleryTests/Gallery_CRUD_Tests.json | 853 +-- 7 files changed, 4183 insertions(+), 5052 deletions(-) diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Properties/AssemblyInfo.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Properties/AssemblyInfo.cs index cb8d666e3228..355cb2e67ba4 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Properties/AssemblyInfo.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Properties/AssemblyInfo.cs @@ -7,8 +7,8 @@ [assembly: AssemblyTitle("Microsoft Azure Compute Management Library")] [assembly: AssemblyDescription("Provides management functionality for Microsoft Azure Compute Resources.")] -[assembly: AssemblyVersion("40.0.0.0")] -[assembly: AssemblyFileVersion("40.0.0.0")] +[assembly: AssemblyVersion("41.0.0.0")] +[assembly: AssemblyFileVersion("41.0.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Microsoft Azure .NET SDK")] diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/GalleryTests.cs b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/GalleryTests.cs index 1aa9feb42775..3706d8491752 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/GalleryTests.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/GalleryTests.cs @@ -565,9 +565,13 @@ private GalleryApplicationVersion GetTestInputGalleryApplicationVersion(string a { Source = new UserArtifactSource { - FileName = "test.zip", MediaLink = applicationMediaLink }, + ManageActions = new UserArtifactManage + { + Install = "powershell -command \"Expand-Archive -Path test.zip -DestinationPath C:\\package\"", + Remove = "del C:\\package " + }, ReplicaCount = 1, StorageAccountType = StorageAccountType.StandardLRS, TargetRegions = new List { 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 a19940353198..e5ec4ca85621 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,51 +1,48 @@ { "Entries": [ { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg552?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg8861?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg4NjE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"galleryPsTestRg552\": \"2020-02-21 01:43:46Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"galleryPsTestRg8861\": \"2020-10-22 23:51:32Z\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "663004ef-1453-487a-9028-50796001c990" + "414fc783-67ca-45e4-82ec-1588bd67ad37" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "104" + "105" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:43:50 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-request-id": [ - "e59f39ce-e8e4-47fc-9ab0-ca48cb2c767b" + "daf536dc-d32d-40cc-abaa-06391e6a2c91" ], "x-ms-correlation-request-id": [ - "e59f39ce-e8e4-47fc-9ab0-ca48cb2c767b" + "daf536dc-d32d-40cc-abaa-06391e6a2c91" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T014351Z:e59f39ce-e8e4-47fc-9ab0-ca48cb2c767b" + "WESTUS:20201022T235135Z:daf536dc-d32d-40cc-abaa-06391e6a2c91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -53,8 +50,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:51:35 GMT" + ], "Content-Length": [ - "249" + "252" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,25 +63,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552\",\r\n \"name\": \"galleryPsTestRg552\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"galleryPsTestRg552\": \"2020-02-21 01:43:46Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861\",\r\n \"name\": \"galleryPsTestRg8861\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"galleryPsTestRg8861\": \"2020-10-22 23:51:32Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Storage/storageAccounts/saforgallery6204?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3NhZm9yZ2FsbGVyeTYyMDQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Storage/storageAccounts/saforgallery683?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg4NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnk2ODM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c262d983-a865-4960-9221-bc1749ff5aeb" + "4b9d8831-4447-4fc5-a74b-701477a7af49" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ], "Content-Type": [ @@ -95,62 +95,62 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:43:56 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/1bc1f82d-d2c9-4a08-85cc-f6b2738694ee?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/e581cd6e-39f5-4030-8e08-0260c2fcd57c?monitor=true&api-version=2015-06-15" ], "Retry-After": [ "17" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "1bc1f82d-d2c9-4a08-85cc-f6b2738694ee" + "e581cd6e-39f5-4030-8e08-0260c2fcd57c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "f02f1dd6-03a8-456b-8d35-f5be7e04ea22" + "7b859e68-ba73-4753-9823-c44379f84f12" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T014356Z:f02f1dd6-03a8-456b-8d35-f5be7e04ea22" + "WESTUS:20201022T235143Z:7b859e68-ba73-4753-9823-c44379f84f12" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 22 Oct 2020 23:51:43 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/1bc1f82d-d2c9-4a08-85cc-f6b2738694ee?monitor=true&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvMWJjMWY4MmQtZDJjOS00YTA4LTg1Y2MtZjZiMjczODY5NGVlP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/e581cd6e-39f5-4030-8e08-0260c2fcd57c?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZTU4MWNkNmUtMzlmNS00MDMwLThlMDgtMDI2MGMyZmNkNTdjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ] }, @@ -158,33 +158,33 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:44:13 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "b949b952-7040-4ed9-a7b0-188b37e3772b" + "4876d7e2-b994-4a53-8142-223247a427f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11999" ], "x-ms-correlation-request-id": [ - "6b9b0744-127e-4609-b635-71d736f4c9fe" + "63de28c9-f7d1-4862-99d8-232532da6ee5" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T014413Z:6b9b0744-127e-4609-b635-71d736f4c9fe" + "WESTUS:20201022T235200Z:63de28c9-f7d1-4862-99d8-232532da6ee5" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:52:00 GMT" + ], "Content-Length": [ "95" ], @@ -199,21 +199,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg4NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "23d4372f-af91-49d4-bf0f-8d418d7fd71a" + "465e055a-12d2-4c6b-99c4-85539cb9a973" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ] }, @@ -221,35 +221,35 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:44:23 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "3802b7b8-bc72-413b-a063-e27e83f86330" + "cf7a8a6e-3286-4cef-a20b-2aad7bc29db2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11998" ], "x-ms-correlation-request-id": [ - "5050003e-d8df-4a76-841b-e663a831f733" + "aeb3548a-34b4-40ec-b8b8-ccbd82c73b7a" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T014424Z:5050003e-d8df-4a76-841b-e663a831f733" + "WESTUS:20201022T235211Z:aeb3548a-34b4-40ec-b8b8-ccbd82c73b7a" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:52:11 GMT" + ], "Content-Length": [ - "775" + "770" ], "Content-Type": [ "application/json" @@ -258,25 +258,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Storage/storageAccounts/saforgallery6204\",\r\n \"name\": \"saforgallery6204\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-02-21T01:43:55.1988592Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery6204.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery6204.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery6204.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery6204.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Storage/storageAccounts/saforgallery683\",\r\n \"name\": \"saforgallery683\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-10-22T23:51:41.8500492Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery683.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery683.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery683.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery683.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Storage/storageAccounts/saforgallery6204?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3NhZm9yZ2FsbGVyeTYyMDQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Storage/storageAccounts/saforgallery683?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg4NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnk2ODM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "629c5824-c6d1-43ed-a769-fe22a0b0ea3b" + "71eedc32-991e-48c9-8d6f-9425de70b409" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ] }, @@ -284,35 +284,35 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:44:24 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "16273c4e-5ab3-4815-83e1-98912db90829" + "dcf2748b-54cc-45ec-92c5-5933c1e7a762" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11997" ], "x-ms-correlation-request-id": [ - "ee3a5485-55f9-44aa-a3b8-5b8805f453aa" + "7c5248b3-491b-4976-807c-419ae5f65502" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T014424Z:ee3a5485-55f9-44aa-a3b8-5b8805f453aa" + "WESTUS:20201022T235211Z:7c5248b3-491b-4976-807c-419ae5f65502" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:52:11 GMT" + ], "Content-Length": [ - "763" + "758" ], "Content-Type": [ "application/json" @@ -321,25 +321,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Storage/storageAccounts/saforgallery6204\",\r\n \"name\": \"saforgallery6204\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-02-21T01:43:55.1988592Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery6204.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery6204.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery6204.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery6204.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Storage/storageAccounts/saforgallery683\",\r\n \"name\": \"saforgallery683\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-10-22T23:51:41.8500492Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery683.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery683.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery683.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery683.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Storage/storageAccounts/saforgallery6204/listKeys?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3NhZm9yZ2FsbGVyeTYyMDQvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Storage/storageAccounts/saforgallery683/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg4NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnk2ODMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99042ea1-777b-4680-b5bd-ed2635ab09b2" + "d30188f4-5add-4bc7-89f9-5ec6315ee592" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ] }, @@ -347,33 +347,33 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:44:24 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "e2f1fd4a-bace-41dd-87c4-de79ab25061e" + "5c9cd176-4dd8-4fe6-b5b1-7ed19acc0cd5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], "x-ms-correlation-request-id": [ - "78b4dc3f-4049-462a-b12f-506cd8811c7e" + "5c0917b2-620e-4976-8fd3-399c6fa79d5b" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T014424Z:78b4dc3f-4049-462a-b12f-506cd8811c7e" + "WESTUS:20201022T235212Z:5c0917b2-620e-4976-8fd3-399c6fa79d5b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:52:11 GMT" + ], "Content-Length": [ "197" ], @@ -384,26 +384,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"key1\": \"2YSdKFz6VU6a5T/TWnnJ5Opibs0sdVhY0Xps8UxabKcZJqk5tH7THATfEjARpvzmducxQsv1KbYSYGeI8Rs68Q==\",\r\n \"key2\": \"xaxn1X1jsDD+5Sp+g2Ki0WW0bTWdvBvN4qT1QjfAMHCAtUCYHMdxJQpuqGy67/loLiEBvXNQLi+FA5oUjBrPng==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"YE3Yi4lqQq0S6+HXPWsKWWEpXXO0U2tFhPV4QTPart9B92s/KY7NzmYlMu9J13aLXC2NdoPELbJmDI29VWvuRg==\",\r\n \"key2\": \"kRorr+Vk6AjJ+VrTyIqJ3uA8tQiJlj8E0KhQONq9q3johw+OyApgo73yeLMhQmZb0hCrl9oKjgmun6Is0AOI/A==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTkyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg4NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxMDg/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\"\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bdcc1f4c-ba78-49e6-9e13-78246c775dfe" + "14f7e10c-060a-454d-a99f-1edb89a0d225" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -416,42 +416,45 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:44:34 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/1f58bfd9-0484-499c-b5b3-807faf96508f?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/388f7b7a-bdd9-4f9a-93a0-361917faa760?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "1f58bfd9-0484-499c-b5b3-807faf96508f" + "388f7b7a-bdd9-4f9a-93a0-361917faa760" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "52a13cd1-a754-4c29-817a-ac9c09872a79" + "861bdad6-ea23-440f-bd6b-f7e428661bce" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T014434Z:52a13cd1-a754-4c29-817a-ac9c09872a79" + "WESTUS:20201022T235224Z:861bdad6-ea23-440f-bd6b-f7e428661bce" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:52:23 GMT" + ], "Content-Length": [ - "510" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -460,57 +463,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery592\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY592\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery5108\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY5108\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Private\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/1f58bfd9-0484-499c-b5b3-807faf96508f?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xZjU4YmZkOS0wNDg0LTQ5OWMtYjViMy04MDdmYWY5NjUwOGY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/388f7b7a-bdd9-4f9a-93a0-361917faa760?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8zODhmN2I3YS1iZGQ5LTRmOWEtOTNhMC0zNjE5MTdmYWE3NjA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:45:04 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4198" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "7e591ab6-81ba-4ca1-8e12-3da5dcd90bbb" + "322abfc1-c42d-47a5-8a1f-aef62e58c58d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "e92e6a2e-6ede-4929-b36c-0432e8b6d7bd" + "d0f14f29-5a65-4f93-9a45-9df883977649" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T014505Z:e92e6a2e-6ede-4929-b36c-0432e8b6d7bd" + "WESTUS:20201022T235254Z:d0f14f29-5a65-4f93-9a45-9df883977649" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:52:53 GMT" + ], "Content-Length": [ "184" ], @@ -521,59 +527,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:44:32.9572378-08:00\",\r\n \"endTime\": \"2020-02-20T17:44:33.8322125-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1f58bfd9-0484-499c-b5b3-807faf96508f\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:52:21.9438768-07:00\",\r\n \"endTime\": \"2020-10-22T16:52:22.6782347-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"388f7b7a-bdd9-4f9a-93a0-361917faa760\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTkyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg4NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxMDg/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:45:05 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;345,Microsoft.Compute/GetGallery30Min;2495" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "7ddea389-1d4e-4f5f-bfdf-8a30bdb58ba7" + "19a137e0-df1f-4849-b890-b3bd812a2eb1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "b2704d8b-1c32-45f9-bac0-586618f8c9c1" + "9fd3adbc-80f2-4489-a364-f82d5076dfbe" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T014505Z:b2704d8b-1c32-45f9-bac0-586618f8c9c1" + "WESTUS:20201022T235254Z:9fd3adbc-80f2-4489-a364-f82d5076dfbe" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:52:53 GMT" + ], "Content-Length": [ - "511" + "515" ], "Content-Type": [ "application/json; charset=utf-8" @@ -582,26 +591,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery592\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY592\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery5108\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY5108\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTkyL2FwcGxpY2F0aW9ucy9nYWxsZXJ5UHNUZXN0R2FsbGVyeUFwcGxpY2F0aW9uNDUwNT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108/applications/galleryPsTestGalleryApplication2971?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg4NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxMDgvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24yOTcxP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\",\r\n \"supportedOSType\": \"Windows\"\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "12a57118-2738-4035-8404-a2cf9aa0331b" + "8e1908c0-1a9e-4ba7-a463-e54bc18fc894" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -614,39 +623,42 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:45:05 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateGalleryApplication3Min;149,Microsoft.Compute/CreateUpdateGalleryApplication30Min;749" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "71393f54-e206-45ee-893f-27593dea3f32" + "64cef88c-38eb-4b9f-9963-93b9c64b7ad1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-correlation-request-id": [ - "59940480-8366-44b7-a31a-2f1d2a043813" + "2f5002fb-5573-4dae-80ec-d5bf92cefbef" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T014505Z:59940480-8366-44b7-a31a-2f1d2a043813" + "WESTUS:20201022T235254Z:2f5002fb-5573-4dae-80ec-d5bf92cefbef" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:52:53 GMT" + ], "Content-Length": [ - "632" + "634" ], "Content-Type": [ "application/json; charset=utf-8" @@ -655,59 +667,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication4505\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication2971\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108/applications/galleryPsTestGalleryApplication2971\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTkyL2FwcGxpY2F0aW9ucy9nYWxsZXJ5UHNUZXN0R2FsbGVyeUFwcGxpY2F0aW9uNDUwNT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108/applications/galleryPsTestGalleryApplication2971?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg4NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxMDgvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24yOTcxP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:45:35 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGalleryApplication3Min;298,Microsoft.Compute/GetGalleryApplication30Min;1998" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "0d91ad30-81e4-48ea-a383-a86f99cfe323" + "cb0458ca-f8ba-4dc3-b7e7-ea867ccbf695" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "863b16b8-c99c-4b88-9d59-8ff73064552c" + "bab6f50c-e15e-4c66-bd21-f0121674ebfe" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T014536Z:863b16b8-c99c-4b88-9d59-8ff73064552c" + "WESTUS:20201022T235325Z:bab6f50c-e15e-4c66-bd21-f0121674ebfe" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:53:25 GMT" + ], "Content-Length": [ - "632" + "634" ], "Content-Type": [ "application/json; charset=utf-8" @@ -716,74 +731,77 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication4505\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication2971\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108/applications/galleryPsTestGalleryApplication2971\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTkyL2FwcGxpY2F0aW9ucy9nYWxsZXJ5UHNUZXN0R2FsbGVyeUFwcGxpY2F0aW9uNDUwNS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108/applications/galleryPsTestGalleryApplication2971/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg4NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxMDgvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24yOTcxL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"fileName\": \"test.zip\",\r\n \"mediaLink\": \"https://saforgallery6204.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=QxJqBvH83oqFZHN9OoZnG6LIh3OLNHTANam7o03jCvI%3D&st=2020-02-20T01%3A44%3A26Z&se=2020-02-23T01%3A44%3A26Z&sp=rw\"\r\n },\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"SoutheastAsia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"endOfLifeDate\": \"2020-03-01T08:00:00Z\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery683.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=rIL9D%2FBdVGCRXcufkf%2B98rmGfFYIV%2FGakS%2FI70WJEzw%3D&st=2020-10-21T23%3A52%3A14Z&se=2020-10-24T23%3A52%3A14Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"SoutheastAsia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"endOfLifeDate\": \"2020-11-01T07:00:00Z\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1de3f51f-1650-4376-9d68-98d0572f1f76" + "7d43930a-1986-4a2b-af54-9c81e1a65240" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "680" + "834" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:45:36 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/39b22df0-9c3c-4be8-9d50-d0e3ed29feae?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/11cb0e69-f860-43bb-b13d-4db4d6654534?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateGalleryApplicationVersion3Min;149,Microsoft.Compute/CreateUpdateGalleryApplicationVersion30Min;749" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "39b22df0-9c3c-4be8-9d50-d0e3ed29feae" + "11cb0e69-f860-43bb-b13d-4db4d6654534" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1197" ], "x-ms-correlation-request-id": [ - "4d1056fd-639a-41ad-a02c-173d3660acbb" + "7adbcfb8-78bd-4850-b0e4-e5364490ab7b" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T014536Z:4d1056fd-639a-41ad-a02c-173d3660acbb" + "WESTUS:20201022T235325Z:7adbcfb8-78bd-4850-b0e4-e5364490ab7b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:53:25 GMT" + ], "Content-Length": [ - "1163" + "1319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -792,74 +810,77 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"fileName\": \"test.zip\",\r\n \"mediaLink\": \"https://saforgallery6204.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=QxJqBvH83oqFZHN9OoZnG6LIh3OLNHTANam7o03jCvI%3D&st=2020-02-20T01%3A44%3A26Z&se=2020-02-23T01%3A44%3A26Z&sp=rw\"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-02-20T17:45:36.5193004-08:00\",\r\n \"endOfLifeDate\": \"2020-03-01T00:00:00-08:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108/applications/galleryPsTestGalleryApplication2971/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery683.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=rIL9D%2FBdVGCRXcufkf%2B98rmGfFYIV%2FGakS%2FI70WJEzw%3D&st=2020-10-21T23%3A52%3A14Z&se=2020-10-24T23%3A52%3A14Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-10-22T16:53:25.4136438-07:00\",\r\n \"endOfLifeDate\": \"2020-11-01T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTkyL2FwcGxpY2F0aW9ucy9nYWxsZXJ5UHNUZXN0R2FsbGVyeUFwcGxpY2F0aW9uNDUwNS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108/applications/galleryPsTestGalleryApplication2971/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg4NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxMDgvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24yOTcxL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"fileName\": \"test.zip\",\r\n \"mediaLink\": \"https://saforgallery6204.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=QxJqBvH83oqFZHN9OoZnG6LIh3OLNHTANam7o03jCvI%3D&st=2020-02-20T01%3A44%3A26Z&se=2020-02-23T01%3A44%3A26Z&sp=rw\"\r\n },\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"SoutheastAsia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"endOfLifeDate\": \"2020-05-30T07:00:00Z\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery683.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=rIL9D%2FBdVGCRXcufkf%2B98rmGfFYIV%2FGakS%2FI70WJEzw%3D&st=2020-10-21T23%3A52%3A14Z&se=2020-10-24T23%3A52%3A14Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"SoutheastAsia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"endOfLifeDate\": \"2021-01-30T08:00:00Z\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c25e23fe-912c-443d-a5bb-82391aa0ea58" + "e59a99a2-c4bf-4066-acd7-8cfa50d19df2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "680" + "834" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:50:11 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/01072ea5-4243-4f5a-bb8b-537afc9ec2d0?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/0c0f3069-73da-4392-9fd8-5ab171025a78?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateGalleryApplicationVersion3Min;149,Microsoft.Compute/CreateUpdateGalleryApplicationVersion30Min;748" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "01072ea5-4243-4f5a-bb8b-537afc9ec2d0" + "0c0f3069-73da-4392-9fd8-5ab171025a78" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1196" ], "x-ms-correlation-request-id": [ - "1e00c68a-ad4e-47b7-9611-76ee86fe9f27" + "d93beca4-6ac8-487a-b0c3-227db3a1b469" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015012Z:1e00c68a-ad4e-47b7-9611-76ee86fe9f27" + "WESTUS:20201022T235859Z:d93beca4-6ac8-487a-b0c3-227db3a1b469" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:58:59 GMT" + ], "Content-Length": [ - "1163" + "1319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -868,57 +889,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"fileName\": \"test.zip\",\r\n \"mediaLink\": \"https://saforgallery6204.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=QxJqBvH83oqFZHN9OoZnG6LIh3OLNHTANam7o03jCvI%3D&st=2020-02-20T01%3A44%3A26Z&se=2020-02-23T01%3A44%3A26Z&sp=rw\"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-02-20T17:45:36.5193004-08:00\",\r\n \"endOfLifeDate\": \"2020-05-30T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108/applications/galleryPsTestGalleryApplication2971/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery683.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=rIL9D%2FBdVGCRXcufkf%2B98rmGfFYIV%2FGakS%2FI70WJEzw%3D&st=2020-10-21T23%3A52%3A14Z&se=2020-10-24T23%3A52%3A14Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-10-22T16:53:25.4136438-07:00\",\r\n \"endOfLifeDate\": \"2021-01-30T00:00:00-08:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/39b22df0-9c3c-4be8-9d50-d0e3ed29feae?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8zOWIyMmRmMC05YzNjLTRiZTgtOWQ1MC1kMGUzZWQyOWZlYWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/11cb0e69-f860-43bb-b13d-4db4d6654534?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xMWNiMGU2OS1mODYwLTQzYmItYjEzZC00ZGI0ZDY2NTQ1MzQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:46:07 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4196" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "9140e43b-77fc-4d11-9f74-ef07743d36af" + "97c1585e-3984-40cc-bed6-a4bc30a1bf31" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "d409afab-ac63-42a9-a6f4-1a4b42193889" + "5e103b7b-e810-469d-bd95-ac65640a4301" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T014607Z:d409afab-ac63-42a9-a6f4-1a4b42193889" + "WESTUS:20201022T235355Z:5e103b7b-e810-469d-bd95-ac65640a4301" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:53:55 GMT" + ], "Content-Length": [ "134" ], @@ -929,57 +953,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:45:36.4724359-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"39b22df0-9c3c-4be8-9d50-d0e3ed29feae\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:53:25.4136438-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"11cb0e69-f860-43bb-b13d-4db4d6654534\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/39b22df0-9c3c-4be8-9d50-d0e3ed29feae?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8zOWIyMmRmMC05YzNjLTRiZTgtOWQ1MC1kMGUzZWQyOWZlYWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/11cb0e69-f860-43bb-b13d-4db4d6654534?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xMWNiMGU2OS1mODYwLTQzYmItYjEzZC00ZGI0ZDY2NTQ1MzQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:46:37 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4193" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "e8006c8d-50fa-4981-9b27-e1753dabe08d" + "11a98399-0a70-4e5e-9f81-6ac710924bc0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "bc0efee8-4539-4d0f-bc9e-9b3b8e445b97" + "5865ab28-a52a-452c-9a67-0efb5c13b86e" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T014637Z:bc0efee8-4539-4d0f-bc9e-9b3b8e445b97" + "WESTUS:20201022T235426Z:5865ab28-a52a-452c-9a67-0efb5c13b86e" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:54:25 GMT" + ], "Content-Length": [ "134" ], @@ -990,57 +1017,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:45:36.4724359-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"39b22df0-9c3c-4be8-9d50-d0e3ed29feae\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:53:25.4136438-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"11cb0e69-f860-43bb-b13d-4db4d6654534\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/39b22df0-9c3c-4be8-9d50-d0e3ed29feae?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8zOWIyMmRmMC05YzNjLTRiZTgtOWQ1MC1kMGUzZWQyOWZlYWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/11cb0e69-f860-43bb-b13d-4db4d6654534?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xMWNiMGU2OS1mODYwLTQzYmItYjEzZC00ZGI0ZDY2NTQ1MzQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:47:07 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4191" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "567a6b48-ae7e-487b-84e7-069949330f99" + "1b13345b-6b16-4ef5-b92f-1b4fd7a0d016" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-correlation-request-id": [ - "5eb1c35e-a369-44b0-a514-4659a9e01854" + "ef925444-ec46-4738-88ca-494beef24a31" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T014708Z:5eb1c35e-a369-44b0-a514-4659a9e01854" + "WESTUS:20201022T235456Z:ef925444-ec46-4738-88ca-494beef24a31" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:54:55 GMT" + ], "Content-Length": [ "134" ], @@ -1051,57 +1081,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:45:36.4724359-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"39b22df0-9c3c-4be8-9d50-d0e3ed29feae\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:53:25.4136438-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"11cb0e69-f860-43bb-b13d-4db4d6654534\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/39b22df0-9c3c-4be8-9d50-d0e3ed29feae?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8zOWIyMmRmMC05YzNjLTRiZTgtOWQ1MC1kMGUzZWQyOWZlYWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/11cb0e69-f860-43bb-b13d-4db4d6654534?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xMWNiMGU2OS1mODYwLTQzYmItYjEzZC00ZGI0ZDY2NTQ1MzQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:47:38 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4188" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "7d2b35ed-d32c-4adf-8ab6-88f4a9d437dd" + "cf28842a-8e4a-4616-b8e5-581eeb80d0dd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-correlation-request-id": [ - "cbffb0d7-90f2-4d3a-aad7-5f03e10191dd" + "e11bd77b-7706-40ff-b4a3-5915272616dd" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T014738Z:cbffb0d7-90f2-4d3a-aad7-5f03e10191dd" + "WESTUS:20201022T235526Z:e11bd77b-7706-40ff-b4a3-5915272616dd" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:55:25 GMT" + ], "Content-Length": [ "134" ], @@ -1112,57 +1145,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:45:36.4724359-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"39b22df0-9c3c-4be8-9d50-d0e3ed29feae\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:53:25.4136438-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"11cb0e69-f860-43bb-b13d-4db4d6654534\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/39b22df0-9c3c-4be8-9d50-d0e3ed29feae?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8zOWIyMmRmMC05YzNjLTRiZTgtOWQ1MC1kMGUzZWQyOWZlYWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/11cb0e69-f860-43bb-b13d-4db4d6654534?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xMWNiMGU2OS1mODYwLTQzYmItYjEzZC00ZGI0ZDY2NTQ1MzQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:48:07 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4185" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "9d3525e4-e2af-4533-b9b9-decdad9e261e" + "c502c60d-b644-45a7-9c30-23ba1925748c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], "x-ms-correlation-request-id": [ - "f69e235f-6ded-40bb-b8d6-2b28dcd4eb83" + "fae45cd1-6505-474f-85d1-39596bd6fbad" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T014808Z:f69e235f-6ded-40bb-b8d6-2b28dcd4eb83" + "WESTUS:20201022T235556Z:fae45cd1-6505-474f-85d1-39596bd6fbad" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:55:56 GMT" + ], "Content-Length": [ "134" ], @@ -1173,57 +1209,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:45:36.4724359-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"39b22df0-9c3c-4be8-9d50-d0e3ed29feae\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:53:25.4136438-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"11cb0e69-f860-43bb-b13d-4db4d6654534\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/39b22df0-9c3c-4be8-9d50-d0e3ed29feae?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8zOWIyMmRmMC05YzNjLTRiZTgtOWQ1MC1kMGUzZWQyOWZlYWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/11cb0e69-f860-43bb-b13d-4db4d6654534?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xMWNiMGU2OS1mODYwLTQzYmItYjEzZC00ZGI0ZDY2NTQ1MzQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:48:39 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4182" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "2f3201d4-b40b-429e-9a91-1c25821d5701" + "7de82fd7-798e-4247-b3c9-b0c637ede9ab" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], "x-ms-correlation-request-id": [ - "90efbb37-19d1-44ae-ab1e-35f08b3a4340" + "fd8b2f16-dd85-463d-ac7f-417e48980854" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T014839Z:90efbb37-19d1-44ae-ab1e-35f08b3a4340" + "WESTUS:20201022T235627Z:fd8b2f16-dd85-463d-ac7f-417e48980854" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:56:26 GMT" + ], "Content-Length": [ "134" ], @@ -1234,57 +1273,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:45:36.4724359-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"39b22df0-9c3c-4be8-9d50-d0e3ed29feae\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:53:25.4136438-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"11cb0e69-f860-43bb-b13d-4db4d6654534\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/39b22df0-9c3c-4be8-9d50-d0e3ed29feae?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8zOWIyMmRmMC05YzNjLTRiZTgtOWQ1MC1kMGUzZWQyOWZlYWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/11cb0e69-f860-43bb-b13d-4db4d6654534?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xMWNiMGU2OS1mODYwLTQzYmItYjEzZC00ZGI0ZDY2NTQ1MzQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:49:09 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4179" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "a5537984-01ef-4c64-b8b6-ef0653630de7" + "fcce78b0-b55a-4559-9b2e-b2acd33a9268" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], "x-ms-correlation-request-id": [ - "ce15f078-7dde-4a71-8158-c1804bfad87b" + "e24c8a9a-67f7-4cd1-ab0f-8ab45c7205ac" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T014909Z:ce15f078-7dde-4a71-8158-c1804bfad87b" + "WESTUS:20201022T235657Z:e24c8a9a-67f7-4cd1-ab0f-8ab45c7205ac" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:56:56 GMT" + ], "Content-Length": [ "134" ], @@ -1295,57 +1337,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:45:36.4724359-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"39b22df0-9c3c-4be8-9d50-d0e3ed29feae\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:53:25.4136438-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"11cb0e69-f860-43bb-b13d-4db4d6654534\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/39b22df0-9c3c-4be8-9d50-d0e3ed29feae?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8zOWIyMmRmMC05YzNjLTRiZTgtOWQ1MC1kMGUzZWQyOWZlYWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/11cb0e69-f860-43bb-b13d-4db4d6654534?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xMWNiMGU2OS1mODYwLTQzYmItYjEzZC00ZGI0ZDY2NTQ1MzQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:49:38 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4176" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "8de471c2-d178-4a11-a077-798d68841d97" + "f0285325-5044-434a-8eb1-fa8c88f2c89b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], "x-ms-correlation-request-id": [ - "48705605-6441-4795-9840-cab3b156a52f" + "d87ab696-2526-46b0-93c0-7fbd598a8a55" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T014939Z:48705605-6441-4795-9840-cab3b156a52f" + "WESTUS:20201022T235727Z:d87ab696-2526-46b0-93c0-7fbd598a8a55" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:57:27 GMT" + ], "Content-Length": [ "134" ], @@ -1356,59 +1401,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:45:36.4724359-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"39b22df0-9c3c-4be8-9d50-d0e3ed29feae\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:53:25.4136438-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"11cb0e69-f860-43bb-b13d-4db4d6654534\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/39b22df0-9c3c-4be8-9d50-d0e3ed29feae?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8zOWIyMmRmMC05YzNjLTRiZTgtOWQ1MC1kMGUzZWQyOWZlYWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/11cb0e69-f860-43bb-b13d-4db4d6654534?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xMWNiMGU2OS1mODYwLTQzYmItYjEzZC00ZGI0ZDY2NTQ1MzQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:50:09 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4174" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "5cb88f34-bd7c-48bf-93f1-ebada28a71d5" + "abe65290-7c37-4e5d-9ecd-51fa01add818" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], "x-ms-correlation-request-id": [ - "2c7106a0-a60c-4e0f-9477-8cbaec2721b9" + "7bd2c3c5-7c4f-4ebb-9d52-a2c7df8ceeeb" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015010Z:2c7106a0-a60c-4e0f-9477-8cbaec2721b9" + "WESTUS:20201022T235757Z:7bd2c3c5-7c4f-4ebb-9d52-a2c7df8ceeeb" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "184" + "Date": [ + "Thu, 22 Oct 2020 23:57:57 GMT" + ], + "Content-Length": [ + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1417,59 +1465,190 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:45:36.4724359-08:00\",\r\n \"endTime\": \"2020-02-20T17:50:06.7830878-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"39b22df0-9c3c-4be8-9d50-d0e3ed29feae\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:53:25.4136438-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"11cb0e69-f860-43bb-b13d-4db4d6654534\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTkyL2FwcGxpY2F0aW9ucy9nYWxsZXJ5UHNUZXN0R2FsbGVyeUFwcGxpY2F0aW9uNDUwNS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/11cb0e69-f860-43bb-b13d-4db4d6654534?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xMWNiMGU2OS1mODYwLTQzYmItYjEzZC00ZGI0ZDY2NTQ1MzQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4171" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" + ], + "x-ms-request-id": [ + "441f4040-6c1c-458d-b463-e778e2bdb753" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "cb7060c0-8966-4c2e-b38d-3ccbb5b71714" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201022T235828Z:cb7060c0-8966-4c2e-b38d-3ccbb5b71714" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Date": [ - "Fri, 21 Feb 2020 01:50:10 GMT" + "Thu, 22 Oct 2020 23:58:27 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:53:25.4136438-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"11cb0e69-f860-43bb-b13d-4db4d6654534\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/11cb0e69-f860-43bb-b13d-4db4d6654534?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xMWNiMGU2OS1mODYwLTQzYmItYjEzZC00ZGI0ZDY2NTQ1MzQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4168" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" + ], + "x-ms-request-id": [ + "0f28be9f-dd4e-4f74-b599-9de544647d8b" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "cf20f7cd-d9d5-454c-91ef-5a013a9c10ec" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201022T235858Z:cf20f7cd-d9d5-454c-91ef-5a013a9c10ec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 23:58:58 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:53:25.4136438-07:00\",\r\n \"endTime\": \"2020-10-22T16:58:40.6523124-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"11cb0e69-f860-43bb-b13d-4db4d6654534\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108/applications/galleryPsTestGalleryApplication2971/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg4NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxMDgvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24yOTcxL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGalleryApplicationVersion3Min;1998,Microsoft.Compute/GetGalleryApplicationVersion30Min;9998" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "62107b1d-091c-4dc2-a60c-7cec226c32ab" + "3eb7d335-2323-400d-8537-634e507fcc02" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11985" ], "x-ms-correlation-request-id": [ - "98b53895-e23a-472e-ae1d-cbea2ba85fca" + "d1141138-f65f-40aa-b00f-bf7b853f0db4" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015011Z:98b53895-e23a-472e-ae1d-cbea2ba85fca" + "WESTUS:20201022T235859Z:d1141138-f65f-40aa-b00f-bf7b853f0db4" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:58:59 GMT" + ], "Content-Length": [ - "1164" + "1320" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1478,65 +1657,68 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"fileName\": \"test.zip\",\r\n \"mediaLink\": \"https://saforgallery6204.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=QxJqBvH83oqFZHN9OoZnG6LIh3OLNHTANam7o03jCvI%3D&st=2020-02-20T01%3A44%3A26Z&se=2020-02-23T01%3A44%3A26Z&sp=rw\"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-02-20T17:45:36.5193004-08:00\",\r\n \"endOfLifeDate\": \"2020-03-01T00:00:00-08:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108/applications/galleryPsTestGalleryApplication2971/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery683.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=rIL9D%2FBdVGCRXcufkf%2B98rmGfFYIV%2FGakS%2FI70WJEzw%3D&st=2020-10-21T23%3A52%3A14Z&se=2020-10-24T23%3A52%3A14Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-10-22T16:53:25.4136438-07:00\",\r\n \"endOfLifeDate\": \"2020-11-01T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTkyL2FwcGxpY2F0aW9ucy9nYWxsZXJ5UHNUZXN0R2FsbGVyeUFwcGxpY2F0aW9uNDUwNS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108/applications/galleryPsTestGalleryApplication2971/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg4NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxMDgvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24yOTcxL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "078c0b58-6d29-49cc-91ca-02262382de7d" + "476b8dd1-68d8-4b40-8a5d-90750f555be3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:50:10 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGalleryApplicationVersion3Min;1997,Microsoft.Compute/GetGalleryApplicationVersion30Min;9997" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "81f94175-5cc8-4c3e-a1ff-f882aca919f9" + "b7600ae7-0194-44a0-8089-0cd0f2f65381" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11984" ], "x-ms-correlation-request-id": [ - "b807e508-f674-4386-b3d0-dcae5cf8c93d" + "b4283db1-9c60-457f-ae96-f07478c8d84b" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015011Z:b807e508-f674-4386-b3d0-dcae5cf8c93d" + "WESTUS:20201022T235859Z:b4283db1-9c60-457f-ae96-f07478c8d84b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:58:59 GMT" + ], "Content-Length": [ - "1164" + "1320" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1545,59 +1727,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"fileName\": \"test.zip\",\r\n \"mediaLink\": \"https://saforgallery6204.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=QxJqBvH83oqFZHN9OoZnG6LIh3OLNHTANam7o03jCvI%3D&st=2020-02-20T01%3A44%3A26Z&se=2020-02-23T01%3A44%3A26Z&sp=rw\"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-02-20T17:45:36.5193004-08:00\",\r\n \"endOfLifeDate\": \"2020-03-01T00:00:00-08:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108/applications/galleryPsTestGalleryApplication2971/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery683.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=rIL9D%2FBdVGCRXcufkf%2B98rmGfFYIV%2FGakS%2FI70WJEzw%3D&st=2020-10-21T23%3A52%3A14Z&se=2020-10-24T23%3A52%3A14Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-10-22T16:53:25.4136438-07:00\",\r\n \"endOfLifeDate\": \"2020-11-01T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTkyL2FwcGxpY2F0aW9ucy9nYWxsZXJ5UHNUZXN0R2FsbGVyeUFwcGxpY2F0aW9uNDUwNS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108/applications/galleryPsTestGalleryApplication2971/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg4NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxMDgvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24yOTcxL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:52:43 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGalleryApplicationVersion3Min;1999,Microsoft.Compute/GetGalleryApplicationVersion30Min;9995" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "a7c2d57b-461f-4f93-b1d3-ee5ce3770788" + "a2172e97-ecbf-442c-ba90-cd7e9a004edb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11976" ], "x-ms-correlation-request-id": [ - "2296b284-218b-4330-877c-d9acadc1b9f1" + "92faee8d-34af-4f60-b298-92d5d5572823" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015244Z:2296b284-218b-4330-877c-d9acadc1b9f1" + "WESTUS:20201023T000201Z:92faee8d-34af-4f60-b298-92d5d5572823" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:02:01 GMT" + ], "Content-Length": [ - "1164" + "1320" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1606,65 +1791,68 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"fileName\": \"test.zip\",\r\n \"mediaLink\": \"https://saforgallery6204.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=QxJqBvH83oqFZHN9OoZnG6LIh3OLNHTANam7o03jCvI%3D&st=2020-02-20T01%3A44%3A26Z&se=2020-02-23T01%3A44%3A26Z&sp=rw\"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-02-20T17:45:36.5193004-08:00\",\r\n \"endOfLifeDate\": \"2020-05-30T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108/applications/galleryPsTestGalleryApplication2971/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery683.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=rIL9D%2FBdVGCRXcufkf%2B98rmGfFYIV%2FGakS%2FI70WJEzw%3D&st=2020-10-21T23%3A52%3A14Z&se=2020-10-24T23%3A52%3A14Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-10-22T16:53:25.4136438-07:00\",\r\n \"endOfLifeDate\": \"2021-01-30T00:00:00-08:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTkyL2FwcGxpY2F0aW9ucy9nYWxsZXJ5UHNUZXN0R2FsbGVyeUFwcGxpY2F0aW9uNDUwNS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108/applications/galleryPsTestGalleryApplication2971/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg4NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxMDgvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24yOTcxL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ce807fd7-4873-4f7c-b48c-fe26d9ccc1c9" + "8bd2545e-76a1-4768-8480-453638b0cffd" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:52:43 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGalleryApplicationVersion3Min;1998,Microsoft.Compute/GetGalleryApplicationVersion30Min;9994" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "599804c6-fc22-4867-a0a0-00380d66074d" + "3878a316-5634-4da2-b68b-0f23f360a3d9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11975" ], "x-ms-correlation-request-id": [ - "c88fa336-8899-4f47-88dd-829617ed440e" + "cb327550-1074-420d-80cc-7892125c5f90" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015244Z:c88fa336-8899-4f47-88dd-829617ed440e" + "WESTUS:20201023T000201Z:cb327550-1074-420d-80cc-7892125c5f90" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:02:01 GMT" + ], "Content-Length": [ - "1164" + "1320" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1673,65 +1861,68 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"fileName\": \"test.zip\",\r\n \"mediaLink\": \"https://saforgallery6204.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=QxJqBvH83oqFZHN9OoZnG6LIh3OLNHTANam7o03jCvI%3D&st=2020-02-20T01%3A44%3A26Z&se=2020-02-23T01%3A44%3A26Z&sp=rw\"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-02-20T17:45:36.5193004-08:00\",\r\n \"endOfLifeDate\": \"2020-05-30T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108/applications/galleryPsTestGalleryApplication2971/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery683.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=rIL9D%2FBdVGCRXcufkf%2B98rmGfFYIV%2FGakS%2FI70WJEzw%3D&st=2020-10-21T23%3A52%3A14Z&se=2020-10-24T23%3A52%3A14Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-10-22T16:53:25.4136438-07:00\",\r\n \"endOfLifeDate\": \"2021-01-30T00:00:00-08:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0?$expand=ReplicationStatus&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTkyL2FwcGxpY2F0aW9ucy9nYWxsZXJ5UHNUZXN0R2FsbGVyeUFwcGxpY2F0aW9uNDUwNS92ZXJzaW9ucy8xLjAuMD8kZXhwYW5kPVJlcGxpY2F0aW9uU3RhdHVzJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108/applications/galleryPsTestGalleryApplication2971/versions/1.0.0?$expand=ReplicationStatus&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg4NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxMDgvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24yOTcxL3ZlcnNpb25zLzEuMC4wPyRleHBhbmQ9UmVwbGljYXRpb25TdGF0dXMmYXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d27c488d-1154-41a6-9ca4-32eb518639a4" + "d2a8105b-c1f2-4681-83f9-5a7a69d8ce4a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:50:11 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGalleryApplicationVersion3Min;1996,Microsoft.Compute/GetGalleryApplicationVersion30Min;9996" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "7c3fe430-6d77-4d91-a98d-2a72579bb944" + "76d688a3-4164-42c6-a4ee-a1899aa9800e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11983" ], "x-ms-correlation-request-id": [ - "5ac362a7-1ac8-46fc-9bf5-832f1d1ff218" + "ce47bb7f-f25e-47ed-9b49-2cea5953a0e0" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015011Z:5ac362a7-1ac8-46fc-9bf5-832f1d1ff218" + "WESTUS:20201022T235859Z:ce47bb7f-f25e-47ed-9b49-2cea5953a0e0" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:58:59 GMT" + ], "Content-Length": [ - "1388" + "1544" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1740,59 +1931,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"fileName\": \"test.zip\",\r\n \"mediaLink\": \"https://saforgallery6204.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=QxJqBvH83oqFZHN9OoZnG6LIh3OLNHTANam7o03jCvI%3D&st=2020-02-20T01%3A44%3A26Z&se=2020-02-23T01%3A44%3A26Z&sp=rw\"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-02-20T17:45:36.5193004-08:00\",\r\n \"endOfLifeDate\": \"2020-03-01T00:00:00-08:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"replicationStatus\": {\r\n \"aggregatedState\": \"Completed\",\r\n \"summary\": [\r\n {\r\n \"region\": \"southeastasia\",\r\n \"state\": \"Completed\",\r\n \"progress\": 100\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/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108/applications/galleryPsTestGalleryApplication2971/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery683.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=rIL9D%2FBdVGCRXcufkf%2B98rmGfFYIV%2FGakS%2FI70WJEzw%3D&st=2020-10-21T23%3A52%3A14Z&se=2020-10-24T23%3A52%3A14Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-10-22T16:53:25.4136438-07:00\",\r\n \"endOfLifeDate\": \"2020-11-01T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"replicationStatus\": {\r\n \"aggregatedState\": \"Completed\",\r\n \"summary\": [\r\n {\r\n \"region\": \"southeastasia\",\r\n \"state\": \"Completed\",\r\n \"progress\": 100\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/01072ea5-4243-4f5a-bb8b-537afc9ec2d0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wMTA3MmVhNS00MjQzLTRmNWEtYmI4Yi01MzdhZmM5ZWMyZDA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/0c0f3069-73da-4392-9fd8-5ab171025a78?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wYzBmMzA2OS03M2RhLTQzOTItOWZkOC01YWIxNzEwMjVhNzg/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:50:41 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4166" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "f1e14225-e8b4-46e0-818a-3569359ef812" + "23d3b77d-0833-4b5f-87a6-f69314c8d6a2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11982" ], "x-ms-correlation-request-id": [ - "59a9aa74-96c4-4b42-8cee-1e5eb712158a" + "a20a23d1-cdd0-4bc6-9847-d1edd0f548ad" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015042Z:59a9aa74-96c4-4b42-8cee-1e5eb712158a" + "WESTUS:20201022T235930Z:a20a23d1-cdd0-4bc6-9847-d1edd0f548ad" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:59:29 GMT" + ], "Content-Length": [ - "134" + "133" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1801,59 +1995,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:50:11.7674384-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"01072ea5-4243-4f5a-bb8b-537afc9ec2d0\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:58:59.699479-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0c0f3069-73da-4392-9fd8-5ab171025a78\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/01072ea5-4243-4f5a-bb8b-537afc9ec2d0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wMTA3MmVhNS00MjQzLTRmNWEtYmI4Yi01MzdhZmM5ZWMyZDA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/0c0f3069-73da-4392-9fd8-5ab171025a78?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wYzBmMzA2OS03M2RhLTQzOTItOWZkOC01YWIxNzEwMjVhNzg/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:51:12 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4163" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "92761fce-1eea-419e-84ab-267eae5469bb" + "8cf29c9d-c5be-4edf-8b5b-06ca8a96a731" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11981" ], "x-ms-correlation-request-id": [ - "2bedb08a-9eb2-46fc-b148-824b8efae4a8" + "fe54b013-f690-45f0-911f-1dd1b0d5d0f4" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015112Z:2bedb08a-9eb2-46fc-b148-824b8efae4a8" + "WESTUS:20201023T000000Z:fe54b013-f690-45f0-911f-1dd1b0d5d0f4" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:59:59 GMT" + ], "Content-Length": [ - "134" + "133" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1862,59 +2059,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:50:11.7674384-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"01072ea5-4243-4f5a-bb8b-537afc9ec2d0\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:58:59.699479-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0c0f3069-73da-4392-9fd8-5ab171025a78\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/01072ea5-4243-4f5a-bb8b-537afc9ec2d0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wMTA3MmVhNS00MjQzLTRmNWEtYmI4Yi01MzdhZmM5ZWMyZDA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/0c0f3069-73da-4392-9fd8-5ab171025a78?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wYzBmMzA2OS03M2RhLTQzOTItOWZkOC01YWIxNzEwMjVhNzg/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:51:42 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;4160" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "cfba5ed1-03d8-4f0c-95df-32767dc9aa43" + "5a8a049b-999b-48ae-943d-f130f526b519" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11980" ], "x-ms-correlation-request-id": [ - "e54776f0-3bcf-42d7-86a4-12a81cd56308" + "69a08e2e-7a28-4276-8355-c3de6a11990f" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015142Z:e54776f0-3bcf-42d7-86a4-12a81cd56308" + "WESTUS:20201023T000030Z:69a08e2e-7a28-4276-8355-c3de6a11990f" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:00:29 GMT" + ], "Content-Length": [ - "134" + "133" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1923,59 +2123,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:50:11.7674384-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"01072ea5-4243-4f5a-bb8b-537afc9ec2d0\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:58:59.699479-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0c0f3069-73da-4392-9fd8-5ab171025a78\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/01072ea5-4243-4f5a-bb8b-537afc9ec2d0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wMTA3MmVhNS00MjQzLTRmNWEtYmI4Yi01MzdhZmM5ZWMyZDA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/0c0f3069-73da-4392-9fd8-5ab171025a78?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wYzBmMzA2OS03M2RhLTQzOTItOWZkOC01YWIxNzEwMjVhNzg/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:52:13 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;4157" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "b23341ab-8e15-4073-8456-70f9bd0b03b5" + "383723c3-e97b-421b-8f00-44af24478cf5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11979" ], "x-ms-correlation-request-id": [ - "176793ab-e8f9-4cff-8677-8e7f7fe8d5d6" + "7847064b-a32b-47d5-b68e-50369a9b3f30" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015213Z:176793ab-e8f9-4cff-8677-8e7f7fe8d5d6" + "WESTUS:20201023T000100Z:7847064b-a32b-47d5-b68e-50369a9b3f30" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:01:00 GMT" + ], "Content-Length": [ - "134" + "133" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1984,59 +2187,126 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:50:11.7674384-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"01072ea5-4243-4f5a-bb8b-537afc9ec2d0\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:58:59.699479-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0c0f3069-73da-4392-9fd8-5ab171025a78\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/01072ea5-4243-4f5a-bb8b-537afc9ec2d0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wMTA3MmVhNS00MjQzLTRmNWEtYmI4Yi01MzdhZmM5ZWMyZDA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/0c0f3069-73da-4392-9fd8-5ab171025a78?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wYzBmMzA2OS03M2RhLTQzOTItOWZkOC01YWIxNzEwMjVhNzg/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:52:43 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;4154" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" + ], + "x-ms-request-id": [ + "eb2cd9ee-f9b9-40d6-b5e7-4b08055a88f5" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-correlation-request-id": [ + "11ea57c8-2093-43d7-9cb6-1419a66a7e6d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201023T000131Z:11ea57c8-2093-43d7-9cb6-1419a66a7e6d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 00:01:31 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:58:59.699479-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0c0f3069-73da-4392-9fd8-5ab171025a78\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/0c0f3069-73da-4392-9fd8-5ab171025a78?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wYzBmMzA2OS03M2RhLTQzOTItOWZkOC01YWIxNzEwMjVhNzg/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4152" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "8e8128f8-ce84-4fa3-947c-3713db8c27b6" + "06306137-ac0f-4b4a-96c4-989e356fcd50" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11977" ], "x-ms-correlation-request-id": [ - "825e16d4-3c03-4a7d-9e39-76df4c3224e7" + "174af061-1562-41f8-b406-61cf51e06e22" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015243Z:825e16d4-3c03-4a7d-9e39-76df4c3224e7" + "WESTUS:20201023T000201Z:174af061-1562-41f8-b406-61cf51e06e22" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:02:01 GMT" + ], "Content-Length": [ - "184" + "183" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2045,127 +2315,133 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:50:11.7674384-08:00\",\r\n \"endTime\": \"2020-02-20T17:52:26.8910558-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"01072ea5-4243-4f5a-bb8b-537afc9ec2d0\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:58:59.699479-07:00\",\r\n \"endTime\": \"2020-10-22T17:01:59.8582548-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0c0f3069-73da-4392-9fd8-5ab171025a78\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTkyL2FwcGxpY2F0aW9ucy9nYWxsZXJ5UHNUZXN0R2FsbGVyeUFwcGxpY2F0aW9uNDUwNS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108/applications/galleryPsTestGalleryApplication2971/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg4NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxMDgvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24yOTcxL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e8765dd1-d326-40a8-9409-977461f80a7f" + "18072f64-ffe6-4629-80f3-30449bd274f9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:52:44 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/4564a0e2-fde0-4b58-ac5f-a725c4da5d66?monitor=true&api-version=2019-12-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/1faa8716-0e22-43c1-9159-d3363299049e?monitor=true&api-version=2020-09-30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/4564a0e2-fde0-4b58-ac5f-a725c4da5d66?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/1faa8716-0e22-43c1-9159-d3363299049e?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/DeleteGalleryApplicationVersion3Min;149,Microsoft.Compute/DeleteGalleryApplicationVersion30Min;999" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "4564a0e2-fde0-4b58-ac5f-a725c4da5d66" + "1faa8716-0e22-43c1-9159-d3363299049e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "e685de63-c46b-4bdc-a90c-68f3d08bc9d3" + "c1d7fbbb-1b52-43a5-b2b6-7362622a651b" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015244Z:e685de63-c46b-4bdc-a90c-68f3d08bc9d3" + "WESTUS:20201023T000202Z:c1d7fbbb-1b52-43a5-b2b6-7362622a651b" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 23 Oct 2020 00:02:01 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/4564a0e2-fde0-4b58-ac5f-a725c4da5d66?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy80NTY0YTBlMi1mZGUwLTRiNTgtYWM1Zi1hNzI1YzRkYTVkNjY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/1faa8716-0e22-43c1-9159-d3363299049e?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xZmFhODcxNi0wZTIyLTQzYzEtOTE1OS1kMzM2MzI5OTA0OWU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:53:14 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4149" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "5e8fd632-0875-4146-9354-ea383d81006a" + "e8a20ba4-df6e-4cab-ae05-7d2bb02cb44b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11974" ], "x-ms-correlation-request-id": [ - "74d0cdf9-5b13-4f82-bd7f-458cfc847932" + "b97f0c07-8493-4f26-976f-c2dfcc192238" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015315Z:74d0cdf9-5b13-4f82-bd7f-458cfc847932" + "WESTUS:20201023T000232Z:b97f0c07-8493-4f26-976f-c2dfcc192238" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:02:32 GMT" + ], "Content-Length": [ "134" ], @@ -2176,57 +2452,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:52:44.4846028-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4564a0e2-fde0-4b58-ac5f-a725c4da5d66\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T17:02:01.9520069-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1faa8716-0e22-43c1-9159-d3363299049e\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/4564a0e2-fde0-4b58-ac5f-a725c4da5d66?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy80NTY0YTBlMi1mZGUwLTRiNTgtYWM1Zi1hNzI1YzRkYTVkNjY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/1faa8716-0e22-43c1-9159-d3363299049e?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xZmFhODcxNi0wZTIyLTQzYzEtOTE1OS1kMzM2MzI5OTA0OWU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:53:45 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4146" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "1b76331c-19e2-4c32-b2b6-2b76c8580633" + "16c5a267-80f4-45a7-88f1-795658c2352a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11973" ], "x-ms-correlation-request-id": [ - "88a56214-def1-4a38-8cbf-9ee3694a8c53" + "26aa3687-1831-48d0-811f-547b3279d81a" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015345Z:88a56214-def1-4a38-8cbf-9ee3694a8c53" + "WESTUS:20201023T000302Z:26aa3687-1831-48d0-811f-547b3279d81a" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:03:02 GMT" + ], "Content-Length": [ "134" ], @@ -2237,57 +2516,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:52:44.4846028-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4564a0e2-fde0-4b58-ac5f-a725c4da5d66\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T17:02:01.9520069-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1faa8716-0e22-43c1-9159-d3363299049e\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/4564a0e2-fde0-4b58-ac5f-a725c4da5d66?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy80NTY0YTBlMi1mZGUwLTRiNTgtYWM1Zi1hNzI1YzRkYTVkNjY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/1faa8716-0e22-43c1-9159-d3363299049e?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xZmFhODcxNi0wZTIyLTQzYzEtOTE1OS1kMzM2MzI5OTA0OWU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:54:15 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4143" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "27ed5b44-4b4f-4f7f-9278-5ea3a1337049" + "300dcd6f-7b4a-43d8-bcb6-a385d89d41dc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11972" ], "x-ms-correlation-request-id": [ - "d52cd7db-be5a-4c29-85ab-b96accef2a60" + "b033c79b-3955-41c6-9064-8f3befa2c201" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015416Z:d52cd7db-be5a-4c29-85ab-b96accef2a60" + "WESTUS:20201023T000332Z:b033c79b-3955-41c6-9064-8f3befa2c201" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:03:32 GMT" + ], "Content-Length": [ "184" ], @@ -2298,251 +2580,263 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:52:44.4846028-08:00\",\r\n \"endTime\": \"2020-02-20T17:54:14.7023209-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4564a0e2-fde0-4b58-ac5f-a725c4da5d66\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T17:02:01.9520069-07:00\",\r\n \"endTime\": \"2020-10-22T17:03:32.1563006-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1faa8716-0e22-43c1-9159-d3363299049e\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/4564a0e2-fde0-4b58-ac5f-a725c4da5d66?monitor=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy80NTY0YTBlMi1mZGUwLTRiNTgtYWM1Zi1hNzI1YzRkYTVkNjY/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/1faa8716-0e22-43c1-9159-d3363299049e?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xZmFhODcxNi0wZTIyLTQzYzEtOTE1OS1kMzM2MzI5OTA0OWU/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:54:15 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4142" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "0801fa84-796d-492f-8e94-faf9a9644143" + "d67028e3-a399-41de-868a-be0e1efc155d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11971" ], "x-ms-correlation-request-id": [ - "31de8dc2-8650-434b-ae03-12b4634f34ac" + "f4956cb7-555c-48a7-9799-2c13af3f8e24" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015416Z:31de8dc2-8650-434b-ae03-12b4634f34ac" + "WESTUS:20201023T000333Z:f4956cb7-555c-48a7-9799-2c13af3f8e24" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 23 Oct 2020 00:03:32 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTkyL2FwcGxpY2F0aW9ucy9nYWxsZXJ5UHNUZXN0R2FsbGVyeUFwcGxpY2F0aW9uNDUwNT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108/applications/galleryPsTestGalleryApplication2971?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg4NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxMDgvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24yOTcxP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a049d923-ca79-42b2-98df-d6341d34c962" + "4959d876-f3a3-4f73-8c73-f655d960050a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:54:15 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/DeleteGalleryApplication3Min;49,Microsoft.Compute/DeleteGalleryApplication30Min;299" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "9e907064-3448-498b-982c-47d14800e4a6" + "9057edd2-c546-4fc9-83d6-fe76a4148e61" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14998" ], "x-ms-correlation-request-id": [ - "137fb1ac-b09f-4405-a9ef-ab7d51b24d81" + "217c80cd-3e24-4c0a-b591-026326d50f25" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015416Z:137fb1ac-b09f-4405-a9ef-ab7d51b24d81" + "WESTUS:20201023T000333Z:217c80cd-3e24-4c0a-b591-026326d50f25" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 23 Oct 2020 00:03:32 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTkyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg4NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxMDg/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "838e80f0-5436-4c84-9414-61df05010ee5" + "0d1ed2fa-c077-4c9f-ac00-d13b4c1251c1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:54:17 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/082590a0-1611-4a32-b0ff-e9c90cee25bc?monitor=true&api-version=2019-12-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/55959e33-e89e-4bb4-bd38-7951a7ba8f7c?monitor=true&api-version=2020-09-30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/082590a0-1611-4a32-b0ff-e9c90cee25bc?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/55959e33-e89e-4bb4-bd38-7951a7ba8f7c?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;299" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "082590a0-1611-4a32-b0ff-e9c90cee25bc" + "55959e33-e89e-4bb4-bd38-7951a7ba8f7c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "14997" ], "x-ms-correlation-request-id": [ - "06b55df8-5b42-4640-8adc-ede024b668c1" + "33630b3d-9c5a-42b4-8b2f-68dac05f833b" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015418Z:06b55df8-5b42-4640-8adc-ede024b668c1" + "WESTUS:20201023T000334Z:33630b3d-9c5a-42b4-8b2f-68dac05f833b" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 23 Oct 2020 00:03:33 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/082590a0-1611-4a32-b0ff-e9c90cee25bc?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wODI1OTBhMC0xNjExLTRhMzItYjBmZi1lOWM5MGNlZTI1YmM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/55959e33-e89e-4bb4-bd38-7951a7ba8f7c?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy81NTk1OWUzMy1lODllLTRiYjQtYmQzOC03OTUxYTdiYThmN2M/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:54:48 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4139" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "e7a2dbeb-5a89-429b-b537-bfa69cbf3519" + "85446688-d7aa-4e51-9622-341dd5988f90" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11970" ], "x-ms-correlation-request-id": [ - "d37f3702-f720-46d4-b9a0-39055f8d26a1" + "1ed71471-245f-410b-98de-237c8d36e343" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015448Z:d37f3702-f720-46d4-b9a0-39055f8d26a1" + "WESTUS:20201023T000404Z:1ed71471-245f-410b-98de-237c8d36e343" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:04:04 GMT" + ], "Content-Length": [ - "183" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2551,62 +2845,65 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:54:17.874164-08:00\",\r\n \"endTime\": \"2020-02-20T17:54:18.8116546-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"082590a0-1611-4a32-b0ff-e9c90cee25bc\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T17:03:34.3282212-07:00\",\r\n \"endTime\": \"2020-10-22T17:03:35.0782221-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"55959e33-e89e-4bb4-bd38-7951a7ba8f7c\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/082590a0-1611-4a32-b0ff-e9c90cee25bc?monitor=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wODI1OTBhMC0xNjExLTRhMzItYjBmZi1lOWM5MGNlZTI1YmM/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/55959e33-e89e-4bb4-bd38-7951a7ba8f7c?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy81NTk1OWUzMy1lODllLTRiYjQtYmQzOC03OTUxYTdiYThmN2M/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:54:48 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4138" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "ceee266a-bea3-470c-b387-9000af05b7f0" + "468d1de1-0972-43b9-99f9-15d08fb15670" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11969" ], "x-ms-correlation-request-id": [ - "dd06834a-8af1-45cb-9b50-79eb4b72519c" + "1e8f298a-f236-4ade-b678-52546adeeb1f" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015448Z:dd06834a-8af1-45cb-9b50-79eb4b72519c" + "WESTUS:20201023T000404Z:1e8f298a-f236-4ade-b678-52546adeeb1f" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 23 Oct 2020 00:04:04 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -2615,14 +2912,14 @@ ], "Names": { "GalleryApplicationVersion_CRUD_Tests": [ - "galleryPsTestRg552", - "psTestSourceApplication2573", - "galleryPsTestGallery592", - "galleryPsTestGalleryApplication4505" + "galleryPsTestRg8861", + "psTestSourceApplication5878", + "galleryPsTestGallery5108", + "galleryPsTestGalleryApplication2971" ], "CreateApplicationMediaLink": [ - "saforgallery6204", - "asforgallery2013" + "saforgallery683", + "asforgallery5978" ] }, "Variables": { 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 7c8985b0b972..7cad6e27a637 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryApplication_CRUD_Tests.json +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryApplication_CRUD_Tests.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg5617?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU2MTc/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg115?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8f58b0a6-b7f6-42db-b98e-0026776f323f" + "f5aa0f93-8772-423f-9e46-1e6f5fa72619" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ @@ -29,23 +29,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:31:33 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "b47fe355-093c-48ec-a4a9-268774d188af" + "d19f66d4-403d-4cf0-8e8a-046c06e70f9e" ], "x-ms-correlation-request-id": [ - "b47fe355-093c-48ec-a4a9-268774d188af" + "d19f66d4-403d-4cf0-8e8a-046c06e70f9e" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013134Z:b47fe355-093c-48ec-a4a9-268774d188af" + "WESTUS:20201022T231024Z:d19f66d4-403d-4cf0-8e8a-046c06e70f9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -53,8 +50,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:10:23 GMT" + ], "Content-Length": [ - "198" + "196" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5617\",\r\n \"name\": \"galleryPsTestRg5617\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115\",\r\n \"name\": \"galleryPsTestRg115\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5617/providers/Microsoft.Compute/galleries/galleryPsTestGallery4482?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ0ODI/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTM0NT9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\"\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7b734109-974f-4bc2-ab9e-f7413edc2ea5" + "6a925eaa-c0bf-47fe-bad5-3d630d034c36" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -95,42 +95,45 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:31:43 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/0d716663-4c1c-4a7b-94f2-d435355967e2?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/1b466b9b-8e3c-46e9-8337-1f491c76245c?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;298" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "0d716663-4c1c-4a7b-94f2-d435355967e2" + "1b466b9b-8e3c-46e9-8337-1f491c76245c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "d0319eea-0e47-48d1-8ffd-70cb4481b170" + "56c77797-51b4-4ba7-82e4-ae4842aa32bf" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013144Z:d0319eea-0e47-48d1-8ffd-70cb4481b170" + "WESTUS:20201022T231037Z:56c77797-51b4-4ba7-82e4-ae4842aa32bf" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:10:36 GMT" + ], "Content-Length": [ - "514" + "578" ], "Content-Type": [ "application/json; charset=utf-8" @@ -139,57 +142,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery4482\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5617/providers/Microsoft.Compute/galleries/galleryPsTestGallery4482\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY4482\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery5345\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY5345\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Private\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/0d716663-4c1c-4a7b-94f2-d435355967e2?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wZDcxNjY2My00YzFjLTRhN2ItOTRmMi1kNDM1MzU1OTY3ZTI/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/1b466b9b-8e3c-46e9-8337-1f491c76245c?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xYjQ2NmI5Yi04ZTNjLTQ2ZTktODMzNy0xZjQ5MWM3NjI0NWM/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:32:13 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4193" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "406920a1-8a47-4eec-ac4f-d4521b6ae9c5" + "4e7995e8-2abd-4cc6-a6d9-c839c7377229" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "8d4e0545-d686-4ee4-8392-e5c1288cfb87" + "b1be55e6-7cb0-49fb-b5b1-e26da19a1618" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013214Z:8d4e0545-d686-4ee4-8392-e5c1288cfb87" + "WESTUS:20201022T231107Z:b1be55e6-7cb0-49fb-b5b1-e26da19a1618" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:11:06 GMT" + ], "Content-Length": [ "184" ], @@ -200,59 +206,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:31:42.6980165-08:00\",\r\n \"endTime\": \"2020-02-20T17:31:43.5884867-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0d716663-4c1c-4a7b-94f2-d435355967e2\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:10:35.1123505-07:00\",\r\n \"endTime\": \"2020-10-22T16:10:35.8311134-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1b466b9b-8e3c-46e9-8337-1f491c76245c\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5617/providers/Microsoft.Compute/galleries/galleryPsTestGallery4482?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ0ODI/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTM0NT9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:32:14 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;345,Microsoft.Compute/GetGallery30Min;2485" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "5207c62f-8c60-4941-8c3d-774dd8e6f774" + "559240ca-c681-41b0-ad62-1c7eabbb025a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "51468f3a-6868-4a4a-9318-5101b6a28dce" + "c9a98556-f4c8-41d8-8e77-0010777749c8" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013214Z:51468f3a-6868-4a4a-9318-5101b6a28dce" + "WESTUS:20201022T231107Z:c9a98556-f4c8-41d8-8e77-0010777749c8" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:11:07 GMT" + ], "Content-Length": [ - "515" + "514" ], "Content-Type": [ "application/json; charset=utf-8" @@ -261,26 +270,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery4482\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5617/providers/Microsoft.Compute/galleries/galleryPsTestGallery4482\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY4482\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery5345\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY5345\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5617/providers/Microsoft.Compute/galleries/galleryPsTestGallery4482/applications/galleryPsTestGalleryApplication66?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ0ODIvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb242Nj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345/applications/galleryPsTestGalleryApplication8396?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTM0NS9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjgzOTY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\",\r\n \"supportedOSType\": \"Windows\"\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3c8cc243-ae26-4b4c-906e-a3f92d092245" + "225c4488-2c19-4733-b87e-da9c8fe349c1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -293,39 +302,42 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:32:14 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateGalleryApplication3Min;149,Microsoft.Compute/CreateUpdateGalleryApplication30Min;747" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "0aed36e2-3e01-4d4e-b3bd-9d697b5e3d71" + "159ef9d7-0712-420f-9e59-03fa20830888" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "b44b9a9f-5792-4ab2-87a7-7c6eef1a2ea3" + "3e9d2bab-37b2-4976-9bb5-19426611cd31" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013215Z:b44b9a9f-5792-4ab2-87a7-7c6eef1a2ea3" + "WESTUS:20201022T231108Z:3e9d2bab-37b2-4976-9bb5-19426611cd31" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:11:07 GMT" + ], "Content-Length": [ - "630" + "633" ], "Content-Type": [ "application/json; charset=utf-8" @@ -334,26 +346,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication66\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5617/providers/Microsoft.Compute/galleries/galleryPsTestGallery4482/applications/galleryPsTestGalleryApplication66\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication8396\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345/applications/galleryPsTestGalleryApplication8396\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5617/providers/Microsoft.Compute/galleries/galleryPsTestGallery4482/applications/galleryPsTestGalleryApplication66?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ0ODIvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb242Nj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345/applications/galleryPsTestGalleryApplication8396?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTM0NS9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjgzOTY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"Updated description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\",\r\n \"supportedOSType\": \"Windows\"\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "35d25410-f11f-46e4-990a-80780a603b6e" + "f8357eb1-d129-4319-a9ab-cfeb27254283" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -366,39 +378,42 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:32:45 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateGalleryApplication3Min;148,Microsoft.Compute/CreateUpdateGalleryApplication30Min;746" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "3064a32e-0741-4208-b54a-8e24a6abca59" + "d82ae477-02ca-40ab-a6fd-d1429f1a2186" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "45c8fe48-bb9b-47c8-b93f-d53489a50ad5" + "0877d6d2-f03c-44f2-9667-bfcf3361415f" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013246Z:45c8fe48-bb9b-47c8-b93f-d53489a50ad5" + "WESTUS:20201022T231139Z:0877d6d2-f03c-44f2-9667-bfcf3361415f" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:11:38 GMT" + ], "Content-Length": [ - "606" + "609" ], "Content-Type": [ "application/json; charset=utf-8" @@ -407,59 +422,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication66\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5617/providers/Microsoft.Compute/galleries/galleryPsTestGallery4482/applications/galleryPsTestGalleryApplication66\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"Updated description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication8396\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345/applications/galleryPsTestGalleryApplication8396\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"Updated description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5617/providers/Microsoft.Compute/galleries/galleryPsTestGallery4482/applications/galleryPsTestGalleryApplication66?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ0ODIvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb242Nj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345/applications/galleryPsTestGalleryApplication8396?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTM0NS9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjgzOTY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:32:44 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGalleryApplication3Min;298,Microsoft.Compute/GetGalleryApplication30Min;1987" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "ce0dd273-bc60-4f19-bb4e-eb7fd8dd8070" + "b667a4e5-4de0-456f-bba5-67a036e8b2e3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "3099e776-ee9f-429c-8eaf-4d5b301bbf44" + "6fa8ec45-36f0-41ef-b14e-cab3128a9af4" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013245Z:3099e776-ee9f-429c-8eaf-4d5b301bbf44" + "WESTUS:20201022T231138Z:6fa8ec45-36f0-41ef-b14e-cab3128a9af4" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:11:37 GMT" + ], "Content-Length": [ - "630" + "633" ], "Content-Type": [ "application/json; charset=utf-8" @@ -468,65 +486,68 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication66\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5617/providers/Microsoft.Compute/galleries/galleryPsTestGallery4482/applications/galleryPsTestGalleryApplication66\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication8396\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345/applications/galleryPsTestGalleryApplication8396\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5617/providers/Microsoft.Compute/galleries/galleryPsTestGallery4482/applications/galleryPsTestGalleryApplication66?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ0ODIvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb242Nj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345/applications/galleryPsTestGalleryApplication8396?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTM0NS9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjgzOTY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "acdbcc98-de25-430b-bc23-9ec25e6835cf" + "0af66fef-8026-4466-a40e-b544436d5aae" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:32:45 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGalleryApplication3Min;297,Microsoft.Compute/GetGalleryApplication30Min;1986" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "810c17a2-6522-4760-a6dd-62ceda73590e" + "5467a309-046e-4c0d-8809-b7f856f076ab" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "43ae1152-d933-4b0e-8a56-ac4e51204ca9" + "f74c7f51-233f-44b9-b118-15ef77dea406" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013246Z:43ae1152-d933-4b0e-8a56-ac4e51204ca9" + "WESTUS:20201022T231138Z:f74c7f51-233f-44b9-b118-15ef77dea406" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:11:38 GMT" + ], "Content-Length": [ - "630" + "633" ], "Content-Type": [ "application/json; charset=utf-8" @@ -535,65 +556,68 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication66\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5617/providers/Microsoft.Compute/galleries/galleryPsTestGallery4482/applications/galleryPsTestGalleryApplication66\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication8396\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345/applications/galleryPsTestGalleryApplication8396\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5617/providers/Microsoft.Compute/galleries/galleryPsTestGallery4482/applications/galleryPsTestGalleryApplication66?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ0ODIvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb242Nj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345/applications/galleryPsTestGalleryApplication8396?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTM0NS9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjgzOTY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fd3244f5-e487-49a1-94c8-24af1c44e351" + "d270c6cb-161d-417b-a41c-760765086ea4" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:32:45 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGalleryApplication3Min;296,Microsoft.Compute/GetGalleryApplication30Min;1985" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "d76630d1-7553-4af8-9778-d6c882581449" + "a00440e9-54ef-432f-be65-a0ce2ee44b28" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "1a9d8147-f263-49c5-9bc6-8a72f270d1cb" + "b9b4db3c-8705-49c6-a536-7eb8f04f264b" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013246Z:1a9d8147-f263-49c5-9bc6-8a72f270d1cb" + "WESTUS:20201022T231139Z:b9b4db3c-8705-49c6-a536-7eb8f04f264b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:11:38 GMT" + ], "Content-Length": [ - "606" + "609" ], "Content-Type": [ "application/json; charset=utf-8" @@ -602,193 +626,202 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication66\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5617/providers/Microsoft.Compute/galleries/galleryPsTestGallery4482/applications/galleryPsTestGalleryApplication66\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"Updated description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication8396\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345/applications/galleryPsTestGalleryApplication8396\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"Updated description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5617/providers/Microsoft.Compute/galleries/galleryPsTestGallery4482/applications/galleryPsTestGalleryApplication66?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ0ODIvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb242Nj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345/applications/galleryPsTestGalleryApplication8396?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTM0NS9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjgzOTY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab6411a5-a5d6-461b-b2f8-c220bc1bad6b" + "5ff93915-a1ce-4a5c-89fe-f57374fbcc84" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:32:46 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/DeleteGalleryApplication3Min;49,Microsoft.Compute/DeleteGalleryApplication30Min;298" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "5a3a52ef-c62e-4177-9bb9-1a4200d4ccc2" + "b50d9f3b-f988-417d-b0e0-17ee28cb7c25" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "bd1f8455-a43a-4658-8497-5061b262f686" + "abe07287-6fe0-44fb-9acb-91e7cb5bfd53" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013247Z:bd1f8455-a43a-4658-8497-5061b262f686" + "WESTUS:20201022T231139Z:abe07287-6fe0-44fb-9acb-91e7cb5bfd53" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 22 Oct 2020 23:11:38 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5617/providers/Microsoft.Compute/galleries/galleryPsTestGallery4482?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ0ODI/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTM0NT9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "479ab535-c533-4507-9b04-d61a6d30e396" + "dd8ac6e5-68c4-49b6-9bf6-8faa08b899f2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:32:47 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/35934cfc-4c10-45bb-b940-745e7021ad46?monitor=true&api-version=2019-12-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/78b08b5e-6185-4dc5-8079-0a209db322a9?monitor=true&api-version=2020-09-30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/35934cfc-4c10-45bb-b940-745e7021ad46?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/78b08b5e-6185-4dc5-8079-0a209db322a9?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;298" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "35934cfc-4c10-45bb-b940-745e7021ad46" + "78b08b5e-6185-4dc5-8079-0a209db322a9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "475dbd39-0e66-4527-a8e9-5b82ce5e666a" + "d4ce9a0a-34f1-4af8-baaf-f9fde957b858" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013248Z:475dbd39-0e66-4527-a8e9-5b82ce5e666a" + "WESTUS:20201022T231140Z:d4ce9a0a-34f1-4af8-baaf-f9fde957b858" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 22 Oct 2020 23:11:40 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/35934cfc-4c10-45bb-b940-745e7021ad46?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8zNTkzNGNmYy00YzEwLTQ1YmItYjk0MC03NDVlNzAyMWFkNDY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/78b08b5e-6185-4dc5-8079-0a209db322a9?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy83OGIwOGI1ZS02MTg1LTRkYzUtODA3OS0wYTIwOWRiMzIyYTk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:33:19 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4191" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "20a2652a-0010-4462-8523-ac22d8cc95dd" + "c25eb790-9a4e-4f9f-8283-496e52b0c9f2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11994" ], "x-ms-correlation-request-id": [ - "ea3f6c47-2142-44c4-8b5f-bda1fe9c562a" + "87684c77-a972-4747-9165-e36cb7e55a54" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013319Z:ea3f6c47-2142-44c4-8b5f-bda1fe9c562a" + "WESTUS:20201022T231211Z:87684c77-a972-4747-9165-e36cb7e55a54" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:12:10 GMT" + ], "Content-Length": [ - "183" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -797,62 +830,65 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:32:48.1349226-08:00\",\r\n \"endTime\": \"2020-02-20T17:32:48.400525-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"35934cfc-4c10-45bb-b940-745e7021ad46\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:11:40.7226448-07:00\",\r\n \"endTime\": \"2020-10-22T16:11:41.0195276-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"78b08b5e-6185-4dc5-8079-0a209db322a9\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/35934cfc-4c10-45bb-b940-745e7021ad46?monitor=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8zNTkzNGNmYy00YzEwLTQ1YmItYjk0MC03NDVlNzAyMWFkNDY/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/78b08b5e-6185-4dc5-8079-0a209db322a9?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy83OGIwOGI1ZS02MTg1LTRkYzUtODA3OS0wYTIwOWRiMzIyYTk/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:33:19 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4190" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "0533566a-fc0b-4511-9f3d-9515119e3e34" + "870a654d-f08a-4824-a8ae-098e92606308" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11993" ], "x-ms-correlation-request-id": [ - "d99b1534-5ab6-4bee-a6b8-af480733a9da" + "bc691707-dd6e-4e7c-a5b4-842bf218c52b" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013319Z:d99b1534-5ab6-4bee-a6b8-af480733a9da" + "WESTUS:20201022T231211Z:bc691707-dd6e-4e7c-a5b4-842bf218c52b" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 22 Oct 2020 23:12:10 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -861,9 +897,9 @@ ], "Names": { "GalleryApplication_CRUD_Tests": [ - "galleryPsTestRg5617", - "galleryPsTestGallery4482", - "galleryPsTestGalleryApplication66" + "galleryPsTestRg115", + "galleryPsTestGallery5345", + "galleryPsTestGalleryApplication8396" ] }, "Variables": { diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryImageVersion_CRUD_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryImageVersion_CRUD_Tests.json index 7a38bf49d46c..f609515928f4 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,59 +1,59 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "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=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ac31b603-694b-4d3e-a52a-6df7fb743733" + "524a4299-78ae-443f-ab53-5e18d9ecb670" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:05:00 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "19a6b8e7-2f9b-4b25-aea4-718323f85895_132307901257351999" + "19a6b8e7-2f9b-4b25-aea4-718323f85895_132468954105547249" ], "x-ms-request-id": [ - "0e6bcb20-c988-4ecc-a6bc-b36adc93a70b" + "e3d9d638-d033-48b2-ba82-2e31f985292e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11999" ], "x-ms-correlation-request-id": [ - "031a6e53-6691-461b-8180-f81b0cd25f26" + "ec30d52a-c04d-4a8a-976f-c7d0beabfcf3" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060501Z:031a6e53-6691-461b-8180-f81b0cd25f26" + "WESTUS:20201022T231222Z:ec30d52a-c04d-4a8a-976f-c7d0beabfcf3" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:12:21 GMT" + ], "Content-Length": [ "309" ], @@ -64,55 +64,52 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus2\",\r\n \"name\": \"4.127.20180315\",\r\n \"id\": \"/Subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/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/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/galleryPsTestRg243?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0Mz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg9950?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg243\": \"2020-06-13 06:05:01Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg9950\": \"2020-10-22 23:12:22Z\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "41d5784b-c1a3-4033-b172-a8bc26f324dd" + "7537699c-aad6-4090-a89f-6dc743726f89" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "98" + "99" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:05:02 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "e3fce470-08fc-4c7e-a140-9cc14a26ee77" + "3251eb0d-fd65-438f-9d12-642f9ad94521" ], "x-ms-correlation-request-id": [ - "e3fce470-08fc-4c7e-a140-9cc14a26ee77" + "3251eb0d-fd65-438f-9d12-642f9ad94521" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060502Z:e3fce470-08fc-4c7e-a140-9cc14a26ee77" + "WESTUS:20201022T231223Z:3251eb0d-fd65-438f-9d12-642f9ad94521" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,8 +117,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:12:23 GMT" + ], "Content-Length": [ - "243" + "246" ], "Content-Type": [ "application/json; charset=utf-8" @@ -130,55 +130,52 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243\",\r\n \"name\": \"galleryPsTestRg243\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg243\": \"2020-06-13 06:05:01Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950\",\r\n \"name\": \"galleryPsTestRg9950\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg9950\": \"2020-10-22 23:12:22Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/galleryPsTestRg243?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0Mz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg9950?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg243\": \"2020-06-13 06:05:33Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg9950\": \"2020-10-22 23:12:55Z\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6656342b-6a43-44d6-9e90-1f2d3c19e9cb" + "fa471970-3a28-44b3-af21-d0171f4b6bde" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "98" + "99" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:05:32 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-request-id": [ - "ec82bb0e-b76e-4d02-aafa-2faafd5e0849" + "a156a281-5cd9-4a9e-aa69-40ab5bf23a20" ], "x-ms-correlation-request-id": [ - "ec82bb0e-b76e-4d02-aafa-2faafd5e0849" + "a156a281-5cd9-4a9e-aa69-40ab5bf23a20" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060533Z:ec82bb0e-b76e-4d02-aafa-2faafd5e0849" + "WESTUS:20201022T231255Z:a156a281-5cd9-4a9e-aa69-40ab5bf23a20" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -186,8 +183,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:12:55 GMT" + ], "Content-Length": [ - "243" + "246" ], "Content-Type": [ "application/json; charset=utf-8" @@ -196,25 +196,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243\",\r\n \"name\": \"galleryPsTestRg243\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg243\": \"2020-06-13 06:05:33Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950\",\r\n \"name\": \"galleryPsTestRg9950\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg9950\": \"2020-10-22 23:12:55Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Storage/storageAccounts/saforgallery5476?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3NhZm9yZ2FsbGVyeTU0NzY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Storage/storageAccounts/saforgallery3821?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnkzODIxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "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": [ - "297d2226-fe35-4725-aff0-3af708904008" + "0ced650a-3c4e-42b4-9c27-d4a15194d163" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ], "Content-Type": [ @@ -228,62 +228,62 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:05:04 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Storage/locations/eastus2/asyncoperations/90a590a8-604a-4ac3-9630-44d047d0d0f1?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Storage/locations/eastus2/asyncoperations/3f576258-4958-4682-9407-9782624fc6bf?monitor=true&api-version=2015-06-15" ], "Retry-After": [ "17" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "90a590a8-604a-4ac3-9630-44d047d0d0f1" + "3f576258-4958-4682-9407-9782624fc6bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "c2a5b1f7-1608-4dd2-8f4a-a778e633a60c" + "6c9955dd-0fdc-4140-bb7f-98090a4e739c" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060505Z:c2a5b1f7-1608-4dd2-8f4a-a778e633a60c" + "WESTUS:20201022T231227Z:6c9955dd-0fdc-4140-bb7f-98090a4e739c" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 22 Oct 2020 23:12:27 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Storage/locations/eastus2/asyncoperations/90a590a8-604a-4ac3-9630-44d047d0d0f1?monitor=true&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMi9hc3luY29wZXJhdGlvbnMvOTBhNTkwYTgtNjA0YS00YWMzLTk2MzAtNDRkMDQ3ZDBkMGYxP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Storage/locations/eastus2/asyncoperations/3f576258-4958-4682-9407-9782624fc6bf?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMi9hc3luY29wZXJhdGlvbnMvM2Y1NzYyNTgtNDk1OC00NjgyLTk0MDctOTc4MjYyNGZjNmJmP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ] }, @@ -291,33 +291,33 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:05:21 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "4a02ea82-c867-420b-b405-1112411a9845" + "1f615557-b640-4a77-9b73-6b04f4cf77ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-correlation-request-id": [ - "cec71094-328e-497b-8a87-6d0da1125843" + "b71c7a34-df3a-410e-89d4-a7c73cd44291" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060522Z:cec71094-328e-497b-8a87-6d0da1125843" + "WESTUS:20201022T231244Z:b71c7a34-df3a-410e-89d4-a7c73cd44291" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:12:44 GMT" + ], "Content-Length": [ "89" ], @@ -332,21 +332,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "950da9c8-c41b-4849-b172-1251602a9f64" + "b4520f08-9726-40d8-8398-1818808de61e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ] }, @@ -354,35 +354,35 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:05:31 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "59ea3525-d5fb-4c67-a078-9a55c42d0c96" + "2b5a84b4-ccaa-4bbe-a5c4-2919421c5463" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-correlation-request-id": [ - "eec59d25-3d80-4f19-9574-f4baac04aed3" + "85990e2b-9d3d-422e-94cc-4e5915701bad" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060532Z:eec59d25-3d80-4f19-9574-f4baac04aed3" + "WESTUS:20201022T231254Z:85990e2b-9d3d-422e-94cc-4e5915701bad" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:12:54 GMT" + ], "Content-Length": [ - "764" + "765" ], "Content-Type": [ "application/json" @@ -391,25 +391,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Storage/storageAccounts/saforgallery5476\",\r\n \"name\": \"saforgallery5476\",\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\": \"2020-06-13T06:05:04.7476458Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery5476.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery5476.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery5476.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery5476.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/galleryPsTestRg9950/providers/Microsoft.Storage/storageAccounts/saforgallery3821\",\r\n \"name\": \"saforgallery3821\",\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\": \"2020-10-22T23:12:26.7229991Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery3821.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery3821.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery3821.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery3821.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/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Storage/storageAccounts/saforgallery5476?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3NhZm9yZ2FsbGVyeTU0NzY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Storage/storageAccounts/saforgallery3821?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnkzODIxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b5a1c459-6f1a-40ed-89b2-0a6f9bcea3fc" + "aaec5fb1-e7b1-47d1-bf4c-e87361517497" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ] }, @@ -417,35 +417,35 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:05:31 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "8ef47fd1-2dbb-4375-8c5c-c1c3eb782aea" + "56de594c-d2f9-4b04-9a62-717aac0e9ad8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-correlation-request-id": [ - "eb1e1128-552e-4050-9240-a9027870d4d0" + "27ff3ea4-e0d0-478b-a04e-82a072623f07" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060532Z:eb1e1128-552e-4050-9240-a9027870d4d0" + "WESTUS:20201022T231254Z:27ff3ea4-e0d0-478b-a04e-82a072623f07" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:12:54 GMT" + ], "Content-Length": [ - "752" + "753" ], "Content-Type": [ "application/json" @@ -454,25 +454,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Storage/storageAccounts/saforgallery5476\",\r\n \"name\": \"saforgallery5476\",\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\": \"2020-06-13T06:05:04.7476458Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery5476.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery5476.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery5476.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery5476.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/galleryPsTestRg9950/providers/Microsoft.Storage/storageAccounts/saforgallery3821\",\r\n \"name\": \"saforgallery3821\",\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\": \"2020-10-22T23:12:26.7229991Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery3821.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery3821.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery3821.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery3821.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/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/publicIPAddresses/pip6201?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwNjIwMT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/publicIPAddresses/pip6143?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDYxNDM/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8804\"\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\": \"dn6774\"\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": [ - "7fb8384d-4d61-41c7-98cc-f2d886a343d1" + "ebf931e7-ca8d-4a6a-95b1-97e5cd47bf44" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ], "Content-Type": [ @@ -486,48 +486,48 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:05:35 GMT" - ], "Pragma": [ "no-cache" ], "Retry-After": [ "1" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "b7dedcfc-6fdd-4c15-8c06-c689b92e9696" + "7532e2a6-88ab-4d7a-964a-8263d378ac81" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/b7dedcfc-6fdd-4c15-8c06-c689b92e9696?api-version=2019-09-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Network/locations/eastus2/operations/7532e2a6-88ab-4d7a-964a-8263d378ac81?api-version=2019-09-01" ], "x-ms-correlation-request-id": [ - "8e9f75bf-fa20-4595-9416-c907381a7295" + "cece5f3b-ca70-4b6c-a536-77f8d86b6f26" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "0608508a-4f25-488f-8910-7221bb6053e0" + "793142d6-0a8a-43b4-ad2f-ef2a55d422af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060536Z:8e9f75bf-fa20-4595-9416-c907381a7295" + "WESTUS:20201022T231304Z:cece5f3b-ca70-4b6c-a536-77f8d86b6f26" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:13:04 GMT" + ], "Content-Length": [ - "762" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -536,19 +536,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pip6201\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/publicIPAddresses/pip6201\",\r\n \"etag\": \"W/\\\"68deff60-75b8-4484-a46e-2402866a4908\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"90f0e444-9702-4d06-869a-1c171377e680\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8804\",\r\n \"fqdn\": \"dn8804.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\": \"pip6143\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/publicIPAddresses/pip6143\",\r\n \"etag\": \"W/\\\"281a13fc-bcd3-47cf-ae97-e63067e556a8\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ef04c573-631f-41c6-ae52-33f94dbe81e3\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn6774\",\r\n \"fqdn\": \"dn6774.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/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/b7dedcfc-6fdd-4c15-8c06-c689b92e9696?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2I3ZGVkY2ZjLTZmZGQtNGMxNS04YzA2LWM2ODliOTJlOTY5Nj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Network/locations/eastus2/operations/7532e2a6-88ab-4d7a-964a-8263d378ac81?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzc1MzJlMmE2LTg4YWItNGQ3YS05NjRhLTgyNjNkMzc4YWM4MT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ] }, @@ -556,37 +556,37 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:05:36 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "7e21e434-a598-4f14-bd71-a82b93be38c2" + "4e4768d4-fcb5-488d-adc3-9832138d300b" ], "x-ms-correlation-request-id": [ - "48722624-fec8-4e0d-8968-a2212030204b" + "f199f5d8-aa22-4480-bdfd-2f7218b4aa19" ], "x-ms-arm-service-request-id": [ - "6000c284-a202-4a76-812c-f35c6737aa45" + "71e92e3c-8d02-4f3c-bea4-3e6f4147f098" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060537Z:48722624-fec8-4e0d-8968-a2212030204b" + "WESTUS:20201022T231306Z:f199f5d8-aa22-4480-bdfd-2f7218b4aa19" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:13:05 GMT" + ], "Content-Length": [ "29" ], @@ -601,15 +601,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/publicIPAddresses/pip6201?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwNjIwMT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/publicIPAddresses/pip6143?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDYxNDM/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ] }, @@ -617,42 +617,42 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:05:37 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"c456af1e-6ef7-4ffd-8ccb-fb028719225d\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "W/\"b7b721e8-2724-402f-aea5-0c969920385b\"" ], "x-ms-request-id": [ - "f495e929-15dd-4cb7-8ffb-893f16024f24" + "56bccf52-ec53-4d1f-91ad-53994ce312d6" ], "x-ms-correlation-request-id": [ - "f36accc8-5610-428b-a24e-b95fd486fb22" + "7eb19a94-854b-48d1-9b7c-d77fd064c875" ], "x-ms-arm-service-request-id": [ - "f56b2877-6d82-4ce9-9b46-a9986467383c" + "e4cdd922-47e8-423e-8b35-9679fab20928" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060537Z:f36accc8-5610-428b-a24e-b95fd486fb22" + "WESTUS:20201022T231306Z:7eb19a94-854b-48d1-9b7c-d77fd064c875" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:13:06 GMT" + ], "Content-Length": [ - "763" + "764" ], "Content-Type": [ "application/json; charset=utf-8" @@ -661,25 +661,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pip6201\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/publicIPAddresses/pip6201\",\r\n \"etag\": \"W/\\\"c456af1e-6ef7-4ffd-8ccb-fb028719225d\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"90f0e444-9702-4d06-869a-1c171377e680\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8804\",\r\n \"fqdn\": \"dn8804.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\": \"pip6143\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/publicIPAddresses/pip6143\",\r\n \"etag\": \"W/\\\"b7b721e8-2724-402f-aea5-0c969920385b\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ef04c573-631f-41c6-ae52-33f94dbe81e3\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn6774\",\r\n \"fqdn\": \"dn6774.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/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/publicIPAddresses/pip6201?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwNjIwMT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/publicIPAddresses/pip6143?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDYxNDM/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d0a1fc82-9a62-4839-ab87-83f2ea6672a9" + "0f2104ff-6c24-40d6-b0f8-d6b5d419bd4f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ] }, @@ -687,42 +687,42 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:05:37 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"c456af1e-6ef7-4ffd-8ccb-fb028719225d\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "W/\"b7b721e8-2724-402f-aea5-0c969920385b\"" ], "x-ms-request-id": [ - "8f5c3543-fc47-4cab-bb7b-82ac57ed084a" + "06baff6f-0236-46d0-9046-7e88364363fd" ], "x-ms-correlation-request-id": [ - "36f75c72-cfee-4806-b915-611bc76fcb96" + "fbb82087-9702-413d-9689-b7c4be9d1db5" ], "x-ms-arm-service-request-id": [ - "27a22d07-33f2-4cd2-ba9a-f3c4c37b9a20" + "501d05dd-e06b-4b4c-b524-274d88be04ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060537Z:36f75c72-cfee-4806-b915-611bc76fcb96" + "WESTUS:20201022T231306Z:fbb82087-9702-413d-9689-b7c4be9d1db5" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:13:06 GMT" + ], "Content-Length": [ - "763" + "764" ], "Content-Type": [ "application/json; charset=utf-8" @@ -731,80 +731,80 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pip6201\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/publicIPAddresses/pip6201\",\r\n \"etag\": \"W/\\\"c456af1e-6ef7-4ffd-8ccb-fb028719225d\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"90f0e444-9702-4d06-869a-1c171377e680\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8804\",\r\n \"fqdn\": \"dn8804.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\": \"pip6143\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/publicIPAddresses/pip6143\",\r\n \"etag\": \"W/\\\"b7b721e8-2724-402f-aea5-0c969920385b\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ef04c573-631f-41c6-ae52-33f94dbe81e3\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn6774\",\r\n \"fqdn\": \"dn6774.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/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/virtualNetworks/vn4028?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuNDAyOD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/virtualNetworks/vn632?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYzMj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "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\": \"sn489\"\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\": \"sn3362\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "14adee68-6b6c-4ac1-a1ce-436a69c817c4" + "345f66fc-e737-43b0-98e5-6c8b107bdee3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "395" + "396" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:05:38 GMT" - ], "Pragma": [ "no-cache" ], "Retry-After": [ "3" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "bdc24368-d30d-4885-b570-284b015d5bf1" + "cab4cbed-2531-4ac6-aa8d-6283f50d9d19" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/bdc24368-d30d-4885-b570-284b015d5bf1?api-version=2019-09-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Network/locations/eastus2/operations/cab4cbed-2531-4ac6-aa8d-6283f50d9d19?api-version=2019-09-01" ], "x-ms-correlation-request-id": [ - "b7daa447-1e3b-4d15-9c05-5aae4dd79372" + "48f14a07-d4f3-4580-80e4-4d4b79122f2a" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "cec5a878-a550-4238-9e24-da866627e7bb" + "430d0310-19fd-4484-bfe4-260834618e13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060539Z:b7daa447-1e3b-4d15-9c05-5aae4dd79372" + "WESTUS:20201022T231307Z:48f14a07-d4f3-4580-80e4-4d4b79122f2a" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:13:07 GMT" + ], "Content-Length": [ - "1357" + "1384" ], "Content-Type": [ "application/json; charset=utf-8" @@ -813,19 +813,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vn4028\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/virtualNetworks/vn4028\",\r\n \"etag\": \"W/\\\"58b5dbd2-8380-4f0d-bbf9-878ef4c420f8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"59f04759-b4a5-4be2-9367-19193eace7f9\",\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\": \"sn489\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/virtualNetworks/vn4028/subnets/sn489\",\r\n \"etag\": \"W/\\\"58b5dbd2-8380-4f0d-bbf9-878ef4c420f8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vn632\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/virtualNetworks/vn632\",\r\n \"etag\": \"W/\\\"ae947008-c7f8-4704-9a7e-6f5e949cb263\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"1e3b4064-7118-4a46-af43-c4ee9222f39e\",\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\": \"sn3362\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/virtualNetworks/vn632/subnets/sn3362\",\r\n \"etag\": \"W/\\\"ae947008-c7f8-4704-9a7e-6f5e949cb263\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/bdc24368-d30d-4885-b570-284b015d5bf1?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2JkYzI0MzY4LWQzMGQtNDg4NS1iNTcwLTI4NGIwMTVkNWJmMT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Network/locations/eastus2/operations/cab4cbed-2531-4ac6-aa8d-6283f50d9d19?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2NhYjRjYmVkLTI1MzEtNGFjNi1hYThkLTYyODNmNTBkOWQxOT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ] }, @@ -833,37 +833,37 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:05:41 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "b8303af1-9119-4dc5-9b15-932e43fb84b8" + "4b75a0bf-6494-4d75-be05-2fcafafc444c" ], "x-ms-correlation-request-id": [ - "791b3eeb-720e-4238-8e60-9dc7af3c71f7" + "508c5a83-ff2c-401b-bee8-806e584f265c" ], "x-ms-arm-service-request-id": [ - "fb7e7b36-c100-4d9c-ac2f-d419e6ac6619" + "964f44f7-b3b1-4fab-ad7d-2916462525e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060542Z:791b3eeb-720e-4238-8e60-9dc7af3c71f7" + "WESTUS:20201022T231311Z:508c5a83-ff2c-401b-bee8-806e584f265c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:13:10 GMT" + ], "Content-Length": [ "29" ], @@ -878,15 +878,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/virtualNetworks/vn4028?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuNDAyOD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/virtualNetworks/vn632?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYzMj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ] }, @@ -894,42 +894,42 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:05:41 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"5bc34bb8-9852-40f2-bcea-38985b1a1822\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "W/\"ee84d36d-4c1f-425a-946d-4fcc9baa64c7\"" ], "x-ms-request-id": [ - "e38d2df3-013c-45bd-80a2-a0569637096e" + "5de134af-3bd9-482b-878b-c0f6805502c6" ], "x-ms-correlation-request-id": [ - "3f424fdb-fe9a-4bd6-9d2c-4b53e06a2d2d" + "3c6e1e80-802b-4757-97ac-fcbc8c2c0ca1" ], "x-ms-arm-service-request-id": [ - "d704745d-1355-4441-80b6-59654f894b3a" + "85ca8745-f755-4ac1-a464-279c300deeb3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060542Z:3f424fdb-fe9a-4bd6-9d2c-4b53e06a2d2d" + "WESTUS:20201022T231311Z:3c6e1e80-802b-4757-97ac-fcbc8c2c0ca1" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:13:10 GMT" + ], "Content-Length": [ - "1359" + "1386" ], "Content-Type": [ "application/json; charset=utf-8" @@ -938,25 +938,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vn4028\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/virtualNetworks/vn4028\",\r\n \"etag\": \"W/\\\"5bc34bb8-9852-40f2-bcea-38985b1a1822\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"59f04759-b4a5-4be2-9367-19193eace7f9\",\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\": \"sn489\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/virtualNetworks/vn4028/subnets/sn489\",\r\n \"etag\": \"W/\\\"5bc34bb8-9852-40f2-bcea-38985b1a1822\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vn632\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/virtualNetworks/vn632\",\r\n \"etag\": \"W/\\\"ee84d36d-4c1f-425a-946d-4fcc9baa64c7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1e3b4064-7118-4a46-af43-c4ee9222f39e\",\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\": \"sn3362\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/virtualNetworks/vn632/subnets/sn3362\",\r\n \"etag\": \"W/\\\"ee84d36d-4c1f-425a-946d-4fcc9baa64c7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/virtualNetworks/vn4028/subnets/sn489?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuNDAyOC9zdWJuZXRzL3NuNDg5P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/virtualNetworks/vn632/subnets/sn3362?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYzMi9zdWJuZXRzL3NuMzM2Mj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4c39c2e7-1f12-43fe-adce-ba3fe2631f68" + "7334cd0e-ec3d-4c63-9232-26d9fb710958" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ] }, @@ -964,42 +964,42 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:05:41 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"5bc34bb8-9852-40f2-bcea-38985b1a1822\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "W/\"ee84d36d-4c1f-425a-946d-4fcc9baa64c7\"" ], "x-ms-request-id": [ - "e86eedf8-cd96-4ebe-9b0e-952d7590d249" + "aae6e270-4cff-4a92-a6da-d64ac910bcb8" ], "x-ms-correlation-request-id": [ - "e62e8c51-0cec-41a4-a0ba-aae6bb26c056" + "913becde-f158-46d8-a6a5-59ee07add035" ], "x-ms-arm-service-request-id": [ - "e3e88fdb-2899-4386-ad20-f8076adc2ee7" + "65cc02f1-d0aa-4400-b5a2-063d52e0e0f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060542Z:e62e8c51-0cec-41a4-a0ba-aae6bb26c056" + "WESTUS:20201022T231311Z:913becde-f158-46d8-a6a5-59ee07add035" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:13:10 GMT" + ], "Content-Length": [ - "526" + "548" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1008,77 +1008,77 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"sn489\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/virtualNetworks/vn4028/subnets/sn489\",\r\n \"etag\": \"W/\\\"5bc34bb8-9852-40f2-bcea-38985b1a1822\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"sn3362\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/virtualNetworks/vn632/subnets/sn3362\",\r\n \"etag\": \"W/\\\"ee84d36d-4c1f-425a-946d-4fcc9baa64c7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/networkInterfaces/nic7376?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzM3Nj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/networkInterfaces/nic1723?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE3MjM/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"sn489\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/virtualNetworks/vn4028/subnets/sn489\"\r\n }\r\n },\r\n \"name\": \"ip4804\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"sn3362\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/virtualNetworks/vn632/subnets/sn3362\"\r\n }\r\n },\r\n \"name\": \"ip4160\"\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": [ - "c068805d-c23a-48dd-89a7-ac068706135e" + "012959d4-1d69-46dd-929f-0cfcae1bf4c7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "745" + "747" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:05:43 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "0fc16759-d954-428f-aa68-383c0083c2cf" + "2706d78a-c410-4725-9cb7-afd7c1ec8f59" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/0fc16759-d954-428f-aa68-383c0083c2cf?api-version=2019-09-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Network/locations/eastus2/operations/2706d78a-c410-4725-9cb7-afd7c1ec8f59?api-version=2019-09-01" ], "x-ms-correlation-request-id": [ - "9898f6e5-69c0-4c62-a6de-61f91e6fa7c3" + "1531875a-ae53-4824-9d56-66c2f1eb5628" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "381c06e3-1028-45e0-9592-ec85c43d433c" + "6f07f4fd-cc6e-44cb-9d0d-b0faee1955bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060543Z:9898f6e5-69c0-4c62-a6de-61f91e6fa7c3" + "WESTUS:20201022T231313Z:1531875a-ae53-4824-9d56-66c2f1eb5628" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:13:12 GMT" + ], "Content-Length": [ - "1639" + "1642" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1087,19 +1087,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"nic7376\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/networkInterfaces/nic7376\",\r\n \"etag\": \"W/\\\"cb41be3d-d430-4995-b420-ce2dccb3bb89\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0a55184f-5d81-469d-85f8-3b9a0a96f2c1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip4804\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/networkInterfaces/nic7376/ipConfigurations/ip4804\",\r\n \"etag\": \"W/\\\"cb41be3d-d430-4995-b420-ce2dccb3bb89\\\"\",\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/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/virtualNetworks/vn4028/subnets/sn489\"\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\": \"lfd5awnfwtrexe1hdemt3lhh5b.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic1723\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/networkInterfaces/nic1723\",\r\n \"etag\": \"W/\\\"030b49b4-bdb0-4071-8ad9-a0ea9b064905\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7ac19ab6-65e5-4d10-ac69-9e0e94ec2625\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip4160\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/networkInterfaces/nic1723/ipConfigurations/ip4160\",\r\n \"etag\": \"W/\\\"030b49b4-bdb0-4071-8ad9-a0ea9b064905\\\"\",\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/galleryPsTestRg9950/providers/Microsoft.Network/virtualNetworks/vn632/subnets/sn3362\"\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\": \"mradwhqyofdevl0dytxjeixttg.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/networkInterfaces/nic7376?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzM3Nj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/networkInterfaces/nic1723?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE3MjM/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ] }, @@ -1107,42 +1107,42 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:05:43 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"cb41be3d-d430-4995-b420-ce2dccb3bb89\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "W/\"030b49b4-bdb0-4071-8ad9-a0ea9b064905\"" ], "x-ms-request-id": [ - "9114f046-96cb-46e2-b3ed-074cf2cbff91" + "e795b50f-0119-46cf-9d0c-b00d8cba62fe" ], "x-ms-correlation-request-id": [ - "13c4e6b0-bbdc-4537-bac6-ecff312cdbac" + "5a82ac84-f5f1-4540-b889-28996b96e93b" ], "x-ms-arm-service-request-id": [ - "c5f5c238-ea27-446b-80f6-af92b0290487" + "326619c7-67ee-40ca-916e-fd6d288cc21b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060544Z:13c4e6b0-bbdc-4537-bac6-ecff312cdbac" + "WESTUS:20201022T231313Z:5a82ac84-f5f1-4540-b889-28996b96e93b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:13:12 GMT" + ], "Content-Length": [ - "1639" + "1642" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1151,25 +1151,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"nic7376\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/networkInterfaces/nic7376\",\r\n \"etag\": \"W/\\\"cb41be3d-d430-4995-b420-ce2dccb3bb89\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0a55184f-5d81-469d-85f8-3b9a0a96f2c1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip4804\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/networkInterfaces/nic7376/ipConfigurations/ip4804\",\r\n \"etag\": \"W/\\\"cb41be3d-d430-4995-b420-ce2dccb3bb89\\\"\",\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/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/virtualNetworks/vn4028/subnets/sn489\"\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\": \"lfd5awnfwtrexe1hdemt3lhh5b.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic1723\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/networkInterfaces/nic1723\",\r\n \"etag\": \"W/\\\"030b49b4-bdb0-4071-8ad9-a0ea9b064905\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7ac19ab6-65e5-4d10-ac69-9e0e94ec2625\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip4160\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/networkInterfaces/nic1723/ipConfigurations/ip4160\",\r\n \"etag\": \"W/\\\"030b49b4-bdb0-4071-8ad9-a0ea9b064905\\\"\",\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/galleryPsTestRg9950/providers/Microsoft.Network/virtualNetworks/vn632/subnets/sn3362\"\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\": \"mradwhqyofdevl0dytxjeixttg.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/networkInterfaces/nic7376?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzM3Nj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/networkInterfaces/nic1723?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE3MjM/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c11b772-f427-4b28-ae78-9c13afb46eda" + "1eccf200-5ccf-469c-8533-bfcfe2db3bd6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ] }, @@ -1177,42 +1177,42 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:05:43 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"cb41be3d-d430-4995-b420-ce2dccb3bb89\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "W/\"030b49b4-bdb0-4071-8ad9-a0ea9b064905\"" ], "x-ms-request-id": [ - "37820d1d-91aa-4418-9a95-217c119a9bca" + "a4b58e59-4245-42bc-af98-811f6ad269cf" ], "x-ms-correlation-request-id": [ - "2a946641-ada0-4867-a3ca-4092ec236191" + "9c695355-17ac-421d-955f-632262d51cf3" ], "x-ms-arm-service-request-id": [ - "ef655b7c-fe8d-4841-910c-121f55bc92a3" + "9e960e31-90b6-4230-a3fd-d17715647f29" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060544Z:2a946641-ada0-4867-a3ca-4092ec236191" + "WESTUS:20201022T231313Z:9c695355-17ac-421d-955f-632262d51cf3" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:13:12 GMT" + ], "Content-Length": [ - "1639" + "1642" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1221,26 +1221,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"nic7376\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/networkInterfaces/nic7376\",\r\n \"etag\": \"W/\\\"cb41be3d-d430-4995-b420-ce2dccb3bb89\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0a55184f-5d81-469d-85f8-3b9a0a96f2c1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip4804\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/networkInterfaces/nic7376/ipConfigurations/ip4804\",\r\n \"etag\": \"W/\\\"cb41be3d-d430-4995-b420-ce2dccb3bb89\\\"\",\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/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/virtualNetworks/vn4028/subnets/sn489\"\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\": \"lfd5awnfwtrexe1hdemt3lhh5b.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic1723\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/networkInterfaces/nic1723\",\r\n \"etag\": \"W/\\\"030b49b4-bdb0-4071-8ad9-a0ea9b064905\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7ac19ab6-65e5-4d10-ac69-9e0e94ec2625\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip4160\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/networkInterfaces/nic1723/ipConfigurations/ip4160\",\r\n \"etag\": \"W/\\\"030b49b4-bdb0-4071-8ad9-a0ea9b064905\\\"\",\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/galleryPsTestRg9950/providers/Microsoft.Network/virtualNetworks/vn632/subnets/sn3362\"\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\": \"mradwhqyofdevl0dytxjeixttg.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/availabilitySets/asforgallery4759?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXZhaWxhYmlsaXR5U2V0cy9hc2ZvcmdhbGxlcnk0NzU5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/availabilitySets/asforgallery9985?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXNmb3JnYWxsZXJ5OTk4NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "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": [ - "aa2cada8-6ab2-4560-bf0b-2f2f0f7443b3" + "4a20976a-23be-41e4-838a-d8ebf050b10f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1253,39 +1253,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:05:46 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199" + "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1197" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7b4edf20-4080-4e8e-bd87-a7eb506ac54d" + "fe8d2277-324d-4841-a750-ad7912c2433b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "0a26f7ef-95be-4fd5-88b8-55446ed69465" + "f3b32ee1-2077-4be5-87e2-68ec7ab1bc07" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060547Z:0a26f7ef-95be-4fd5-88b8-55446ed69465" + "WESTUS:20201022T231315Z:f3b32ee1-2077-4be5-87e2-68ec7ab1bc07" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:13:15 GMT" + ], "Content-Length": [ - "463" + "464" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1294,80 +1294,80 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"asforgallery4759\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/availabilitySets/asforgallery4759\",\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\": \"asforgallery9985\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/availabilitySets/asforgallery9985\",\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/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/virtualMachines/vm7497?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtNzQ5Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/virtualMachines/vm6924?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY5MjQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20180315\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://saforgallery5476.blob.core.windows.net/crptestar2173/oscrptestar7165.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/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/networkInterfaces/nic7376\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/availabilitySets/asforgallery4759\"\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_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20180315\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://saforgallery3821.blob.core.windows.net/crptestar8729/oscrptestar8032.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/galleryPsTestRg9950/providers/Microsoft.Network/networkInterfaces/nic1723\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/availabilitySets/asforgallery9985\"\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": [ - "a4c71acf-0b18-4b10-a54b-3ef1e36adbd9" + "1ce4f2f2-f8bd-418a-bafe-4287e415b818" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1234" + "1236" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:05:48 GMT" - ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/operations/bd621877-7a8e-4b1e-a333-fdd751c9958a?api-version=2020-06-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/8c4ed540-fa0b-44cc-82a3-d99b90efd887?api-version=2020-06-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": [ - "bd621877-7a8e-4b1e-a333-fdd751c9958a" + "8c4ed540-fa0b-44cc-82a3-d99b90efd887" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "56da39c1-53e4-484c-8498-0797227e7ea6" + "0445a9ad-6a8c-45d4-a61b-cf911ba4ddb7" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060549Z:56da39c1-53e4-484c-8498-0797227e7ea6" + "WESTUS:20201022T231329Z:0445a9ad-6a8c-45d4-a61b-cf911ba4ddb7" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:13:29 GMT" + ], "Content-Length": [ - "1847" + "1850" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1376,123 +1376,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vm7497\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/virtualMachines/vm7497\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"9c7ef702-b256-4a72-9039-985cad7ef809\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY4759\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20180315\",\r\n \"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://saforgallery5476.blob.core.windows.net/crptestar2173/oscrptestar7165.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/networkInterfaces/nic7376\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vm6924\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/virtualMachines/vm6924\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"e59ff4a8-2d17-4a01-aa7e-2b31064c1ddb\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY9985\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20180315\",\r\n \"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://saforgallery3821.blob.core.windows.net/crptestar8729/oscrptestar8032.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/networkInterfaces/nic1723\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/operations/bd621877-7a8e-4b1e-a333-fdd751c9958a?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2JkNjIxODc3LTdhOGUtNGIxZS1hMzMzLWZkZDc1MWM5OTU4YT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/8c4ed540-fa0b-44cc-82a3-d99b90efd887?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzhjNGVkNTQwLWZhMGItNDRjYy04MmEzLWQ5OWI5MGVmZDg4Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:05:58 GMT" - ], "Pragma": [ "no-cache" ], "Retry-After": [ "50" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999" + "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29982" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5ea66d3c-c5d4-41b7-9489-0689f7e144b0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" - ], - "x-ms-correlation-request-id": [ - "2ba760c9-b752-4280-81d4-e02b91ed7b10" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T060559Z:2ba760c9-b752-4280-81d4-e02b91ed7b10" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "133" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:05:48.222911-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bd621877-7a8e-4b1e-a333-fdd751c9958a\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/operations/bd621877-7a8e-4b1e-a333-fdd751c9958a?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2JkNjIxODc3LTdhOGUtNGIxZS1hMzMzLWZkZDc1MWM5OTU4YT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:06:49 GMT" - ], - "Pragma": [ - "no-cache" + "c6487330-2cf0-4d87-908a-3152440a747f" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "da87170d-dfb9-49ae-a71c-094553c5804a" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11998" ], "x-ms-correlation-request-id": [ - "7cfcfed6-59cf-4989-8f19-710e18369804" + "ee3f7540-6cef-4b90-a17e-607b25d03e60" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060649Z:7cfcfed6-59cf-4989-8f19-710e18369804" + "WESTUS:20201022T231340Z:ee3f7540-6cef-4b90-a17e-607b25d03e60" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:13:39 GMT" + ], "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1501,59 +1440,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:05:48.222911-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bd621877-7a8e-4b1e-a333-fdd751c9958a\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:13:29.1038512-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8c4ed540-fa0b-44cc-82a3-d99b90efd887\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/operations/bd621877-7a8e-4b1e-a333-fdd751c9958a?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2JkNjIxODc3LTdhOGUtNGIxZS1hMzMzLWZkZDc1MWM5OTU4YT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/8c4ed540-fa0b-44cc-82a3-d99b90efd887?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzhjNGVkNTQwLWZhMGItNDRjYy04MmEzLWQ5OWI5MGVmZDg4Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:07:38 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29997" + "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29981" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "18b42622-847c-4e1e-8c8a-1160eb1bece2" + "8765ca59-d69e-4c4a-aa5f-2436f3ad438f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11997" ], "x-ms-correlation-request-id": [ - "290cd5d0-5864-46f6-9a1e-e6264347bf1b" + "a6c2d38e-33f5-49e2-8089-0bb61d189036" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060739Z:290cd5d0-5864-46f6-9a1e-e6264347bf1b" + "WESTUS:20201022T231430Z:a6c2d38e-33f5-49e2-8089-0bb61d189036" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:14:29 GMT" + ], "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1562,59 +1501,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:05:48.222911-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bd621877-7a8e-4b1e-a333-fdd751c9958a\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:13:29.1038512-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8c4ed540-fa0b-44cc-82a3-d99b90efd887\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/operations/bd621877-7a8e-4b1e-a333-fdd751c9958a?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2JkNjIxODc3LTdhOGUtNGIxZS1hMzMzLWZkZDc1MWM5OTU4YT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/8c4ed540-fa0b-44cc-82a3-d99b90efd887?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzhjNGVkNTQwLWZhMGItNDRjYy04MmEzLWQ5OWI5MGVmZDg4Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:08:29 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29995" + "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29980" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b82105a5-bf0f-4bab-b6b2-2f7bcc92c446" + "dc52a1ad-6dfc-4690-9d2f-5868fd70e810" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11996" ], "x-ms-correlation-request-id": [ - "96563133-78be-4278-9076-dbf78bcc9bde" + "b13f7d56-9535-4075-b532-9bcc745c0d36" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060829Z:96563133-78be-4278-9076-dbf78bcc9bde" + "WESTUS:20201022T231520Z:b13f7d56-9535-4075-b532-9bcc745c0d36" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:15:20 GMT" + ], "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1623,59 +1562,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:05:48.222911-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bd621877-7a8e-4b1e-a333-fdd751c9958a\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:13:29.1038512-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8c4ed540-fa0b-44cc-82a3-d99b90efd887\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/operations/bd621877-7a8e-4b1e-a333-fdd751c9958a?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2JkNjIxODc3LTdhOGUtNGIxZS1hMzMzLWZkZDc1MWM5OTU4YT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/8c4ed540-fa0b-44cc-82a3-d99b90efd887?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzhjNGVkNTQwLWZhMGItNDRjYy04MmEzLWQ5OWI5MGVmZDg4Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:09:19 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29994" + "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29978" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5460fc99-3ef9-4ec0-a59b-03160e7ea771" + "08aeb82d-b5ef-435c-8a8b-9109657a86cd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11995" ], "x-ms-correlation-request-id": [ - "e401f6a8-c477-4d88-842f-7b35da0f111f" + "4f323422-72bf-4f6c-b772-31688d741af9" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060919Z:e401f6a8-c477-4d88-842f-7b35da0f111f" + "WESTUS:20201022T231610Z:4f323422-72bf-4f6c-b772-31688d741af9" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:16:10 GMT" + ], "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1684,59 +1623,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:05:48.222911-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bd621877-7a8e-4b1e-a333-fdd751c9958a\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:13:29.1038512-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8c4ed540-fa0b-44cc-82a3-d99b90efd887\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/operations/bd621877-7a8e-4b1e-a333-fdd751c9958a?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2JkNjIxODc3LTdhOGUtNGIxZS1hMzMzLWZkZDc1MWM5OTU4YT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/8c4ed540-fa0b-44cc-82a3-d99b90efd887?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzhjNGVkNTQwLWZhMGItNDRjYy04MmEzLWQ5OWI5MGVmZDg4Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:10:09 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29992" + "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29977" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "81656409-5ac5-4f21-b4e5-5c6f79e82112" + "8018e30c-a6fe-4b1a-8e97-36f3f107b32e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11994" ], "x-ms-correlation-request-id": [ - "481389e6-e285-4ffe-976d-ae3042e7c763" + "7ee2acfa-2d7e-4169-97d3-5226d47cae23" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061009Z:481389e6-e285-4ffe-976d-ae3042e7c763" + "WESTUS:20201022T231700Z:7ee2acfa-2d7e-4169-97d3-5226d47cae23" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:16:59 GMT" + ], "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1745,59 +1684,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:05:48.222911-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bd621877-7a8e-4b1e-a333-fdd751c9958a\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:13:29.1038512-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8c4ed540-fa0b-44cc-82a3-d99b90efd887\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/operations/bd621877-7a8e-4b1e-a333-fdd751c9958a?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2JkNjIxODc3LTdhOGUtNGIxZS1hMzMzLWZkZDc1MWM5OTU4YT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/8c4ed540-fa0b-44cc-82a3-d99b90efd887?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzhjNGVkNTQwLWZhMGItNDRjYy04MmEzLWQ5OWI5MGVmZDg4Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:10:59 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29990" + "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29973" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dc9c6968-0e8c-4d53-bd92-8dfbedf16e8a" + "c4fa78cb-6d6e-4f4f-a4d8-2e8f46ccad00" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11993" ], "x-ms-correlation-request-id": [ - "14425520-89b7-4e87-b635-ae547fa4fa3a" + "d13cddb3-25f3-4c15-b9bb-c4db3d2f7f93" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061100Z:14425520-89b7-4e87-b635-ae547fa4fa3a" + "WESTUS:20201022T231750Z:d13cddb3-25f3-4c15-b9bb-c4db3d2f7f93" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:17:50 GMT" + ], "Content-Length": [ - "183" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1806,59 +1745,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:05:48.222911-07:00\",\r\n \"endTime\": \"2020-06-12T23:10:32.2248064-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"bd621877-7a8e-4b1e-a333-fdd751c9958a\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:13:29.1038512-07:00\",\r\n \"endTime\": \"2020-10-22T16:17:34.0274727-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8c4ed540-fa0b-44cc-82a3-d99b90efd887\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/virtualMachines/vm7497?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtNzQ5Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/virtualMachines/vm6924?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY5MjQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:10:59 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31997" + "Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31921" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "95d8679a-98ab-433e-a678-782753786d39" + "8d946758-3d98-47b2-971e-f39dbf8c35f0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11992" ], "x-ms-correlation-request-id": [ - "c1f66c7c-5ce3-4631-8c32-343ab35cee62" + "118ad5da-1edd-4dc4-8f90-2c787e9cf76f" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061100Z:c1f66c7c-5ce3-4631-8c32-343ab35cee62" + "WESTUS:20201022T231751Z:118ad5da-1edd-4dc4-8f90-2c787e9cf76f" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:17:50 GMT" + ], "Content-Length": [ - "1876" + "1879" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1867,65 +1806,65 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vm7497\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/virtualMachines/vm7497\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"9c7ef702-b256-4a72-9039-985cad7ef809\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY4759\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20180315\",\r\n \"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://saforgallery5476.blob.core.windows.net/crptestar2173/oscrptestar7165.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/networkInterfaces/nic7376\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vm6924\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/virtualMachines/vm6924\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"e59ff4a8-2d17-4a01-aa7e-2b31064c1ddb\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY9985\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20180315\",\r\n \"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://saforgallery3821.blob.core.windows.net/crptestar8729/oscrptestar8032.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/networkInterfaces/nic1723\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/virtualMachines/vm7497?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtNzQ5Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/virtualMachines/vm6924?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY5MjQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "586e309c-fba2-4bfe-b45b-afc6c7216793" + "35b6199d-c5bc-472d-ba06-ea3635f3e9e0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:11:00 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31996" + "Microsoft.Compute/LowCostGet3Min;3990,Microsoft.Compute/LowCostGet30Min;31920" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5e113c3e-b0ed-4154-8f5a-30b2bd842a00" + "68587a69-a42b-4e23-88fb-640d860dcf06" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11991" ], "x-ms-correlation-request-id": [ - "e71f2c4d-e0cf-40ef-bf3d-bac18e1151da" + "d6ad4928-42b1-4d22-b333-f23f68084fd3" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061100Z:e71f2c4d-e0cf-40ef-bf3d-bac18e1151da" + "WESTUS:20201022T231751Z:d6ad4928-42b1-4d22-b333-f23f68084fd3" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:17:51 GMT" + ], "Content-Length": [ - "1876" + "1879" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1934,26 +1873,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vm7497\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/virtualMachines/vm7497\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"9c7ef702-b256-4a72-9039-985cad7ef809\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY4759\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20180315\",\r\n \"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://saforgallery5476.blob.core.windows.net/crptestar2173/oscrptestar7165.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/networkInterfaces/nic7376\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vm6924\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/virtualMachines/vm6924\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"e59ff4a8-2d17-4a01-aa7e-2b31064c1ddb\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY9985\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20180315\",\r\n \"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://saforgallery3821.blob.core.windows.net/crptestar8729/oscrptestar8032.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/networkInterfaces/nic1723\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/images/psTestSourceImage734?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaW1hZ2VzL3BzVGVzdFNvdXJjZUltYWdlNzM0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTg2OTM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"blobUri\": \"https://saforgallery5476.blob.core.windows.net/crptestar2173/oscrptestar7165.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://saforgallery3821.blob.core.windows.net/crptestar8729/oscrptestar8032.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": [ - "900307fa-74f5-45f4-98b0-0abfabfe558f" + "ae635c52-a324-40ce-bc6e-b5b260d84de2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1966,45 +1905,45 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:11:07 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/operations/7a2d9694-daa8-48ea-86ef-fd3310985c92?api-version=2020-06-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/89ff137b-8445-460b-8437-dbc82b292b1c?api-version=2020-06-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": [ - "7a2d9694-daa8-48ea-86ef-fd3310985c92" + "89ff137b-8445-460b-8437-dbc82b292b1c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "a105a829-f90e-4d7c-8033-76e47021352c" + "26efb284-7fe6-436e-8966-4fea5a56eec1" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061108Z:a105a829-f90e-4d7c-8033-76e47021352c" + "WESTUS:20201022T231758Z:26efb284-7fe6-436e-8966-4fea5a56eec1" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:17:58 GMT" + ], "Content-Length": [ - "764" + "767" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2013,59 +1952,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"psTestSourceImage734\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/images/psTestSourceImage734\",\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://saforgallery5476.blob.core.windows.net/crptestar2173/oscrptestar7165.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\": \"psTestSourceImage8693\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693\",\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://saforgallery3821.blob.core.windows.net/crptestar8729/oscrptestar8032.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/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/operations/7a2d9694-daa8-48ea-86ef-fd3310985c92?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzdhMmQ5Njk0LWRhYTgtNDhlYS04NmVmLWZkMzMxMDk4NWM5Mj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/89ff137b-8445-460b-8437-dbc82b292b1c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzg5ZmYxMzdiLTg0NDUtNDYwYi04NDM3LWRiYzgyYjI5MmIxYz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:11:37 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29988" + "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29971" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ea6cf71a-6581-4041-b4d1-156efa13cd72" + "215f13fd-f833-455f-b8a7-96f535315893" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11990" ], "x-ms-correlation-request-id": [ - "f6e3dc17-eb83-4ea1-b828-d54784d2d189" + "dd68e70e-098e-4bfc-b036-c7801b77691b" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061138Z:f6e3dc17-eb83-4ea1-b828-d54784d2d189" + "WESTUS:20201022T231828Z:dd68e70e-098e-4bfc-b036-c7801b77691b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:18:28 GMT" + ], "Content-Length": [ - "183" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2074,59 +2013,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:11:02.287503-07:00\",\r\n \"endTime\": \"2020-06-12T23:11:12.6313164-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7a2d9694-daa8-48ea-86ef-fd3310985c92\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:17:52.7462917-07:00\",\r\n \"endTime\": \"2020-10-22T16:18:02.9963634-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"89ff137b-8445-460b-8437-dbc82b292b1c\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/images/psTestSourceImage734?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaW1hZ2VzL3BzVGVzdFNvdXJjZUltYWdlNzM0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTg2OTM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:11:37 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetImages3Min;358,Microsoft.Compute/GetImages30Min;1798" + "Microsoft.Compute/GetImages3Min;358,Microsoft.Compute/GetImages30Min;1792" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1cda935b-9e82-4901-a33c-fcc7500d6abb" + "26af7c77-c7fc-4329-ad9e-4657fa00e6be" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11989" ], "x-ms-correlation-request-id": [ - "5eddf609-b64b-412f-8eaf-f10e159136e9" + "0c37c219-4359-4cd1-a3f2-f1e2100f9c3c" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061138Z:5eddf609-b64b-412f-8eaf-f10e159136e9" + "WESTUS:20201022T231828Z:0c37c219-4359-4cd1-a3f2-f1e2100f9c3c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:18:28 GMT" + ], "Content-Length": [ - "793" + "796" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2135,65 +2074,65 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"psTestSourceImage734\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/images/psTestSourceImage734\",\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://saforgallery5476.blob.core.windows.net/crptestar2173/oscrptestar7165.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\": \"psTestSourceImage8693\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693\",\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://saforgallery3821.blob.core.windows.net/crptestar8729/oscrptestar8032.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/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/images/psTestSourceImage734?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaW1hZ2VzL3BzVGVzdFNvdXJjZUltYWdlNzM0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTg2OTM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "db070e95-f621-482b-814f-a0e881413f4e" + "009f5c3f-8e4d-4dbe-a93c-e7c9a2c6b31f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:11:37 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetImages3Min;357,Microsoft.Compute/GetImages30Min;1797" + "Microsoft.Compute/GetImages3Min;357,Microsoft.Compute/GetImages30Min;1791" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3e9412a2-87c1-45e9-b8dd-eb6084f68661" + "3660b933-3147-4865-9d16-a9d0b240d243" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11988" ], "x-ms-correlation-request-id": [ - "f47a2c97-09b3-4fa1-a1e9-327829713dd0" + "9de381f9-5f11-4d39-97b7-2e34411a6323" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061138Z:f47a2c97-09b3-4fa1-a1e9-327829713dd0" + "WESTUS:20201022T231828Z:9de381f9-5f11-4d39-97b7-2e34411a6323" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:18:28 GMT" + ], "Content-Length": [ - "793" + "796" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2202,26 +2141,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"psTestSourceImage734\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/images/psTestSourceImage734\",\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://saforgallery5476.blob.core.windows.net/crptestar2173/oscrptestar7165.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\": \"psTestSourceImage8693\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693\",\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://saforgallery3821.blob.core.windows.net/crptestar8729/oscrptestar8032.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/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTU3OD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "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": [ - "adbdb39f-b818-4446-a473-a80eb5c51d89" + "b61ad902-c1fd-40f8-8630-162378bda94b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2234,45 +2173,45 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:11:39 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/5c499ad6-20b1-478f-87cf-186da49efa17?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/bfc4ff59-3e73-4516-b28e-9cc9db85d9c3?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299" + "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;296" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "5c499ad6-20b1-478f-87cf-186da49efa17" + "bfc4ff59-3e73-4516-b28e-9cc9db85d9c3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], "x-ms-correlation-request-id": [ - "4e5db1ac-5d8d-4466-908f-dc29f0e4fa75" + "a6dda605-0a08-42a9-b90a-193429e7ce0c" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061140Z:4e5db1ac-5d8d-4466-908f-dc29f0e4fa75" + "WESTUS:20201022T231830Z:a6dda605-0a08-42a9-b90a-193429e7ce0c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:18:30 GMT" + ], "Content-Length": [ - "507" + "573" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2281,60 +2220,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery1578\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578\",\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\": \"0296790d-427c-48ca-b204-8b729bbd8670-GALLERYPSTESTGALLERY1578\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery5957\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957\",\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-GALLERYPSTESTGALLERY5957\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Private\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/5c499ad6-20b1-478f-87cf-186da49efa17?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy81YzQ5OWFkNi0yMGIxLTQ3OGYtODdjZi0xODZkYTQ5ZWZhMTc/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/bfc4ff59-3e73-4516-b28e-9cc9db85d9c3?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iZmM0ZmY1OS0zZTczLTQ1MTYtYjI4ZS05Y2M5ZGI4NWQ5YzM/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:12:09 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;2398" + "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4153" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "75f8b30b-d7ae-4d39-be12-f6750bebb78e" + "29ec80f7-bda5-430c-a11d-87a75ee3ad71" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11987" ], "x-ms-correlation-request-id": [ - "84ca55bb-c2e6-41b1-95c1-1a0f6c2b955e" + "bd89c922-ad93-48fd-9dbc-5b8c236c1aac" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061210Z:84ca55bb-c2e6-41b1-95c1-1a0f6c2b955e" + "WESTUS:20201022T231900Z:bd89c922-ad93-48fd-9dbc-5b8c236c1aac" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:19:00 GMT" + ], "Content-Length": [ "184" ], @@ -2345,62 +2284,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:11:39.6549776-07:00\",\r\n \"endTime\": \"2020-06-12T23:11:39.8580706-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5c499ad6-20b1-478f-87cf-186da49efa17\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:18:30.0217578-07:00\",\r\n \"endTime\": \"2020-10-22T16:18:30.2556521-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"bfc4ff59-3e73-4516-b28e-9cc9db85d9c3\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTU3OD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:12:09 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2496" + "Microsoft.Compute/GetGallery3Min;341,Microsoft.Compute/GetGallery30Min;2468" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "be5be707-830c-4ec9-86ad-fab7727a19ba" + "e8793089-934e-463c-8b6f-642d089acb85" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11986" ], "x-ms-correlation-request-id": [ - "15173b1f-c205-4e49-b662-ebbd17110d74" + "7020349a-2c60-49c5-9197-05901c9953c6" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061210Z:15173b1f-c205-4e49-b662-ebbd17110d74" + "WESTUS:20201022T231900Z:7020349a-2c60-49c5-9197-05901c9953c6" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:19:00 GMT" + ], "Content-Length": [ - "508" + "509" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2409,26 +2348,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery1578\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578\",\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\": \"0296790d-427c-48ca-b204-8b729bbd8670-GALLERYPSTESTGALLERY1578\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery5957\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957\",\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-GALLERYPSTESTGALLERY5957\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTU3OC9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTg0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzNzQ1P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "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": [ - "e40aacbf-ad76-4dbb-be18-e03bdf85669b" + "da3d3a85-a9ff-47ab-b258-db2f096f2d5d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2441,45 +2380,45 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:12:12 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/9fe010aa-1588-4341-a53f-59ff786a3df3?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/0fc18e6a-731e-4cd2-9d7e-8ffefc930247?api-version=2020-09-30" ], "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": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "9fe010aa-1588-4341-a53f-59ff786a3df3" + "0fc18e6a-731e-4cd2-9d7e-8ffefc930247" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], "x-ms-correlation-request-id": [ - "05ba7214-5169-4bc0-a260-5d65e0216908" + "b89fe2a2-60a4-4a4c-86a7-e4eef4fe6eb7" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061212Z:05ba7214-5169-4bc0-a260-5d65e0216908" + "WESTUS:20201022T231902Z:b89fe2a2-60a4-4a4c-86a7-e4eef4fe6eb7" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:19:02 GMT" + ], "Content-Length": [ - "641" + "646" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2488,60 +2427,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage84\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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\": \"galleryPsTestGalleryImage3745\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/9fe010aa-1588-4341-a53f-59ff786a3df3?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy85ZmUwMTBhYS0xNTg4LTQzNDEtYTUzZi01OWZmNzg2YTNkZjM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/0fc18e6a-731e-4cd2-9d7e-8ffefc930247?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wZmMxOGU2YS03MzFlLTRjZDItOWQ3ZS04ZmZlZmM5MzAyNDc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:12:42 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;2396" + "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4151" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "fc498881-fded-467a-8c40-fabfb74d0795" + "aecf15d1-07bc-49ac-a245-d7435a93e618" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11985" ], "x-ms-correlation-request-id": [ - "d4100af7-67c9-4ddd-af92-30b4ce287bce" + "312b1b40-6b76-4f4c-b5bd-29b64fe47c7f" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061242Z:d4100af7-67c9-4ddd-af92-30b4ce287bce" + "WESTUS:20201022T231932Z:312b1b40-6b76-4f4c-b5bd-29b64fe47c7f" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:19:32 GMT" + ], "Content-Length": [ "184" ], @@ -2552,62 +2491,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:11.5467506-07:00\",\r\n \"endTime\": \"2020-06-12T23:12:11.6561539-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9fe010aa-1588-4341-a53f-59ff786a3df3\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:01.9118646-07:00\",\r\n \"endTime\": \"2020-10-22T16:19:02.0368627-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0fc18e6a-731e-4cd2-9d7e-8ffefc930247\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTU3OC9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTg0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzNzQ1P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:12:42 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2996" + "Microsoft.Compute/GetGalleryImage3Min;594,Microsoft.Compute/GetGalleryImage30Min;2961" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "387540f8-1582-4847-ae04-debcdab7593a" + "27f64fa4-f8f5-40bd-8cd0-4e521978af1b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11984" ], "x-ms-correlation-request-id": [ - "7a7d3e36-c216-4294-a1ad-18dab2ed0664" + "ffb4cc20-93dd-4954-a8f7-beadca6df324" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061242Z:7a7d3e36-c216-4294-a1ad-18dab2ed0664" + "WESTUS:20201022T231932Z:ffb4cc20-93dd-4954-a8f7-beadca6df324" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:19:32 GMT" + ], "Content-Length": [ - "642" + "647" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2616,77 +2555,80 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage84\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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\": \"galleryPsTestGalleryImage3745\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTU3OC9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTg0L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzNzQ1L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "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\": \"2020-06-22T07:00:00Z\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/images/psTestSourceImage734\"\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\": \"2020-11-01T07: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/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693\"\r\n }\r\n }\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "82a28c4a-b5f4-4f1a-9b98-742d859fa285" + "ad28fe2a-5ad8-429c-bc4f-b9676cc468c5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "601" + "603" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:12:43 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30" ], "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": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "3c639aa5-fd5d-4f71-847f-f045466cdc60" + "fcb01f2f-56d4-464d-a072-3be120eb4cc0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1194" ], "x-ms-correlation-request-id": [ - "a15d83d0-b0f6-4682-b8b9-c7939548c9d0" + "5e70f9e0-e45b-4254-af40-142722662cd6" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061243Z:a15d83d0-b0f6-4682-b8b9-c7939548c9d0" + "WESTUS:20201022T231934Z:5e70f9e0-e45b-4254-af40-142722662cd6" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:19:33 GMT" + ], "Content-Length": [ - "1031" + "1036" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2695,50 +2637,46 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84/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\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"endOfLifeDate\": \"2020-06-22T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/images/psTestSourceImage734\"\r\n }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/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\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"endOfLifeDate\": \"2020-11-01T00: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/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693\"\r\n }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTU3OC9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTg0L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzNzQ1L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "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\": \"2020-09-20T07:00:00Z\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/images/psTestSourceImage734\"\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\": \"2021-01-30T08: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/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693\"\r\n }\r\n }\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "05a13651-8480-4433-8df3-bf9fd00d15ad" + "1e6007ce-880b-495a-ac91-c1c6dea3b004" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "601" + "603" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:32:50 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/152bfdd1-8523-4f62-9927-cf58bb278e10?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/df430ebe-c312-4d04-9b67-e7f2eaeba97a?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1198" @@ -2747,25 +2685,32 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "152bfdd1-8523-4f62-9927-cf58bb278e10" + "df430ebe-c312-4d04-9b67-e7f2eaeba97a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1193" ], "x-ms-correlation-request-id": [ - "e308b52a-631c-4da4-b2e9-5dd44a41e5d9" + "574ee840-b2aa-44aa-bf42-3d258f69763c" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T063250Z:e308b52a-631c-4da4-b2e9-5dd44a41e5d9" + "WESTUS:20201022T233841Z:574ee840-b2aa-44aa-bf42-3d258f69763c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:38:40 GMT" + ], "Content-Length": [ - "1145" + "1150" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2774,60 +2719,63 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84/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\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"endOfLifeDate\": \"2020-09-20T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/images/psTestSourceImage734\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/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\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"endOfLifeDate\": \"2021-01-30T00: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/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:13:13 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;2394" + "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4149" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "e910af46-1129-42e4-a400-8d61a4e1f6f8" + "9841fb43-55a1-4916-9adf-774c9050c751" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11983" ], "x-ms-correlation-request-id": [ - "180bb5c8-245a-47a0-ad74-f015d9e37a93" + "8dedeaec-a2b5-4788-a9a0-6d8037c21495" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061313Z:180bb5c8-245a-47a0-ad74-f015d9e37a93" + "WESTUS:20201022T232034Z:8dedeaec-a2b5-4788-a9a0-6d8037c21495" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:20:34 GMT" + ], "Content-Length": [ "134" ], @@ -2838,60 +2786,63 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:13:43 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;2391" + "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4148" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "b10cc1c5-943f-4b0f-b0c7-b9f7da5c540f" + "f90ecf6d-7638-4e2b-8ce3-38404478ae07" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "11982" ], "x-ms-correlation-request-id": [ - "b23f4f30-cb02-450f-871e-98bf0e884bd3" + "35ba1ce0-4060-43c3-87bf-5c77ab275c3c" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061344Z:b23f4f30-cb02-450f-871e-98bf0e884bd3" + "WESTUS:20201022T232134Z:35ba1ce0-4060-43c3-87bf-5c77ab275c3c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:21:34 GMT" + ], "Content-Length": [ "134" ], @@ -2902,60 +2853,63 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:14:14 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;2388" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4146" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "ba02cdf6-8f66-4bd4-82fb-90db7c37283a" + "80b9ffb8-c368-48c2-9060-ce7f5d7d9b4a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "11981" ], "x-ms-correlation-request-id": [ - "b1ab04e9-8e14-48f9-a891-87206898a96d" + "9cbf5bcc-e795-4ef4-ae54-d358dfc5eb7a" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061414Z:b1ab04e9-8e14-48f9-a891-87206898a96d" + "WESTUS:20201022T232235Z:9cbf5bcc-e795-4ef4-ae54-d358dfc5eb7a" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:22:34 GMT" + ], "Content-Length": [ "134" ], @@ -2966,60 +2920,63 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:14:43 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;2385" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4144" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "60792d72-893d-45a0-a69f-7c055c32fa71" + "b54fa1e8-b3c8-4cfa-9149-575e80276385" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" + "11980" ], "x-ms-correlation-request-id": [ - "2c2f238c-bdf1-40b6-acdd-8415fe8e1068" + "99611436-4e62-4aba-bf69-4a42a98e7b73" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061444Z:2c2f238c-bdf1-40b6-acdd-8415fe8e1068" + "WESTUS:20201022T232335Z:99611436-4e62-4aba-bf69-4a42a98e7b73" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:23:34 GMT" + ], "Content-Length": [ "134" ], @@ -3030,60 +2987,63 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:15:13 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;2382" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4142" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "d63600a7-fc9e-4b5e-b445-0331669a72ec" + "5454faff-d937-4736-a915-52633e126323" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" + "11979" ], "x-ms-correlation-request-id": [ - "2298a368-86af-4544-8e50-e4dbd9ffa834" + "e94d126c-64ee-414b-a2ac-e470cecc16b7" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061514Z:2298a368-86af-4544-8e50-e4dbd9ffa834" + "WESTUS:20201022T232435Z:e94d126c-64ee-414b-a2ac-e470cecc16b7" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:24:34 GMT" + ], "Content-Length": [ "134" ], @@ -3094,60 +3054,63 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:15:43 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2379" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4150" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "7b739c7b-2f15-4082-bd13-ccb2ba63d30c" + "a390fb18-d6f6-457a-8a8f-d8988f051f4c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" + "11978" ], "x-ms-correlation-request-id": [ - "fdc0468d-fe14-4a58-ac50-2a3bc06b73bc" + "6c7b304f-82ae-4659-ade6-baa3c32bb201" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061544Z:fdc0468d-fe14-4a58-ac50-2a3bc06b73bc" + "WESTUS:20201022T232535Z:6c7b304f-82ae-4659-ade6-baa3c32bb201" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:25:35 GMT" + ], "Content-Length": [ "134" ], @@ -3158,60 +3121,63 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:16:14 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2376" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4148" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "62f2f337-2fe3-4750-be60-a425be6cd7d0" + "deccb931-6628-42b0-9665-7b2c08a144b6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" + "11977" ], "x-ms-correlation-request-id": [ - "9ed278e9-c19f-4a41-bbbc-c68d76ad052e" + "11634bbc-5ef3-4de9-9de6-cb8e1e0aff94" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061614Z:9ed278e9-c19f-4a41-bbbc-c68d76ad052e" + "WESTUS:20201022T232636Z:11634bbc-5ef3-4de9-9de6-cb8e1e0aff94" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:26:35 GMT" + ], "Content-Length": [ "134" ], @@ -3222,60 +3188,63 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:16:44 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2373" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4146" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "d3163020-9029-4fb9-9c23-d22167aa442d" + "f8744722-c780-449b-b52c-5d8c792dfcae" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" + "11976" ], "x-ms-correlation-request-id": [ - "b7a1c0e6-5f6b-4b2a-b40f-1f888e219dd5" + "7bb31ccb-67c8-443b-8585-0c0ae3a399ea" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061644Z:b7a1c0e6-5f6b-4b2a-b40f-1f888e219dd5" + "WESTUS:20201022T232736Z:7bb31ccb-67c8-443b-8585-0c0ae3a399ea" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:27:35 GMT" + ], "Content-Length": [ "134" ], @@ -3286,60 +3255,63 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:17:14 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2370" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4144" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "ba95cf69-5c14-42e3-8da0-05d1b57ae076" + "94e596f8-9403-41cb-88ef-3bc7114af503" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" + "11975" ], "x-ms-correlation-request-id": [ - "01914ca3-5e27-43a1-9d08-e4285218b51e" + "f134646e-f8ac-4c58-8007-ed84a979db13" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061714Z:01914ca3-5e27-43a1-9d08-e4285218b51e" + "WESTUS:20201022T232836Z:f134646e-f8ac-4c58-8007-ed84a979db13" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:28:36 GMT" + ], "Content-Length": [ "134" ], @@ -3350,60 +3322,63 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:17:44 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2367" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4142" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "6bfeb8f9-4425-4952-b04c-cbabf4367498" + "462b7863-6d77-4b56-807a-54b3e07b8369" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11946" + "11974" ], "x-ms-correlation-request-id": [ - "912b5cf7-a889-4597-bb5f-8cba81f77f34" + "ab79e62e-5673-4470-a531-f4ec6c53bde8" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061745Z:912b5cf7-a889-4597-bb5f-8cba81f77f34" + "WESTUS:20201022T232937Z:ab79e62e-5673-4470-a531-f4ec6c53bde8" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:29:36 GMT" + ], "Content-Length": [ "134" ], @@ -3414,60 +3389,63 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:18:14 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2364" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4149" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "c450b658-5919-40f1-b4c9-05203de21071" + "40abee44-e881-4d6c-8558-8d5e758897f2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" + "11973" ], "x-ms-correlation-request-id": [ - "5db40dfa-ae67-46fd-951a-ffc63c8b31d6" + "0085f29d-0c13-4749-9b5b-302e31d915e3" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061815Z:5db40dfa-ae67-46fd-951a-ffc63c8b31d6" + "WESTUS:20201022T233037Z:0085f29d-0c13-4749-9b5b-302e31d915e3" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:30:36 GMT" + ], "Content-Length": [ "134" ], @@ -3478,60 +3456,63 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:18:45 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2361" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4147" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "d72f91e5-b3d2-4ce8-ae49-5b98f6e378e4" + "1c9712ca-8572-4519-b90e-1260e776a731" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11944" + "11972" ], "x-ms-correlation-request-id": [ - "f0c605f9-0e31-4112-8519-9a8b69d74ad3" + "7811b346-4406-44f2-824b-218db874da81" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061845Z:f0c605f9-0e31-4112-8519-9a8b69d74ad3" + "WESTUS:20201022T233137Z:7811b346-4406-44f2-824b-218db874da81" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:31:37 GMT" + ], "Content-Length": [ "134" ], @@ -3542,60 +3523,63 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:19:14 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2358" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4145" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "56216159-999e-431b-bc41-56d1ed9dae11" + "5453e96b-fde1-474d-b2ea-908f8c522f91" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11943" + "11971" ], "x-ms-correlation-request-id": [ - "0244afb1-c1a1-464c-9113-2396b0891d6a" + "56e86114-08f7-43b5-89ab-9c818825e2ca" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061915Z:0244afb1-c1a1-464c-9113-2396b0891d6a" + "WESTUS:20201022T233238Z:56e86114-08f7-43b5-89ab-9c818825e2ca" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:32:37 GMT" + ], "Content-Length": [ "134" ], @@ -3606,60 +3590,63 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:19:44 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2355" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4143" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "c83af0b2-8302-4615-8eb8-495176f10b90" + "d0ec979b-18b9-4585-82a8-383d305c5927" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11942" + "11970" ], "x-ms-correlation-request-id": [ - "3268cea5-3e25-4349-8626-39c07d9f0915" + "b70ac4da-fd47-489d-8765-0e59484c7917" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061945Z:3268cea5-3e25-4349-8626-39c07d9f0915" + "WESTUS:20201022T233338Z:b70ac4da-fd47-489d-8765-0e59484c7917" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:33:37 GMT" + ], "Content-Length": [ "134" ], @@ -3670,60 +3657,63 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:20:14 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2352" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4141" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "2fde9843-864e-40c0-920b-53ef34295d2f" + "c3c75070-753d-4a7e-b2d3-7497e48600ec" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11941" + "11969" ], "x-ms-correlation-request-id": [ - "0807dcd1-4eda-4106-9186-216c01d98afe" + "7be0fc47-f328-41a2-8d2e-7d15d2959536" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T062015Z:0807dcd1-4eda-4106-9186-216c01d98afe" + "WESTUS:20201022T233438Z:7be0fc47-f328-41a2-8d2e-7d15d2959536" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:34:38 GMT" + ], "Content-Length": [ "134" ], @@ -3734,1403 +3724,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:20:45 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2349" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4154" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "4b3887cc-f764-40c7-93c4-e6ad4966dfb8" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11940" - ], - "x-ms-correlation-request-id": [ - "888da94f-a8eb-4f05-b7e0-d24be68e228b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T062045Z:888da94f-a8eb-4f05-b7e0-d24be68e228b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:21:15 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2347" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "62eacb79-61b1-4ca7-8fa7-be835c688e0f" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11939" - ], - "x-ms-correlation-request-id": [ - "779a750b-31f7-47e0-b5e0-37d47607abd5" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T062115Z:779a750b-31f7-47e0-b5e0-37d47607abd5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:21:45 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2344" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "b659d195-77b1-4334-87bc-ed24c09bb738" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11938" - ], - "x-ms-correlation-request-id": [ - "75f69156-54ae-4d0b-9b01-350a5e14b755" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T062146Z:75f69156-54ae-4d0b-9b01-350a5e14b755" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:22:16 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2341" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "22afe0d5-e44e-4042-9b94-ad04fc82a8d4" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11937" - ], - "x-ms-correlation-request-id": [ - "a93133bc-35f7-40f3-a5ef-71a85f6bd170" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T062216Z:a93133bc-35f7-40f3-a5ef-71a85f6bd170" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:22:46 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2338" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "748eca0f-9707-4c7f-b3cc-7e4dae3ad181" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11936" - ], - "x-ms-correlation-request-id": [ - "98f422d1-376a-44c7-94a9-0799dc0c810b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T062246Z:98f422d1-376a-44c7-94a9-0799dc0c810b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:23:16 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2335" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "b60a7027-28c9-4b06-8464-ad38d679fc4e" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11935" - ], - "x-ms-correlation-request-id": [ - "ff27dc34-44e6-4416-80d1-7cde617fd802" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T062316Z:ff27dc34-44e6-4416-80d1-7cde617fd802" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:23:45 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2332" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "9a2d2cca-cac1-4f8d-9e1e-2c57de561e2f" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11934" - ], - "x-ms-correlation-request-id": [ - "f05811f7-1e87-449b-8b29-548365003216" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T062346Z:f05811f7-1e87-449b-8b29-548365003216" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:24:15 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2329" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "bca057cb-bc8d-44aa-882c-6340c16f0e19" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11933" - ], - "x-ms-correlation-request-id": [ - "639ab468-225d-4499-9795-01c14ea588a7" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T062416Z:639ab468-225d-4499-9795-01c14ea588a7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:24:46 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2326" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "93809312-4f34-4990-88f5-8571577961c3" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11932" - ], - "x-ms-correlation-request-id": [ - "7eaca14e-6700-4b5a-a4f8-1d1c39316c9b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T062446Z:7eaca14e-6700-4b5a-a4f8-1d1c39316c9b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:25:16 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2323" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "3f1ad1c1-93a3-4a9e-8d76-515bf54dde99" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11931" - ], - "x-ms-correlation-request-id": [ - "d28cb86b-629f-4fc5-8f02-20196c86a3c1" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T062517Z:d28cb86b-629f-4fc5-8f02-20196c86a3c1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:25:46 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2320" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "c406bb92-fffe-4722-a7d5-c4489d34e486" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11930" - ], - "x-ms-correlation-request-id": [ - "edeeadbd-7180-41ba-8495-1ce6efff522c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T062547Z:edeeadbd-7180-41ba-8495-1ce6efff522c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:26:17 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2317" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "998b9ae4-2505-46c2-aa44-ce346b965906" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11929" - ], - "x-ms-correlation-request-id": [ - "0e88d722-c316-4886-b6ff-0f4a9b0efc21" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T062617Z:0e88d722-c316-4886-b6ff-0f4a9b0efc21" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:26:47 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2314" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "4a217903-3d96-46ff-b918-3cc6a4003dcb" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11928" - ], - "x-ms-correlation-request-id": [ - "1f68bf73-9b7a-42a6-9ca7-673e484c7b0e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T062647Z:1f68bf73-9b7a-42a6-9ca7-673e484c7b0e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:27:17 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2311" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "875f9587-e43e-4407-9d8f-a75e5bbc86f7" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11927" - ], - "x-ms-correlation-request-id": [ - "1ea20690-4b25-4361-8f81-02c050b0e6ad" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T062717Z:1ea20690-4b25-4361-8f81-02c050b0e6ad" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:27:46 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2308" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "10521c36-e86f-47e1-8ef3-69304c612ff8" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11926" - ], - "x-ms-correlation-request-id": [ - "c5261a87-0d8b-47c8-8377-68e72bb2ff81" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T062747Z:c5261a87-0d8b-47c8-8377-68e72bb2ff81" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:28:17 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2305" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "efe174ea-42f0-40fe-be64-73446106ca78" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11925" - ], - "x-ms-correlation-request-id": [ - "b5ad6efc-9979-4801-90bf-267e37fc49ca" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T062817Z:b5ad6efc-9979-4801-90bf-267e37fc49ca" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:28:47 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2302" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "e53706a5-312d-4edb-bf7a-93e08f708bb4" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11924" - ], - "x-ms-correlation-request-id": [ - "9a01b211-8a82-415f-b877-5d954ec56548" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T062848Z:9a01b211-8a82-415f-b877-5d954ec56548" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:29:17 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2300" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "d3c6cc22-cd4d-4643-8bce-2f8a93167acd" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11923" - ], - "x-ms-correlation-request-id": [ - "65440948-eab8-40bd-a649-abe0f382ed5c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T062918Z:65440948-eab8-40bd-a649-abe0f382ed5c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:29:48 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2297" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "e3115cc7-85ee-401e-ba1c-a1fe6c42a790" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11922" - ], - "x-ms-correlation-request-id": [ - "b3754d3e-3151-4224-b4a4-c933c563aa78" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T062948Z:b3754d3e-3151-4224-b4a4-c933c563aa78" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:30:17 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2294" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "647f817b-93b1-4d37-bb2e-8bede8c3419e" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11921" - ], - "x-ms-correlation-request-id": [ - "50c859e5-06d7-4418-9e3e-8b691284633b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T063018Z:50c859e5-06d7-4418-9e3e-8b691284633b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:30:47 GMT" - ], - "Pragma": [ - "no-cache" + "6093e32c-ad2a-421a-ab0f-5c84a38b6da4" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2291" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "82fbd97e-8075-45e4-93ac-76c88e082260" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11920" + "11968" ], "x-ms-correlation-request-id": [ - "8b807a9b-7bdc-4375-a552-fe58414e4597" + "34443839-6b0b-4110-8ef0-a4c930d48ea2" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T063048Z:8b807a9b-7bdc-4375-a552-fe58414e4597" + "WESTUS:20201022T233539Z:34443839-6b0b-4110-8ef0-a4c930d48ea2" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Sat, 13 Jun 2020 06:31:18 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2288" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "c237aa05-c647-478b-bbc5-6aec426f1d82" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11919" - ], - "x-ms-correlation-request-id": [ - "61c3586f-3c6a-42a3-b0e5-e5bf70d43836" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T063118Z:61c3586f-3c6a-42a3-b0e5-e5bf70d43836" - ], - "X-Content-Type-Options": [ - "nosniff" + "Thu, 22 Oct 2020 23:35:38 GMT" ], "Content-Length": [ "134" @@ -5142,60 +3791,63 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:31:48 GMT" - ], "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "no-cache" + ], + "Retry-After": [ + "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2285" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4152" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "ed3639b0-a312-4e73-994b-7838414cd158" + "8dd4b825-2895-46c9-af41-45abdf43613a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11918" + "11967" ], "x-ms-correlation-request-id": [ - "e5919727-1222-4429-b558-5dbbe45239b7" + "09d5764c-510b-41db-bac0-b4393611baa0" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T063148Z:e5919727-1222-4429-b558-5dbbe45239b7" + "WESTUS:20201022T233639Z:09d5764c-510b-41db-bac0-b4393611baa0" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:36:39 GMT" + ], "Content-Length": [ "134" ], @@ -5206,60 +3858,63 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:32:18 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2282" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4150" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "f25251a8-efbc-465e-a3f1-fd5b01fb06be" + "7ef9ac1f-e296-4266-9cd1-ab64b0064198" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11917" + "11966" ], "x-ms-correlation-request-id": [ - "4aa6879f-ac8f-4820-bd44-299939ca4136" + "0194400f-42d6-4036-ba44-ef9194fc2e88" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T063218Z:4aa6879f-ac8f-4820-bd44-299939ca4136" + "WESTUS:20201022T233739Z:0194400f-42d6-4036-ba44-ef9194fc2e88" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:37:39 GMT" + ], "Content-Length": [ "134" ], @@ -5270,60 +3925,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:32:48 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2279" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4148" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "0974d1e5-2dde-4ed1-b9b5-411246fd4365" + "74679aa1-16d2-45f5-abe7-48039c6f32f0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11916" + "11965" ], "x-ms-correlation-request-id": [ - "1ce2919f-71ee-41a7-9f5d-dbc39b5f38d2" + "776cec08-6c96-45bb-a958-04c00dd5ecec" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T063249Z:1ce2919f-71ee-41a7-9f5d-dbc39b5f38d2" + "WESTUS:20201022T233840Z:776cec08-6c96-45bb-a958-04c00dd5ecec" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:38:40 GMT" + ], "Content-Length": [ "184" ], @@ -5334,62 +3989,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"endTime\": \"2020-06-12T23:32:28.8255227-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"endTime\": \"2020-10-22T16:37:49.4116167-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTU3OC9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTg0L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzNzQ1L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:32:48 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImageVersion3Min;1997,Microsoft.Compute/GetGalleryImageVersion30Min;9995" + "Microsoft.Compute/GetGalleryImageVersion3Min;1995,Microsoft.Compute/GetGalleryImageVersion30Min;9988" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "19409ff9-6800-4c4f-9ebe-61567ac6f743" + "8bf56308-6efa-48b6-a279-cb721b57689d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11915" + "11964" ], "x-ms-correlation-request-id": [ - "2a6141e3-a879-4bf1-8dcb-ad59d93060ac" + "598beffb-fd6f-465b-9e2a-41d45efff081" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T063249Z:2a6141e3-a879-4bf1-8dcb-ad59d93060ac" + "WESTUS:20201022T233840Z:598beffb-fd6f-465b-9e2a-41d45efff081" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:38:40 GMT" + ], "Content-Length": [ - "1146" + "1151" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5398,68 +4053,68 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84/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\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"endOfLifeDate\": \"2020-06-22T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/images/psTestSourceImage734\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/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\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"endOfLifeDate\": \"2020-11-01T00: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/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTU3OC9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTg0L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzNzQ1L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1270d40c-689d-488e-ab88-54d22f162208" + "38280a23-2b34-44ca-99c0-bac61c8141b7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:32:49 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImageVersion3Min;1996,Microsoft.Compute/GetGalleryImageVersion30Min;9994" + "Microsoft.Compute/GetGalleryImageVersion3Min;1994,Microsoft.Compute/GetGalleryImageVersion30Min;9987" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "d3e80610-518a-4184-97e4-bc47ef215c2f" + "82e0a8a3-3c87-44fe-909b-6e20e4faa08e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11914" + "11963" ], "x-ms-correlation-request-id": [ - "8b47211c-3c41-4019-8cb7-dfb91dfc2d0d" + "9bfddd38-008e-4478-86bf-bb31287501b6" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T063249Z:8b47211c-3c41-4019-8cb7-dfb91dfc2d0d" + "WESTUS:20201022T233840Z:9bfddd38-008e-4478-86bf-bb31287501b6" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:38:40 GMT" + ], "Content-Length": [ - "1146" + "1151" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5468,62 +4123,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84/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\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"endOfLifeDate\": \"2020-06-22T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/images/psTestSourceImage734\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/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\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"endOfLifeDate\": \"2020-11-01T00: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/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTU3OC9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTg0L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzNzQ1L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:34:20 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImageVersion3Min;1993,Microsoft.Compute/GetGalleryImageVersion30Min;9991" + "Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9984" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "1b1e1995-3fa3-4287-8e5d-f167f335c3af" + "81d3a6f9-18f0-469c-b58a-e003d34e34bc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11909" + "11958" ], "x-ms-correlation-request-id": [ - "ce4ebf72-7935-4c3a-a78b-b4cdedede93f" + "d65b862f-deac-4279-aa75-ed599a002111" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T063420Z:ce4ebf72-7935-4c3a-a78b-b4cdedede93f" + "WESTUS:20201022T234142Z:d65b862f-deac-4279-aa75-ed599a002111" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:41:41 GMT" + ], "Content-Length": [ - "1146" + "1151" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5532,68 +4187,68 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84/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\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"endOfLifeDate\": \"2020-09-20T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/images/psTestSourceImage734\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/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\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"endOfLifeDate\": \"2021-01-30T00: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/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTU3OC9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTg0L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzNzQ1L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5f9fa8a-2960-4861-92be-6f1ebfabcc10" + "7ea47b3d-89b3-4e77-bb66-0224c5f80839" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:34:20 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImageVersion3Min;1992,Microsoft.Compute/GetGalleryImageVersion30Min;9990" + "Microsoft.Compute/GetGalleryImageVersion3Min;1998,Microsoft.Compute/GetGalleryImageVersion30Min;9983" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "7592be8b-10ba-4798-8057-5a1e9547c309" + "f40ce4ba-3b67-4621-bab0-8e9f8c7d7522" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11908" + "11957" ], "x-ms-correlation-request-id": [ - "0b3016b6-f94d-4f81-bcde-9a93b19f7649" + "d8567afb-e3b9-4cff-95a6-5c58c6671e25" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T063420Z:0b3016b6-f94d-4f81-bcde-9a93b19f7649" + "WESTUS:20201022T234142Z:d8567afb-e3b9-4cff-95a6-5c58c6671e25" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:41:41 GMT" + ], "Content-Length": [ - "1146" + "1151" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5602,68 +4257,68 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84/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\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"endOfLifeDate\": \"2020-09-20T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/images/psTestSourceImage734\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/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\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"endOfLifeDate\": \"2021-01-30T00: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/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84/versions/1.0.0?$expand=ReplicationStatus&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTU3OC9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTg0L3ZlcnNpb25zLzEuMC4wPyRleHBhbmQ9UmVwbGljYXRpb25TdGF0dXMmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/versions/1.0.0?$expand=ReplicationStatus&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzNzQ1L3ZlcnNpb25zLzEuMC4wPyRleHBhbmQ9UmVwbGljYXRpb25TdGF0dXMmYXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eaa73b91-1617-4ab4-9f20-ca02b8f71e3f" + "9f67809f-03a1-4ba8-999e-799f6e72a132" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:32:49 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImageVersion3Min;1995,Microsoft.Compute/GetGalleryImageVersion30Min;9993" + "Microsoft.Compute/GetGalleryImageVersion3Min;1993,Microsoft.Compute/GetGalleryImageVersion30Min;9986" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "b2e8662d-a90c-4099-947c-0297d8f669b0" + "e1fa8287-264c-472e-baac-ff6b8b485cef" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11913" + "11962" ], "x-ms-correlation-request-id": [ - "d2d0fee7-84d1-4e8f-98c2-ac2156d74ca9" + "56f182be-2402-4045-93a9-ee47b5c23890" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T063249Z:d2d0fee7-84d1-4e8f-98c2-ac2156d74ca9" + "WESTUS:20201022T233840Z:56f182be-2402-4045-93a9-ee47b5c23890" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:38:40 GMT" + ], "Content-Length": [ - "1364" + "1369" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5672,60 +4327,63 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84/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\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"endOfLifeDate\": \"2020-06-22T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/images/psTestSourceImage734\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"replicationStatus\": {\r\n \"aggregatedState\": \"Completed\",\r\n \"summary\": [\r\n {\r\n \"region\": \"eastus2\",\r\n \"state\": \"Completed\",\r\n \"progress\": 100\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/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/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\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"endOfLifeDate\": \"2020-11-01T00: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/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"replicationStatus\": {\r\n \"aggregatedState\": \"Completed\",\r\n \"summary\": [\r\n {\r\n \"region\": \"eastus2\",\r\n \"state\": \"Completed\",\r\n \"progress\": 100\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/152bfdd1-8523-4f62-9927-cf58bb278e10?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8xNTJiZmRkMS04NTIzLTRmNjItOTkyNy1jZjU4YmIyNzhlMTA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/df430ebe-c312-4d04-9b67-e7f2eaeba97a?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9kZjQzMGViZS1jMzEyLTRkMDQtOWI2Ny1lN2YyZWFlYmE5N2E/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:33:19 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2276" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4146" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "e6a94318-fc6a-43f3-b4cb-d461d0fa8c09" + "c676b8d9-ccad-4509-948a-7ce19324d74a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11912" + "11961" ], "x-ms-correlation-request-id": [ - "6d9d96fb-de5c-4cd7-a711-de62633a5ffc" + "86bac651-0da8-4695-bdcd-c74830cb2bed" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T063320Z:6d9d96fb-de5c-4cd7-a711-de62633a5ffc" + "WESTUS:20201022T233941Z:86bac651-0da8-4695-bdcd-c74830cb2bed" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:39:40 GMT" + ], "Content-Length": [ "134" ], @@ -5736,60 +4394,63 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:32:49.6699225-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"152bfdd1-8523-4f62-9927-cf58bb278e10\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:38:40.6770898-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"df430ebe-c312-4d04-9b67-e7f2eaeba97a\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/152bfdd1-8523-4f62-9927-cf58bb278e10?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8xNTJiZmRkMS04NTIzLTRmNjItOTkyNy1jZjU4YmIyNzhlMTA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/df430ebe-c312-4d04-9b67-e7f2eaeba97a?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9kZjQzMGViZS1jMzEyLTRkMDQtOWI2Ny1lN2YyZWFlYmE5N2E/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:33:49 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2274" + "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4152" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "4110991e-8fc2-435e-97d1-1575665a0f69" + "fc0c2a3a-f71f-4a45-a231-f6b16b4570e3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11911" + "11960" ], "x-ms-correlation-request-id": [ - "71237042-9691-4b02-ac57-476ba86f1460" + "5f33cef1-c4f1-4e55-a968-61cb5e430749" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T063350Z:71237042-9691-4b02-ac57-476ba86f1460" + "WESTUS:20201022T234041Z:5f33cef1-c4f1-4e55-a968-61cb5e430749" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:40:40 GMT" + ], "Content-Length": [ "134" ], @@ -5800,60 +4461,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:32:49.6699225-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"152bfdd1-8523-4f62-9927-cf58bb278e10\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:38:40.6770898-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"df430ebe-c312-4d04-9b67-e7f2eaeba97a\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/152bfdd1-8523-4f62-9927-cf58bb278e10?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8xNTJiZmRkMS04NTIzLTRmNjItOTkyNy1jZjU4YmIyNzhlMTA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/df430ebe-c312-4d04-9b67-e7f2eaeba97a?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9kZjQzMGViZS1jMzEyLTRkMDQtOWI2Ny1lN2YyZWFlYmE5N2E/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:34:20 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2271" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4150" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "6c5377b3-d11d-48a7-9253-fc131b7866ea" + "910015ce-dd15-4684-b78b-ed10170f4237" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11910" + "11959" ], "x-ms-correlation-request-id": [ - "1ca1b8e3-8f21-417e-aa30-d3ebc69be41d" + "017c3fea-aa16-4b51-b409-1be3f39e53f2" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T063420Z:1ca1b8e3-8f21-417e-aa30-d3ebc69be41d" + "WESTUS:20201022T234141Z:017c3fea-aa16-4b51-b409-1be3f39e53f2" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:41:41 GMT" + ], "Content-Length": [ "184" ], @@ -5864,86 +4525,91 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:32:49.6699225-07:00\",\r\n \"endTime\": \"2020-06-12T23:34:19.7356054-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"152bfdd1-8523-4f62-9927-cf58bb278e10\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:38:40.6770898-07:00\",\r\n \"endTime\": \"2020-10-22T16:41:10.8486799-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"df430ebe-c312-4d04-9b67-e7f2eaeba97a\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84/versions?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTU3OC9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTg0L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/versions?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzNzQ1L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d9a13d4d-e443-4520-ae95-1aca818f2dc6" + "949906a1-c5ef-40de-9ac4-c4a8694c2e3c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:34:21 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "5fcf5d93-832b-49ce-896d-0ccb175b2a44", - "6233906f-9192-4095-9421-bd297295912d", - "f38e9d65-d251-4423-8f5f-96f109f2458f", - "45493542-ee1f-4287-8245-51f4d4b6e51f", - "afad4c25-dde3-4edf-b3ec-efc3f127fb73", - "345d95f0-c80e-433f-9c39-1a3f8c512aec", - "2420a08e-6def-4e20-8e6d-d136b3583811", - "b7868148-7738-4839-b790-d538d8d15007", - "b5d3bbe0-1353-49f0-8044-fb89126d1392", - "5ea0491b-44ee-416a-bf95-c31280303eb6", - "1889b924-5f8f-4979-a94f-c0b4574bc6ee", - "023ce2a8-af3a-491f-a642-4171f15937a8", - "d1cc5735-314f-4b96-8f27-1b9ffe3597d0", - "478e3317-a528-4dbc-b740-03d2a4c2036e", - "0b55d28b-da0a-40f1-8279-cb8a1c521570", - "bfbb6971-b0e5-439e-96a1-4552cc1502b6", - "4137e839-4eb7-4cee-9e17-470a589bc5a1", - "593912ef-5713-4213-8c9a-05ce3fc64cd2", - "1a77215f-320d-4c02-909b-da53c1f27d3c", - "f5f094d9-36a6-4c19-89c1-d13d5e1f94e0", - "42cd1922-81bf-401d-945a-86747a3701ba", - "b5ba798d-8803-4584-bd4c-b562850c5058", - "d4828352-e25e-4213-a7d6-c89d515a8cea", - "d537c6cb-70c4-4e24-839e-f47f12cbade6", - "2890acb1-607b-4294-a739-80b7e9db28e6", - "531ed8c6-843e-4002-8891-dda3b3c60fe5", - "5af58313-130d-42e3-86df-8636b78d2e20", - "e577fc1c-0ace-4af8-a906-dfacf55859d5", - "3c873a0a-a692-4a17-bdbf-99538bf04453", - "93da3ee1-b200-41db-8775-745f5f44ff1d", - "44fdef0b-f5e4-4a91-99e5-0eada6da340d", - "a6d26904-e4c3-4215-acae-fc5bea9abe8a", - "69ef56b1-b86d-4733-b67e-976325cb81fb", - "570081b4-dd82-4099-8a87-f394ece1574a", - "cfb5a073-8526-4162-8d33-08091a1a965f" + "dd2ed183-bd18-49ff-b512-bd202beda84a", + "40860ab9-f2c7-40ea-aee4-05811cb2db05", + "f7c97797-970d-4723-9e99-65b804660f87", + "bf01726f-86a4-4d0d-a7de-31d85a5866db", + "2dee530b-92f3-4cee-8b44-27082642d4fa", + "d37ea41a-e18f-409d-aec8-dad532be90df", + "b78d316c-eed6-4d23-ada5-59f95b8764e1", + "fb7429b7-6446-4b60-8c2e-e822555a646a", + "74c9a3f0-5a43-483f-9c39-4ed6c79cb061", + "761c3ec9-43c5-4b30-b5cd-e3264583ed98", + "19c63f84-37ac-4146-b00a-6bca81f957c6", + "0e05e873-f307-40db-abf4-5c9a76c117f8", + "b2809d85-b364-400d-bba5-a0bfc6e6de86", + "5f57ae87-be2d-4c28-ab3e-ace10f36592b", + "5e91a5b6-5d7d-42d4-9d2c-0be655297508", + "3b18f67a-367b-4f77-87a6-25283d9cff5a", + "5a43a20f-8ab3-449d-857b-0efb5e9d23c1", + "9411755e-2714-4ed0-b3ce-43d1b1d3baa6", + "083f4b3b-70ae-4959-8ca7-39b417f293a0", + "32f572a0-d5be-4ac4-8724-70044d578010", + "5d14b2cd-a405-4d37-9836-1343eebe1ab8", + "66c2aa24-62f1-4b57-8c0c-f5aa2cda5844", + "2c403464-e313-4e5a-b4fc-24b104e860a1", + "5b6756ed-dd8f-4cda-8c45-1652fd32b586", + "88f3712b-e6ac-46b9-a79c-37f5599747df", + "3c6054ea-64e5-4fdb-9908-f4265ed6cc5f", + "a4bbf35a-1254-46c6-a54c-9ae7f19cf66e", + "6e4d178a-f8bf-45ff-92bf-2f44fc35442d", + "fc6b6242-f433-438d-90cf-7e0908d833a0", + "ec43cc11-670d-411b-907f-6163d122638f", + "b3cdde2f-de72-4702-9bfd-96636d24fb45", + "e5c5f508-b30b-487d-adf7-9d4a4dccc50f", + "17caed0b-7691-4f45-a749-28e3e781f169", + "bc9a8009-efa5-4e17-8f07-83f2f6a99fd7", + "9a9113e0-ce3d-40ca-92e6-bdad63e33ea7", + "83f4bf00-7e49-434b-a1d2-3333cdd95259", + "e1af7b33-3304-48f6-8d6c-6952e6765410", + "f0473bc4-f980-4ef0-8509-791a98fce4c8", + "5b5e30d7-3133-4221-923a-e4f7283a15cb", + "724a4000-0c66-4aea-a633-33d84f1e047a", + "7c8694ab-e875-440a-94ba-22909e29cb4a", + "e1d0be52-1701-4e52-9819-0a74621d4f62", + "d3d6be90-acc3-4135-b580-8a922fd26413" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11907" + "11956" ], "x-ms-request-id": [ - "8a4b11e5-56ad-496b-a4bc-bcf0d1baa1b2" + "7fe4707c-a40a-4254-ac1f-67987a844eec" ], "x-ms-correlation-request-id": [ - "8a4b11e5-56ad-496b-a4bc-bcf0d1baa1b2" + "7fe4707c-a40a-4254-ac1f-67987a844eec" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T063422Z:8a4b11e5-56ad-496b-a4bc-bcf0d1baa1b2" + "WESTUS:20201022T234143Z:7fe4707c-a40a-4254-ac1f-67987a844eec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5951,96 +4617,104 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "895" + "Date": [ + "Thu, 22 Oct 2020 23:41:43 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "900" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84/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\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"endOfLifeDate\": \"2020-09-20T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/images/psTestSourceImage734\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/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\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"endOfLifeDate\": \"2021-01-30T00: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/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84/versions?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTU3OC9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTg0L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/versions?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzNzQ1L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "401dffdb-1cbe-40df-9962-e86fb7740d06" + "14509df9-a131-4b0e-b9d6-85d219291a5a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:35:53 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "715d5126-054e-4274-8f30-279eb12443e0", - "84b72a98-245f-4332-b925-be6d35fadea6", - "dab31b47-20e7-43f1-9a7a-472d2a425a20", - "4744a3cd-31d4-4271-9fb5-030899440140", - "d95344dc-ea86-4559-9cc1-ba86cfa9ed56", - "db7ddb79-fca3-4238-a75c-fb81af1ab5f0", - "0a4e2613-bfbc-47ca-a934-60d6fd21e142", - "e7030039-e3fb-44d2-9c09-76cb7fde9df7", - "8cde90d8-c812-41a9-a26f-1c2e0dc1e527", - "fa98c34c-76d0-4f1e-8af1-089f4a9a6209", - "cac183c1-b3cd-4a35-8261-02280b455c94", - "07993480-5a1b-47e3-8691-afa7389dd012", - "60808e28-fb2c-4b3a-9c8b-c4e65a17e8e1", - "8d93b417-5cfe-4025-9522-46adf787c5c5", - "c7414c23-55a5-49e5-8d98-1fa73f40d9ba", - "eeaddb21-ebb1-4824-93e6-7f24bca93427", - "88fd1146-951f-491a-9abc-25a3dfec6180", - "4a66e9e6-10a1-46f5-9dad-e20adb46c2e0", - "45a2f81c-56af-40a2-8388-7efa8e61a124", - "1efdcab4-d385-4d5b-85ad-649ff252a22d", - "22a73196-1b9b-4482-92fd-8713095ec2a5", - "635e28b6-f819-4dcc-9b12-a20a7caacfb3", - "2dce7c3d-ce60-49c6-924f-443829296e92", - "ad816e7e-0a08-4c77-aa1b-7a614d0882d7", - "975aa5f4-45c0-43c4-9884-1ddd60fc5f8c", - "9b5446e6-e759-451c-8747-6203c459ab92", - "aa2ac777-eb67-4653-9851-979fda6784b6", - "f52670d2-f798-41b4-8a84-bf63fff752cc", - "910249f3-bd6a-4563-a9d7-8144adf34553", - "3b672454-5b5a-487b-ac31-abc36ddf63af", - "0420ef8d-f9df-416e-9493-3fa02e0b3a9e", - "a224cc7d-edca-4054-9fd7-c027d9520bf5", - "9171a998-1cc5-4416-ad6b-7b12a5a1f185", - "77298ca3-ff30-47a9-ab1d-572ad38f69c8", - "560442cd-5aba-4283-b0ec-729e5f37d7f9" + "136f66e6-0915-4512-9b46-06dd5ae29bdc", + "69288caa-98ff-4628-bc0f-87b55c11be2e", + "a52f9944-135e-4644-87a4-0c63604bd93f", + "8031ee73-5e75-488a-a845-6c01d498da6c", + "277822ce-ad5e-4c82-a66b-867e6041b20a", + "4d0e0ad3-06c0-4d78-a5d9-fabc679ce7e8", + "e71b2eb5-dda6-4734-82ce-98fc541f16e0", + "7e58fbb6-6199-4a63-b8e2-2db3cb7e5bb7", + "d499304e-ad64-4870-8123-19393663c029", + "7b3020bc-1632-4b70-abbe-76e637311525", + "a7766d95-b980-4118-a752-1b9e2d49e6b5", + "0b0bf6b3-c12a-45a1-aa18-1848a53031b7", + "8020d942-ccd6-445c-9487-da766f6bcdcf", + "7be73e92-11fa-4f33-9727-39797e1153a3", + "9952856f-2501-4937-a762-b7da8ead1148", + "9953ca2f-d8ee-4913-ae06-fe2cf0cd3182", + "bd667df1-2e19-478f-b0a2-aa3b2e21c7f2", + "10a5ca64-0de0-4d48-8ab5-1047d0ba11e1", + "66968db8-5f20-4b3a-8692-058414f0597e", + "93593c24-005f-4e6e-b7bc-2be7d34f64b1", + "eaef44d1-2739-4af9-9f74-aa4df5b79228", + "d368e7ce-df52-4e77-85b3-c746b48fd178", + "4401f894-e8fe-4a3c-8b7f-c10c45343154", + "e397b9f0-557b-4727-bfca-cb5c635c6459", + "96962fb7-e2aa-43f7-a615-429d6d967252", + "1fa636a6-aba6-4c7b-8f0e-dfa0097e3e4a", + "9a3ccbab-5814-41e2-b5b9-a994d04f5843", + "9736d912-0ea5-47e3-98bb-eb324f65e930", + "b9f4a4a6-4bdb-4143-9a69-422114576e4b", + "e4312cd7-50b0-46b8-96cd-f6c8ebf69e01", + "939253ce-962e-40cb-85b4-b775dda6b992", + "b125f35f-c44e-4545-842f-90bfd905f48d", + "71fe9238-0618-4b43-8164-f75c830c44fe", + "b36234d2-e1c8-4845-a6bc-a8626fd60621", + "a2df2a05-8274-47ae-b73c-3111a3ef7ecc", + "66226737-9d01-4341-97ef-5b63673e7800", + "88bfb73b-d50e-4a29-bcab-770fb3e17a8c", + "10445497-a4ad-4f19-8e5d-a06439d947ef", + "a7322188-64e2-4c63-9448-71a68e33c95d", + "abd68f01-cf4e-4d79-b3ff-40d239b08be4", + "c920a3ab-8115-4b83-95ea-e40968072516", + "c5894c79-04f5-477e-bfed-b2b5be8e2c72", + "8779d777-e4a0-4cf1-8f11-44da1245ea61" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11902" + "11952" ], "x-ms-request-id": [ - "34232335-4e0e-4f67-9b60-7a5ef8f72098" + "28b7c326-8b03-4a18-8383-bff35af23af4" ], "x-ms-correlation-request-id": [ - "34232335-4e0e-4f67-9b60-7a5ef8f72098" + "28b7c326-8b03-4a18-8383-bff35af23af4" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T063554Z:34232335-4e0e-4f67-9b60-7a5ef8f72098" + "WESTUS:20201022T234346Z:28b7c326-8b03-4a18-8383-bff35af23af4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6048,57 +4722,56 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "12" + "Date": [ + "Thu, 22 Oct 2020 23:43:46 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "12" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTU3OC9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTg0L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzNzQ1L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6e6f5188-c896-4b23-9a0d-54c55349264c" + "d0c7644d-d34a-4ea4-9e53-2230e6959fe8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:34:22 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/402ec3a2-f01b-410e-a795-c8738da84cd6?monitor=true&api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/78986a1d-e90f-4b92-a358-be943c27ec7b?monitor=true&api-version=2020-09-30" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/402ec3a2-f01b-410e-a795-c8738da84cd6?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/78986a1d-e90f-4b92-a358-be943c27ec7b?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/DeleteGalleryImageVersion3Min;149,Microsoft.Compute/DeleteGalleryImageVersion30Min;999" @@ -6107,148 +4780,94 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "402ec3a2-f01b-410e-a795-c8738da84cd6" + "78986a1d-e90f-4b92-a358-be943c27ec7b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14999" ], "x-ms-correlation-request-id": [ - "53c8c289-a704-4e11-b3fc-3cc446098754" + "682cf089-cf9a-48b4-8c51-01ebde7d6969" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T063422Z:53c8c289-a704-4e11-b3fc-3cc446098754" + "WESTUS:20201022T234144Z:682cf089-cf9a-48b4-8c51-01ebde7d6969" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 22 Oct 2020 23:41:43 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/402ec3a2-f01b-410e-a795-c8738da84cd6?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy80MDJlYzNhMi1mMDFiLTQxMGUtYTc5NS1jODczOGRhODRjZDY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/78986a1d-e90f-4b92-a358-be943c27ec7b?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83ODk4NmExZC1lOTBmLTRiOTItYTM1OC1iZTk0M2MyN2VjN2I/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:34:52 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2268" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4148" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "1d7be0bd-13c2-4f3e-bbf7-2bc3ec6f1753" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11906" - ], - "x-ms-correlation-request-id": [ - "e48c21e4-8a84-454e-be41-b14afeffcd26" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T063452Z:e48c21e4-8a84-454e-be41-b14afeffcd26" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:34:22.6732356-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"402ec3a2-f01b-410e-a795-c8738da84cd6\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/402ec3a2-f01b-410e-a795-c8738da84cd6?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy80MDJlYzNhMi1mMDFiLTQxMGUtYTc5NS1jODczOGRhODRjZDY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:35:22 GMT" - ], - "Pragma": [ - "no-cache" + "822ea189-bb53-4fa7-a099-191a3a4ff0ba" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2265" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "8e69ea7d-f2bc-4e7c-93c2-160c6553be3e" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11905" + "11955" ], "x-ms-correlation-request-id": [ - "e0e7f867-88db-4042-b35e-af9e18658a66" + "c4a4a83a-a7ae-47ff-a514-f9f73977f2a5" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T063522Z:e0e7f867-88db-4042-b35e-af9e18658a66" + "WESTUS:20201022T234244Z:c4a4a83a-a7ae-47ff-a514-f9f73977f2a5" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:42:43 GMT" + ], "Content-Length": [ "134" ], @@ -6259,60 +4878,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:34:22.6732356-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"402ec3a2-f01b-410e-a795-c8738da84cd6\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:41:43.8955623-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"78986a1d-e90f-4b92-a358-be943c27ec7b\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/402ec3a2-f01b-410e-a795-c8738da84cd6?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy80MDJlYzNhMi1mMDFiLTQxMGUtYTc5NS1jODczOGRhODRjZDY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/78986a1d-e90f-4b92-a358-be943c27ec7b?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83ODk4NmExZC1lOTBmLTRiOTItYTM1OC1iZTk0M2MyN2VjN2I/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:35:52 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2262" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4146" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "2dda5ea0-9181-4f43-aa30-870efbb39a95" + "ca7dfe97-d610-4b0b-a3a8-1302c6b60a13" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11904" + "11954" ], "x-ms-correlation-request-id": [ - "a24dcf97-d908-4f28-9aae-441e8311cd44" + "813d742f-9c48-43e7-8e5a-ddb008849955" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T063553Z:a24dcf97-d908-4f28-9aae-441e8311cd44" + "WESTUS:20201022T234344Z:813d742f-9c48-43e7-8e5a-ddb008849955" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:43:44 GMT" + ], "Content-Length": [ "184" ], @@ -6323,108 +4942,101 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:34:22.6732356-07:00\",\r\n \"endTime\": \"2020-06-12T23:35:52.8639164-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"402ec3a2-f01b-410e-a795-c8738da84cd6\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:41:43.8955623-07:00\",\r\n \"endTime\": \"2020-10-22T16:43:14.0830795-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"78986a1d-e90f-4b92-a358-be943c27ec7b\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/402ec3a2-f01b-410e-a795-c8738da84cd6?monitor=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy80MDJlYzNhMi1mMDFiLTQxMGUtYTc5NS1jODczOGRhODRjZDY/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/78986a1d-e90f-4b92-a358-be943c27ec7b?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83ODk4NmExZC1lOTBmLTRiOTItYTM1OC1iZTk0M2MyN2VjN2I/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:35:52 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1182,Microsoft.Compute/GetOperationStatus30Min;2261" + "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4145" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "d02d4e33-2148-419d-8602-bd8c78ebb184" + "4ca817fe-ba07-4552-843e-9ec3493aeab9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11903" + "11953" ], "x-ms-correlation-request-id": [ - "dd8cb369-a261-4ca6-a0bd-d9aa17f0bc30" + "a4b60305-a50f-4512-b2ca-e209b41fab5e" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T063553Z:dd8cb369-a261-4ca6-a0bd-d9aa17f0bc30" + "WESTUS:20201022T234344Z:a4b60305-a50f-4512-b2ca-e209b41fab5e" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 22 Oct 2020 23:43:44 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/images/psTestSourceImage734?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaW1hZ2VzL3BzVGVzdFNvdXJjZUltYWdlNzM0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTg2OTM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d179ecee-1c19-437a-a71a-0ff1bc35d167" + "aa21c917-cd0b-4581-b888-8b93df6304b0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:40:54 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/operations/cd16d36f-5d70-4a24-87fd-77334b7876f3?monitor=true&api-version=2020-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/f604a968-db5c-4eb6-8d93-33636e6415cc?monitor=true&api-version=2020-06-01" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/operations/cd16d36f-5d70-4a24-87fd-77334b7876f3?api-version=2020-06-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/f604a968-db5c-4eb6-8d93-33636e6415cc?api-version=2020-06-01" ], "Azure-AsyncNotification": [ "Enabled" @@ -6436,56 +5048,60 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cd16d36f-5d70-4a24-87fd-77334b7876f3" + "f604a968-db5c-4eb6-8d93-33636e6415cc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "c9481434-4d5a-4152-859f-1a8f97a46515" + "8c394935-c448-4533-a220-dab1c882d4f8" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T064054Z:c9481434-4d5a-4152-859f-1a8f97a46515" + "WESTUS:20201022T234846Z:8c394935-c448-4533-a220-dab1c882d4f8" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 22 Oct 2020 23:48:46 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/images/psTestSourceImage734?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaW1hZ2VzL3BzVGVzdFNvdXJjZUltYWdlNzM0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTg2OTM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b25412e9-1de3-4f13-8f35-8c3c77fe5725" + "eacde523-3115-4ffc-b6d9-120b3165efd6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:43:07 GMT" - ], "Pragma": [ "no-cache" ], @@ -6493,13 +5109,13 @@ "14994" ], "x-ms-request-id": [ - "4babbd8d-e7a3-4d46-965c-b160afadccc0" + "761970a2-8c68-4389-b13c-7dc8453f3360" ], "x-ms-correlation-request-id": [ - "4babbd8d-e7a3-4d46-965c-b160afadccc0" + "761970a2-8c68-4389-b13c-7dc8453f3360" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T064307Z:4babbd8d-e7a3-4d46-965c-b160afadccc0" + "WESTUS:20201022T235130Z:761970a2-8c68-4389-b13c-7dc8453f3360" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6507,6 +5123,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:51:29 GMT" + ], "Expires": [ "-1" ] @@ -6515,53 +5134,53 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/operations/cd16d36f-5d70-4a24-87fd-77334b7876f3?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2NkMTZkMzZmLTVkNzAtNGEyNC04N2ZkLTc3MzM0Yjc4NzZmMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/f604a968-db5c-4eb6-8d93-33636e6415cc?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2Y2MDRhOTY4LWRiNWMtNGViNi04ZDkzLTMzNjM2ZTY0MTVjYz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:41:24 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29992" + "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29986" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "921f4d80-cc6d-494c-a47b-2875010cd734" + "9ff1f665-c5fe-438c-80e4-dce431263c4b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "88526741-2ccd-42d3-93ff-bcdde041bc94" + "b28836c0-474c-4b14-a345-8f9e08e7c4f0" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T064125Z:88526741-2ccd-42d3-93ff-bcdde041bc94" + "WESTUS:20201022T234916Z:b28836c0-474c-4b14-a345-8f9e08e7c4f0" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:49:16 GMT" + ], "Content-Length": [ "184" ], @@ -6572,108 +5191,101 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:40:54.8781581-07:00\",\r\n \"endTime\": \"2020-06-12T23:40:59.9875687-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"cd16d36f-5d70-4a24-87fd-77334b7876f3\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:48:46.6966297-07:00\",\r\n \"endTime\": \"2020-10-22T16:48:51.8216873-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f604a968-db5c-4eb6-8d93-33636e6415cc\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/operations/cd16d36f-5d70-4a24-87fd-77334b7876f3?monitor=true&api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2NkMTZkMzZmLTVkNzAtNGEyNC04N2ZkLTc3MzM0Yjc4NzZmMz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/f604a968-db5c-4eb6-8d93-33636e6415cc?monitor=true&api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2Y2MDRhOTY4LWRiNWMtNGViNi04ZDkzLTMzNjM2ZTY0MTVjYz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:41:24 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29991" + "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29985" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5fe67afa-dddd-45ce-8e8f-2d85a6643b3b" + "ec220855-608a-4a31-b98c-8215eb9b8a3d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "a7ceac8b-a838-4cc6-a9cf-9a81f9d91902" + "b46b5b08-7acb-4b9a-ae04-37c9d4351e0d" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T064125Z:a7ceac8b-a838-4cc6-a9cf-9a81f9d91902" + "WESTUS:20201022T234917Z:b46b5b08-7acb-4b9a-ae04-37c9d4351e0d" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 22 Oct 2020 23:49:16 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/virtualMachines/vm7497?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtNzQ5Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/virtualMachines/vm6924?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY5MjQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26a608d8-2b50-4ad5-8091-4253a1c8afbf" + "e5484adf-f732-4f89-8f75-90ea7d80f73e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:41:25 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/operations/13154447-7c54-48b4-a50b-8f5d2b3e3ea9?monitor=true&api-version=2020-06-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/e9323d1f-0a27-44f2-9a64-4043a2ab7ed2?monitor=true&api-version=2020-06-01" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/operations/13154447-7c54-48b4-a50b-8f5d2b3e3ea9?api-version=2020-06-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/e9323d1f-0a27-44f2-9a64-4043a2ab7ed2?api-version=2020-06-01" ], "Azure-AsyncNotification": [ "Enabled" @@ -6685,56 +5297,60 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "13154447-7c54-48b4-a50b-8f5d2b3e3ea9" + "e9323d1f-0a27-44f2-9a64-4043a2ab7ed2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "b7814c85-bd69-4272-8c44-7be8050d8bfd" + "68bbc0b0-2920-404f-ac23-e59cb5bc1118" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T064125Z:b7814c85-bd69-4272-8c44-7be8050d8bfd" + "WESTUS:20201022T234917Z:68bbc0b0-2920-404f-ac23-e59cb5bc1118" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 22 Oct 2020 23:49:17 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/virtualMachines/vm7497?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtNzQ5Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/virtualMachines/vm6924?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY5MjQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05745ebf-adb2-4d53-ae1d-400c97644ca0" + "609e6791-a244-4f25-a239-1493e86ae3e8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:43:07 GMT" - ], "Pragma": [ "no-cache" ], @@ -6742,13 +5358,13 @@ "14995" ], "x-ms-request-id": [ - "a75922c3-ac83-42da-9c30-c4e3e0a9ffeb" + "346bcaba-ff12-48e3-8f2a-a8755592d3f9" ], "x-ms-correlation-request-id": [ - "a75922c3-ac83-42da-9c30-c4e3e0a9ffeb" + "346bcaba-ff12-48e3-8f2a-a8755592d3f9" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T064307Z:a75922c3-ac83-42da-9c30-c4e3e0a9ffeb" + "WESTUS:20201022T235129Z:346bcaba-ff12-48e3-8f2a-a8755592d3f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6756,6 +5372,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:51:28 GMT" + ], "Expires": [ "-1" ] @@ -6764,56 +5383,56 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/operations/13154447-7c54-48b4-a50b-8f5d2b3e3ea9?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzEzMTU0NDQ3LTdjNTQtNDhiNC1hNTBiLThmNWQyYjNlM2VhOT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/e9323d1f-0a27-44f2-9a64-4043a2ab7ed2?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2U5MzIzZDFmLTBhMjctNDRmMi05YTY0LTQwNDNhMmFiN2VkMj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:41:35 GMT" - ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29990" + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29983" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "49cefa85-171d-4330-975d-85c6c97d4b4e" + "95f5074f-a098-4938-9401-bb99aea68f6c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "50ddd639-c0df-48f1-9b4a-980288bcaff8" + "e239006b-386e-4621-883f-6516c290f933" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T064135Z:50ddd639-c0df-48f1-9b4a-980288bcaff8" + "WESTUS:20201022T234927Z:e239006b-386e-4621-883f-6516c290f933" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:49:27 GMT" + ], "Content-Length": [ "134" ], @@ -6824,59 +5443,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:41:25.4096207-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"13154447-7c54-48b4-a50b-8f5d2b3e3ea9\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:49:17.2282436-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e9323d1f-0a27-44f2-9a64-4043a2ab7ed2\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/operations/13154447-7c54-48b4-a50b-8f5d2b3e3ea9?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzEzMTU0NDQ3LTdjNTQtNDhiNC1hNTBiLThmNWQyYjNlM2VhOT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/e9323d1f-0a27-44f2-9a64-4043a2ab7ed2?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2U5MzIzZDFmLTBhMjctNDRmMi05YTY0LTQwNDNhMmFiN2VkMj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:42:05 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29988" + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29982" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "964e674c-2fa4-45e2-9e76-fed1ae923f7e" + "986df32c-23c9-428f-aff1-9babcb21136d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "9fcf34d6-f471-4b30-ae8f-ea50530ae127" + "842f3833-1a01-4579-ba04-cc5b586effca" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T064205Z:9fcf34d6-f471-4b30-ae8f-ea50530ae127" + "WESTUS:20201022T234957Z:842f3833-1a01-4579-ba04-cc5b586effca" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:49:57 GMT" + ], "Content-Length": [ - "184" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6885,105 +5504,159 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:41:25.4096207-07:00\",\r\n \"endTime\": \"2020-06-12T23:42:02.9567369-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"13154447-7c54-48b4-a50b-8f5d2b3e3ea9\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:49:17.2282436-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e9323d1f-0a27-44f2-9a64-4043a2ab7ed2\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/operations/13154447-7c54-48b4-a50b-8f5d2b3e3ea9?monitor=true&api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzEzMTU0NDQ3LTdjNTQtNDhiNC1hNTBiLThmNWQyYjNlM2VhOT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/e9323d1f-0a27-44f2-9a64-4043a2ab7ed2?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2U5MzIzZDFmLTBhMjctNDRmMi05YTY0LTQwNDNhMmFiN2VkMj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:42:05 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29980" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "74e7ecf9-abb5-4cb9-ba5f-cbd94b7bd636" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "a4f26b3d-967e-477e-a590-9fddcec40fd9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201022T235027Z:a4f26b3d-967e-477e-a590-9fddcec40fd9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 23:50:27 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:49:17.2282436-07:00\",\r\n \"endTime\": \"2020-10-22T16:49:58.8535257-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e9323d1f-0a27-44f2-9a64-4043a2ab7ed2\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/e9323d1f-0a27-44f2-9a64-4043a2ab7ed2?monitor=true&api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2U5MzIzZDFmLTBhMjctNDRmMi05YTY0LTQwNDNhMmFiN2VkMj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29987" + "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29979" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "36e74250-fb9e-4ef9-abb3-abfc1a29350c" + "bc2faa52-bbbf-492b-ab58-b2c863fdf47a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-correlation-request-id": [ - "e253f6af-8fc5-4a46-b8cd-15a3d17cfed1" + "c12a3c23-68da-4e32-99d4-5ce4b6678e19" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T064206Z:e253f6af-8fc5-4a46-b8cd-15a3d17cfed1" + "WESTUS:20201022T235027Z:c12a3c23-68da-4e32-99d4-5ce4b6678e19" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 22 Oct 2020 23:50:27 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTU3OC9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTg0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzNzQ1P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0806fcfc-05f5-482b-b541-fa0e7f5afd98" + "9a953d4a-b630-4377-ab6b-4a7d66d69da0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:42:05 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/17f9ca63-2b45-43d5-9321-8eae547ac0a3?monitor=true&api-version=2019-12-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/4f887188-a866-42cd-bdbb-72a5cea50e95?monitor=true&api-version=2020-09-30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/17f9ca63-2b45-43d5-9321-8eae547ac0a3?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/4f887188-a866-42cd-bdbb-72a5cea50e95?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/DeleteGalleryImage3Min;49,Microsoft.Compute/DeleteGalleryImage30Min;299" @@ -6992,86 +5665,93 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "17f9ca63-2b45-43d5-9321-8eae547ac0a3" + "4f887188-a866-42cd-bdbb-72a5cea50e95" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], "x-ms-correlation-request-id": [ - "f66cec3d-20df-4312-9104-02b9e0460fbe" + "8819010d-c4b7-4300-9a65-e69b9ce247f2" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T064206Z:f66cec3d-20df-4312-9104-02b9e0460fbe" + "WESTUS:20201022T235028Z:8819010d-c4b7-4300-9a65-e69b9ce247f2" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 22 Oct 2020 23:50:27 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/17f9ca63-2b45-43d5-9321-8eae547ac0a3?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8xN2Y5Y2E2My0yYjQ1LTQzZDUtOTMyMS04ZWFlNTQ3YWMwYTM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/4f887188-a866-42cd-bdbb-72a5cea50e95?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy80Zjg4NzE4OC1hODY2LTQyY2QtYmRiYi03MmE1Y2VhNTBlOTU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:42:35 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;2274" + "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4160" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "e5cd9b86-6429-493c-b7a5-eb773f2b9b60" + "6ed257f6-60bd-42dd-a5c3-9b86787b544c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-correlation-request-id": [ - "f6d2b717-e1e9-496f-8f53-76e059f85dc9" + "1e783e28-25d6-437e-b35a-9f7adb04abd2" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T064236Z:f6d2b717-e1e9-496f-8f53-76e059f85dc9" + "WESTUS:20201022T235058Z:1e783e28-25d6-437e-b35a-9f7adb04abd2" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:50:57 GMT" + ], "Content-Length": [ - "184" + "183" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7080,108 +5760,101 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:42:06.5649491-07:00\",\r\n \"endTime\": \"2020-06-12T23:42:06.7684808-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"17f9ca63-2b45-43d5-9321-8eae547ac0a3\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:50:28.317439-07:00\",\r\n \"endTime\": \"2020-10-22T16:50:28.5519056-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4f887188-a866-42cd-bdbb-72a5cea50e95\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/17f9ca63-2b45-43d5-9321-8eae547ac0a3?monitor=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8xN2Y5Y2E2My0yYjQ1LTQzZDUtOTMyMS04ZWFlNTQ3YWMwYTM/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/4f887188-a866-42cd-bdbb-72a5cea50e95?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy80Zjg4NzE4OC1hODY2LTQyY2QtYmRiYi03MmE1Y2VhNTBlOTU/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:42:35 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;2273" + "Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4159" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "198a237a-c5ea-4ceb-b64f-3894b58eaa6a" + "f8868dea-74ab-455c-bc28-2d315b334bd7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-correlation-request-id": [ - "51f929f5-91eb-4018-a89f-6860193f858d" + "f58cb289-aa98-496c-956b-fea9b2971a68" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T064236Z:51f929f5-91eb-4018-a89f-6860193f858d" + "WESTUS:20201022T235058Z:f58cb289-aa98-496c-956b-fea9b2971a68" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 22 Oct 2020 23:50:57 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTU3OD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c352220e-6fa6-4903-b847-0d480e77a292" + "46ab08e9-6e62-4d9e-92d5-a038443409d0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:42:36 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/f47d0e3b-e68d-4b55-93cf-5440a4c953fa?monitor=true&api-version=2019-12-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/f1fcf756-9f68-4321-bc90-05c3632854e9?monitor=true&api-version=2020-09-30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/f47d0e3b-e68d-4b55-93cf-5440a4c953fa?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/f1fcf756-9f68-4321-bc90-05c3632854e9?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;299" @@ -7190,86 +5863,93 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "f47d0e3b-e68d-4b55-93cf-5440a4c953fa" + "f1fcf756-9f68-4321-bc90-05c3632854e9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14996" ], "x-ms-correlation-request-id": [ - "adad671a-145c-4a05-ae3c-bb281b7964c9" + "33dfab89-131e-4671-b189-e5ff656dff15" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T064237Z:adad671a-145c-4a05-ae3c-bb281b7964c9" + "WESTUS:20201022T235059Z:33dfab89-131e-4671-b189-e5ff656dff15" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 22 Oct 2020 23:50:58 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/f47d0e3b-e68d-4b55-93cf-5440a4c953fa?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mNDdkMGUzYi1lNjhkLTRiNTUtOTNjZi01NDQwYTRjOTUzZmE/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/f1fcf756-9f68-4321-bc90-05c3632854e9?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mMWZjZjc1Ni05ZjY4LTQzMjEtYmM5MC0wNWMzNjMyODU0ZTk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:43:07 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;2271" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4157" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "7926eb49-b0b4-4680-9405-6477f4f03bfe" + "87b4a60e-dfbd-4f79-bb21-a4d9ac0951ac" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-correlation-request-id": [ - "da2859c9-2d91-4877-b912-ec9da6440d13" + "43c6fe09-abb5-44e6-b4db-6c039c5aa504" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T064307Z:da2859c9-2d91-4877-b912-ec9da6440d13" + "WESTUS:20201022T235129Z:43c6fe09-abb5-44e6-b4db-6c039c5aa504" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:51:28 GMT" + ], "Content-Length": [ - "184" + "182" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7278,65 +5958,65 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:42:37.1754891-07:00\",\r\n \"endTime\": \"2020-06-12T23:42:37.2536091-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f47d0e3b-e68d-4b55-93cf-5440a4c953fa\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:50:59.0986877-07:00\",\r\n \"endTime\": \"2020-10-22T16:50:59.19241-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f1fcf756-9f68-4321-bc90-05c3632854e9\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/f47d0e3b-e68d-4b55-93cf-5440a4c953fa?monitor=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mNDdkMGUzYi1lNjhkLTRiNTUtOTNjZi01NDQwYTRjOTUzZmE/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/f1fcf756-9f68-4321-bc90-05c3632854e9?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mMWZjZjc1Ni05ZjY4LTQzMjEtYmM5MC0wNWMzNjMyODU0ZTk/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:43:07 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;2270" + "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4156" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "1dd8ff8b-0b4b-414e-a174-06ceeccb0eea" + "2b3fe3b9-ac77-42e3-b310-c82d99bf1629" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11990" ], "x-ms-correlation-request-id": [ - "cd1ac539-2f89-4822-8f76-7410326c0fa1" + "d669c661-9b7a-478c-a11d-9e3e7167061c" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T064307Z:cd1ac539-2f89-4822-8f76-7410326c0fa1" + "WESTUS:20201022T235129Z:d669c661-9b7a-478c-a11d-9e3e7167061c" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 22 Oct 2020 23:51:28 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -7345,36 +6025,36 @@ ], "Names": { "GalleryImageVersion_CRUD_Tests": [ - "galleryPsTestRg243", - "psTestSourceImage734", - "galleryPsTestGallery1578", - "galleryPsTestGalleryImage84" + "galleryPsTestRg9950", + "psTestSourceImage8693", + "galleryPsTestGallery5957", + "galleryPsTestGalleryImage3745" ], "CreateCRPImage": [ - "saforgallery5476", - "asforgallery4759" + "saforgallery3821", + "asforgallery9985" ], "CreatePublicIP": [ - "pip6201", - "dn8804" + "pip6143", + "dn6774" ], "CreateVNET": [ - "vn4028", - "sn489" + "vn632", + "sn3362" ], "CreateNIC": [ - "nic7376", - "ip4804" + "nic1723", + "ip4160" ], "CreateDefaultVMInput": [ - "crptestar2173", - "crptestar3983", - "crptestar7165", - "vm7497", - "Microsoft.Compute/virtualMachines837" + "crptestar8729", + "crptestar1077", + "crptestar8032", + "vm6924", + "Microsoft.Compute/virtualMachines5763" ] }, "Variables": { - "SubscriptionId": "0296790d-427c-48ca-b204-8b729bbd8670" + "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 847d1a018a0b..6a12ddf57ff7 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryImage_CRUD_Tests.json +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryImage_CRUD_Tests.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg7368?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNjg/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg5359?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzUzNTk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e1e62610-8c13-4e3c-9b66-988e96697fe1" + "68191049-45e8-478e-9644-409692bce604" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ @@ -29,9 +29,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:28:44 GMT" - ], "Pragma": [ "no-cache" ], @@ -39,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "bc2cc9f1-4b49-4c62-bdfe-afa79c402c1b" + "e90b7ca1-69b6-478b-bf04-ebf9cefede10" ], "x-ms-correlation-request-id": [ - "bc2cc9f1-4b49-4c62-bdfe-afa79c402c1b" + "e90b7ca1-69b6-478b-bf04-ebf9cefede10" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T012845Z:bc2cc9f1-4b49-4c62-bdfe-afa79c402c1b" + "WESTUS:20201022T230740Z:e90b7ca1-69b6-478b-bf04-ebf9cefede10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -53,6 +50,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:07:40 GMT" + ], "Content-Length": [ "192" ], @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368\",\r\n \"name\": \"galleryPsTestRg7368\",\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/galleryPsTestRg5359\",\r\n \"name\": \"galleryPsTestRg5359\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368/providers/Microsoft.Compute/galleries/galleryPsTestGallery941?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk0MT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzUzNTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4OTc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "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": [ - "d2dcb1a3-4687-4a8e-a7c8-6ca34a69fdf4" + "d22f8749-2ebd-4e1d-b1dd-efac76d53287" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -95,42 +95,45 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:28:48 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/15074ef6-1655-4767-81f0-388fa1c3c2af?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fb6f1ca1-73f3-412a-a0ad-1fa428c6f4a6?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateGallery3Min;48,Microsoft.Compute/CreateUpdateGallery30Min;296" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "15074ef6-1655-4767-81f0-388fa1c3c2af" + "fb6f1ca1-73f3-412a-a0ad-1fa428c6f4a6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "fec9783d-055c-4646-a947-b241d2526646" + "dbbb020a-81ba-4b67-9ada-53ba41ace969" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T012849Z:fec9783d-055c-4646-a947-b241d2526646" + "WESTUS:20201022T230744Z:dbbb020a-81ba-4b67-9ada-53ba41ace969" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:07:43 GMT" + ], "Content-Length": [ - "505" + "573" ], "Content-Type": [ "application/json; charset=utf-8" @@ -139,59 +142,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery941\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368/providers/Microsoft.Compute/galleries/galleryPsTestGallery941\",\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-GALLERYPSTESTGALLERY941\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8897\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897\",\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-GALLERYPSTESTGALLERY8897\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Private\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/15074ef6-1655-4767-81f0-388fa1c3c2af?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8xNTA3NGVmNi0xNjU1LTQ3NjctODFmMC0zODhmYTFjM2MyYWY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fb6f1ca1-73f3-412a-a0ad-1fa428c6f4a6?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mYjZmMWNhMS03M2YzLTQxMmEtYTBhZC0xZmE0MjhjNmY0YTY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:29:18 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4163" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "6ad42f32-ef29-43fc-a4c3-1ce2d28271b5" + "3261dc2d-24e2-49db-8c33-43d423785127" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "47927bbb-1775-418b-b5b5-2bbc6c8eaca0" + "a13e0992-d7e7-4e0b-9b8c-e3e13d0851c5" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T012919Z:47927bbb-1775-418b-b5b5-2bbc6c8eaca0" + "WESTUS:20201022T230814Z:a13e0992-d7e7-4e0b-9b8c-e3e13d0851c5" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:08:14 GMT" + ], "Content-Length": [ - "183" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -200,59 +206,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:28:47.869301-08:00\",\r\n \"endTime\": \"2020-02-20T17:28:48.1193159-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"15074ef6-1655-4767-81f0-388fa1c3c2af\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:07:43.8183343-07:00\",\r\n \"endTime\": \"2020-10-22T16:07:43.8964573-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"fb6f1ca1-73f3-412a-a0ad-1fa428c6f4a6\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368/providers/Microsoft.Compute/galleries/galleryPsTestGallery941?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk0MT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzUzNTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4OTc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:29:18 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;337,Microsoft.Compute/GetGallery30Min;2472" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "eb669e70-4bc5-4ac5-b4e3-d0f93d5719a1" + "560e7f98-f658-46d5-96b9-1fa59fe38916" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "ffdda3f9-d2e2-4484-a44e-43194e293bda" + "f32b43e7-c09d-4982-93f0-c450eb699623" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T012919Z:ffdda3f9-d2e2-4484-a44e-43194e293bda" + "WESTUS:20201022T230814Z:f32b43e7-c09d-4982-93f0-c450eb699623" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:08:14 GMT" + ], "Content-Length": [ - "506" + "509" ], "Content-Type": [ "application/json; charset=utf-8" @@ -261,26 +270,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery941\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368/providers/Microsoft.Compute/galleries/galleryPsTestGallery941\",\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-GALLERYPSTESTGALLERY941\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8897\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897\",\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-GALLERYPSTESTGALLERY8897\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368/providers/Microsoft.Compute/galleries/galleryPsTestGallery941/images/galleryPsTestGalleryImage6286?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk0MS9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTYyODY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images/galleryPsTestGalleryImage8015?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzUzNTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4OTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4MDE1P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "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": [ - "55b7b7b8-198e-4aaf-ac67-4bd8607f5199" + "7078bf97-837c-4455-bbcb-efb037f3aafe" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -293,42 +302,45 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:29:20 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/7dbfbcb1-45ef-4dcc-898b-16272004feeb?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/e75bdc81-6b12-4d5b-afd8-2d592ffcaaa5?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;746" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "7dbfbcb1-45ef-4dcc-898b-16272004feeb" + "e75bdc81-6b12-4d5b-afd8-2d592ffcaaa5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "ef3a9d83-f74d-4c02-8bbe-0351c13ea925" + "adcaae5e-3834-4fb1-b206-d53f60517298" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T012920Z:ef3a9d83-f74d-4c02-8bbe-0351c13ea925" + "WESTUS:20201022T230816Z:adcaae5e-3834-4fb1-b206-d53f60517298" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:08:16 GMT" + ], "Content-Length": [ - "645" + "646" ], "Content-Type": [ "application/json; charset=utf-8" @@ -337,26 +349,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage6286\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368/providers/Microsoft.Compute/galleries/galleryPsTestGallery941/images/galleryPsTestGalleryImage6286\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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\": \"galleryPsTestGalleryImage8015\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images/galleryPsTestGalleryImage8015\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"description\": \"This is the gallery image description.\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368/providers/Microsoft.Compute/galleries/galleryPsTestGallery941/images/galleryPsTestGalleryImage6286?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk0MS9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTYyODY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images/galleryPsTestGalleryImage8015?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzUzNTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4OTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4MDE1P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "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": [ - "bdd856f5-2e4a-4d33-877e-06641a64f2e4" + "eda125ba-0727-42c0-b863-583056c3988d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -369,42 +381,45 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:29:51 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/0b7768a6-9a6c-4edf-ac15-ea7817befbca?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fe80c8b1-9fd8-4b25-b345-00bb350eb54f?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateGalleryImage3Min;148,Microsoft.Compute/CreateUpdateGalleryImage30Min;745" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "0b7768a6-9a6c-4edf-ac15-ea7817befbca" + "fe80c8b1-9fd8-4b25-b345-00bb350eb54f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "c51928a8-4f19-4631-bfec-05af014f6ce8" + "ec36a6cb-85af-443a-85bd-ad5e98bd7f51" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T012951Z:c51928a8-4f19-4631-bfec-05af014f6ce8" + "WESTUS:20201022T230847Z:ec36a6cb-85af-443a-85bd-ad5e98bd7f51" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:08:46 GMT" + ], "Content-Length": [ - "627" + "628" ], "Content-Type": [ "application/json; charset=utf-8" @@ -413,57 +428,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage6286\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368/providers/Microsoft.Compute/galleries/galleryPsTestGallery941/images/galleryPsTestGalleryImage6286\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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\": \"galleryPsTestGalleryImage8015\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images/galleryPsTestGalleryImage8015\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Updated description.\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/7dbfbcb1-45ef-4dcc-898b-16272004feeb?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83ZGJmYmNiMS00NWVmLTRkY2MtODk4Yi0xNjI3MjAwNGZlZWI/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/e75bdc81-6b12-4d5b-afd8-2d592ffcaaa5?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lNzViZGM4MS02YjEyLTRkNWItYWZkOC0yZDU5MmZmY2FhYTU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:29:50 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4161" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "879b98da-a4d8-49f6-9cff-9849821f95ef" + "7a50ce1a-b9f1-4700-a813-0b17fbb3bf14" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "45b30b3c-1bdc-4957-8b1d-3a5843788813" + "6dd5185d-9715-469a-9883-56af7b946693" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T012950Z:45b30b3c-1bdc-4957-8b1d-3a5843788813" + "WESTUS:20201022T230846Z:6dd5185d-9715-469a-9883-56af7b946693" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:08:45 GMT" + ], "Content-Length": [ "184" ], @@ -474,59 +492,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:29:20.2454325-08:00\",\r\n \"endTime\": \"2020-02-20T17:29:20.3548119-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7dbfbcb1-45ef-4dcc-898b-16272004feeb\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:08:15.8339603-07:00\",\r\n \"endTime\": \"2020-10-22T16:08:15.9433783-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e75bdc81-6b12-4d5b-afd8-2d592ffcaaa5\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368/providers/Microsoft.Compute/galleries/galleryPsTestGallery941/images/galleryPsTestGalleryImage6286?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk0MS9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTYyODY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images/galleryPsTestGalleryImage8015?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzUzNTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4OTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4MDE1P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:29:50 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGalleryImage3Min;588,Microsoft.Compute/GetGalleryImage30Min;2961" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "1688bd5d-ea9d-4a13-8d2e-cc4190597859" + "97893d87-24c8-4e14-884f-bf7aa64e4a96" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "36a4485e-d28e-43ea-9ff7-e9b9c8f1ee74" + "33b77fc9-1187-49c6-8f0f-a61ae8414890" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T012951Z:36a4485e-d28e-43ea-9ff7-e9b9c8f1ee74" + "WESTUS:20201022T230846Z:33b77fc9-1187-49c6-8f0f-a61ae8414890" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:08:46 GMT" + ], "Content-Length": [ - "646" + "647" ], "Content-Type": [ "application/json; charset=utf-8" @@ -535,65 +556,68 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage6286\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368/providers/Microsoft.Compute/galleries/galleryPsTestGallery941/images/galleryPsTestGalleryImage6286\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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\": \"galleryPsTestGalleryImage8015\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images/galleryPsTestGalleryImage8015\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"This is the gallery image description.\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368/providers/Microsoft.Compute/galleries/galleryPsTestGallery941/images/galleryPsTestGalleryImage6286?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk0MS9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTYyODY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images/galleryPsTestGalleryImage8015?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzUzNTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4OTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4MDE1P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4131099f-123e-49a6-b6e4-3144183f78fa" + "d6a62161-0d68-453f-bec2-dd138929c2c5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:29:51 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGalleryImage3Min;587,Microsoft.Compute/GetGalleryImage30Min;2960" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "62c24f2d-0815-45ff-839f-5dd03ae3321a" + "47821a10-14f4-4c5c-bcab-b845089c5d02" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "cb606853-db43-4326-80f3-2f3928e1dc82" + "4575f5ff-f415-41c0-836c-f511eed61540" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T012951Z:cb606853-db43-4326-80f3-2f3928e1dc82" + "WESTUS:20201022T230846Z:4575f5ff-f415-41c0-836c-f511eed61540" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:08:46 GMT" + ], "Content-Length": [ - "646" + "647" ], "Content-Type": [ "application/json; charset=utf-8" @@ -602,59 +626,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage6286\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368/providers/Microsoft.Compute/galleries/galleryPsTestGallery941/images/galleryPsTestGalleryImage6286\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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\": \"galleryPsTestGalleryImage8015\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images/galleryPsTestGalleryImage8015\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"This is the gallery image description.\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368/providers/Microsoft.Compute/galleries/galleryPsTestGallery941/images/galleryPsTestGalleryImage6286?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk0MS9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTYyODY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images/galleryPsTestGalleryImage8015?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzUzNTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4OTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4MDE1P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:30:21 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGalleryImage3Min;586,Microsoft.Compute/GetGalleryImage30Min;2955" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "a00b9407-f297-4aca-9400-2ede00c8fdbc" + "973dfe38-adb9-4a8e-9add-b3cfc06d44dd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-correlation-request-id": [ - "421325c5-2a14-4d5b-b855-3c7a938e1191" + "5fd01e85-49d9-46c1-afb2-2f2175da6ba5" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013022Z:421325c5-2a14-4d5b-b855-3c7a938e1191" + "WESTUS:20201022T230917Z:5fd01e85-49d9-46c1-afb2-2f2175da6ba5" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:09:16 GMT" + ], "Content-Length": [ - "628" + "629" ], "Content-Type": [ "application/json; charset=utf-8" @@ -663,65 +690,68 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage6286\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368/providers/Microsoft.Compute/galleries/galleryPsTestGallery941/images/galleryPsTestGalleryImage6286\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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\": \"galleryPsTestGalleryImage8015\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images/galleryPsTestGalleryImage8015\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Updated description.\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368/providers/Microsoft.Compute/galleries/galleryPsTestGallery941/images/galleryPsTestGalleryImage6286?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk0MS9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTYyODY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images/galleryPsTestGalleryImage8015?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzUzNTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4OTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4MDE1P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "95bba199-514f-4936-a8d8-47ad8e09756a" + "6353644b-a9f1-44cd-a971-6fa33342eee8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:30:21 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGalleryImage3Min;585,Microsoft.Compute/GetGalleryImage30Min;2954" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "8643e797-a396-4f2c-8a46-e861989b1fd6" + "beb12661-318f-4155-a8d4-d34244bad89e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], "x-ms-correlation-request-id": [ - "bbc7713e-bfea-4123-901c-502aca77c365" + "f4565e39-848f-4cf1-992f-75bb7c697ec2" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013022Z:bbc7713e-bfea-4123-901c-502aca77c365" + "WESTUS:20201022T230917Z:f4565e39-848f-4cf1-992f-75bb7c697ec2" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:09:16 GMT" + ], "Content-Length": [ - "628" + "629" ], "Content-Type": [ "application/json; charset=utf-8" @@ -730,57 +760,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage6286\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368/providers/Microsoft.Compute/galleries/galleryPsTestGallery941/images/galleryPsTestGalleryImage6286\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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\": \"galleryPsTestGalleryImage8015\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images/galleryPsTestGalleryImage8015\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Updated description.\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/0b7768a6-9a6c-4edf-ac15-ea7817befbca?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wYjc3NjhhNi05YTZjLTRlZGYtYWMxNS1lYTc4MTdiZWZiY2E/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fe80c8b1-9fd8-4b25-b345-00bb350eb54f?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mZTgwYzhiMS05ZmQ4LTRiMjUtYjM0NS0wMGJiMzUwZWI1NGY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:30:21 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4158" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "3207d34f-7810-4635-ab91-3310355e3bb8" + "12b1b749-d1a2-4177-8879-390a2b50ffc4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-correlation-request-id": [ - "88ffa2aa-b2fe-47dc-9bf1-151f26fc19a3" + "c08c008a-6d95-4e5d-86bf-88e0c60665b7" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013021Z:88ffa2aa-b2fe-47dc-9bf1-151f26fc19a3" + "WESTUS:20201022T230917Z:c08c008a-6d95-4e5d-86bf-88e0c60665b7" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:09:16 GMT" + ], "Content-Length": [ "184" ], @@ -791,95 +824,91 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:29:51.3868934-08:00\",\r\n \"endTime\": \"2020-02-20T17:29:51.4181491-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0b7768a6-9a6c-4edf-ac15-ea7817befbca\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:08:46.8964855-07:00\",\r\n \"endTime\": \"2020-10-22T16:08:46.9277347-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"fe80c8b1-9fd8-4b25-b345-00bb350eb54f\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368/providers/Microsoft.Compute/galleries/galleryPsTestGallery941/images?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk0MS9pbWFnZXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzUzNTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4OTcvaW1hZ2VzP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad0cca63-4ed4-44e8-984d-076766183734" + "50609e37-7033-44e6-bff3-6be21bb85786" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:30:23 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "fecb13f9-bb81-4305-8d46-df333bfa74d4", - "0a49d506-54d6-4a9d-bb36-ca1ca17cc235", - "55a70e76-1f9e-4506-8e42-f109328cf6fd", - "dca0b23e-8d40-4435-b382-f2346784dc59", - "ec94507d-eb97-4d44-aee7-c6db908628d7", - "4ccde0c0-7ea6-4898-b820-ebb650d13ec6", - "b8e38715-4e08-409d-a96c-3cdd9645f861", - "fcd13c44-19a2-4335-8e99-7689d3fc51de", - "39d6b36d-a4ce-4465-8664-125400d77670", - "ba9a7820-c9e6-4b1a-845f-a115d6ad31c1", - "db6a44c3-adc2-4c47-8c14-fda76de221ba", - "6f50c1ac-88d2-4706-a2fb-877278c67183", - "51e37a3c-296d-43ad-8ef4-d4877e8461b7", - "45ae1227-30ee-47a5-af08-cd938cb53815", - "1fcb25df-9733-4b4f-b66a-cdeb6cb2faa7", - "e1d1e737-9c5b-4387-8288-4d9d5db15b31", - "722b4bd6-317b-4f7b-9a8a-fd90ff030b8d", - "5d9c5024-a29a-485f-ac29-12ebbc8e2797", - "f04df368-0743-4b1c-a8a1-72066f30e4c8", - "874255d9-5692-400c-8b32-10e454a35944", - "6685e3a2-e1d2-4a31-88ec-d8ada05a2482", - "2f0276dc-1d08-4231-9a57-70eecf5b5098", - "ca17ce82-019f-4ca1-93e7-c6dff79eb8ff", - "6c610ff2-7534-4b87-8f78-496de4bbc613", - "a1596b67-63de-4e9a-8f2a-f6f8454048a3", - "2a972757-8fe1-4fad-b44e-420214f816c7", - "80b13aba-5977-47e6-8e15-df7c4aec46e6", - "0a89076b-aaa5-4e69-9baa-7cdfe3652ede", - "251766db-9e46-4200-919b-ba1f44bbe435", - "4938102c-1364-46cf-ace1-9407da051704", - "95f528d6-9c06-4884-9004-fffc3c750412", - "bdd63cbb-1b9a-4e0d-8252-9595472b1b7f", - "1074b13c-9a32-4859-8d45-815a0de59196", - "b096a0f8-7873-4723-8d17-338538a594f6", - "2d24f7cd-a81d-4b43-ac7f-639f91c3e268", - "1ef1d2e8-67ab-493d-bd66-ff539c6bcda5", - "baa7fec9-1699-4f6f-8333-018beb0c5b00", - "0169422b-7d76-40be-8a0c-86565d71ad88", - "622cf7af-e928-47d3-a11a-2af6561a09fe", - "14e1c96d-e8a3-4e9d-ba53-1121eb18c1a2", - "e915cb0a-93fa-4e45-bdae-8d01e89e8e5a", - "2ae858d9-01fe-4c9a-a9ab-07cbe715ee4a", - "a822c5e4-0bd0-4b52-a0f9-0b9b2d301257", - "d583dbfa-6721-40b5-bd70-80bed10d6972" + "e7fecd32-2a89-41f0-b35e-759715f287a0", + "b0fbd3ee-c9e8-45f5-b7a7-20315c2e4cc6", + "03d476f4-7425-45db-b63c-f38425a2fbf1", + "e881c475-69cb-4d6f-a8bf-1c4b0cac0edc", + "7d3eef71-053e-46ab-a1bf-100e76d8fb1f", + "b53a35c8-3fdf-45f6-9657-5fe2b399055a", + "fd759f9e-ed3a-46c4-803c-3739896c2721", + "44ffcaca-36d6-4601-9309-9435befc6424", + "5d9a1bd3-e984-4ac1-be5a-33358bfd6c7d", + "8295b913-cb57-4011-8de0-3dbd5c7b9b56", + "0a0872af-c3a0-4827-a685-44651f81ea42", + "f5006ac9-4257-447b-a0ca-193b047e6cb3", + "2159f7ff-8b21-4bbc-b2ee-02fb5598bd93", + "a30cac47-8c95-40d2-9b5c-cbc659066d88", + "477a13be-7917-4b2d-af5f-94c1c6712bc2", + "b36ff679-395f-45a5-b1c3-5a5720486a19", + "808ca131-a46e-4b5f-bf49-43d0c12749cb", + "3267e724-ad3b-4952-b165-dcd3fb9d675f", + "ccb63cb1-4708-4e7f-b091-173715d5a684", + "e20682d6-af09-42cf-b0a3-47f89f357dd2", + "ab34a94c-a46d-4670-b373-494343f782f3", + "fa079b1f-c045-419f-ae2a-5cfcc5ec16a8", + "d386302b-0eae-4158-8da7-f6897cf01cd3", + "040e575a-5b01-4fac-b6c3-897658c73aed", + "d9a15f2c-b8f9-45b2-a7eb-373dbe4e13e1", + "37082f34-29e4-4889-a52c-def8b13c99c4", + "7ee7b8b4-5c38-4f06-acc5-ff3e87759cbc", + "21f0a828-4816-484b-a441-dbade3a60314", + "6c91f2c5-d56d-4d88-a3ea-3918c19e596b", + "2b585a18-380c-436d-8f20-be098835b2c2", + "61392074-a789-45ba-91e5-b3b2f2a740a4", + "9d4c7ad6-b660-4ddf-93ae-f582a88ba672", + "457e685e-2592-4cd4-932f-08d5ba35d3c6", + "db12db1a-00bd-4815-b684-598b3872feaa", + "57b899bd-7890-4ccc-b25b-980108b1054c", + "7eead5f9-7632-4634-8577-c4b366ce2cb1", + "ab00c5b0-e8be-4506-946f-7d9741955a3f", + "6e55e5f0-1bb0-4a2f-84c4-6c7d403cc8bd", + "a65a53ed-d290-4d72-8ffb-6925230ed8f1", + "9a612e45-a23e-404a-8a58-752a5036caff", + "26188204-84d0-4c62-a6bd-0e7f405bf434", + "df345a51-eb8a-4123-9763-64a5a443cf30", + "ea4e0ce0-8827-4e41-83ea-d2f096ca7681" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], "x-ms-request-id": [ - "ae2eb0d8-4991-4236-ba18-c5fb8403db0f" + "432534dd-0ac4-4622-a3ce-b2dec49a4963" ], "x-ms-correlation-request-id": [ - "ae2eb0d8-4991-4236-ba18-c5fb8403db0f" + "432534dd-0ac4-4622-a3ce-b2dec49a4963" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013023Z:ae2eb0d8-4991-4236-ba18-c5fb8403db0f" + "WESTUS:20201022T230917Z:432534dd-0ac4-4622-a3ce-b2dec49a4963" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -887,105 +916,104 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "534" + "Date": [ + "Thu, 22 Oct 2020 23:09:17 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "535" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"galleryPsTestGalleryImage6286\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368/providers/Microsoft.Compute/galleries/galleryPsTestGallery941/images/galleryPsTestGalleryImage6286\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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\": \"galleryPsTestGalleryImage8015\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images/galleryPsTestGalleryImage8015\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Updated description.\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368/providers/Microsoft.Compute/galleries/galleryPsTestGallery941/images?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk0MS9pbWFnZXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzUzNTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4OTcvaW1hZ2VzP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "514b34fe-3293-4793-9900-e01bebef1c2d" + "cedeee07-7760-4695-965a-a1685b15d0f0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:30:54 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "530abaa3-8223-42d7-b2a4-adcda6e6d4a8", - "d1fe72f8-a16f-491b-b9b9-d1831f7db7ec", - "31e0933e-5662-4cdd-84fb-54c845d9d019", - "b59f3d97-5d24-43a3-8329-1659ff0ec091", - "ed67fb66-1cbd-4896-92db-7d20217e7feb", - "16040aaa-a327-4ed0-9a1a-22f59448ee71", - "763dd8b7-831f-4758-985e-bf0bd46d42a8", - "6f18e5d2-c8a9-4372-b254-0557b54105ef", - "3380b93c-de51-47b1-9eab-1ba1c159e16b", - "82443817-274d-4a2c-9961-c8952ebb0bd5", - "9c2966eb-0b95-4f3f-8d94-5018b7ad4206", - "11bbe2cc-00e7-4b8e-924e-08f4acec7238", - "d37cb029-e425-4882-a91b-d9744e0e588c", - "266c7379-f503-4726-a919-3bd4b18014a1", - "824e0710-b0d8-4430-b551-248480e837a8", - "3d41042e-3fa7-4b68-838d-e713e9264458", - "55f68b16-b0d8-4075-ab01-dfc396004a27", - "596e2c01-d915-4246-8245-50565ee9744c", - "824acedb-1c36-418a-8949-9ffb63bf1a54", - "0bbc5439-21c0-42b2-a169-c950c5ea00b7", - "8d8350b1-a666-4df6-84e9-a0834bd623dd", - "6c3cae68-7b71-49ee-9239-462972124bab", - "e233802d-2757-4655-b140-1f79003755b5", - "92adcb61-4b63-46b4-8560-27a5958ecf2c", - "49ce364f-a120-43b5-8a29-9bdcbb872952", - "2cdf5b26-6a5c-4740-907a-e2f5d4499c59", - "a234c7df-b66a-45ac-918d-a459eb63fbc3", - "77c9f12e-f5c4-4a77-8bca-a9f6818f6f60", - "e023c2ec-4bd4-4b06-962b-7a60eea645b8", - "6333c2a0-9e87-4c81-88cb-46a9416ae8fb", - "2b8615bb-a4cc-4ac1-a9f2-e737a1d15123", - "4abeca04-4d6c-44be-8c3b-507a7b03eff3", - "71e7f549-196e-4e1c-a63e-2be090dab6fd", - "bf6d9ed0-1d05-4e90-a057-7ba083d4b4ed", - "e24a59d4-89ad-4869-b2fb-ad6ea5aac241", - "f93007a7-b1d6-46ef-9cf8-2f8d4c7cee5a", - "4ebf5c9b-5df1-4e99-bf1d-647968dfc24f", - "5dd363c3-6188-4d51-a628-65bfb3c9c763", - "1cd0f9cb-dcbb-4b67-a99b-2c8685bbcbac", - "8f00e352-d106-47ca-b7f1-7bb9575fbd77", - "15828d19-8e99-4731-8549-578c54c4ecb1", - "da051a2a-8881-42de-8fa8-73ce97f5ebb4", - "fb5d184a-c830-49a0-b82f-4c65bfc1fe00", - "aa101046-20f0-4db7-88b9-e8c0ea6991c3" + "41387edf-4bb8-43f9-82a2-47a4e7b7686d", + "a443fe41-eb54-49a6-9f5d-220953d30dfd", + "afc6ff7a-0368-4bed-8edf-2cd4f80d7254", + "104e895c-b17e-434d-9404-65d1dbce6225", + "11a088ad-d598-49fb-bbf2-28e84a0f7175", + "8905e5ab-1251-41ae-93f8-a01c2c7d07a3", + "f6a3d2fd-ad2e-4cee-9716-7a56b85d231e", + "85909707-a516-4111-8157-4a1f4d0ebe1a", + "136c946c-ef90-483e-be3a-d008cf02dc34", + "e6a12768-656f-4b6c-acc1-7a3766904753", + "553927f2-d435-442e-83da-d2f9f48746f3", + "54e9e475-c93e-4cd0-8759-9fe0d7820e8f", + "dc5435fb-33b4-42c7-90b8-c087173c7846", + "396844ba-6420-4ca6-bcb9-c4a325cca4e6", + "a5638416-77fe-4380-902d-6999586b8ccd", + "779f8c7b-33b5-46df-bbe8-f46878cfae88", + "786dc45c-84da-4ed3-833f-7372243f0243", + "d6f4638a-ff7c-423d-a7b3-09ec622aabf6", + "fd592446-398c-4162-980f-230281c178df", + "84c5640f-e562-4e5c-b717-6a0992f8c39e", + "12423d9b-42b1-4513-ab94-d07cc77e22e5", + "5c5fe6c6-a04b-496f-bea1-7984f47218e2", + "86b74bd0-d3c5-4a71-bf77-fe9bc258df30", + "23947693-2f5b-4e76-b105-ffcf10f3fd6b", + "e3847006-44e9-4fef-a48e-01a0923c8d87", + "248014f0-491f-4ed9-b7b8-2931ddb659d0", + "95114234-376d-49a7-a485-7e0a3b0d954d", + "a50af20a-e166-493f-8081-6d62161ee944", + "839ed460-f21d-4de4-93a8-3128549c3c6c", + "323f6f49-a6a3-4c94-b367-8ff5e81344d4", + "1613f0f8-4286-49e9-9d07-63259621ba34", + "b88c33af-e419-4ec7-a724-9e1fd549e20f", + "99b96e41-2ca6-40b9-97f8-6354cd048fe6", + "eae83516-5ff0-46c4-946f-58f8d9855ebf", + "f3414f9d-3c19-44db-868e-ba8c64bd7a0c", + "d7fc4460-450b-45e5-8331-5815e5cb1998", + "dd3c57c1-2777-4f37-b4ac-d8af2f74dd6f", + "0a09a42b-ce34-4acf-9898-8cd96a11482d", + "864e48e7-9a95-4758-a1b2-d5e5557e4bd8", + "2c29d299-d639-4f14-ac28-ae0cb282db70", + "f17f2311-5289-49c0-8a65-72bdc30d1a2b", + "4a5c98b0-e627-452a-80cf-5f490e8447e9", + "dcb97b1b-c414-4b04-8866-afe230c384ef" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], "x-ms-request-id": [ - "b7cf9438-bb71-47b8-bb3a-0abc65d65d8d" + "46f6a72b-8d9a-4990-b05c-83530a5a39f5" ], "x-ms-correlation-request-id": [ - "b7cf9438-bb71-47b8-bb3a-0abc65d65d8d" + "46f6a72b-8d9a-4990-b05c-83530a5a39f5" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013055Z:b7cf9438-bb71-47b8-bb3a-0abc65d65d8d" + "WESTUS:20201022T230949Z:46f6a72b-8d9a-4990-b05c-83530a5a39f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -993,139 +1021,148 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "12" + "Date": [ + "Thu, 22 Oct 2020 23:09:48 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "12" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368/providers/Microsoft.Compute/galleries/galleryPsTestGallery941/images/galleryPsTestGalleryImage6286?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk0MS9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTYyODY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images/galleryPsTestGalleryImage8015?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzUzNTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4OTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4MDE1P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0c22cd1e-2c51-4b1c-afa7-b7a574fa01ae" + "a755e9c4-6d81-4990-ada9-367d86b55429" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:30:23 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/20a90fab-fd25-4b91-9560-f9f0660ba494?monitor=true&api-version=2019-12-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/b87fec8c-b822-4ba4-88d4-9ed3ff6f78a7?monitor=true&api-version=2020-09-30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/20a90fab-fd25-4b91-9560-f9f0660ba494?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/b87fec8c-b822-4ba4-88d4-9ed3ff6f78a7?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/DeleteGalleryImage3Min;49,Microsoft.Compute/DeleteGalleryImage30Min;298" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "20a90fab-fd25-4b91-9560-f9f0660ba494" + "b87fec8c-b822-4ba4-88d4-9ed3ff6f78a7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "c3a4bc72-50a1-470f-a5b4-3f578a0a66be" + "7ce52957-3764-4243-873f-7f4a1b323ed2" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013024Z:c3a4bc72-50a1-470f-a5b4-3f578a0a66be" + "WESTUS:20201022T230918Z:7ce52957-3764-4243-873f-7f4a1b323ed2" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 22 Oct 2020 23:09:17 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/20a90fab-fd25-4b91-9560-f9f0660ba494?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yMGE5MGZhYi1mZDI1LTRiOTEtOTU2MC1mOWYwNjYwYmE0OTQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/b87fec8c-b822-4ba4-88d4-9ed3ff6f78a7?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iODdmZWM4Yy1iODIyLTRiYTQtODhkNC05ZWQzZmY2Zjc4YTc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:30:53 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4156" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "4a1214b6-967d-45ed-a42e-018765038781" + "095f17e4-57a6-4e8e-83ed-b13c46a09631" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], "x-ms-correlation-request-id": [ - "d3324f9e-d4fc-4193-a9f4-de416ce1c81b" + "e7b49dd5-0f9c-4e6c-b48b-f1c92d495e9a" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013054Z:d3324f9e-d4fc-4193-a9f4-de416ce1c81b" + "WESTUS:20201022T230948Z:e7b49dd5-0f9c-4e6c-b48b-f1c92d495e9a" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:09:47 GMT" + ], "Content-Length": [ - "183" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1134,187 +1171,196 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:30:23.9502019-08:00\",\r\n \"endTime\": \"2020-02-20T17:30:24.059579-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"20a90fab-fd25-4b91-9560-f9f0660ba494\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:09:18.3651908-07:00\",\r\n \"endTime\": \"2020-10-22T16:09:18.4589184-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b87fec8c-b822-4ba4-88d4-9ed3ff6f78a7\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/20a90fab-fd25-4b91-9560-f9f0660ba494?monitor=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yMGE5MGZhYi1mZDI1LTRiOTEtOTU2MC1mOWYwNjYwYmE0OTQ/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/b87fec8c-b822-4ba4-88d4-9ed3ff6f78a7?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iODdmZWM4Yy1iODIyLTRiYTQtODhkNC05ZWQzZmY2Zjc4YTc/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:30:53 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4155" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "f9caa1f6-8532-477a-bdce-8475a9dd419e" + "061cb7ba-0a9d-4f94-8b2f-5b9b03ee87c3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], "x-ms-correlation-request-id": [ - "7940fdc8-a7f6-426e-a7d1-d6acc926c00d" + "97c439ac-971b-4417-9e7a-ae6b047887c7" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013054Z:7940fdc8-a7f6-426e-a7d1-d6acc926c00d" + "WESTUS:20201022T230948Z:97c439ac-971b-4417-9e7a-ae6b047887c7" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 22 Oct 2020 23:09:47 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368/providers/Microsoft.Compute/galleries/galleryPsTestGallery941?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk0MT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzUzNTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4OTc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "35adc7d0-1e35-4280-b54e-b3e068c72ab6" + "d49e04f3-ac7f-4e0c-b607-5c4d96138af1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:30:54 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/1b4d2708-1917-43a5-9866-2f95c746282f?monitor=true&api-version=2019-12-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/7e73201d-726d-4694-bf04-bb81591c6153?monitor=true&api-version=2020-09-30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/1b4d2708-1917-43a5-9866-2f95c746282f?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/7e73201d-726d-4694-bf04-bb81591c6153?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;298" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "1b4d2708-1917-43a5-9866-2f95c746282f" + "7e73201d-726d-4694-bf04-bb81591c6153" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "8994902e-c3e8-41a8-acc7-aeeb8957b9f2" + "fe2fa2ca-9321-458e-bb8b-33bd9f2365c8" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013055Z:8994902e-c3e8-41a8-acc7-aeeb8957b9f2" + "WESTUS:20201022T230949Z:fe2fa2ca-9321-458e-bb8b-33bd9f2365c8" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 22 Oct 2020 23:09:48 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/1b4d2708-1917-43a5-9866-2f95c746282f?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8xYjRkMjcwOC0xOTE3LTQzYTUtOTg2Ni0yZjk1Yzc0NjI4MmY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/7e73201d-726d-4694-bf04-bb81591c6153?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83ZTczMjAxZC03MjZkLTQ2OTQtYmYwNC1iYjgxNTkxYzYxNTM/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:31:25 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4152" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "2dbac05c-a4d7-4c64-aeef-55dbdbc609d8" + "6d8e57a3-8cdd-46fd-9649-1563172075f3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], "x-ms-correlation-request-id": [ - "6f5d1485-b91b-4967-a77c-6a4cef11c48f" + "02041aff-a46e-41ef-8d8e-6b295b07b536" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013125Z:6f5d1485-b91b-4967-a77c-6a4cef11c48f" + "WESTUS:20201022T231019Z:02041aff-a46e-41ef-8d8e-6b295b07b536" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:10:19 GMT" + ], "Content-Length": [ - "183" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1323,62 +1369,65 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:30:55.4197718-08:00\",\r\n \"endTime\": \"2020-02-20T17:30:55.513524-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1b4d2708-1917-43a5-9866-2f95c746282f\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:09:49.3652366-07:00\",\r\n \"endTime\": \"2020-10-22T16:09:49.4433703-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7e73201d-726d-4694-bf04-bb81591c6153\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/1b4d2708-1917-43a5-9866-2f95c746282f?monitor=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8xYjRkMjcwOC0xOTE3LTQzYTUtOTg2Ni0yZjk1Yzc0NjI4MmY/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/7e73201d-726d-4694-bf04-bb81591c6153?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83ZTczMjAxZC03MjZkLTQ2OTQtYmYwNC1iYjgxNTkxYzYxNTM/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:31:25 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4151" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "45745dfa-c1c3-4877-b4dd-44f1c9897cba" + "881906b1-3170-4e39-a6fa-219becc5a44b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], "x-ms-correlation-request-id": [ - "5252e075-f750-4606-9294-32f82f864d57" + "ec523a18-553b-4fa8-8aee-7849fed8b483" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013126Z:5252e075-f750-4606-9294-32f82f864d57" + "WESTUS:20201022T231019Z:ec523a18-553b-4fa8-8aee-7849fed8b483" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 22 Oct 2020 23:10:19 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -1387,9 +1436,9 @@ ], "Names": { "GalleryImage_CRUD_Tests": [ - "galleryPsTestRg7368", - "galleryPsTestGallery941", - "galleryPsTestGalleryImage6286" + "galleryPsTestRg5359", + "galleryPsTestGallery8897", + "galleryPsTestGalleryImage8015" ] }, "Variables": { diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_CRUD_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_CRUD_Tests.json index 233663e66002..22908d55578e 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_CRUD_Tests.json +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_CRUD_Tests.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg7559?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc1NTk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg6640?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY2NDA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "10acf0b4-339b-4cb4-91c6-22636ef7ca23" + "2a51ad5b-67fd-408f-a74c-a771969cd0d8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ @@ -29,23 +29,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:54:56 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "9004c70f-a927-4352-846c-cbc7059147f3" + "929ae659-c813-4d6a-8b64-cb6a8b947123" ], "x-ms-correlation-request-id": [ - "9004c70f-a927-4352-846c-cbc7059147f3" + "929ae659-c813-4d6a-8b64-cb6a8b947123" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015457Z:9004c70f-a927-4352-846c-cbc7059147f3" + "WESTUS:20201023T000411Z:929ae659-c813-4d6a-8b64-cb6a8b947123" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -53,6 +50,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:04:10 GMT" + ], "Content-Length": [ "192" ], @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559\",\r\n \"name\": \"galleryPsTestRg7559\",\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/galleryPsTestRg6640\",\r\n \"name\": \"galleryPsTestRg6640\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559/providers/Microsoft.Compute/galleries/galleryPsTestGallery3975?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc1NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM5NzU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY2NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1NDQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "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": [ - "af3d287c-83aa-417d-adfd-7281b65e0408" + "d1f4e50b-0327-4fc9-9701-d60f4298cde6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -95,42 +95,45 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:54:58 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/6c86436a-c351-4aee-b24a-8aac955e8eda?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/218a0ac1-17d3-4d74-a1f2-1ad07492b99f?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "6c86436a-c351-4aee-b24a-8aac955e8eda" + "218a0ac1-17d3-4d74-a1f2-1ad07492b99f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "cedf9519-7fd2-4400-a8b9-a45e1913fe42" + "c5504e50-2334-4bc6-af37-60507cceb38b" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015459Z:cedf9519-7fd2-4400-a8b9-a45e1913fe42" + "WESTUS:20201023T000414Z:c5504e50-2334-4bc6-af37-60507cceb38b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:04:13 GMT" + ], "Content-Length": [ - "508" + "573" ], "Content-Type": [ "application/json; charset=utf-8" @@ -139,26 +142,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery3975\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559/providers/Microsoft.Compute/galleries/galleryPsTestGallery3975\",\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-GALLERYPSTESTGALLERY3975\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8544\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544\",\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-GALLERYPSTESTGALLERY8544\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Private\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559/providers/Microsoft.Compute/galleries/galleryPsTestGallery3975?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc1NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM5NzU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY2NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1NDQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is an updated description\"\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fc558519-c6a2-4e17-b54c-6bc374ccc9ff" + "1f27a869-1bed-4987-9d4b-7b7ed39c4e6e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -171,42 +174,45 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:55:30 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/e4a0e2b2-7dd9-47f4-8489-1739e026a23f?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/3ec5c497-dcaf-4e92-a9bd-7ee77b35353a?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateGallery3Min;48,Microsoft.Compute/CreateUpdateGallery30Min;298" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "e4a0e2b2-7dd9-47f4-8489-1739e026a23f" + "3ec5c497-dcaf-4e92-a9bd-7ee77b35353a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "6bcac59e-6cae-415f-8e70-a89a8f323812" + "94f0aefb-61a9-4770-a128-e48e0d6670a1" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015530Z:6bcac59e-6cae-415f-8e70-a89a8f323812" + "WESTUS:20201023T000444Z:94f0aefb-61a9-4770-a128-e48e0d6670a1" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:04:44 GMT" + ], "Content-Length": [ - "503" + "568" ], "Content-Type": [ "application/json; charset=utf-8" @@ -215,59 +221,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery3975\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559/providers/Microsoft.Compute/galleries/galleryPsTestGallery3975\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY3975\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8544\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8544\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Private\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/6c86436a-c351-4aee-b24a-8aac955e8eda?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy82Yzg2NDM2YS1jMzUxLTRhZWUtYjI0YS04YWFjOTU1ZThlZGE/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/218a0ac1-17d3-4d74-a1f2-1ad07492b99f?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yMThhMGFjMS0xN2QzLTRkNzQtYTFmMi0xYWQwNzQ5MmI5OWY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:55:29 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4174" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "74cf17fa-7bd9-4648-8317-b444b5b46870" + "1161e843-c622-4dcb-b5c0-aa0edf602bcc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-correlation-request-id": [ - "d2973555-40d3-444e-b944-d2454f738985" + "727c85cf-22e6-49bc-87d4-5e567399cdab" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015529Z:d2973555-40d3-444e-b944-d2454f738985" + "WESTUS:20201023T000444Z:727c85cf-22e6-49bc-87d4-5e567399cdab" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:04:44 GMT" + ], "Content-Length": [ - "183" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -276,57 +285,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:54:59.070538-08:00\",\r\n \"endTime\": \"2020-02-20T17:54:59.3049156-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"6c86436a-c351-4aee-b24a-8aac955e8eda\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T17:04:13.5669615-07:00\",\r\n \"endTime\": \"2020-10-22T17:04:13.7700778-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"218a0ac1-17d3-4d74-a1f2-1ad07492b99f\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559/providers/Microsoft.Compute/galleries/galleryPsTestGallery3975?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc1NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM5NzU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY2NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1NDQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:55:29 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2492" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "099ac34e-edb6-4f70-95f6-89a9a02fbe25" + "4138f18d-c2de-4777-ad43-091efa4a0fa2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "4b06a871-682f-4017-83c2-ca73215920a6" + "42d6f9ba-7774-4008-99ce-f6fcb7f59987" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015529Z:4b06a871-682f-4017-83c2-ca73215920a6" + "WESTUS:20201023T000444Z:42d6f9ba-7774-4008-99ce-f6fcb7f59987" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:04:44 GMT" + ], "Content-Length": [ "509" ], @@ -337,63 +349,66 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery3975\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559/providers/Microsoft.Compute/galleries/galleryPsTestGallery3975\",\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-GALLERYPSTESTGALLERY3975\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8544\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544\",\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-GALLERYPSTESTGALLERY8544\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559/providers/Microsoft.Compute/galleries/galleryPsTestGallery3975?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc1NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM5NzU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY2NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1NDQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "95ddba46-05e1-4c49-ab9e-65a2361ac9e2" + "2a032d99-f40a-4862-a7b5-fd434c22e2b7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:55:29 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;345,Microsoft.Compute/GetGallery30Min;2491" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "176be979-2250-4467-9b0e-cc56b4ea3856" + "7bc1d785-7efb-4fb1-bd7f-e8837d8c2ec4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-correlation-request-id": [ - "a5ffac99-e8b8-4d96-9500-ab30eaeacb60" + "2169f4ca-7c61-4f2d-a9f2-f1bc6befcc68" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015529Z:a5ffac99-e8b8-4d96-9500-ab30eaeacb60" + "WESTUS:20201023T000444Z:2169f4ca-7c61-4f2d-a9f2-f1bc6befcc68" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:04:44 GMT" + ], "Content-Length": [ "509" ], @@ -404,57 +419,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery3975\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559/providers/Microsoft.Compute/galleries/galleryPsTestGallery3975\",\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-GALLERYPSTESTGALLERY3975\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8544\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544\",\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-GALLERYPSTESTGALLERY8544\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559/providers/Microsoft.Compute/galleries/galleryPsTestGallery3975?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc1NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM5NzU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY2NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1NDQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:55:30 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;344,Microsoft.Compute/GetGallery30Min;2490" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "5189edc6-955f-4e26-ad76-6795c06ba42f" + "92d269c8-6552-4e64-9ca6-08bf453afcda" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-correlation-request-id": [ - "f7c456b7-b0c0-406b-9a4c-e444fe3a6fe6" + "c2bb266b-40c1-412a-b356-63b3fc9513af" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015530Z:f7c456b7-b0c0-406b-9a4c-e444fe3a6fe6" + "WESTUS:20201023T000444Z:c2bb266b-40c1-412a-b356-63b3fc9513af" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:04:44 GMT" + ], "Content-Length": [ "503" ], @@ -465,63 +483,66 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery3975\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559/providers/Microsoft.Compute/galleries/galleryPsTestGallery3975\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY3975\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8544\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8544\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559/providers/Microsoft.Compute/galleries/galleryPsTestGallery3975?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc1NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM5NzU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY2NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1NDQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e98c73aa-4b34-45c2-9ab4-a10287e21e4a" + "15cd883e-d24c-4132-90a5-93118fa34058" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:55:30 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;343,Microsoft.Compute/GetGallery30Min;2489" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "ad267959-6aff-4ccd-ada6-0fb5334bd478" + "26b110a9-e0bd-4cd3-b51b-117d3ac20ee2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-correlation-request-id": [ - "8a660634-f4b8-4f90-a4a5-1174b7fb76c5" + "684cd184-6258-4fea-910e-28aa2a394d68" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015530Z:8a660634-f4b8-4f90-a4a5-1174b7fb76c5" + "WESTUS:20201023T000445Z:684cd184-6258-4fea-910e-28aa2a394d68" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:04:44 GMT" + ], "Content-Length": [ "503" ], @@ -532,25 +553,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery3975\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559/providers/Microsoft.Compute/galleries/galleryPsTestGallery3975\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY3975\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8544\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8544\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg7559New?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc1NTlOZXc/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg6640New?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY2NDBOZXc/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cc15f20d-f00c-462d-97fc-05883bf33cd5" + "22097a2a-aff1-4535-9949-f3ad9540805d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ @@ -564,23 +585,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:55:30 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-request-id": [ - "385bd10d-1823-439a-afb8-531631049998" + "f6eeb8ac-1931-47e0-ab48-aacc3398cb0f" ], "x-ms-correlation-request-id": [ - "385bd10d-1823-439a-afb8-531631049998" + "f6eeb8ac-1931-47e0-ab48-aacc3398cb0f" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015531Z:385bd10d-1823-439a-afb8-531631049998" + "WESTUS:20201023T000445Z:f6eeb8ac-1931-47e0-ab48-aacc3398cb0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -588,6 +606,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:04:45 GMT" + ], "Content-Length": [ "198" ], @@ -598,26 +619,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559New\",\r\n \"name\": \"galleryPsTestRg7559New\",\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/galleryPsTestRg6640New\",\r\n \"name\": \"galleryPsTestRg6640New\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559New/providers/Microsoft.Compute/galleries/galleryPsTestGallery3975New?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc1NTlOZXcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM5NzVOZXc/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640New/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544New?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY2NDBOZXcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1NDROZXc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is an updated description\"\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "450dace7-5d10-4b24-9da8-a0d14273e316" + "1952488e-d72d-444e-a3d3-e315b0c51149" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -630,42 +651,45 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:55:34 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/4cbe9fa9-bf3b-4053-aca4-e69a1df343e2?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a791cbdd-8f07-4634-b3fa-e817dcbd2049?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateGallery3Min;47,Microsoft.Compute/CreateUpdateGallery30Min;297" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "4cbe9fa9-bf3b-4053-aca4-e69a1df343e2" + "a791cbdd-8f07-4634-b3fa-e817dcbd2049" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "0868ef77-706d-498f-883f-d51ca29c0a6d" + "912ee172-f996-486f-8f1f-41f86d32d688" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015534Z:0868ef77-706d-498f-883f-d51ca29c0a6d" + "WESTUS:20201023T000457Z:912ee172-f996-486f-8f1f-41f86d32d688" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:04:57 GMT" + ], "Content-Length": [ - "514" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -674,59 +698,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery3975New\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559New/providers/Microsoft.Compute/galleries/galleryPsTestGallery3975New\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY3975NEW\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8544New\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640New/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544New\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8544NEW\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Private\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/4cbe9fa9-bf3b-4053-aca4-e69a1df343e2?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy80Y2JlOWZhOS1iZjNiLTQwNTMtYWNhNC1lNjlhMWRmMzQzZTI/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a791cbdd-8f07-4634-b3fa-e817dcbd2049?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hNzkxY2JkZC04ZjA3LTQ2MzQtYjNmYS1lODE3ZGNiZDIwNDk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:56:03 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4181" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "22fbb511-ab13-4719-bbba-c6c5ea4b5713" + "a91db3e3-0fb9-4746-9c71-e8f524ce739d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-correlation-request-id": [ - "0d8c8355-20be-487b-8ca8-c1900631b8f8" + "c518bfda-a764-41d8-b359-6524accf175d" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015604Z:0d8c8355-20be-487b-8ca8-c1900631b8f8" + "WESTUS:20201023T000527Z:c518bfda-a764-41d8-b359-6524accf175d" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:05:27 GMT" + ], "Content-Length": [ - "184" + "183" ], "Content-Type": [ "application/json; charset=utf-8" @@ -735,57 +762,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:55:33.5246023-08:00\",\r\n \"endTime\": \"2020-02-20T17:55:33.6027326-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4cbe9fa9-bf3b-4053-aca4-e69a1df343e2\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T17:04:56.957546-07:00\",\r\n \"endTime\": \"2020-10-22T17:04:57.0513482-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a791cbdd-8f07-4634-b3fa-e817dcbd2049\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559New/providers/Microsoft.Compute/galleries/galleryPsTestGallery3975New?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc1NTlOZXcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM5NzVOZXc/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640New/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544New?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY2NDBOZXcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1NDROZXc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:56:03 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;335,Microsoft.Compute/GetGallery30Min;2481" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "d241d0c2-e727-4ceb-b3cb-b36bb23a3227" + "6940be1b-83e1-47fb-86ec-249e4e242cc7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-correlation-request-id": [ - "ed6683a2-8f4e-42ed-84f0-c0cfcc607eb1" + "a25315c1-d8a7-4fbe-8abf-6a70ead9b075" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015604Z:ed6683a2-8f4e-42ed-84f0-c0cfcc607eb1" + "WESTUS:20201023T000527Z:a25315c1-d8a7-4fbe-8abf-6a70ead9b075" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:05:27 GMT" + ], "Content-Length": [ "515" ], @@ -796,63 +826,66 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery3975New\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559New/providers/Microsoft.Compute/galleries/galleryPsTestGallery3975New\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY3975NEW\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8544New\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640New/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544New\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8544NEW\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559/providers/Microsoft.Compute/galleries?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc1NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY2NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcz9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e13f3a61-4489-4180-993f-85e724bde118" + "e298d99b-cb16-4885-a16b-64e09f845993" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:56:04 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListGalleryInResourceGroup3Min;99,Microsoft.Compute/ListGalleryInResourceGroup30Min;999" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "89f4ed83-c08b-49fd-b4b3-9423dd260620" + "32015e38-3513-4eec-8b3a-4abc44cc49db" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-correlation-request-id": [ - "211567d3-6f87-4806-9c7d-a089fd396e1c" + "0e5b4ef6-7eba-4803-9726-9efb7c84a9f5" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015604Z:211567d3-6f87-4806-9c7d-a089fd396e1c" + "WESTUS:20201023T000527Z:0e5b4ef6-7eba-4803-9726-9efb7c84a9f5" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:05:27 GMT" + ], "Content-Length": [ "580" ], @@ -863,49 +896,46 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"galleryPsTestGallery3975\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG7559/providers/Microsoft.Compute/galleries/galleryPsTestGallery3975\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY3975\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"galleryPsTestGallery8544\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8544\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559/providers/Microsoft.Compute/galleries?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc1NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY2NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcz9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee4e772a-e397-433b-9e3a-392ab4de5f04" + "57732c37-16ad-44fb-8b07-3ffae6921c39" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:57:06 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11985" ], "x-ms-request-id": [ - "d4d5b43d-aa6a-42c6-8946-b330d5ecb71f" + "4a117397-a6d4-4a2b-8e7f-e6534459ea15" ], "x-ms-correlation-request-id": [ - "d4d5b43d-aa6a-42c6-8946-b330d5ecb71f" + "4a117397-a6d4-4a2b-8e7f-e6534459ea15" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015706Z:d4d5b43d-aa6a-42c6-8946-b330d5ecb71f" + "WESTUS:20201023T000631Z:4a117397-a6d4-4a2b-8e7f-e6534459ea15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -913,70 +943,84 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "12" + "Date": [ + "Fri, 23 Oct 2020 00:06:30 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "12" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/galleries?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9nYWxsZXJpZXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/galleries?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9nYWxsZXJpZXM/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6ac4a9a-bf4d-4b25-a48c-2f93824d1052" + "864b057c-c97a-4203-b53e-8b4cb8ee206f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:56:04 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "53478c2e-ebc8-4645-9164-2c081f814edd", - "d9587f4f-5679-4ca4-9ffd-3d924c66a0b7", - "6082421f-f587-455c-95f5-f38e0b53ed3b", - "62fab883-2249-4b2a-8a5b-24d48ed2d6a4", - "f3660074-5113-467c-adb0-0bb90221ab1f", - "926c9b66-eed4-426c-8aeb-6569a0993b41", - "5127f730-9f53-4a0c-b737-2798c2124445", - "4466d4aa-b733-471c-bec0-9b0bf51df837", - "189526d7-1b35-4003-8dce-d03db1b0de0f" + "fa0403a7-648e-4307-a327-8d859cf68420", + "f16cac33-9d10-40e1-9eb2-810c8af16d02", + "27314b73-8d2b-46b6-9089-53ead59d5a36", + "dd4e5a4a-e65b-4c70-91e0-253cafe6ea1c", + "f574e311-1f40-45b8-8279-4f963f9c282e", + "b631361a-fa0b-425d-807b-b2f94301306c", + "6a40c879-12fa-4c9a-8ab8-d91e9f399e28", + "4cfbf4f9-4e86-49ea-bec1-7535b15ee47b", + "58d939f6-9fc7-4b26-89f1-bab8bc5082be", + "e0cfa560-5aac-48f6-beb7-c7b756a5ddad", + "3ec1409b-270a-4688-b7a6-6a7fab4ccd18", + "cba4c03c-7afe-4a12-9604-46a9d262b8a2", + "8c81d3e9-34fd-4087-8171-95aeaba1cad9", + "f69cd3b3-4931-4f29-8c44-0f34c332b982", + "15c92025-2df8-4854-9be5-9e23fdd6fdde", + "3e51dfc5-08fe-452d-89a5-733e9d052bab", + "6f40161b-ce69-4552-80f9-e9c40e1867fe", + "7e6ad697-8dc3-492b-ae66-fccbe2aeef30", + "c344c3be-4d81-4bf5-8cce-7bcbb0ec2130", + "64fe783d-e921-4e1d-a815-f7fd138e602f", + "a4ee30c9-4571-4b35-8b47-79aab528730f", + "148394c4-898d-4fb3-8ce5-728285efcebd", + "76055931-bf21-4ca0-8d75-4d428623549e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11990" ], "x-ms-request-id": [ - "8975bb32-dc29-42c1-9a4a-59bc0512c5f2" + "196f7d1c-cb1c-4984-ae2a-b12aa809a346" ], "x-ms-correlation-request-id": [ - "8975bb32-dc29-42c1-9a4a-59bc0512c5f2" + "196f7d1c-cb1c-4984-ae2a-b12aa809a346" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015605Z:8975bb32-dc29-42c1-9a4a-59bc0512c5f2" + "WESTUS:20201023T000529Z:196f7d1c-cb1c-4984-ae2a-b12aa809a346" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -984,137 +1028,146 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "15720" + "Date": [ + "Fri, 23 Oct 2020 00:05:28 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "44162" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"longlivedgalwcus\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYWCUS/providers/Microsoft.Compute/galleries/longlivedgalwcus\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery used for e2e testing\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEDGALWCUS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gal1-with-dash\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/SIG1/providers/Microsoft.Compute/galleries/gal1-with-dash\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"description\": \"Shared Image Gallery for my ORG\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GAL1-WITH-DASH\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryForCirrus\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRG/providers/Microsoft.Compute/galleries/galleryForCirrus\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery created for cirrus scaling test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYFORCIRRUS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"xwLongLivedGallerywestcentralus\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRG/providers/Microsoft.Compute/galleries/xwLongLivedGallerywestcentralus\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"description\": \"long lived gallery created in using powershell in westcentralus\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWLONGLIVEDGALLERYWESTCENTRALUS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"xwGallery0726westcentralus\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGallery0726westcentralus\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"description\": \"input gallery created in ps.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERY0726WESTCENTRALUS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"xwGallery1207\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGallery1207\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERY1207\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"xwGalleryForCirrus\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGalleryForCirrus\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery created for cirrus\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERYFORCIRRUS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"xwGallery0921SouthCentralUs\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGallery0921SouthCentralUs\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERY0921SOUTHCENTRALUS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery3975\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG7559/providers/Microsoft.Compute/galleries/galleryPsTestGallery3975\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY3975\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery3975New\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG7559NEW/providers/Microsoft.Compute/galleries/galleryPsTestGallery3975New\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY3975NEW\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"myGalleryHaHa20191004\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/TEMPRG2/providers/Microsoft.Compute/galleries/myGalleryHaHa20191004\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"description\": \"This is the gallery description.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-MYGALLERYHAHA20191004\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerywbyqitoobqxu\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-2-21-2020-PRODBRAZILSOUTH/providers/Microsoft.Compute/galleries/gallerywbyqitoobqxu\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYWBYQITOOBQXU\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryywjygbfjzwtx\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-2-20-2020-PRODEASTASIA/providers/Microsoft.Compute/galleries/galleryywjygbfjzwtx\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYYWJYGBFJZWTX\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"grlianTestGallery\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GRLIANRG/providers/Microsoft.Compute/galleries/grlianTestGallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GRLIANTESTGALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"longlivedgallery\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYAZURESUPPORTRG/providers/Microsoft.Compute/galleries/longlivedgallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"description\": \"My Private Gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEDGALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery2975\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG3906/providers/Microsoft.Compute/galleries/galleryPsTestGallery2975\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY2975\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery8333\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG9881/providers/Microsoft.Compute/galleries/galleryPsTestGallery8333\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8333\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"longlivedgal\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERY/providers/Microsoft.Compute/galleries/longlivedgal\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"properties\": {\r\n \"description\": \"gallery used for e2e testing\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEDGAL\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"mygalleryForCrp97f7\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERY/providers/Microsoft.Compute/galleries/mygalleryForCrp97f7\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-MYGALLERYFORCRP97F7\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"mygalleryForCrpEastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERY/providers/Microsoft.Compute/galleries/mygalleryForCrpEastus2euap\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-MYGALLERYFORCRPEASTUS2EUAP\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallery1euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/RGEUAP/providers/Microsoft.Compute/galleries/gallery1euap\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERY1EUAP\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"GALLERYNZQXFYCGSOVZ\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/TEMPRG/providers/Microsoft.Compute/galleries/GALLERYNZQXFYCGSOVZ\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYNZQXFYCGSOVZ\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"VZDUADOJ\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/TEMPRG/providers/Microsoft.Compute/galleries/VZDUADOJ\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-VZDUADOJ\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"xw32Gallery20181105\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xw32Gallery20181105\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"My Private Gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XW32GALLERY20181105\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"xw32Gallery20181212\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xw32Gallery20181212\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"xw Private Gallery updated\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XW32GALLERY20181212\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"xw32test_gallery\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xw32test_gallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XW32TEST_GALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"xwGallery0725\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGallery0725\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"description\": \"input gallery created in ps.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERY0725\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"xwGallery0820Test\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGallery0820Test\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERY0820TEST\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"xwGallery20181213\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGallery20181213\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"description\": \"updated\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERY20181213\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"xwGalleryTest\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGalleryTest\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"description\": \"input gallery created in ps.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERYTEST\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"xwGalleryTest20180821\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGalleryTest20180821\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERYTEST20180821\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"xwGalleryTest20180927\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGalleryTest20180927\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery created in using powershell for testing on 20180927 in eastus2euap.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERYTEST20180927\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"xwGalleryTest20181007\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGalleryTest20181007\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery created in using powershell for testing on 20181007 in eastus2euap.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERYTEST20181007\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"xwGalleryTest20181009\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGalleryTest20181009\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERYTEST20181009\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"xwGalleryTest20181026\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGalleryTest20181026\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery created in using powershell for testing on 20181026 in eastus2euap.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERYTEST20181026\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"xwTestGallery2\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWTESTRG2/providers/Microsoft.Compute/galleries/xwTestGallery2\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"description\": \"This is the second gallery created in another RG.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWTESTGALLERY2\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"grlianTestGalleryUniqueName\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GRLIANRG/providers/Microsoft.Compute/galleries/grlianTestGalleryUniqueName\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"description\": \"My Private Gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GRLIANTESTGALLERYUNIQUENAME\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"grlianTestGalleryUniqueNameT15\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GRLIANRG/providers/Microsoft.Compute/galleries/grlianTestGalleryUniqueNameT15\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"description\": \"My Private Gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GRLIANTESTGALLERYUNIQUENAMET15\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"galleryesvygavwonxl\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-3-2020-PRODWESTCENTRALUS/providers/Microsoft.Compute/galleries/galleryesvygavwonxl\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYESVYGAVWONXL\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerybzektbfwpnhb\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-4-2020-PRODWESTCENTRALUS/providers/Microsoft.Compute/galleries/gallerybzektbfwpnhb\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYBZEKTBFWPNHB\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryhevfrypvwebt\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-5-2020-PRODWESTCENTRALUS/providers/Microsoft.Compute/galleries/galleryhevfrypvwebt\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYHEVFRYPVWEBT\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerypfbtfergacrp\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-6-2020-PRODWESTCENTRALUS/providers/Microsoft.Compute/galleries/gallerypfbtfergacrp\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPFBTFERGACRP\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryjotpfpinylvh\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-8-2020-PRODWESTCENTRALUS/providers/Microsoft.Compute/galleries/galleryjotpfpinylvh\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYJOTPFPINYLVH\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"longlivedgalwcus\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYWCUS/providers/Microsoft.Compute/galleries/longlivedgalwcus\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery used for e2e testing\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEDGALWCUS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gal1-with-dash\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/SIG1/providers/Microsoft.Compute/galleries/gal1-with-dash\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"description\": \"Shared Image Gallery for my ORG\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GAL1-WITH-DASH\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerynfrphfwyzeyy\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-3-2020-PRODSOUTHCENTRALUS/providers/Microsoft.Compute/galleries/gallerynfrphfwyzeyy\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYNFRPHFWYZEYY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryeiwnxjqhrizs\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-4-2020-PRODSOUTHCENTRALUS/providers/Microsoft.Compute/galleries/galleryeiwnxjqhrizs\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYEIWNXJQHRIZS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryyizbvcsirvna\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-5-2020-PRODSOUTHCENTRALUS/providers/Microsoft.Compute/galleries/galleryyizbvcsirvna\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYYIZBVCSIRVNA\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryvziynzcwyfvb\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-6-2020-PRODSOUTHCENTRALUS/providers/Microsoft.Compute/galleries/galleryvziynzcwyfvb\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYVZIYNZCWYFVB\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerytuognthrhlhc\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-7-2020-PRODSOUTHCENTRALUS/providers/Microsoft.Compute/galleries/gallerytuognthrhlhc\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYTUOGNTHRHLHC\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerymzwbagbpgaho\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-8-2020-PRODSOUTHCENTRALUS/providers/Microsoft.Compute/galleries/gallerymzwbagbpgaho\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYMZWBAGBPGAHO\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"newgal\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYSCUS/providers/Microsoft.Compute/galleries/newgal\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-NEWGAL\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery7877\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG3904/providers/Microsoft.Compute/galleries/galleryPsTestGallery7877\",\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-GALLERYPSTESTGALLERY7877\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery8544\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8544\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery8544New\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG6640NEW/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544New\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8544NEW\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery2082\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG955/providers/Microsoft.Compute/galleries/galleryPsTestGallery2082\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY2082\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery5452\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG2221/providers/Microsoft.Compute/galleries/galleryPsTestGallery5452\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY5452\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery2813\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG2383/providers/Microsoft.Compute/galleries/galleryPsTestGallery2813\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY2813\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery1535\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG2561/providers/Microsoft.Compute/galleries/galleryPsTestGallery1535\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY1535\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery2290\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG3320/providers/Microsoft.Compute/galleries/galleryPsTestGallery2290\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY2290\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery7072\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG3950/providers/Microsoft.Compute/galleries/galleryPsTestGallery7072\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY7072\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery6097\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG5384/providers/Microsoft.Compute/galleries/galleryPsTestGallery6097\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY6097\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery6736\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG5735/providers/Microsoft.Compute/galleries/galleryPsTestGallery6736\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY6736\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery2697\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG5937/providers/Microsoft.Compute/galleries/galleryPsTestGallery2697\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY2697\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery4873\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG7379/providers/Microsoft.Compute/galleries/galleryPsTestGallery4873\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY4873\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery5395\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG7539/providers/Microsoft.Compute/galleries/galleryPsTestGallery5395\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY5395\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery9652\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG768/providers/Microsoft.Compute/galleries/galleryPsTestGallery9652\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY9652\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery4074\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG7763/providers/Microsoft.Compute/galleries/galleryPsTestGallery4074\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY4074\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery8638\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG7993/providers/Microsoft.Compute/galleries/galleryPsTestGallery8638\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8638\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery9035\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG8001/providers/Microsoft.Compute/galleries/galleryPsTestGallery9035\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY9035\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery5554\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG8037/providers/Microsoft.Compute/galleries/galleryPsTestGallery5554\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY5554\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery8307\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG8405/providers/Microsoft.Compute/galleries/galleryPsTestGallery8307\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8307\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery9682\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG8649/providers/Microsoft.Compute/galleries/galleryPsTestGallery9682\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY9682\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery8732\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG9198/providers/Microsoft.Compute/galleries/galleryPsTestGallery8732\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8732\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery3722\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG9909/providers/Microsoft.Compute/galleries/galleryPsTestGallery3722\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY3722\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery7310\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG9915/providers/Microsoft.Compute/galleries/galleryPsTestGallery7310\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY7310\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryituasnuotqjj\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-3-2020-PRODWESTUS/providers/Microsoft.Compute/galleries/galleryituasnuotqjj\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYITUASNUOTQJJ\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerykzxlmtntmhpe\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-4-2020-PRODWESTUS/providers/Microsoft.Compute/galleries/gallerykzxlmtntmhpe\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYKZXLMTNTMHPE\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryetsnokrzufeg\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-5-2020-PRODWESTUS/providers/Microsoft.Compute/galleries/galleryetsnokrzufeg\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYETSNOKRZUFEG\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerytcidnseplsex\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-6-2020-PRODWESTUS/providers/Microsoft.Compute/galleries/gallerytcidnseplsex\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYTCIDNSEPLSEX\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerywfdzwwunzeim\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-7-2020-PRODWESTUS/providers/Microsoft.Compute/galleries/gallerywfdzwwunzeim\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYWFDZWWUNZEIM\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryinnhevgxzxvp\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-8-2020-PRODWESTUS/providers/Microsoft.Compute/galleries/galleryinnhevgxzxvp\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYINNHEVGXZXVP\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"sigtiptest\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYWESTUS/providers/Microsoft.Compute/galleries/sigtiptest\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-SIGTIPTEST\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"CopyV2Standardgalleryjrmpmjaiouic\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-22-2020-PRODEASTUS/providers/Microsoft.Compute/galleries/CopyV2Standardgalleryjrmpmjaiouic\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-COPYV2STANDARDGALLERYJRMPMJAIOUIC\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"sig_test_aus\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/SIG_TEST/providers/Microsoft.Compute/galleries/sig_test_aus\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-SIG_TEST_AUS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"myGalleryHaHa20191004\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/TEMPRG2/providers/Microsoft.Compute/galleries/myGalleryHaHa20191004\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"description\": \"This is the gallery description.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-MYGALLERYHAHA20191004\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"DiskLonglivedGallerycanadacentral\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDSIGDISKRGINCANADACENTRAL/providers/Microsoft.Compute/galleries/DiskLonglivedGallerycanadacentral\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-DISKLONGLIVEDGALLERYCANADACENTRAL\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"disklonglivedgalleryIncanadacentral\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGRUNNINGRG-CANADACENTRAL/providers/Microsoft.Compute/galleries/disklonglivedgalleryIncanadacentral\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-DISKLONGLIVEDGALLERYINCANADACENTRAL\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"CopyV2Standardgallerymfjxsafpslar\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-22-2020-PRODNORTHEUROPE/providers/Microsoft.Compute/galleries/CopyV2Standardgallerymfjxsafpslar\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-COPYV2STANDARDGALLERYMFJXSAFPSLAR\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryevfczbqxmdgy\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-22-2020-PRODBRAZILSOUTH/providers/Microsoft.Compute/galleries/galleryevfczbqxmdgy\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYEVFCZBQXMDGY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryudatdkismxmx\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-22-2020-PRODBRAZILSOUTH/providers/Microsoft.Compute/galleries/galleryudatdkismxmx\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYUDATDKISMXMX\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"disklonglivedgalleryInukwest\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGRUNNINGRG-UKWEST/providers/Microsoft.Compute/galleries/disklonglivedgalleryInukwest\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"ukwest\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-DISKLONGLIVEDGALLERYINUKWEST\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryysgcpwxutvyr\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-19-2020-PRODEASTASIA/providers/Microsoft.Compute/galleries/galleryysgcpwxutvyr\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYYSGCPWXUTVYR\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"CopyV2Standardgallerybrknzmfubnkg\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-22-2020-PRODWESTUS2/providers/Microsoft.Compute/galleries/CopyV2Standardgallerybrknzmfubnkg\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-COPYV2STANDARDGALLERYBRKNZMFUBNKG\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerycjblbwvxtepk\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-22-2020-PRODWESTUS2/providers/Microsoft.Compute/galleries/gallerycjblbwvxtepk\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYCJBLBWVXTEPK\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"grlianTestGallery\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GRLIANRG/providers/Microsoft.Compute/galleries/grlianTestGallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GRLIANTESTGALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"longlivedgallery\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYAZURESUPPORTRG/providers/Microsoft.Compute/galleries/longlivedgallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"description\": \"My Private Gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEDGALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"disklonglivedgalleryIncanadaeast\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGRUNNINGRG-CANADAEAST/providers/Microsoft.Compute/galleries/disklonglivedgalleryIncanadaeast\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-DISKLONGLIVEDGALLERYINCANADAEAST\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"disklonglivedgalleryInaustraliasoutheast\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGRUNNINGRG-AUSTRALIASOUTHEAST/providers/Microsoft.Compute/galleries/disklonglivedgalleryInaustraliasoutheast\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-DISKLONGLIVEDGALLERYINAUSTRALIASOUTHEAST\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerylynbzaemiqkk\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-16-2020-PRODAUSTRALIACENTRAL/providers/Microsoft.Compute/galleries/gallerylynbzaemiqkk\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"australiacentral\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYLYNBZAEMIQKK\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerylzzkdkslrjrk\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-19-2020-PRODSOUTHAFRICANORTH/providers/Microsoft.Compute/galleries/gallerylzzkdkslrjrk\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southafricanorth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYLZZKDKSLRJRK\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryocqwcgmssdus\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-19-2020-PRODGERMANYWESTCENTRAL/providers/Microsoft.Compute/galleries/galleryocqwcgmssdus\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"germanywestcentral\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYOCQWCGMSSDUS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryjyzlrurtgyql\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-1-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/galleryjyzlrurtgyql\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYJYZLRURTGYQL\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryigpiolyxhegn\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-13-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/galleryigpiolyxhegn\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYIGPIOLYXHEGN\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryogghackydurn\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-14-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/galleryogghackydurn\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYOGGHACKYDURN\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerykpxqivdffoaa\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-15-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/gallerykpxqivdffoaa\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYKPXQIVDFFOAA\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryxqygvvznxsqb\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-16-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/galleryxqygvvznxsqb\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYXQYGVVZNXSQB\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryiobuyuchtwqd\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-19-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/galleryiobuyuchtwqd\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYIOBUYUCHTWQD\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerylplkjragptrk\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-2-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/gallerylplkjragptrk\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYLPLKJRAGPTRK\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryzlnxggfqnutb\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-20-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/galleryzlnxggfqnutb\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYZLNXGGFQNUTB\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerynqfywamohuwn\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-21-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/gallerynqfywamohuwn\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYNQFYWAMOHUWN\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerydiaqgdrffnqp\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-22-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/gallerydiaqgdrffnqp\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYDIAQGDRFFNQP\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerylxacxcogxpae\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-5-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/gallerylxacxcogxpae\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYLXACXCOGXPAE\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerythozbswcgroh\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-6-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/gallerythozbswcgroh\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYTHOZBSWCGROH\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerysemcjztbtwxi\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-7-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/gallerysemcjztbtwxi\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYSEMCJZTBTWXI\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerywjmkvbvqrotp\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-8-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/gallerywjmkvbvqrotp\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYWJMKVBVQROTP\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryqlssopvwhqff\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-9-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/galleryqlssopvwhqff\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYQLSSOPVWHQFF\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryjzyueyqqhpil\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-19-2020-PRODSOUTHAFRICAWEST/providers/Microsoft.Compute/galleries/galleryjzyueyqqhpil\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southafricawest\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYJZYUEYQQHPIL\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryjqdethyiqazk\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-9-22-2020-PRODUAECENTRAL/providers/Microsoft.Compute/galleries/galleryjqdethyiqazk\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"uaecentral\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYJQDETHYIQAZK\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerywqtbjxzinvmg\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-19-2020-PRODGERMANYNORTH/providers/Microsoft.Compute/galleries/gallerywqtbjxzinvmg\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"germanynorth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYWQTBJXZINVMG\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerygdhgvktbsoih\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-12-2020-PRODEASTUS2EUAP/providers/Microsoft.Compute/galleries/gallerygdhgvktbsoih\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYGDHGVKTBSOIH\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryllxtxrqndlpf\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-21-2020-PRODEASTUS2EUAP/providers/Microsoft.Compute/galleries/galleryllxtxrqndlpf\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYLLXTXRQNDLPF\"\r\n },\r\n \"provisioningState\": \"Failed\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerytbdvjdjernaf\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-22-2020-PRODEASTUS2EUAP/providers/Microsoft.Compute/galleries/gallerytbdvjdjernaf\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYTBDVJDJERNAF\"\r\n },\r\n \"provisioningState\": \"Failed\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerylfkshwrluerz\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-8-28-2020-PRODEASTUS2EUAP/providers/Microsoft.Compute/galleries/gallerylfkshwrluerz\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYLFKSHWRLUERZ\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerymwimjygfbnqs\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-8-28-2020-PRODEASTUS2EUAP/providers/Microsoft.Compute/galleries/gallerymwimjygfbnqs\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYMWIMJYGFBNQS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerytmxmixvwqcko\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-8-28-2020-PRODEASTUS2EUAP/providers/Microsoft.Compute/galleries/gallerytmxmixvwqcko\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYTMXMIXVWQCKO\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerymnconpyfpgxw\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-9-16-2020-PRODEASTUS2EUAP/providers/Microsoft.Compute/galleries/gallerymnconpyfpgxw\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYMNCONPYFPGXW\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryznmufdqjjpkc\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-9-18-2020-PRODEASTUS2EUAP/providers/Microsoft.Compute/galleries/galleryznmufdqjjpkc\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYZNMUFDQJJPKC\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryalxhukvwtcxi\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-9-23-2020-PRODEASTUS2EUAP/providers/Microsoft.Compute/galleries/galleryalxhukvwtcxi\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYALXHUKVWTCXI\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery2975\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG3906/providers/Microsoft.Compute/galleries/galleryPsTestGallery2975\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY2975\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery8333\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG9881/providers/Microsoft.Compute/galleries/galleryPsTestGallery8333\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8333\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"longlivedgal\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERY/providers/Microsoft.Compute/galleries/longlivedgal\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"properties\": {\r\n \"description\": \"gallery used for e2e testing\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEDGAL\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"mygalleryForCrp97f7\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERY/providers/Microsoft.Compute/galleries/mygalleryForCrp97f7\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-MYGALLERYFORCRP97F7\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"mygalleryForCrpEastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERY/providers/Microsoft.Compute/galleries/mygalleryForCrpEastus2euap\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-MYGALLERYFORCRPEASTUS2EUAP\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"tireganTestGallery\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERY/providers/Microsoft.Compute/galleries/tireganTestGallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-TIREGANTESTGALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"TVMTestGallery\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDTRUSTEDVMRG/providers/Microsoft.Compute/galleries/TVMTestGallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"TrustedVM gallery test in Canary.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-TVMTESTGALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallery1euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/RGEUAP/providers/Microsoft.Compute/galleries/gallery1euap\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERY1EUAP\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"tempnewgallery\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/TEMPNEWRG/providers/Microsoft.Compute/galleries/tempnewgallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-TEMPNEWGALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"grlianTestGalleryUniqueName\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GRLIANRG/providers/Microsoft.Compute/galleries/grlianTestGalleryUniqueName\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"description\": \"My Private Gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GRLIANTESTGALLERYUNIQUENAME\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"grlianTestGalleryUniqueNameT15\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GRLIANRG/providers/Microsoft.Compute/galleries/grlianTestGalleryUniqueNameT15\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"description\": \"My Private Gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GRLIANTESTGALLERYUNIQUENAMET15\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"canarydrillsig\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/SIGCANARYDRDRILL/providers/Microsoft.Compute/galleries/canarydrillsig\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-CANARYDRILLSIG\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559/providers/Microsoft.Compute/galleries/galleryPsTestGallery3975?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc1NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM5NzU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY2NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1NDQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "65e39a53-c5d8-47ef-870f-5ce8e6c35291" + "b66f3bac-3fd1-4640-97d1-615cf3c6fb71" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:56:05 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/988f0163-9bd3-4fbc-a4e1-97976bd22d51?monitor=true&api-version=2019-12-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a4c37762-d4c8-4bf9-8475-027c1c63d869?monitor=true&api-version=2020-09-30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/988f0163-9bd3-4fbc-a4e1-97976bd22d51?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a4c37762-d4c8-4bf9-8475-027c1c63d869?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;298" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "988f0163-9bd3-4fbc-a4e1-97976bd22d51" + "a4c37762-d4c8-4bf9-8475-027c1c63d869" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "a1d0a213-f0be-41b6-8c67-93c29f3ac333" + "d797b5a1-5628-448d-b653-2086a4630e04" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015605Z:a1d0a213-f0be-41b6-8c67-93c29f3ac333" + "WESTUS:20201023T000529Z:d797b5a1-5628-448d-b653-2086a4630e04" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 23 Oct 2020 00:05:29 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/988f0163-9bd3-4fbc-a4e1-97976bd22d51?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy85ODhmMDE2My05YmQzLTRmYmMtYTRlMS05Nzk3NmJkMjJkNTE/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a4c37762-d4c8-4bf9-8475-027c1c63d869?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hNGMzNzc2Mi1kNGM4LTRiZjktODQ3NS0wMjdjMWM2M2Q4Njk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:56:35 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4179" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "bee31eef-bbb8-4dd8-9729-5f56a602828e" + "64620ed1-0be8-484c-8412-f7940405b5da" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11989" ], "x-ms-correlation-request-id": [ - "3359d6ef-5648-41e6-b148-a1a29c996cb6" + "c83a389d-e40b-4eb7-a626-6f3244e5969d" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015635Z:3359d6ef-5648-41e6-b148-a1a29c996cb6" + "WESTUS:20201023T000600Z:c83a389d-e40b-4eb7-a626-6f3244e5969d" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:05:59 GMT" + ], "Content-Length": [ "184" ], @@ -1125,187 +1178,196 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:56:05.6350176-08:00\",\r\n \"endTime\": \"2020-02-20T17:56:05.7443838-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"988f0163-9bd3-4fbc-a4e1-97976bd22d51\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T17:05:29.7231711-07:00\",\r\n \"endTime\": \"2020-10-22T17:05:29.8325421-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a4c37762-d4c8-4bf9-8475-027c1c63d869\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/988f0163-9bd3-4fbc-a4e1-97976bd22d51?monitor=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy85ODhmMDE2My05YmQzLTRmYmMtYTRlMS05Nzk3NmJkMjJkNTE/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a4c37762-d4c8-4bf9-8475-027c1c63d869?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hNGMzNzc2Mi1kNGM4LTRiZjktODQ3NS0wMjdjMWM2M2Q4Njk/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:56:35 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4178" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "d6bf1617-e6ff-4f12-90be-c9d06765fa76" + "a671553f-8799-453b-8792-68a742dc378d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11988" ], "x-ms-correlation-request-id": [ - "e69b759a-6a05-4c26-9f76-18e9d00375b5" + "aa2b0eae-54bc-4f33-96a2-39a27af679fa" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015636Z:e69b759a-6a05-4c26-9f76-18e9d00375b5" + "WESTUS:20201023T000600Z:aa2b0eae-54bc-4f33-96a2-39a27af679fa" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 23 Oct 2020 00:05:59 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559New/providers/Microsoft.Compute/galleries/galleryPsTestGallery3975New?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc1NTlOZXcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM5NzVOZXc/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640New/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544New?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY2NDBOZXcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1NDROZXc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6f370032-32b4-43a7-8cd5-e00d841eedae" + "72cfd543-6580-43d7-9b78-8242fca2e206" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:56:35 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/882fd8e9-4505-4ce5-a3c8-c55c585110e6?monitor=true&api-version=2019-12-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/9b68aa61-0523-4596-8ef2-cea5913627af?monitor=true&api-version=2020-09-30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/882fd8e9-4505-4ce5-a3c8-c55c585110e6?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/9b68aa61-0523-4596-8ef2-cea5913627af?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/DeleteGallery3Min;48,Microsoft.Compute/DeleteGallery30Min;297" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "882fd8e9-4505-4ce5-a3c8-c55c585110e6" + "9b68aa61-0523-4596-8ef2-cea5913627af" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "0aadcc9a-ab16-47d8-91c5-ce553dc66ef9" + "190ba0ef-3013-4799-ba29-4fbe9f47e563" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015636Z:0aadcc9a-ab16-47d8-91c5-ce553dc66ef9" + "WESTUS:20201023T000600Z:190ba0ef-3013-4799-ba29-4fbe9f47e563" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 23 Oct 2020 00:06:00 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/882fd8e9-4505-4ce5-a3c8-c55c585110e6?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy84ODJmZDhlOS00NTA1LTRjZTUtYTNjOC1jNTVjNTg1MTEwZTY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/9b68aa61-0523-4596-8ef2-cea5913627af?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy85YjY4YWE2MS0wNTIzLTQ1OTYtOGVmMi1jZWE1OTEzNjI3YWY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:57:06 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4176" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "d766ced6-edbb-4df5-af40-c530e1952b56" + "12f8a94c-3522-426c-b424-538457fe26c4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11987" ], "x-ms-correlation-request-id": [ - "e2edb39c-0896-46db-ad25-394f3a30c6cd" + "ec36010a-4fba-424e-9979-5c13c54e02c1" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015706Z:e2edb39c-0896-46db-ad25-394f3a30c6cd" + "WESTUS:20201023T000630Z:ec36010a-4fba-424e-9979-5c13c54e02c1" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:06:30 GMT" + ], "Content-Length": [ - "183" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1314,62 +1376,65 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:56:36.495454-08:00\",\r\n \"endTime\": \"2020-02-20T17:56:36.6048301-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"882fd8e9-4505-4ce5-a3c8-c55c585110e6\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T17:06:00.6606963-07:00\",\r\n \"endTime\": \"2020-10-22T17:06:00.7544529-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9b68aa61-0523-4596-8ef2-cea5913627af\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/882fd8e9-4505-4ce5-a3c8-c55c585110e6?monitor=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy84ODJmZDhlOS00NTA1LTRjZTUtYTNjOC1jNTVjNTg1MTEwZTY/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/9b68aa61-0523-4596-8ef2-cea5913627af?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy85YjY4YWE2MS0wNTIzLTQ1OTYtOGVmMi1jZWE1OTEzNjI3YWY/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:57:06 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4175" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "eed1e521-6f53-4fda-af0b-e757ad1f55f6" + "6ce2c8f9-95ee-496d-b5d1-70c295b0e4d7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11986" ], "x-ms-correlation-request-id": [ - "42310865-e9f5-4eaf-8f4f-80f6f8478fbc" + "a2e51954-b5d9-44b4-b42d-5bf0a10de600" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015706Z:42310865-e9f5-4eaf-8f4f-80f6f8478fbc" + "WESTUS:20201023T000630Z:a2e51954-b5d9-44b4-b42d-5bf0a10de600" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 23 Oct 2020 00:06:30 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -1378,8 +1443,8 @@ ], "Names": { "Gallery_CRUD_Tests": [ - "galleryPsTestRg7559", - "galleryPsTestGallery3975" + "galleryPsTestRg6640", + "galleryPsTestGallery8544" ] }, "Variables": { From dfce18d139d19bb618e3527f7a97e3fe679f6ef1 Mon Sep 17 00:00:00 2001 From: Kang Sun Date: Thu, 22 Oct 2020 17:53:57 -0700 Subject: [PATCH 05/27] update record json and add new tests for caps gallery with sharing profile and shared gallery --- .../src/Properties/AssemblyInfo.cs | 4 +- .../tests/ScenarioTests/GalleryTests.cs | 126 +- .../tests/ScenarioTests/SharedGalleryTests.cs | 160 + .../GalleryApplicationVersion_CRUD_Tests.json | 1781 +++--- .../GalleryApplication_CRUD_Tests.json | 520 +- .../GalleryImageVersion_CRUD_Tests.json | 5126 ++++++----------- .../GalleryTests/GalleryImage_CRUD_Tests.json | 945 +-- .../GalleryTests/Gallery_CRUD_Tests.json | 853 +-- ...Gallery_WithSharingProfile_CRUD_Tests.json | 1032 ++++ 9 files changed, 5495 insertions(+), 5052 deletions(-) create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/SharedGalleryTests.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_WithSharingProfile_CRUD_Tests.json diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Properties/AssemblyInfo.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Properties/AssemblyInfo.cs index cb8d666e3228..355cb2e67ba4 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Properties/AssemblyInfo.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Properties/AssemblyInfo.cs @@ -7,8 +7,8 @@ [assembly: AssemblyTitle("Microsoft Azure Compute Management Library")] [assembly: AssemblyDescription("Provides management functionality for Microsoft Azure Compute Resources.")] -[assembly: AssemblyVersion("40.0.0.0")] -[assembly: AssemblyFileVersion("40.0.0.0")] +[assembly: AssemblyVersion("41.0.0.0")] +[assembly: AssemblyFileVersion("41.0.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Microsoft Azure .NET SDK")] diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/GalleryTests.cs b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/GalleryTests.cs index 1aa9feb42775..e540b70b0eab 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/GalleryTests.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/GalleryTests.cs @@ -345,6 +345,77 @@ public void GalleryApplicationVersion_CRUD_Tests() } } + + [Fact] + public void Gallery_WithSharingProfile_CRUD_Tests() + { + using (MockContext context = MockContext.Start(this.GetType())) + { + EnsureClientsInitialized(context); + string rgName = ComputeManagementTestUtilities.GenerateName(ResourceGroupPrefix); + string rgName2 = rgName + "New"; + + m_ResourcesClient.ResourceGroups.CreateOrUpdate(rgName, new ResourceGroup { Location = galleryHomeLocation }); + Trace.TraceInformation("Created the resource group: " + rgName); + + string galleryName = ComputeManagementTestUtilities.GenerateName(GalleryNamePrefix); + Gallery galleryIn = GetTestInputSharedGallery(); + m_CrpClient.Galleries.CreateOrUpdate(rgName, galleryName, galleryIn); + Trace.TraceInformation(string.Format("Created the shared gallery: {0} in resource group: {1} with sharing profile permission: {2}", + galleryName, rgName, galleryIn.SharingProfile.Permissions)); + + Gallery galleryOut = m_CrpClient.Galleries.Get(rgName, galleryName); + Trace.TraceInformation("Got the gallery."); + Assert.NotNull(galleryOut); + ValidateGallery(galleryIn, galleryOut); + + Trace.TraceInformation("Update the sharing profile via post, add the sharing profile groups."); + string newTenantId = Guid.NewGuid().ToString(); + SharingProfileGroup tenantGroups = new SharingProfileGroup() + { + Type = "AADTenants", + Ids = new List { newTenantId } + + }; + + string newSubId = Guid.NewGuid().ToString(); + SharingProfileGroup subGroups = new SharingProfileGroup() + { + Type = "Subscriptions", + Ids = new List { newSubId } + + }; + + List groups = new List { tenantGroups, subGroups }; + SharingUpdate sharingUpdate = new SharingUpdate() + { + OperationType = "Add", + Groups = groups + }; + + m_CrpClient.GallerySharingProfile.Update(rgName, galleryName,sharingUpdate); + + Gallery galleryOutWithSharingProfile = m_CrpClient.Galleries.Get(rgName, galleryName, SelectPermissions.Permissions); + Trace.TraceInformation("Got the gallery"); + Assert.NotNull(galleryOut); + + ValidateSharingProfile(galleryIn, galleryOutWithSharingProfile, groups); + + Trace.TraceInformation("Reset this gallery to private before deleting it."); + SharingUpdate resetPrivateUpdate = new SharingUpdate() + { + OperationType = "ResetToPrivate", + Groups = null + }; + + m_CrpClient.GallerySharingProfile.Update(rgName, galleryName, resetPrivateUpdate); + + Trace.TraceInformation("Deleting this gallery."); + m_CrpClient.Galleries.Delete(rgName, galleryName); + // resource groups cleanup is taken cared by MockContext.Dispose() method. + } + } + private void ValidateGallery(Gallery galleryIn, Gallery galleryOut) { Assert.False(string.IsNullOrEmpty(galleryOut.ProvisioningState)); @@ -365,6 +436,42 @@ private void ValidateGallery(Gallery galleryIn, Gallery galleryOut) Assert.False(string.IsNullOrEmpty(galleryOut?.Identifier?.UniqueName)); } + private void ValidateSharingProfile(Gallery galleryIn, Gallery galleryOut, List groups) + { + if(galleryIn.SharingProfile != null) + { + Assert.Equal(galleryIn.SharingProfile.Permissions, galleryOut.SharingProfile.Permissions); + Assert.Equal(groups.Count, galleryOut.SharingProfile.Groups.Count); + + foreach (SharingProfileGroup sharingProfileGroup in galleryOut.SharingProfile.Groups) + { + if (sharingProfileGroup.Ids != null) + { + List outIds = sharingProfileGroup.Ids as List; + List inIds = null; + + foreach(SharingProfileGroup inGroup in groups) + { + if(inGroup.Type == sharingProfileGroup.Type) + { + inIds = inGroup.Ids as List; + break; + } + } + + Assert.NotNull(inIds); + Assert.Equal(inIds.Count, outIds.Count); + + for(int i = 0; i < inIds.Count; i++) + { + Assert.Equal(outIds[i], inIds[i]); + } + + } + } + } + } + private void ValidateGalleryImage(GalleryImage imageIn, GalleryImage imageOut) { Assert.False(string.IsNullOrEmpty(imageOut.ProvisioningState)); @@ -428,6 +535,19 @@ private Gallery GetTestInputGallery() }; } + private Gallery GetTestInputSharedGallery() + { + return new Gallery + { + Location = galleryHomeLocation, + Description = "This is a sample gallery description", + SharingProfile = new SharingProfile + { + Permissions = "Groups" + } + }; + } + private GalleryImage GetTestInputGalleryImage() { return new GalleryImage @@ -565,9 +685,13 @@ private GalleryApplicationVersion GetTestInputGalleryApplicationVersion(string a { Source = new UserArtifactSource { - FileName = "test.zip", MediaLink = applicationMediaLink }, + ManageActions = new UserArtifactManage + { + Install = "powershell -command \"Expand-Archive -Path test.zip -DestinationPath C:\\package\"", + Remove = "del C:\\package " + }, ReplicaCount = 1, StorageAccountType = StorageAccountType.StandardLRS, TargetRegions = new List { diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/SharedGalleryTests.cs b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/SharedGalleryTests.cs new file mode 100644 index 000000000000..5fa7c786f973 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/SharedGalleryTests.cs @@ -0,0 +1,160 @@ +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using System; +using System.Collections.Generic; +using System.Text; +using Xunit; +using Microsoft.Azure.Management.ResourceManager.Models; +using Microsoft.Azure.Management.ResourceManager; +using System.Diagnostics; +using Microsoft.Azure.Management.Compute.Models; +using Microsoft.Rest.Azure; +using System.Linq; +using Microsoft.Azure.Management.Compute; + + +namespace Compute.Tests +{ + public class SharedGalleryTests : VMTestBase + { + // these needs to be decided and created, especially subscription. + // two gallery shared to the tenant, but only one gallery shared to the sub + protected const string SubscriptionId = "galleryPsTestRg"; + protected const string GalleryUniqueName = "galleryPsTestGallery"; + protected const string GalleryImageName = "galleryPsTestGalleryImage"; + protected const string GalleryImageVersionName = "1.0.0"; + + private string galleryHomeLocation = "eastus2"; + + [Fact] + public void SharedGallery_GetAndList_Tests() + { + using (MockContext context = MockContext.Start(this.GetType())) + { + EnsureClientsInitialized(context); + + SharedGallery sharedGalleryOut = m_CrpClient.SharedGalleries.Get(galleryHomeLocation, GalleryUniqueName); + Trace.TraceInformation("Got the shared gallery {0} which is shared to subscription {1}.", GalleryUniqueName, SubscriptionId); + Assert.NotNull(sharedGalleryOut); + ValidateSharedGallery(sharedGalleryOut); + + + IPage sharedGalleriesList = m_CrpClient.SharedGalleries.List(galleryHomeLocation, "tenant"); + Trace.TraceInformation("Got the shared galleries which are shared to tenant of subscription {0}.", SubscriptionId); + + int count = sharedGalleriesList.Count(); + Assert.Equal(2, count); + + foreach(SharedGallery gallery in sharedGalleriesList) + { + if(gallery.Name == GalleryUniqueName) + { + ValidateSharedGallery(gallery); + break; + } + } + + sharedGalleriesList = m_CrpClient.SharedGalleries.List(galleryHomeLocation); + + count = sharedGalleriesList.Count(); + Assert.Equal(1, count); + Trace.TraceInformation("Got the shared gallery {0} which is shared to subscription {1}.", GalleryUniqueName, SubscriptionId); + + ValidateSharedGallery(sharedGalleriesList.First()); + + } + } + + [Fact] + public void SharedGalleryImage_GetAndList_Tests() + { + using (MockContext context = MockContext.Start(this.GetType())) + { + EnsureClientsInitialized(context); + + SharedGalleryImage sharedGalleryImageOut = m_CrpClient.SharedGalleryImages.Get(galleryHomeLocation, GalleryUniqueName, GalleryImageName); + Trace.TraceInformation("Got the shared gallery image {0} which is shared to subscription {1}.", GalleryImageName, SubscriptionId); + Assert.NotNull(sharedGalleryImageOut); + ValidateSharedGalleryImage(sharedGalleryImageOut); + + + IPage sharedGalleryImagesList = m_CrpClient.SharedGalleryImages.List(galleryHomeLocation, GalleryUniqueName, "tenant"); + Trace.TraceInformation("Got the shared gallery images which are shared to tenant of subscription {0}.", SubscriptionId); + + int count = sharedGalleryImagesList.Count(); + Assert.Equal(2, count); + + foreach (SharedGalleryImage galleryImage in sharedGalleryImagesList) + { + if (galleryImage.Name == GalleryImageName) + { + ValidateSharedGalleryImage(galleryImage); + break; + } + } + + sharedGalleryImagesList = m_CrpClient.SharedGalleryImages.List(galleryHomeLocation, GalleryUniqueName); + + count = sharedGalleryImagesList.Count(); + Assert.Equal(1, count); + Trace.TraceInformation("Got the shared gallery {0} which is shared to subscription {1}.", GalleryUniqueName, SubscriptionId); + + ValidateSharedGalleryImage(sharedGalleryImagesList.First()); + } + } + + [Fact] + public void SharedGalleryImageVersion_GetAndList_Tests() + { + using (MockContext context = MockContext.Start(this.GetType())) + { + EnsureClientsInitialized(context); + + SharedGalleryImageVersion sharedGalleryImageVersionOut = m_CrpClient.SharedGalleryImageVersions.Get(galleryHomeLocation, GalleryUniqueName, GalleryImageName, GalleryImageVersionName); + Trace.TraceInformation("Got the shared gallery image name {0} which is shared to subscription {1}.", GalleryImageVersionName, SubscriptionId); + Assert.NotNull(sharedGalleryImageVersionOut); + ValidateSharedGalleryImageVersion(sharedGalleryImageVersionOut); + + IPage sharedGalleryImageVersionsList = m_CrpClient.SharedGalleryImageVersions.List(galleryHomeLocation, GalleryUniqueName, GalleryImageName, "tenant"); + Trace.TraceInformation("Got the shared gallery image versions which are shared to tenant of subscription {0}.", SubscriptionId); + + int count = sharedGalleryImageVersionsList.Count(); + Assert.Equal(2, count); + + foreach (SharedGalleryImageVersion galleryImageVersion in sharedGalleryImageVersionsList) + { + if (galleryImageVersion.Name == GalleryImageVersionName) + { + ValidateSharedGalleryImageVersion(galleryImageVersion); + break; + } + } + + sharedGalleryImageVersionsList = m_CrpClient.SharedGalleryImageVersions.List(galleryHomeLocation, GalleryUniqueName, GalleryImageName); + + count = sharedGalleryImageVersionsList.Count(); + Assert.Equal(1, count); + Trace.TraceInformation("Got the shared gallery {0} which is shared to subscription {1}.", GalleryUniqueName, SubscriptionId); + + ValidateSharedGalleryImageVersion(sharedGalleryImageVersionsList.First()); + } + } + + private void ValidateSharedGallery(SharedGallery sharedGallery) + { + string expectedId = "/SharedGalleries/" + GalleryUniqueName; + Assert.Equal(expectedId, sharedGallery.UniqueId); + } + + private void ValidateSharedGalleryImage(SharedGalleryImage sharedGalleryImage) + { + string expectedId = "/SharedGalleries/" + GalleryUniqueName + "/Images/" + GalleryImageName; + Assert.Equal(expectedId, sharedGalleryImage.UniqueId); + } + + private void ValidateSharedGalleryImageVersion(SharedGalleryImageVersion sharedGalleryImageVersion) + { + string expectedId = "/SharedGalleries/" + GalleryUniqueName + "/Images/" + GalleryImageName + "/Versions/" + GalleryImageVersionName; + Assert.Equal(expectedId, sharedGalleryImageVersion.UniqueId); + } + } +} 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 a19940353198..e5ec4ca85621 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,51 +1,48 @@ { "Entries": [ { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg552?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg8861?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg4NjE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"galleryPsTestRg552\": \"2020-02-21 01:43:46Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"galleryPsTestRg8861\": \"2020-10-22 23:51:32Z\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "663004ef-1453-487a-9028-50796001c990" + "414fc783-67ca-45e4-82ec-1588bd67ad37" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "104" + "105" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:43:50 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-request-id": [ - "e59f39ce-e8e4-47fc-9ab0-ca48cb2c767b" + "daf536dc-d32d-40cc-abaa-06391e6a2c91" ], "x-ms-correlation-request-id": [ - "e59f39ce-e8e4-47fc-9ab0-ca48cb2c767b" + "daf536dc-d32d-40cc-abaa-06391e6a2c91" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T014351Z:e59f39ce-e8e4-47fc-9ab0-ca48cb2c767b" + "WESTUS:20201022T235135Z:daf536dc-d32d-40cc-abaa-06391e6a2c91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -53,8 +50,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:51:35 GMT" + ], "Content-Length": [ - "249" + "252" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,25 +63,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552\",\r\n \"name\": \"galleryPsTestRg552\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"galleryPsTestRg552\": \"2020-02-21 01:43:46Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861\",\r\n \"name\": \"galleryPsTestRg8861\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"galleryPsTestRg8861\": \"2020-10-22 23:51:32Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Storage/storageAccounts/saforgallery6204?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3NhZm9yZ2FsbGVyeTYyMDQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Storage/storageAccounts/saforgallery683?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg4NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnk2ODM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c262d983-a865-4960-9221-bc1749ff5aeb" + "4b9d8831-4447-4fc5-a74b-701477a7af49" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ], "Content-Type": [ @@ -95,62 +95,62 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:43:56 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/1bc1f82d-d2c9-4a08-85cc-f6b2738694ee?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/e581cd6e-39f5-4030-8e08-0260c2fcd57c?monitor=true&api-version=2015-06-15" ], "Retry-After": [ "17" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "1bc1f82d-d2c9-4a08-85cc-f6b2738694ee" + "e581cd6e-39f5-4030-8e08-0260c2fcd57c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "f02f1dd6-03a8-456b-8d35-f5be7e04ea22" + "7b859e68-ba73-4753-9823-c44379f84f12" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T014356Z:f02f1dd6-03a8-456b-8d35-f5be7e04ea22" + "WESTUS:20201022T235143Z:7b859e68-ba73-4753-9823-c44379f84f12" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 22 Oct 2020 23:51:43 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/1bc1f82d-d2c9-4a08-85cc-f6b2738694ee?monitor=true&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvMWJjMWY4MmQtZDJjOS00YTA4LTg1Y2MtZjZiMjczODY5NGVlP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/e581cd6e-39f5-4030-8e08-0260c2fcd57c?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZTU4MWNkNmUtMzlmNS00MDMwLThlMDgtMDI2MGMyZmNkNTdjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ] }, @@ -158,33 +158,33 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:44:13 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "b949b952-7040-4ed9-a7b0-188b37e3772b" + "4876d7e2-b994-4a53-8142-223247a427f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11999" ], "x-ms-correlation-request-id": [ - "6b9b0744-127e-4609-b635-71d736f4c9fe" + "63de28c9-f7d1-4862-99d8-232532da6ee5" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T014413Z:6b9b0744-127e-4609-b635-71d736f4c9fe" + "WESTUS:20201022T235200Z:63de28c9-f7d1-4862-99d8-232532da6ee5" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:52:00 GMT" + ], "Content-Length": [ "95" ], @@ -199,21 +199,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg4NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "23d4372f-af91-49d4-bf0f-8d418d7fd71a" + "465e055a-12d2-4c6b-99c4-85539cb9a973" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ] }, @@ -221,35 +221,35 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:44:23 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "3802b7b8-bc72-413b-a063-e27e83f86330" + "cf7a8a6e-3286-4cef-a20b-2aad7bc29db2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11998" ], "x-ms-correlation-request-id": [ - "5050003e-d8df-4a76-841b-e663a831f733" + "aeb3548a-34b4-40ec-b8b8-ccbd82c73b7a" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T014424Z:5050003e-d8df-4a76-841b-e663a831f733" + "WESTUS:20201022T235211Z:aeb3548a-34b4-40ec-b8b8-ccbd82c73b7a" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:52:11 GMT" + ], "Content-Length": [ - "775" + "770" ], "Content-Type": [ "application/json" @@ -258,25 +258,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Storage/storageAccounts/saforgallery6204\",\r\n \"name\": \"saforgallery6204\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-02-21T01:43:55.1988592Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery6204.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery6204.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery6204.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery6204.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Storage/storageAccounts/saforgallery683\",\r\n \"name\": \"saforgallery683\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-10-22T23:51:41.8500492Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery683.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery683.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery683.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery683.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Storage/storageAccounts/saforgallery6204?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3NhZm9yZ2FsbGVyeTYyMDQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Storage/storageAccounts/saforgallery683?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg4NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnk2ODM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "629c5824-c6d1-43ed-a769-fe22a0b0ea3b" + "71eedc32-991e-48c9-8d6f-9425de70b409" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ] }, @@ -284,35 +284,35 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:44:24 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "16273c4e-5ab3-4815-83e1-98912db90829" + "dcf2748b-54cc-45ec-92c5-5933c1e7a762" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11997" ], "x-ms-correlation-request-id": [ - "ee3a5485-55f9-44aa-a3b8-5b8805f453aa" + "7c5248b3-491b-4976-807c-419ae5f65502" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T014424Z:ee3a5485-55f9-44aa-a3b8-5b8805f453aa" + "WESTUS:20201022T235211Z:7c5248b3-491b-4976-807c-419ae5f65502" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:52:11 GMT" + ], "Content-Length": [ - "763" + "758" ], "Content-Type": [ "application/json" @@ -321,25 +321,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Storage/storageAccounts/saforgallery6204\",\r\n \"name\": \"saforgallery6204\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-02-21T01:43:55.1988592Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery6204.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery6204.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery6204.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery6204.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Storage/storageAccounts/saforgallery683\",\r\n \"name\": \"saforgallery683\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-10-22T23:51:41.8500492Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery683.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery683.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery683.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery683.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Storage/storageAccounts/saforgallery6204/listKeys?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3NhZm9yZ2FsbGVyeTYyMDQvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Storage/storageAccounts/saforgallery683/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg4NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnk2ODMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99042ea1-777b-4680-b5bd-ed2635ab09b2" + "d30188f4-5add-4bc7-89f9-5ec6315ee592" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ] }, @@ -347,33 +347,33 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:44:24 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "e2f1fd4a-bace-41dd-87c4-de79ab25061e" + "5c9cd176-4dd8-4fe6-b5b1-7ed19acc0cd5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], "x-ms-correlation-request-id": [ - "78b4dc3f-4049-462a-b12f-506cd8811c7e" + "5c0917b2-620e-4976-8fd3-399c6fa79d5b" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T014424Z:78b4dc3f-4049-462a-b12f-506cd8811c7e" + "WESTUS:20201022T235212Z:5c0917b2-620e-4976-8fd3-399c6fa79d5b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:52:11 GMT" + ], "Content-Length": [ "197" ], @@ -384,26 +384,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"key1\": \"2YSdKFz6VU6a5T/TWnnJ5Opibs0sdVhY0Xps8UxabKcZJqk5tH7THATfEjARpvzmducxQsv1KbYSYGeI8Rs68Q==\",\r\n \"key2\": \"xaxn1X1jsDD+5Sp+g2Ki0WW0bTWdvBvN4qT1QjfAMHCAtUCYHMdxJQpuqGy67/loLiEBvXNQLi+FA5oUjBrPng==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"YE3Yi4lqQq0S6+HXPWsKWWEpXXO0U2tFhPV4QTPart9B92s/KY7NzmYlMu9J13aLXC2NdoPELbJmDI29VWvuRg==\",\r\n \"key2\": \"kRorr+Vk6AjJ+VrTyIqJ3uA8tQiJlj8E0KhQONq9q3johw+OyApgo73yeLMhQmZb0hCrl9oKjgmun6Is0AOI/A==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTkyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg4NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxMDg/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\"\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bdcc1f4c-ba78-49e6-9e13-78246c775dfe" + "14f7e10c-060a-454d-a99f-1edb89a0d225" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -416,42 +416,45 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:44:34 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/1f58bfd9-0484-499c-b5b3-807faf96508f?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/388f7b7a-bdd9-4f9a-93a0-361917faa760?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "1f58bfd9-0484-499c-b5b3-807faf96508f" + "388f7b7a-bdd9-4f9a-93a0-361917faa760" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "52a13cd1-a754-4c29-817a-ac9c09872a79" + "861bdad6-ea23-440f-bd6b-f7e428661bce" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T014434Z:52a13cd1-a754-4c29-817a-ac9c09872a79" + "WESTUS:20201022T235224Z:861bdad6-ea23-440f-bd6b-f7e428661bce" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:52:23 GMT" + ], "Content-Length": [ - "510" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -460,57 +463,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery592\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY592\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery5108\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY5108\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Private\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/1f58bfd9-0484-499c-b5b3-807faf96508f?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xZjU4YmZkOS0wNDg0LTQ5OWMtYjViMy04MDdmYWY5NjUwOGY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/388f7b7a-bdd9-4f9a-93a0-361917faa760?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8zODhmN2I3YS1iZGQ5LTRmOWEtOTNhMC0zNjE5MTdmYWE3NjA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:45:04 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4198" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "7e591ab6-81ba-4ca1-8e12-3da5dcd90bbb" + "322abfc1-c42d-47a5-8a1f-aef62e58c58d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "e92e6a2e-6ede-4929-b36c-0432e8b6d7bd" + "d0f14f29-5a65-4f93-9a45-9df883977649" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T014505Z:e92e6a2e-6ede-4929-b36c-0432e8b6d7bd" + "WESTUS:20201022T235254Z:d0f14f29-5a65-4f93-9a45-9df883977649" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:52:53 GMT" + ], "Content-Length": [ "184" ], @@ -521,59 +527,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:44:32.9572378-08:00\",\r\n \"endTime\": \"2020-02-20T17:44:33.8322125-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1f58bfd9-0484-499c-b5b3-807faf96508f\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:52:21.9438768-07:00\",\r\n \"endTime\": \"2020-10-22T16:52:22.6782347-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"388f7b7a-bdd9-4f9a-93a0-361917faa760\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTkyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg4NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxMDg/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:45:05 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;345,Microsoft.Compute/GetGallery30Min;2495" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "7ddea389-1d4e-4f5f-bfdf-8a30bdb58ba7" + "19a137e0-df1f-4849-b890-b3bd812a2eb1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "b2704d8b-1c32-45f9-bac0-586618f8c9c1" + "9fd3adbc-80f2-4489-a364-f82d5076dfbe" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T014505Z:b2704d8b-1c32-45f9-bac0-586618f8c9c1" + "WESTUS:20201022T235254Z:9fd3adbc-80f2-4489-a364-f82d5076dfbe" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:52:53 GMT" + ], "Content-Length": [ - "511" + "515" ], "Content-Type": [ "application/json; charset=utf-8" @@ -582,26 +591,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery592\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY592\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery5108\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY5108\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTkyL2FwcGxpY2F0aW9ucy9nYWxsZXJ5UHNUZXN0R2FsbGVyeUFwcGxpY2F0aW9uNDUwNT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108/applications/galleryPsTestGalleryApplication2971?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg4NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxMDgvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24yOTcxP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\",\r\n \"supportedOSType\": \"Windows\"\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "12a57118-2738-4035-8404-a2cf9aa0331b" + "8e1908c0-1a9e-4ba7-a463-e54bc18fc894" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -614,39 +623,42 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:45:05 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateGalleryApplication3Min;149,Microsoft.Compute/CreateUpdateGalleryApplication30Min;749" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "71393f54-e206-45ee-893f-27593dea3f32" + "64cef88c-38eb-4b9f-9963-93b9c64b7ad1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-correlation-request-id": [ - "59940480-8366-44b7-a31a-2f1d2a043813" + "2f5002fb-5573-4dae-80ec-d5bf92cefbef" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T014505Z:59940480-8366-44b7-a31a-2f1d2a043813" + "WESTUS:20201022T235254Z:2f5002fb-5573-4dae-80ec-d5bf92cefbef" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:52:53 GMT" + ], "Content-Length": [ - "632" + "634" ], "Content-Type": [ "application/json; charset=utf-8" @@ -655,59 +667,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication4505\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication2971\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108/applications/galleryPsTestGalleryApplication2971\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTkyL2FwcGxpY2F0aW9ucy9nYWxsZXJ5UHNUZXN0R2FsbGVyeUFwcGxpY2F0aW9uNDUwNT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108/applications/galleryPsTestGalleryApplication2971?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg4NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxMDgvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24yOTcxP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:45:35 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGalleryApplication3Min;298,Microsoft.Compute/GetGalleryApplication30Min;1998" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "0d91ad30-81e4-48ea-a383-a86f99cfe323" + "cb0458ca-f8ba-4dc3-b7e7-ea867ccbf695" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "863b16b8-c99c-4b88-9d59-8ff73064552c" + "bab6f50c-e15e-4c66-bd21-f0121674ebfe" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T014536Z:863b16b8-c99c-4b88-9d59-8ff73064552c" + "WESTUS:20201022T235325Z:bab6f50c-e15e-4c66-bd21-f0121674ebfe" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:53:25 GMT" + ], "Content-Length": [ - "632" + "634" ], "Content-Type": [ "application/json; charset=utf-8" @@ -716,74 +731,77 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication4505\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication2971\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108/applications/galleryPsTestGalleryApplication2971\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTkyL2FwcGxpY2F0aW9ucy9nYWxsZXJ5UHNUZXN0R2FsbGVyeUFwcGxpY2F0aW9uNDUwNS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108/applications/galleryPsTestGalleryApplication2971/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg4NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxMDgvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24yOTcxL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"fileName\": \"test.zip\",\r\n \"mediaLink\": \"https://saforgallery6204.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=QxJqBvH83oqFZHN9OoZnG6LIh3OLNHTANam7o03jCvI%3D&st=2020-02-20T01%3A44%3A26Z&se=2020-02-23T01%3A44%3A26Z&sp=rw\"\r\n },\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"SoutheastAsia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"endOfLifeDate\": \"2020-03-01T08:00:00Z\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery683.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=rIL9D%2FBdVGCRXcufkf%2B98rmGfFYIV%2FGakS%2FI70WJEzw%3D&st=2020-10-21T23%3A52%3A14Z&se=2020-10-24T23%3A52%3A14Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"SoutheastAsia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"endOfLifeDate\": \"2020-11-01T07:00:00Z\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1de3f51f-1650-4376-9d68-98d0572f1f76" + "7d43930a-1986-4a2b-af54-9c81e1a65240" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "680" + "834" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:45:36 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/39b22df0-9c3c-4be8-9d50-d0e3ed29feae?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/11cb0e69-f860-43bb-b13d-4db4d6654534?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateGalleryApplicationVersion3Min;149,Microsoft.Compute/CreateUpdateGalleryApplicationVersion30Min;749" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "39b22df0-9c3c-4be8-9d50-d0e3ed29feae" + "11cb0e69-f860-43bb-b13d-4db4d6654534" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1197" ], "x-ms-correlation-request-id": [ - "4d1056fd-639a-41ad-a02c-173d3660acbb" + "7adbcfb8-78bd-4850-b0e4-e5364490ab7b" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T014536Z:4d1056fd-639a-41ad-a02c-173d3660acbb" + "WESTUS:20201022T235325Z:7adbcfb8-78bd-4850-b0e4-e5364490ab7b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:53:25 GMT" + ], "Content-Length": [ - "1163" + "1319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -792,74 +810,77 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"fileName\": \"test.zip\",\r\n \"mediaLink\": \"https://saforgallery6204.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=QxJqBvH83oqFZHN9OoZnG6LIh3OLNHTANam7o03jCvI%3D&st=2020-02-20T01%3A44%3A26Z&se=2020-02-23T01%3A44%3A26Z&sp=rw\"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-02-20T17:45:36.5193004-08:00\",\r\n \"endOfLifeDate\": \"2020-03-01T00:00:00-08:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108/applications/galleryPsTestGalleryApplication2971/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery683.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=rIL9D%2FBdVGCRXcufkf%2B98rmGfFYIV%2FGakS%2FI70WJEzw%3D&st=2020-10-21T23%3A52%3A14Z&se=2020-10-24T23%3A52%3A14Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-10-22T16:53:25.4136438-07:00\",\r\n \"endOfLifeDate\": \"2020-11-01T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTkyL2FwcGxpY2F0aW9ucy9nYWxsZXJ5UHNUZXN0R2FsbGVyeUFwcGxpY2F0aW9uNDUwNS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108/applications/galleryPsTestGalleryApplication2971/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg4NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxMDgvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24yOTcxL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"fileName\": \"test.zip\",\r\n \"mediaLink\": \"https://saforgallery6204.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=QxJqBvH83oqFZHN9OoZnG6LIh3OLNHTANam7o03jCvI%3D&st=2020-02-20T01%3A44%3A26Z&se=2020-02-23T01%3A44%3A26Z&sp=rw\"\r\n },\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"SoutheastAsia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"endOfLifeDate\": \"2020-05-30T07:00:00Z\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery683.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=rIL9D%2FBdVGCRXcufkf%2B98rmGfFYIV%2FGakS%2FI70WJEzw%3D&st=2020-10-21T23%3A52%3A14Z&se=2020-10-24T23%3A52%3A14Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"SoutheastAsia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"endOfLifeDate\": \"2021-01-30T08:00:00Z\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c25e23fe-912c-443d-a5bb-82391aa0ea58" + "e59a99a2-c4bf-4066-acd7-8cfa50d19df2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "680" + "834" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:50:11 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/01072ea5-4243-4f5a-bb8b-537afc9ec2d0?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/0c0f3069-73da-4392-9fd8-5ab171025a78?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateGalleryApplicationVersion3Min;149,Microsoft.Compute/CreateUpdateGalleryApplicationVersion30Min;748" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "01072ea5-4243-4f5a-bb8b-537afc9ec2d0" + "0c0f3069-73da-4392-9fd8-5ab171025a78" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1196" ], "x-ms-correlation-request-id": [ - "1e00c68a-ad4e-47b7-9611-76ee86fe9f27" + "d93beca4-6ac8-487a-b0c3-227db3a1b469" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015012Z:1e00c68a-ad4e-47b7-9611-76ee86fe9f27" + "WESTUS:20201022T235859Z:d93beca4-6ac8-487a-b0c3-227db3a1b469" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:58:59 GMT" + ], "Content-Length": [ - "1163" + "1319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -868,57 +889,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"fileName\": \"test.zip\",\r\n \"mediaLink\": \"https://saforgallery6204.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=QxJqBvH83oqFZHN9OoZnG6LIh3OLNHTANam7o03jCvI%3D&st=2020-02-20T01%3A44%3A26Z&se=2020-02-23T01%3A44%3A26Z&sp=rw\"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-02-20T17:45:36.5193004-08:00\",\r\n \"endOfLifeDate\": \"2020-05-30T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108/applications/galleryPsTestGalleryApplication2971/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery683.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=rIL9D%2FBdVGCRXcufkf%2B98rmGfFYIV%2FGakS%2FI70WJEzw%3D&st=2020-10-21T23%3A52%3A14Z&se=2020-10-24T23%3A52%3A14Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-10-22T16:53:25.4136438-07:00\",\r\n \"endOfLifeDate\": \"2021-01-30T00:00:00-08:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/39b22df0-9c3c-4be8-9d50-d0e3ed29feae?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8zOWIyMmRmMC05YzNjLTRiZTgtOWQ1MC1kMGUzZWQyOWZlYWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/11cb0e69-f860-43bb-b13d-4db4d6654534?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xMWNiMGU2OS1mODYwLTQzYmItYjEzZC00ZGI0ZDY2NTQ1MzQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:46:07 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4196" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "9140e43b-77fc-4d11-9f74-ef07743d36af" + "97c1585e-3984-40cc-bed6-a4bc30a1bf31" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "d409afab-ac63-42a9-a6f4-1a4b42193889" + "5e103b7b-e810-469d-bd95-ac65640a4301" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T014607Z:d409afab-ac63-42a9-a6f4-1a4b42193889" + "WESTUS:20201022T235355Z:5e103b7b-e810-469d-bd95-ac65640a4301" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:53:55 GMT" + ], "Content-Length": [ "134" ], @@ -929,57 +953,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:45:36.4724359-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"39b22df0-9c3c-4be8-9d50-d0e3ed29feae\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:53:25.4136438-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"11cb0e69-f860-43bb-b13d-4db4d6654534\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/39b22df0-9c3c-4be8-9d50-d0e3ed29feae?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8zOWIyMmRmMC05YzNjLTRiZTgtOWQ1MC1kMGUzZWQyOWZlYWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/11cb0e69-f860-43bb-b13d-4db4d6654534?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xMWNiMGU2OS1mODYwLTQzYmItYjEzZC00ZGI0ZDY2NTQ1MzQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:46:37 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4193" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "e8006c8d-50fa-4981-9b27-e1753dabe08d" + "11a98399-0a70-4e5e-9f81-6ac710924bc0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "bc0efee8-4539-4d0f-bc9e-9b3b8e445b97" + "5865ab28-a52a-452c-9a67-0efb5c13b86e" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T014637Z:bc0efee8-4539-4d0f-bc9e-9b3b8e445b97" + "WESTUS:20201022T235426Z:5865ab28-a52a-452c-9a67-0efb5c13b86e" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:54:25 GMT" + ], "Content-Length": [ "134" ], @@ -990,57 +1017,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:45:36.4724359-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"39b22df0-9c3c-4be8-9d50-d0e3ed29feae\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:53:25.4136438-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"11cb0e69-f860-43bb-b13d-4db4d6654534\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/39b22df0-9c3c-4be8-9d50-d0e3ed29feae?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8zOWIyMmRmMC05YzNjLTRiZTgtOWQ1MC1kMGUzZWQyOWZlYWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/11cb0e69-f860-43bb-b13d-4db4d6654534?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xMWNiMGU2OS1mODYwLTQzYmItYjEzZC00ZGI0ZDY2NTQ1MzQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:47:07 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4191" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "567a6b48-ae7e-487b-84e7-069949330f99" + "1b13345b-6b16-4ef5-b92f-1b4fd7a0d016" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-correlation-request-id": [ - "5eb1c35e-a369-44b0-a514-4659a9e01854" + "ef925444-ec46-4738-88ca-494beef24a31" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T014708Z:5eb1c35e-a369-44b0-a514-4659a9e01854" + "WESTUS:20201022T235456Z:ef925444-ec46-4738-88ca-494beef24a31" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:54:55 GMT" + ], "Content-Length": [ "134" ], @@ -1051,57 +1081,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:45:36.4724359-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"39b22df0-9c3c-4be8-9d50-d0e3ed29feae\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:53:25.4136438-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"11cb0e69-f860-43bb-b13d-4db4d6654534\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/39b22df0-9c3c-4be8-9d50-d0e3ed29feae?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8zOWIyMmRmMC05YzNjLTRiZTgtOWQ1MC1kMGUzZWQyOWZlYWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/11cb0e69-f860-43bb-b13d-4db4d6654534?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xMWNiMGU2OS1mODYwLTQzYmItYjEzZC00ZGI0ZDY2NTQ1MzQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:47:38 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4188" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "7d2b35ed-d32c-4adf-8ab6-88f4a9d437dd" + "cf28842a-8e4a-4616-b8e5-581eeb80d0dd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-correlation-request-id": [ - "cbffb0d7-90f2-4d3a-aad7-5f03e10191dd" + "e11bd77b-7706-40ff-b4a3-5915272616dd" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T014738Z:cbffb0d7-90f2-4d3a-aad7-5f03e10191dd" + "WESTUS:20201022T235526Z:e11bd77b-7706-40ff-b4a3-5915272616dd" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:55:25 GMT" + ], "Content-Length": [ "134" ], @@ -1112,57 +1145,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:45:36.4724359-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"39b22df0-9c3c-4be8-9d50-d0e3ed29feae\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:53:25.4136438-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"11cb0e69-f860-43bb-b13d-4db4d6654534\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/39b22df0-9c3c-4be8-9d50-d0e3ed29feae?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8zOWIyMmRmMC05YzNjLTRiZTgtOWQ1MC1kMGUzZWQyOWZlYWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/11cb0e69-f860-43bb-b13d-4db4d6654534?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xMWNiMGU2OS1mODYwLTQzYmItYjEzZC00ZGI0ZDY2NTQ1MzQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:48:07 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4185" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "9d3525e4-e2af-4533-b9b9-decdad9e261e" + "c502c60d-b644-45a7-9c30-23ba1925748c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], "x-ms-correlation-request-id": [ - "f69e235f-6ded-40bb-b8d6-2b28dcd4eb83" + "fae45cd1-6505-474f-85d1-39596bd6fbad" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T014808Z:f69e235f-6ded-40bb-b8d6-2b28dcd4eb83" + "WESTUS:20201022T235556Z:fae45cd1-6505-474f-85d1-39596bd6fbad" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:55:56 GMT" + ], "Content-Length": [ "134" ], @@ -1173,57 +1209,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:45:36.4724359-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"39b22df0-9c3c-4be8-9d50-d0e3ed29feae\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:53:25.4136438-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"11cb0e69-f860-43bb-b13d-4db4d6654534\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/39b22df0-9c3c-4be8-9d50-d0e3ed29feae?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8zOWIyMmRmMC05YzNjLTRiZTgtOWQ1MC1kMGUzZWQyOWZlYWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/11cb0e69-f860-43bb-b13d-4db4d6654534?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xMWNiMGU2OS1mODYwLTQzYmItYjEzZC00ZGI0ZDY2NTQ1MzQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:48:39 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4182" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "2f3201d4-b40b-429e-9a91-1c25821d5701" + "7de82fd7-798e-4247-b3c9-b0c637ede9ab" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], "x-ms-correlation-request-id": [ - "90efbb37-19d1-44ae-ab1e-35f08b3a4340" + "fd8b2f16-dd85-463d-ac7f-417e48980854" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T014839Z:90efbb37-19d1-44ae-ab1e-35f08b3a4340" + "WESTUS:20201022T235627Z:fd8b2f16-dd85-463d-ac7f-417e48980854" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:56:26 GMT" + ], "Content-Length": [ "134" ], @@ -1234,57 +1273,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:45:36.4724359-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"39b22df0-9c3c-4be8-9d50-d0e3ed29feae\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:53:25.4136438-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"11cb0e69-f860-43bb-b13d-4db4d6654534\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/39b22df0-9c3c-4be8-9d50-d0e3ed29feae?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8zOWIyMmRmMC05YzNjLTRiZTgtOWQ1MC1kMGUzZWQyOWZlYWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/11cb0e69-f860-43bb-b13d-4db4d6654534?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xMWNiMGU2OS1mODYwLTQzYmItYjEzZC00ZGI0ZDY2NTQ1MzQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:49:09 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4179" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "a5537984-01ef-4c64-b8b6-ef0653630de7" + "fcce78b0-b55a-4559-9b2e-b2acd33a9268" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], "x-ms-correlation-request-id": [ - "ce15f078-7dde-4a71-8158-c1804bfad87b" + "e24c8a9a-67f7-4cd1-ab0f-8ab45c7205ac" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T014909Z:ce15f078-7dde-4a71-8158-c1804bfad87b" + "WESTUS:20201022T235657Z:e24c8a9a-67f7-4cd1-ab0f-8ab45c7205ac" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:56:56 GMT" + ], "Content-Length": [ "134" ], @@ -1295,57 +1337,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:45:36.4724359-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"39b22df0-9c3c-4be8-9d50-d0e3ed29feae\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:53:25.4136438-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"11cb0e69-f860-43bb-b13d-4db4d6654534\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/39b22df0-9c3c-4be8-9d50-d0e3ed29feae?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8zOWIyMmRmMC05YzNjLTRiZTgtOWQ1MC1kMGUzZWQyOWZlYWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/11cb0e69-f860-43bb-b13d-4db4d6654534?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xMWNiMGU2OS1mODYwLTQzYmItYjEzZC00ZGI0ZDY2NTQ1MzQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:49:38 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4176" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "8de471c2-d178-4a11-a077-798d68841d97" + "f0285325-5044-434a-8eb1-fa8c88f2c89b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], "x-ms-correlation-request-id": [ - "48705605-6441-4795-9840-cab3b156a52f" + "d87ab696-2526-46b0-93c0-7fbd598a8a55" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T014939Z:48705605-6441-4795-9840-cab3b156a52f" + "WESTUS:20201022T235727Z:d87ab696-2526-46b0-93c0-7fbd598a8a55" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:57:27 GMT" + ], "Content-Length": [ "134" ], @@ -1356,59 +1401,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:45:36.4724359-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"39b22df0-9c3c-4be8-9d50-d0e3ed29feae\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:53:25.4136438-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"11cb0e69-f860-43bb-b13d-4db4d6654534\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/39b22df0-9c3c-4be8-9d50-d0e3ed29feae?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8zOWIyMmRmMC05YzNjLTRiZTgtOWQ1MC1kMGUzZWQyOWZlYWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/11cb0e69-f860-43bb-b13d-4db4d6654534?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xMWNiMGU2OS1mODYwLTQzYmItYjEzZC00ZGI0ZDY2NTQ1MzQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:50:09 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4174" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "5cb88f34-bd7c-48bf-93f1-ebada28a71d5" + "abe65290-7c37-4e5d-9ecd-51fa01add818" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], "x-ms-correlation-request-id": [ - "2c7106a0-a60c-4e0f-9477-8cbaec2721b9" + "7bd2c3c5-7c4f-4ebb-9d52-a2c7df8ceeeb" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015010Z:2c7106a0-a60c-4e0f-9477-8cbaec2721b9" + "WESTUS:20201022T235757Z:7bd2c3c5-7c4f-4ebb-9d52-a2c7df8ceeeb" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "184" + "Date": [ + "Thu, 22 Oct 2020 23:57:57 GMT" + ], + "Content-Length": [ + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1417,59 +1465,190 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:45:36.4724359-08:00\",\r\n \"endTime\": \"2020-02-20T17:50:06.7830878-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"39b22df0-9c3c-4be8-9d50-d0e3ed29feae\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:53:25.4136438-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"11cb0e69-f860-43bb-b13d-4db4d6654534\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTkyL2FwcGxpY2F0aW9ucy9nYWxsZXJ5UHNUZXN0R2FsbGVyeUFwcGxpY2F0aW9uNDUwNS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/11cb0e69-f860-43bb-b13d-4db4d6654534?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xMWNiMGU2OS1mODYwLTQzYmItYjEzZC00ZGI0ZDY2NTQ1MzQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4171" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" + ], + "x-ms-request-id": [ + "441f4040-6c1c-458d-b463-e778e2bdb753" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "cb7060c0-8966-4c2e-b38d-3ccbb5b71714" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201022T235828Z:cb7060c0-8966-4c2e-b38d-3ccbb5b71714" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Date": [ - "Fri, 21 Feb 2020 01:50:10 GMT" + "Thu, 22 Oct 2020 23:58:27 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:53:25.4136438-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"11cb0e69-f860-43bb-b13d-4db4d6654534\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/11cb0e69-f860-43bb-b13d-4db4d6654534?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xMWNiMGU2OS1mODYwLTQzYmItYjEzZC00ZGI0ZDY2NTQ1MzQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4168" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" + ], + "x-ms-request-id": [ + "0f28be9f-dd4e-4f74-b599-9de544647d8b" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "cf20f7cd-d9d5-454c-91ef-5a013a9c10ec" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201022T235858Z:cf20f7cd-d9d5-454c-91ef-5a013a9c10ec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 23:58:58 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:53:25.4136438-07:00\",\r\n \"endTime\": \"2020-10-22T16:58:40.6523124-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"11cb0e69-f860-43bb-b13d-4db4d6654534\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108/applications/galleryPsTestGalleryApplication2971/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg4NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxMDgvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24yOTcxL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGalleryApplicationVersion3Min;1998,Microsoft.Compute/GetGalleryApplicationVersion30Min;9998" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "62107b1d-091c-4dc2-a60c-7cec226c32ab" + "3eb7d335-2323-400d-8537-634e507fcc02" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11985" ], "x-ms-correlation-request-id": [ - "98b53895-e23a-472e-ae1d-cbea2ba85fca" + "d1141138-f65f-40aa-b00f-bf7b853f0db4" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015011Z:98b53895-e23a-472e-ae1d-cbea2ba85fca" + "WESTUS:20201022T235859Z:d1141138-f65f-40aa-b00f-bf7b853f0db4" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:58:59 GMT" + ], "Content-Length": [ - "1164" + "1320" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1478,65 +1657,68 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"fileName\": \"test.zip\",\r\n \"mediaLink\": \"https://saforgallery6204.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=QxJqBvH83oqFZHN9OoZnG6LIh3OLNHTANam7o03jCvI%3D&st=2020-02-20T01%3A44%3A26Z&se=2020-02-23T01%3A44%3A26Z&sp=rw\"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-02-20T17:45:36.5193004-08:00\",\r\n \"endOfLifeDate\": \"2020-03-01T00:00:00-08:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108/applications/galleryPsTestGalleryApplication2971/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery683.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=rIL9D%2FBdVGCRXcufkf%2B98rmGfFYIV%2FGakS%2FI70WJEzw%3D&st=2020-10-21T23%3A52%3A14Z&se=2020-10-24T23%3A52%3A14Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-10-22T16:53:25.4136438-07:00\",\r\n \"endOfLifeDate\": \"2020-11-01T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTkyL2FwcGxpY2F0aW9ucy9nYWxsZXJ5UHNUZXN0R2FsbGVyeUFwcGxpY2F0aW9uNDUwNS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108/applications/galleryPsTestGalleryApplication2971/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg4NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxMDgvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24yOTcxL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "078c0b58-6d29-49cc-91ca-02262382de7d" + "476b8dd1-68d8-4b40-8a5d-90750f555be3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:50:10 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGalleryApplicationVersion3Min;1997,Microsoft.Compute/GetGalleryApplicationVersion30Min;9997" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "81f94175-5cc8-4c3e-a1ff-f882aca919f9" + "b7600ae7-0194-44a0-8089-0cd0f2f65381" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11984" ], "x-ms-correlation-request-id": [ - "b807e508-f674-4386-b3d0-dcae5cf8c93d" + "b4283db1-9c60-457f-ae96-f07478c8d84b" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015011Z:b807e508-f674-4386-b3d0-dcae5cf8c93d" + "WESTUS:20201022T235859Z:b4283db1-9c60-457f-ae96-f07478c8d84b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:58:59 GMT" + ], "Content-Length": [ - "1164" + "1320" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1545,59 +1727,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"fileName\": \"test.zip\",\r\n \"mediaLink\": \"https://saforgallery6204.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=QxJqBvH83oqFZHN9OoZnG6LIh3OLNHTANam7o03jCvI%3D&st=2020-02-20T01%3A44%3A26Z&se=2020-02-23T01%3A44%3A26Z&sp=rw\"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-02-20T17:45:36.5193004-08:00\",\r\n \"endOfLifeDate\": \"2020-03-01T00:00:00-08:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108/applications/galleryPsTestGalleryApplication2971/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery683.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=rIL9D%2FBdVGCRXcufkf%2B98rmGfFYIV%2FGakS%2FI70WJEzw%3D&st=2020-10-21T23%3A52%3A14Z&se=2020-10-24T23%3A52%3A14Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-10-22T16:53:25.4136438-07:00\",\r\n \"endOfLifeDate\": \"2020-11-01T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTkyL2FwcGxpY2F0aW9ucy9nYWxsZXJ5UHNUZXN0R2FsbGVyeUFwcGxpY2F0aW9uNDUwNS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108/applications/galleryPsTestGalleryApplication2971/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg4NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxMDgvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24yOTcxL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:52:43 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGalleryApplicationVersion3Min;1999,Microsoft.Compute/GetGalleryApplicationVersion30Min;9995" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "a7c2d57b-461f-4f93-b1d3-ee5ce3770788" + "a2172e97-ecbf-442c-ba90-cd7e9a004edb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11976" ], "x-ms-correlation-request-id": [ - "2296b284-218b-4330-877c-d9acadc1b9f1" + "92faee8d-34af-4f60-b298-92d5d5572823" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015244Z:2296b284-218b-4330-877c-d9acadc1b9f1" + "WESTUS:20201023T000201Z:92faee8d-34af-4f60-b298-92d5d5572823" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:02:01 GMT" + ], "Content-Length": [ - "1164" + "1320" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1606,65 +1791,68 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"fileName\": \"test.zip\",\r\n \"mediaLink\": \"https://saforgallery6204.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=QxJqBvH83oqFZHN9OoZnG6LIh3OLNHTANam7o03jCvI%3D&st=2020-02-20T01%3A44%3A26Z&se=2020-02-23T01%3A44%3A26Z&sp=rw\"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-02-20T17:45:36.5193004-08:00\",\r\n \"endOfLifeDate\": \"2020-05-30T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108/applications/galleryPsTestGalleryApplication2971/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery683.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=rIL9D%2FBdVGCRXcufkf%2B98rmGfFYIV%2FGakS%2FI70WJEzw%3D&st=2020-10-21T23%3A52%3A14Z&se=2020-10-24T23%3A52%3A14Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-10-22T16:53:25.4136438-07:00\",\r\n \"endOfLifeDate\": \"2021-01-30T00:00:00-08:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTkyL2FwcGxpY2F0aW9ucy9nYWxsZXJ5UHNUZXN0R2FsbGVyeUFwcGxpY2F0aW9uNDUwNS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108/applications/galleryPsTestGalleryApplication2971/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg4NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxMDgvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24yOTcxL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ce807fd7-4873-4f7c-b48c-fe26d9ccc1c9" + "8bd2545e-76a1-4768-8480-453638b0cffd" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:52:43 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGalleryApplicationVersion3Min;1998,Microsoft.Compute/GetGalleryApplicationVersion30Min;9994" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "599804c6-fc22-4867-a0a0-00380d66074d" + "3878a316-5634-4da2-b68b-0f23f360a3d9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11975" ], "x-ms-correlation-request-id": [ - "c88fa336-8899-4f47-88dd-829617ed440e" + "cb327550-1074-420d-80cc-7892125c5f90" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015244Z:c88fa336-8899-4f47-88dd-829617ed440e" + "WESTUS:20201023T000201Z:cb327550-1074-420d-80cc-7892125c5f90" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:02:01 GMT" + ], "Content-Length": [ - "1164" + "1320" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1673,65 +1861,68 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"fileName\": \"test.zip\",\r\n \"mediaLink\": \"https://saforgallery6204.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=QxJqBvH83oqFZHN9OoZnG6LIh3OLNHTANam7o03jCvI%3D&st=2020-02-20T01%3A44%3A26Z&se=2020-02-23T01%3A44%3A26Z&sp=rw\"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-02-20T17:45:36.5193004-08:00\",\r\n \"endOfLifeDate\": \"2020-05-30T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108/applications/galleryPsTestGalleryApplication2971/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery683.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=rIL9D%2FBdVGCRXcufkf%2B98rmGfFYIV%2FGakS%2FI70WJEzw%3D&st=2020-10-21T23%3A52%3A14Z&se=2020-10-24T23%3A52%3A14Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-10-22T16:53:25.4136438-07:00\",\r\n \"endOfLifeDate\": \"2021-01-30T00:00:00-08:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0?$expand=ReplicationStatus&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTkyL2FwcGxpY2F0aW9ucy9nYWxsZXJ5UHNUZXN0R2FsbGVyeUFwcGxpY2F0aW9uNDUwNS92ZXJzaW9ucy8xLjAuMD8kZXhwYW5kPVJlcGxpY2F0aW9uU3RhdHVzJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108/applications/galleryPsTestGalleryApplication2971/versions/1.0.0?$expand=ReplicationStatus&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg4NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxMDgvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24yOTcxL3ZlcnNpb25zLzEuMC4wPyRleHBhbmQ9UmVwbGljYXRpb25TdGF0dXMmYXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d27c488d-1154-41a6-9ca4-32eb518639a4" + "d2a8105b-c1f2-4681-83f9-5a7a69d8ce4a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:50:11 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGalleryApplicationVersion3Min;1996,Microsoft.Compute/GetGalleryApplicationVersion30Min;9996" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "7c3fe430-6d77-4d91-a98d-2a72579bb944" + "76d688a3-4164-42c6-a4ee-a1899aa9800e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11983" ], "x-ms-correlation-request-id": [ - "5ac362a7-1ac8-46fc-9bf5-832f1d1ff218" + "ce47bb7f-f25e-47ed-9b49-2cea5953a0e0" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015011Z:5ac362a7-1ac8-46fc-9bf5-832f1d1ff218" + "WESTUS:20201022T235859Z:ce47bb7f-f25e-47ed-9b49-2cea5953a0e0" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:58:59 GMT" + ], "Content-Length": [ - "1388" + "1544" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1740,59 +1931,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"fileName\": \"test.zip\",\r\n \"mediaLink\": \"https://saforgallery6204.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=QxJqBvH83oqFZHN9OoZnG6LIh3OLNHTANam7o03jCvI%3D&st=2020-02-20T01%3A44%3A26Z&se=2020-02-23T01%3A44%3A26Z&sp=rw\"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-02-20T17:45:36.5193004-08:00\",\r\n \"endOfLifeDate\": \"2020-03-01T00:00:00-08:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"replicationStatus\": {\r\n \"aggregatedState\": \"Completed\",\r\n \"summary\": [\r\n {\r\n \"region\": \"southeastasia\",\r\n \"state\": \"Completed\",\r\n \"progress\": 100\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/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108/applications/galleryPsTestGalleryApplication2971/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery683.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=rIL9D%2FBdVGCRXcufkf%2B98rmGfFYIV%2FGakS%2FI70WJEzw%3D&st=2020-10-21T23%3A52%3A14Z&se=2020-10-24T23%3A52%3A14Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-10-22T16:53:25.4136438-07:00\",\r\n \"endOfLifeDate\": \"2020-11-01T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"replicationStatus\": {\r\n \"aggregatedState\": \"Completed\",\r\n \"summary\": [\r\n {\r\n \"region\": \"southeastasia\",\r\n \"state\": \"Completed\",\r\n \"progress\": 100\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/01072ea5-4243-4f5a-bb8b-537afc9ec2d0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wMTA3MmVhNS00MjQzLTRmNWEtYmI4Yi01MzdhZmM5ZWMyZDA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/0c0f3069-73da-4392-9fd8-5ab171025a78?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wYzBmMzA2OS03M2RhLTQzOTItOWZkOC01YWIxNzEwMjVhNzg/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:50:41 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4166" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "f1e14225-e8b4-46e0-818a-3569359ef812" + "23d3b77d-0833-4b5f-87a6-f69314c8d6a2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11982" ], "x-ms-correlation-request-id": [ - "59a9aa74-96c4-4b42-8cee-1e5eb712158a" + "a20a23d1-cdd0-4bc6-9847-d1edd0f548ad" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015042Z:59a9aa74-96c4-4b42-8cee-1e5eb712158a" + "WESTUS:20201022T235930Z:a20a23d1-cdd0-4bc6-9847-d1edd0f548ad" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:59:29 GMT" + ], "Content-Length": [ - "134" + "133" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1801,59 +1995,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:50:11.7674384-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"01072ea5-4243-4f5a-bb8b-537afc9ec2d0\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:58:59.699479-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0c0f3069-73da-4392-9fd8-5ab171025a78\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/01072ea5-4243-4f5a-bb8b-537afc9ec2d0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wMTA3MmVhNS00MjQzLTRmNWEtYmI4Yi01MzdhZmM5ZWMyZDA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/0c0f3069-73da-4392-9fd8-5ab171025a78?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wYzBmMzA2OS03M2RhLTQzOTItOWZkOC01YWIxNzEwMjVhNzg/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:51:12 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4163" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "92761fce-1eea-419e-84ab-267eae5469bb" + "8cf29c9d-c5be-4edf-8b5b-06ca8a96a731" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11981" ], "x-ms-correlation-request-id": [ - "2bedb08a-9eb2-46fc-b148-824b8efae4a8" + "fe54b013-f690-45f0-911f-1dd1b0d5d0f4" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015112Z:2bedb08a-9eb2-46fc-b148-824b8efae4a8" + "WESTUS:20201023T000000Z:fe54b013-f690-45f0-911f-1dd1b0d5d0f4" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:59:59 GMT" + ], "Content-Length": [ - "134" + "133" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1862,59 +2059,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:50:11.7674384-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"01072ea5-4243-4f5a-bb8b-537afc9ec2d0\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:58:59.699479-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0c0f3069-73da-4392-9fd8-5ab171025a78\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/01072ea5-4243-4f5a-bb8b-537afc9ec2d0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wMTA3MmVhNS00MjQzLTRmNWEtYmI4Yi01MzdhZmM5ZWMyZDA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/0c0f3069-73da-4392-9fd8-5ab171025a78?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wYzBmMzA2OS03M2RhLTQzOTItOWZkOC01YWIxNzEwMjVhNzg/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:51:42 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;4160" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "cfba5ed1-03d8-4f0c-95df-32767dc9aa43" + "5a8a049b-999b-48ae-943d-f130f526b519" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11980" ], "x-ms-correlation-request-id": [ - "e54776f0-3bcf-42d7-86a4-12a81cd56308" + "69a08e2e-7a28-4276-8355-c3de6a11990f" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015142Z:e54776f0-3bcf-42d7-86a4-12a81cd56308" + "WESTUS:20201023T000030Z:69a08e2e-7a28-4276-8355-c3de6a11990f" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:00:29 GMT" + ], "Content-Length": [ - "134" + "133" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1923,59 +2123,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:50:11.7674384-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"01072ea5-4243-4f5a-bb8b-537afc9ec2d0\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:58:59.699479-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0c0f3069-73da-4392-9fd8-5ab171025a78\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/01072ea5-4243-4f5a-bb8b-537afc9ec2d0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wMTA3MmVhNS00MjQzLTRmNWEtYmI4Yi01MzdhZmM5ZWMyZDA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/0c0f3069-73da-4392-9fd8-5ab171025a78?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wYzBmMzA2OS03M2RhLTQzOTItOWZkOC01YWIxNzEwMjVhNzg/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:52:13 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;4157" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "b23341ab-8e15-4073-8456-70f9bd0b03b5" + "383723c3-e97b-421b-8f00-44af24478cf5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11979" ], "x-ms-correlation-request-id": [ - "176793ab-e8f9-4cff-8677-8e7f7fe8d5d6" + "7847064b-a32b-47d5-b68e-50369a9b3f30" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015213Z:176793ab-e8f9-4cff-8677-8e7f7fe8d5d6" + "WESTUS:20201023T000100Z:7847064b-a32b-47d5-b68e-50369a9b3f30" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:01:00 GMT" + ], "Content-Length": [ - "134" + "133" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1984,59 +2187,126 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:50:11.7674384-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"01072ea5-4243-4f5a-bb8b-537afc9ec2d0\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:58:59.699479-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0c0f3069-73da-4392-9fd8-5ab171025a78\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/01072ea5-4243-4f5a-bb8b-537afc9ec2d0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wMTA3MmVhNS00MjQzLTRmNWEtYmI4Yi01MzdhZmM5ZWMyZDA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/0c0f3069-73da-4392-9fd8-5ab171025a78?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wYzBmMzA2OS03M2RhLTQzOTItOWZkOC01YWIxNzEwMjVhNzg/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:52:43 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;4154" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" + ], + "x-ms-request-id": [ + "eb2cd9ee-f9b9-40d6-b5e7-4b08055a88f5" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-correlation-request-id": [ + "11ea57c8-2093-43d7-9cb6-1419a66a7e6d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201023T000131Z:11ea57c8-2093-43d7-9cb6-1419a66a7e6d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 23 Oct 2020 00:01:31 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:58:59.699479-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0c0f3069-73da-4392-9fd8-5ab171025a78\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/0c0f3069-73da-4392-9fd8-5ab171025a78?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wYzBmMzA2OS03M2RhLTQzOTItOWZkOC01YWIxNzEwMjVhNzg/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4152" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "8e8128f8-ce84-4fa3-947c-3713db8c27b6" + "06306137-ac0f-4b4a-96c4-989e356fcd50" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11977" ], "x-ms-correlation-request-id": [ - "825e16d4-3c03-4a7d-9e39-76df4c3224e7" + "174af061-1562-41f8-b406-61cf51e06e22" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015243Z:825e16d4-3c03-4a7d-9e39-76df4c3224e7" + "WESTUS:20201023T000201Z:174af061-1562-41f8-b406-61cf51e06e22" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:02:01 GMT" + ], "Content-Length": [ - "184" + "183" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2045,127 +2315,133 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:50:11.7674384-08:00\",\r\n \"endTime\": \"2020-02-20T17:52:26.8910558-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"01072ea5-4243-4f5a-bb8b-537afc9ec2d0\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:58:59.699479-07:00\",\r\n \"endTime\": \"2020-10-22T17:01:59.8582548-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0c0f3069-73da-4392-9fd8-5ab171025a78\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTkyL2FwcGxpY2F0aW9ucy9nYWxsZXJ5UHNUZXN0R2FsbGVyeUFwcGxpY2F0aW9uNDUwNS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108/applications/galleryPsTestGalleryApplication2971/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg4NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxMDgvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24yOTcxL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e8765dd1-d326-40a8-9409-977461f80a7f" + "18072f64-ffe6-4629-80f3-30449bd274f9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:52:44 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/4564a0e2-fde0-4b58-ac5f-a725c4da5d66?monitor=true&api-version=2019-12-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/1faa8716-0e22-43c1-9159-d3363299049e?monitor=true&api-version=2020-09-30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/4564a0e2-fde0-4b58-ac5f-a725c4da5d66?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/1faa8716-0e22-43c1-9159-d3363299049e?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/DeleteGalleryApplicationVersion3Min;149,Microsoft.Compute/DeleteGalleryApplicationVersion30Min;999" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "4564a0e2-fde0-4b58-ac5f-a725c4da5d66" + "1faa8716-0e22-43c1-9159-d3363299049e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "e685de63-c46b-4bdc-a90c-68f3d08bc9d3" + "c1d7fbbb-1b52-43a5-b2b6-7362622a651b" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015244Z:e685de63-c46b-4bdc-a90c-68f3d08bc9d3" + "WESTUS:20201023T000202Z:c1d7fbbb-1b52-43a5-b2b6-7362622a651b" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 23 Oct 2020 00:02:01 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/4564a0e2-fde0-4b58-ac5f-a725c4da5d66?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy80NTY0YTBlMi1mZGUwLTRiNTgtYWM1Zi1hNzI1YzRkYTVkNjY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/1faa8716-0e22-43c1-9159-d3363299049e?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xZmFhODcxNi0wZTIyLTQzYzEtOTE1OS1kMzM2MzI5OTA0OWU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:53:14 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4149" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "5e8fd632-0875-4146-9354-ea383d81006a" + "e8a20ba4-df6e-4cab-ae05-7d2bb02cb44b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11974" ], "x-ms-correlation-request-id": [ - "74d0cdf9-5b13-4f82-bd7f-458cfc847932" + "b97f0c07-8493-4f26-976f-c2dfcc192238" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015315Z:74d0cdf9-5b13-4f82-bd7f-458cfc847932" + "WESTUS:20201023T000232Z:b97f0c07-8493-4f26-976f-c2dfcc192238" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:02:32 GMT" + ], "Content-Length": [ "134" ], @@ -2176,57 +2452,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:52:44.4846028-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4564a0e2-fde0-4b58-ac5f-a725c4da5d66\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T17:02:01.9520069-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1faa8716-0e22-43c1-9159-d3363299049e\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/4564a0e2-fde0-4b58-ac5f-a725c4da5d66?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy80NTY0YTBlMi1mZGUwLTRiNTgtYWM1Zi1hNzI1YzRkYTVkNjY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/1faa8716-0e22-43c1-9159-d3363299049e?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xZmFhODcxNi0wZTIyLTQzYzEtOTE1OS1kMzM2MzI5OTA0OWU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:53:45 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4146" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "1b76331c-19e2-4c32-b2b6-2b76c8580633" + "16c5a267-80f4-45a7-88f1-795658c2352a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11973" ], "x-ms-correlation-request-id": [ - "88a56214-def1-4a38-8cbf-9ee3694a8c53" + "26aa3687-1831-48d0-811f-547b3279d81a" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015345Z:88a56214-def1-4a38-8cbf-9ee3694a8c53" + "WESTUS:20201023T000302Z:26aa3687-1831-48d0-811f-547b3279d81a" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:03:02 GMT" + ], "Content-Length": [ "134" ], @@ -2237,57 +2516,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:52:44.4846028-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4564a0e2-fde0-4b58-ac5f-a725c4da5d66\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T17:02:01.9520069-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1faa8716-0e22-43c1-9159-d3363299049e\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/4564a0e2-fde0-4b58-ac5f-a725c4da5d66?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy80NTY0YTBlMi1mZGUwLTRiNTgtYWM1Zi1hNzI1YzRkYTVkNjY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/1faa8716-0e22-43c1-9159-d3363299049e?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xZmFhODcxNi0wZTIyLTQzYzEtOTE1OS1kMzM2MzI5OTA0OWU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:54:15 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4143" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "27ed5b44-4b4f-4f7f-9278-5ea3a1337049" + "300dcd6f-7b4a-43d8-bcb6-a385d89d41dc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11972" ], "x-ms-correlation-request-id": [ - "d52cd7db-be5a-4c29-85ab-b96accef2a60" + "b033c79b-3955-41c6-9064-8f3befa2c201" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015416Z:d52cd7db-be5a-4c29-85ab-b96accef2a60" + "WESTUS:20201023T000332Z:b033c79b-3955-41c6-9064-8f3befa2c201" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:03:32 GMT" + ], "Content-Length": [ "184" ], @@ -2298,251 +2580,263 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:52:44.4846028-08:00\",\r\n \"endTime\": \"2020-02-20T17:54:14.7023209-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4564a0e2-fde0-4b58-ac5f-a725c4da5d66\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T17:02:01.9520069-07:00\",\r\n \"endTime\": \"2020-10-22T17:03:32.1563006-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1faa8716-0e22-43c1-9159-d3363299049e\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/4564a0e2-fde0-4b58-ac5f-a725c4da5d66?monitor=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy80NTY0YTBlMi1mZGUwLTRiNTgtYWM1Zi1hNzI1YzRkYTVkNjY/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/1faa8716-0e22-43c1-9159-d3363299049e?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xZmFhODcxNi0wZTIyLTQzYzEtOTE1OS1kMzM2MzI5OTA0OWU/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:54:15 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4142" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "0801fa84-796d-492f-8e94-faf9a9644143" + "d67028e3-a399-41de-868a-be0e1efc155d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11971" ], "x-ms-correlation-request-id": [ - "31de8dc2-8650-434b-ae03-12b4634f34ac" + "f4956cb7-555c-48a7-9799-2c13af3f8e24" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015416Z:31de8dc2-8650-434b-ae03-12b4634f34ac" + "WESTUS:20201023T000333Z:f4956cb7-555c-48a7-9799-2c13af3f8e24" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 23 Oct 2020 00:03:32 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTkyL2FwcGxpY2F0aW9ucy9nYWxsZXJ5UHNUZXN0R2FsbGVyeUFwcGxpY2F0aW9uNDUwNT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108/applications/galleryPsTestGalleryApplication2971?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg4NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxMDgvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24yOTcxP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a049d923-ca79-42b2-98df-d6341d34c962" + "4959d876-f3a3-4f73-8c73-f655d960050a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:54:15 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/DeleteGalleryApplication3Min;49,Microsoft.Compute/DeleteGalleryApplication30Min;299" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "9e907064-3448-498b-982c-47d14800e4a6" + "9057edd2-c546-4fc9-83d6-fe76a4148e61" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14998" ], "x-ms-correlation-request-id": [ - "137fb1ac-b09f-4405-a9ef-ab7d51b24d81" + "217c80cd-3e24-4c0a-b591-026326d50f25" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015416Z:137fb1ac-b09f-4405-a9ef-ab7d51b24d81" + "WESTUS:20201023T000333Z:217c80cd-3e24-4c0a-b591-026326d50f25" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 23 Oct 2020 00:03:32 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTkyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg4NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxMDg/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "838e80f0-5436-4c84-9414-61df05010ee5" + "0d1ed2fa-c077-4c9f-ac00-d13b4c1251c1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:54:17 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/082590a0-1611-4a32-b0ff-e9c90cee25bc?monitor=true&api-version=2019-12-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/55959e33-e89e-4bb4-bd38-7951a7ba8f7c?monitor=true&api-version=2020-09-30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/082590a0-1611-4a32-b0ff-e9c90cee25bc?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/55959e33-e89e-4bb4-bd38-7951a7ba8f7c?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;299" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "082590a0-1611-4a32-b0ff-e9c90cee25bc" + "55959e33-e89e-4bb4-bd38-7951a7ba8f7c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "14997" ], "x-ms-correlation-request-id": [ - "06b55df8-5b42-4640-8adc-ede024b668c1" + "33630b3d-9c5a-42b4-8b2f-68dac05f833b" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015418Z:06b55df8-5b42-4640-8adc-ede024b668c1" + "WESTUS:20201023T000334Z:33630b3d-9c5a-42b4-8b2f-68dac05f833b" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 23 Oct 2020 00:03:33 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/082590a0-1611-4a32-b0ff-e9c90cee25bc?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wODI1OTBhMC0xNjExLTRhMzItYjBmZi1lOWM5MGNlZTI1YmM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/55959e33-e89e-4bb4-bd38-7951a7ba8f7c?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy81NTk1OWUzMy1lODllLTRiYjQtYmQzOC03OTUxYTdiYThmN2M/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:54:48 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4139" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "e7a2dbeb-5a89-429b-b537-bfa69cbf3519" + "85446688-d7aa-4e51-9622-341dd5988f90" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11970" ], "x-ms-correlation-request-id": [ - "d37f3702-f720-46d4-b9a0-39055f8d26a1" + "1ed71471-245f-410b-98de-237c8d36e343" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015448Z:d37f3702-f720-46d4-b9a0-39055f8d26a1" + "WESTUS:20201023T000404Z:1ed71471-245f-410b-98de-237c8d36e343" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:04:04 GMT" + ], "Content-Length": [ - "183" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2551,62 +2845,65 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:54:17.874164-08:00\",\r\n \"endTime\": \"2020-02-20T17:54:18.8116546-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"082590a0-1611-4a32-b0ff-e9c90cee25bc\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T17:03:34.3282212-07:00\",\r\n \"endTime\": \"2020-10-22T17:03:35.0782221-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"55959e33-e89e-4bb4-bd38-7951a7ba8f7c\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/082590a0-1611-4a32-b0ff-e9c90cee25bc?monitor=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wODI1OTBhMC0xNjExLTRhMzItYjBmZi1lOWM5MGNlZTI1YmM/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/55959e33-e89e-4bb4-bd38-7951a7ba8f7c?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy81NTk1OWUzMy1lODllLTRiYjQtYmQzOC03OTUxYTdiYThmN2M/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:54:48 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4138" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "ceee266a-bea3-470c-b387-9000af05b7f0" + "468d1de1-0972-43b9-99f9-15d08fb15670" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11969" ], "x-ms-correlation-request-id": [ - "dd06834a-8af1-45cb-9b50-79eb4b72519c" + "1e8f298a-f236-4ade-b678-52546adeeb1f" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015448Z:dd06834a-8af1-45cb-9b50-79eb4b72519c" + "WESTUS:20201023T000404Z:1e8f298a-f236-4ade-b678-52546adeeb1f" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 23 Oct 2020 00:04:04 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -2615,14 +2912,14 @@ ], "Names": { "GalleryApplicationVersion_CRUD_Tests": [ - "galleryPsTestRg552", - "psTestSourceApplication2573", - "galleryPsTestGallery592", - "galleryPsTestGalleryApplication4505" + "galleryPsTestRg8861", + "psTestSourceApplication5878", + "galleryPsTestGallery5108", + "galleryPsTestGalleryApplication2971" ], "CreateApplicationMediaLink": [ - "saforgallery6204", - "asforgallery2013" + "saforgallery683", + "asforgallery5978" ] }, "Variables": { 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 7c8985b0b972..7cad6e27a637 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryApplication_CRUD_Tests.json +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryApplication_CRUD_Tests.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg5617?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU2MTc/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg115?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8f58b0a6-b7f6-42db-b98e-0026776f323f" + "f5aa0f93-8772-423f-9e46-1e6f5fa72619" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ @@ -29,23 +29,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:31:33 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "b47fe355-093c-48ec-a4a9-268774d188af" + "d19f66d4-403d-4cf0-8e8a-046c06e70f9e" ], "x-ms-correlation-request-id": [ - "b47fe355-093c-48ec-a4a9-268774d188af" + "d19f66d4-403d-4cf0-8e8a-046c06e70f9e" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013134Z:b47fe355-093c-48ec-a4a9-268774d188af" + "WESTUS:20201022T231024Z:d19f66d4-403d-4cf0-8e8a-046c06e70f9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -53,8 +50,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:10:23 GMT" + ], "Content-Length": [ - "198" + "196" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5617\",\r\n \"name\": \"galleryPsTestRg5617\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115\",\r\n \"name\": \"galleryPsTestRg115\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5617/providers/Microsoft.Compute/galleries/galleryPsTestGallery4482?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ0ODI/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTM0NT9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\"\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7b734109-974f-4bc2-ab9e-f7413edc2ea5" + "6a925eaa-c0bf-47fe-bad5-3d630d034c36" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -95,42 +95,45 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:31:43 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/0d716663-4c1c-4a7b-94f2-d435355967e2?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/1b466b9b-8e3c-46e9-8337-1f491c76245c?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;298" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "0d716663-4c1c-4a7b-94f2-d435355967e2" + "1b466b9b-8e3c-46e9-8337-1f491c76245c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "d0319eea-0e47-48d1-8ffd-70cb4481b170" + "56c77797-51b4-4ba7-82e4-ae4842aa32bf" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013144Z:d0319eea-0e47-48d1-8ffd-70cb4481b170" + "WESTUS:20201022T231037Z:56c77797-51b4-4ba7-82e4-ae4842aa32bf" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:10:36 GMT" + ], "Content-Length": [ - "514" + "578" ], "Content-Type": [ "application/json; charset=utf-8" @@ -139,57 +142,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery4482\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5617/providers/Microsoft.Compute/galleries/galleryPsTestGallery4482\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY4482\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery5345\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY5345\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Private\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/0d716663-4c1c-4a7b-94f2-d435355967e2?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wZDcxNjY2My00YzFjLTRhN2ItOTRmMi1kNDM1MzU1OTY3ZTI/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/1b466b9b-8e3c-46e9-8337-1f491c76245c?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xYjQ2NmI5Yi04ZTNjLTQ2ZTktODMzNy0xZjQ5MWM3NjI0NWM/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:32:13 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4193" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "406920a1-8a47-4eec-ac4f-d4521b6ae9c5" + "4e7995e8-2abd-4cc6-a6d9-c839c7377229" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "8d4e0545-d686-4ee4-8392-e5c1288cfb87" + "b1be55e6-7cb0-49fb-b5b1-e26da19a1618" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013214Z:8d4e0545-d686-4ee4-8392-e5c1288cfb87" + "WESTUS:20201022T231107Z:b1be55e6-7cb0-49fb-b5b1-e26da19a1618" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:11:06 GMT" + ], "Content-Length": [ "184" ], @@ -200,59 +206,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:31:42.6980165-08:00\",\r\n \"endTime\": \"2020-02-20T17:31:43.5884867-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0d716663-4c1c-4a7b-94f2-d435355967e2\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:10:35.1123505-07:00\",\r\n \"endTime\": \"2020-10-22T16:10:35.8311134-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1b466b9b-8e3c-46e9-8337-1f491c76245c\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5617/providers/Microsoft.Compute/galleries/galleryPsTestGallery4482?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ0ODI/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTM0NT9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:32:14 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;345,Microsoft.Compute/GetGallery30Min;2485" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "5207c62f-8c60-4941-8c3d-774dd8e6f774" + "559240ca-c681-41b0-ad62-1c7eabbb025a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "51468f3a-6868-4a4a-9318-5101b6a28dce" + "c9a98556-f4c8-41d8-8e77-0010777749c8" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013214Z:51468f3a-6868-4a4a-9318-5101b6a28dce" + "WESTUS:20201022T231107Z:c9a98556-f4c8-41d8-8e77-0010777749c8" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:11:07 GMT" + ], "Content-Length": [ - "515" + "514" ], "Content-Type": [ "application/json; charset=utf-8" @@ -261,26 +270,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery4482\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5617/providers/Microsoft.Compute/galleries/galleryPsTestGallery4482\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY4482\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery5345\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY5345\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5617/providers/Microsoft.Compute/galleries/galleryPsTestGallery4482/applications/galleryPsTestGalleryApplication66?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ0ODIvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb242Nj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345/applications/galleryPsTestGalleryApplication8396?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTM0NS9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjgzOTY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\",\r\n \"supportedOSType\": \"Windows\"\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3c8cc243-ae26-4b4c-906e-a3f92d092245" + "225c4488-2c19-4733-b87e-da9c8fe349c1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -293,39 +302,42 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:32:14 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateGalleryApplication3Min;149,Microsoft.Compute/CreateUpdateGalleryApplication30Min;747" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "0aed36e2-3e01-4d4e-b3bd-9d697b5e3d71" + "159ef9d7-0712-420f-9e59-03fa20830888" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "b44b9a9f-5792-4ab2-87a7-7c6eef1a2ea3" + "3e9d2bab-37b2-4976-9bb5-19426611cd31" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013215Z:b44b9a9f-5792-4ab2-87a7-7c6eef1a2ea3" + "WESTUS:20201022T231108Z:3e9d2bab-37b2-4976-9bb5-19426611cd31" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:11:07 GMT" + ], "Content-Length": [ - "630" + "633" ], "Content-Type": [ "application/json; charset=utf-8" @@ -334,26 +346,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication66\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5617/providers/Microsoft.Compute/galleries/galleryPsTestGallery4482/applications/galleryPsTestGalleryApplication66\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication8396\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345/applications/galleryPsTestGalleryApplication8396\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5617/providers/Microsoft.Compute/galleries/galleryPsTestGallery4482/applications/galleryPsTestGalleryApplication66?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ0ODIvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb242Nj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345/applications/galleryPsTestGalleryApplication8396?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTM0NS9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjgzOTY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"Updated description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\",\r\n \"supportedOSType\": \"Windows\"\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "35d25410-f11f-46e4-990a-80780a603b6e" + "f8357eb1-d129-4319-a9ab-cfeb27254283" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -366,39 +378,42 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:32:45 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateGalleryApplication3Min;148,Microsoft.Compute/CreateUpdateGalleryApplication30Min;746" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "3064a32e-0741-4208-b54a-8e24a6abca59" + "d82ae477-02ca-40ab-a6fd-d1429f1a2186" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "45c8fe48-bb9b-47c8-b93f-d53489a50ad5" + "0877d6d2-f03c-44f2-9667-bfcf3361415f" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013246Z:45c8fe48-bb9b-47c8-b93f-d53489a50ad5" + "WESTUS:20201022T231139Z:0877d6d2-f03c-44f2-9667-bfcf3361415f" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:11:38 GMT" + ], "Content-Length": [ - "606" + "609" ], "Content-Type": [ "application/json; charset=utf-8" @@ -407,59 +422,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication66\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5617/providers/Microsoft.Compute/galleries/galleryPsTestGallery4482/applications/galleryPsTestGalleryApplication66\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"Updated description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication8396\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345/applications/galleryPsTestGalleryApplication8396\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"Updated description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5617/providers/Microsoft.Compute/galleries/galleryPsTestGallery4482/applications/galleryPsTestGalleryApplication66?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ0ODIvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb242Nj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345/applications/galleryPsTestGalleryApplication8396?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTM0NS9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjgzOTY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:32:44 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGalleryApplication3Min;298,Microsoft.Compute/GetGalleryApplication30Min;1987" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "ce0dd273-bc60-4f19-bb4e-eb7fd8dd8070" + "b667a4e5-4de0-456f-bba5-67a036e8b2e3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "3099e776-ee9f-429c-8eaf-4d5b301bbf44" + "6fa8ec45-36f0-41ef-b14e-cab3128a9af4" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013245Z:3099e776-ee9f-429c-8eaf-4d5b301bbf44" + "WESTUS:20201022T231138Z:6fa8ec45-36f0-41ef-b14e-cab3128a9af4" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:11:37 GMT" + ], "Content-Length": [ - "630" + "633" ], "Content-Type": [ "application/json; charset=utf-8" @@ -468,65 +486,68 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication66\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5617/providers/Microsoft.Compute/galleries/galleryPsTestGallery4482/applications/galleryPsTestGalleryApplication66\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication8396\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345/applications/galleryPsTestGalleryApplication8396\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5617/providers/Microsoft.Compute/galleries/galleryPsTestGallery4482/applications/galleryPsTestGalleryApplication66?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ0ODIvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb242Nj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345/applications/galleryPsTestGalleryApplication8396?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTM0NS9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjgzOTY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "acdbcc98-de25-430b-bc23-9ec25e6835cf" + "0af66fef-8026-4466-a40e-b544436d5aae" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:32:45 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGalleryApplication3Min;297,Microsoft.Compute/GetGalleryApplication30Min;1986" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "810c17a2-6522-4760-a6dd-62ceda73590e" + "5467a309-046e-4c0d-8809-b7f856f076ab" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "43ae1152-d933-4b0e-8a56-ac4e51204ca9" + "f74c7f51-233f-44b9-b118-15ef77dea406" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013246Z:43ae1152-d933-4b0e-8a56-ac4e51204ca9" + "WESTUS:20201022T231138Z:f74c7f51-233f-44b9-b118-15ef77dea406" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:11:38 GMT" + ], "Content-Length": [ - "630" + "633" ], "Content-Type": [ "application/json; charset=utf-8" @@ -535,65 +556,68 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication66\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5617/providers/Microsoft.Compute/galleries/galleryPsTestGallery4482/applications/galleryPsTestGalleryApplication66\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication8396\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345/applications/galleryPsTestGalleryApplication8396\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5617/providers/Microsoft.Compute/galleries/galleryPsTestGallery4482/applications/galleryPsTestGalleryApplication66?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ0ODIvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb242Nj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345/applications/galleryPsTestGalleryApplication8396?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTM0NS9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjgzOTY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fd3244f5-e487-49a1-94c8-24af1c44e351" + "d270c6cb-161d-417b-a41c-760765086ea4" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:32:45 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGalleryApplication3Min;296,Microsoft.Compute/GetGalleryApplication30Min;1985" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "d76630d1-7553-4af8-9778-d6c882581449" + "a00440e9-54ef-432f-be65-a0ce2ee44b28" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "1a9d8147-f263-49c5-9bc6-8a72f270d1cb" + "b9b4db3c-8705-49c6-a536-7eb8f04f264b" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013246Z:1a9d8147-f263-49c5-9bc6-8a72f270d1cb" + "WESTUS:20201022T231139Z:b9b4db3c-8705-49c6-a536-7eb8f04f264b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:11:38 GMT" + ], "Content-Length": [ - "606" + "609" ], "Content-Type": [ "application/json; charset=utf-8" @@ -602,193 +626,202 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication66\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5617/providers/Microsoft.Compute/galleries/galleryPsTestGallery4482/applications/galleryPsTestGalleryApplication66\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"Updated description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication8396\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345/applications/galleryPsTestGalleryApplication8396\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"Updated description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5617/providers/Microsoft.Compute/galleries/galleryPsTestGallery4482/applications/galleryPsTestGalleryApplication66?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ0ODIvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb242Nj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345/applications/galleryPsTestGalleryApplication8396?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTM0NS9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjgzOTY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab6411a5-a5d6-461b-b2f8-c220bc1bad6b" + "5ff93915-a1ce-4a5c-89fe-f57374fbcc84" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:32:46 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/DeleteGalleryApplication3Min;49,Microsoft.Compute/DeleteGalleryApplication30Min;298" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "5a3a52ef-c62e-4177-9bb9-1a4200d4ccc2" + "b50d9f3b-f988-417d-b0e0-17ee28cb7c25" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "bd1f8455-a43a-4658-8497-5061b262f686" + "abe07287-6fe0-44fb-9acb-91e7cb5bfd53" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013247Z:bd1f8455-a43a-4658-8497-5061b262f686" + "WESTUS:20201022T231139Z:abe07287-6fe0-44fb-9acb-91e7cb5bfd53" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 22 Oct 2020 23:11:38 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5617/providers/Microsoft.Compute/galleries/galleryPsTestGallery4482?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ0ODI/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTM0NT9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "479ab535-c533-4507-9b04-d61a6d30e396" + "dd8ac6e5-68c4-49b6-9bf6-8faa08b899f2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:32:47 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/35934cfc-4c10-45bb-b940-745e7021ad46?monitor=true&api-version=2019-12-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/78b08b5e-6185-4dc5-8079-0a209db322a9?monitor=true&api-version=2020-09-30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/35934cfc-4c10-45bb-b940-745e7021ad46?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/78b08b5e-6185-4dc5-8079-0a209db322a9?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;298" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "35934cfc-4c10-45bb-b940-745e7021ad46" + "78b08b5e-6185-4dc5-8079-0a209db322a9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "475dbd39-0e66-4527-a8e9-5b82ce5e666a" + "d4ce9a0a-34f1-4af8-baaf-f9fde957b858" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013248Z:475dbd39-0e66-4527-a8e9-5b82ce5e666a" + "WESTUS:20201022T231140Z:d4ce9a0a-34f1-4af8-baaf-f9fde957b858" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 22 Oct 2020 23:11:40 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/35934cfc-4c10-45bb-b940-745e7021ad46?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8zNTkzNGNmYy00YzEwLTQ1YmItYjk0MC03NDVlNzAyMWFkNDY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/78b08b5e-6185-4dc5-8079-0a209db322a9?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy83OGIwOGI1ZS02MTg1LTRkYzUtODA3OS0wYTIwOWRiMzIyYTk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:33:19 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4191" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "20a2652a-0010-4462-8523-ac22d8cc95dd" + "c25eb790-9a4e-4f9f-8283-496e52b0c9f2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11994" ], "x-ms-correlation-request-id": [ - "ea3f6c47-2142-44c4-8b5f-bda1fe9c562a" + "87684c77-a972-4747-9165-e36cb7e55a54" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013319Z:ea3f6c47-2142-44c4-8b5f-bda1fe9c562a" + "WESTUS:20201022T231211Z:87684c77-a972-4747-9165-e36cb7e55a54" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:12:10 GMT" + ], "Content-Length": [ - "183" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -797,62 +830,65 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:32:48.1349226-08:00\",\r\n \"endTime\": \"2020-02-20T17:32:48.400525-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"35934cfc-4c10-45bb-b940-745e7021ad46\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:11:40.7226448-07:00\",\r\n \"endTime\": \"2020-10-22T16:11:41.0195276-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"78b08b5e-6185-4dc5-8079-0a209db322a9\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/35934cfc-4c10-45bb-b940-745e7021ad46?monitor=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8zNTkzNGNmYy00YzEwLTQ1YmItYjk0MC03NDVlNzAyMWFkNDY/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/78b08b5e-6185-4dc5-8079-0a209db322a9?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy83OGIwOGI1ZS02MTg1LTRkYzUtODA3OS0wYTIwOWRiMzIyYTk/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:33:19 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4190" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885" + "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" ], "x-ms-request-id": [ - "0533566a-fc0b-4511-9f3d-9515119e3e34" + "870a654d-f08a-4824-a8ae-098e92606308" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11993" ], "x-ms-correlation-request-id": [ - "d99b1534-5ab6-4bee-a6b8-af480733a9da" + "bc691707-dd6e-4e7c-a5b4-842bf218c52b" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013319Z:d99b1534-5ab6-4bee-a6b8-af480733a9da" + "WESTUS:20201022T231211Z:bc691707-dd6e-4e7c-a5b4-842bf218c52b" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 22 Oct 2020 23:12:10 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -861,9 +897,9 @@ ], "Names": { "GalleryApplication_CRUD_Tests": [ - "galleryPsTestRg5617", - "galleryPsTestGallery4482", - "galleryPsTestGalleryApplication66" + "galleryPsTestRg115", + "galleryPsTestGallery5345", + "galleryPsTestGalleryApplication8396" ] }, "Variables": { diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryImageVersion_CRUD_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryImageVersion_CRUD_Tests.json index 7a38bf49d46c..f609515928f4 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,59 +1,59 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "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=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ac31b603-694b-4d3e-a52a-6df7fb743733" + "524a4299-78ae-443f-ab53-5e18d9ecb670" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:05:00 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "19a6b8e7-2f9b-4b25-aea4-718323f85895_132307901257351999" + "19a6b8e7-2f9b-4b25-aea4-718323f85895_132468954105547249" ], "x-ms-request-id": [ - "0e6bcb20-c988-4ecc-a6bc-b36adc93a70b" + "e3d9d638-d033-48b2-ba82-2e31f985292e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11999" ], "x-ms-correlation-request-id": [ - "031a6e53-6691-461b-8180-f81b0cd25f26" + "ec30d52a-c04d-4a8a-976f-c7d0beabfcf3" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060501Z:031a6e53-6691-461b-8180-f81b0cd25f26" + "WESTUS:20201022T231222Z:ec30d52a-c04d-4a8a-976f-c7d0beabfcf3" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:12:21 GMT" + ], "Content-Length": [ "309" ], @@ -64,55 +64,52 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"eastus2\",\r\n \"name\": \"4.127.20180315\",\r\n \"id\": \"/Subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/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/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/galleryPsTestRg243?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0Mz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg9950?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg243\": \"2020-06-13 06:05:01Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg9950\": \"2020-10-22 23:12:22Z\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "41d5784b-c1a3-4033-b172-a8bc26f324dd" + "7537699c-aad6-4090-a89f-6dc743726f89" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "98" + "99" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:05:02 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "e3fce470-08fc-4c7e-a140-9cc14a26ee77" + "3251eb0d-fd65-438f-9d12-642f9ad94521" ], "x-ms-correlation-request-id": [ - "e3fce470-08fc-4c7e-a140-9cc14a26ee77" + "3251eb0d-fd65-438f-9d12-642f9ad94521" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060502Z:e3fce470-08fc-4c7e-a140-9cc14a26ee77" + "WESTUS:20201022T231223Z:3251eb0d-fd65-438f-9d12-642f9ad94521" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,8 +117,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:12:23 GMT" + ], "Content-Length": [ - "243" + "246" ], "Content-Type": [ "application/json; charset=utf-8" @@ -130,55 +130,52 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243\",\r\n \"name\": \"galleryPsTestRg243\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg243\": \"2020-06-13 06:05:01Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950\",\r\n \"name\": \"galleryPsTestRg9950\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg9950\": \"2020-10-22 23:12:22Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/galleryPsTestRg243?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0Mz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg9950?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg243\": \"2020-06-13 06:05:33Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg9950\": \"2020-10-22 23:12:55Z\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6656342b-6a43-44d6-9e90-1f2d3c19e9cb" + "fa471970-3a28-44b3-af21-d0171f4b6bde" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "98" + "99" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:05:32 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-request-id": [ - "ec82bb0e-b76e-4d02-aafa-2faafd5e0849" + "a156a281-5cd9-4a9e-aa69-40ab5bf23a20" ], "x-ms-correlation-request-id": [ - "ec82bb0e-b76e-4d02-aafa-2faafd5e0849" + "a156a281-5cd9-4a9e-aa69-40ab5bf23a20" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060533Z:ec82bb0e-b76e-4d02-aafa-2faafd5e0849" + "WESTUS:20201022T231255Z:a156a281-5cd9-4a9e-aa69-40ab5bf23a20" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -186,8 +183,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:12:55 GMT" + ], "Content-Length": [ - "243" + "246" ], "Content-Type": [ "application/json; charset=utf-8" @@ -196,25 +196,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243\",\r\n \"name\": \"galleryPsTestRg243\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg243\": \"2020-06-13 06:05:33Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950\",\r\n \"name\": \"galleryPsTestRg9950\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg9950\": \"2020-10-22 23:12:55Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Storage/storageAccounts/saforgallery5476?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3NhZm9yZ2FsbGVyeTU0NzY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Storage/storageAccounts/saforgallery3821?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnkzODIxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "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": [ - "297d2226-fe35-4725-aff0-3af708904008" + "0ced650a-3c4e-42b4-9c27-d4a15194d163" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ], "Content-Type": [ @@ -228,62 +228,62 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:05:04 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Storage/locations/eastus2/asyncoperations/90a590a8-604a-4ac3-9630-44d047d0d0f1?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Storage/locations/eastus2/asyncoperations/3f576258-4958-4682-9407-9782624fc6bf?monitor=true&api-version=2015-06-15" ], "Retry-After": [ "17" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "90a590a8-604a-4ac3-9630-44d047d0d0f1" + "3f576258-4958-4682-9407-9782624fc6bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "c2a5b1f7-1608-4dd2-8f4a-a778e633a60c" + "6c9955dd-0fdc-4140-bb7f-98090a4e739c" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060505Z:c2a5b1f7-1608-4dd2-8f4a-a778e633a60c" + "WESTUS:20201022T231227Z:6c9955dd-0fdc-4140-bb7f-98090a4e739c" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 22 Oct 2020 23:12:27 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Storage/locations/eastus2/asyncoperations/90a590a8-604a-4ac3-9630-44d047d0d0f1?monitor=true&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMi9hc3luY29wZXJhdGlvbnMvOTBhNTkwYTgtNjA0YS00YWMzLTk2MzAtNDRkMDQ3ZDBkMGYxP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Storage/locations/eastus2/asyncoperations/3f576258-4958-4682-9407-9782624fc6bf?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMi9hc3luY29wZXJhdGlvbnMvM2Y1NzYyNTgtNDk1OC00NjgyLTk0MDctOTc4MjYyNGZjNmJmP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ] }, @@ -291,33 +291,33 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:05:21 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "4a02ea82-c867-420b-b405-1112411a9845" + "1f615557-b640-4a77-9b73-6b04f4cf77ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-correlation-request-id": [ - "cec71094-328e-497b-8a87-6d0da1125843" + "b71c7a34-df3a-410e-89d4-a7c73cd44291" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060522Z:cec71094-328e-497b-8a87-6d0da1125843" + "WESTUS:20201022T231244Z:b71c7a34-df3a-410e-89d4-a7c73cd44291" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:12:44 GMT" + ], "Content-Length": [ "89" ], @@ -332,21 +332,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "950da9c8-c41b-4849-b172-1251602a9f64" + "b4520f08-9726-40d8-8398-1818808de61e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ] }, @@ -354,35 +354,35 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:05:31 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "59ea3525-d5fb-4c67-a078-9a55c42d0c96" + "2b5a84b4-ccaa-4bbe-a5c4-2919421c5463" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-correlation-request-id": [ - "eec59d25-3d80-4f19-9574-f4baac04aed3" + "85990e2b-9d3d-422e-94cc-4e5915701bad" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060532Z:eec59d25-3d80-4f19-9574-f4baac04aed3" + "WESTUS:20201022T231254Z:85990e2b-9d3d-422e-94cc-4e5915701bad" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:12:54 GMT" + ], "Content-Length": [ - "764" + "765" ], "Content-Type": [ "application/json" @@ -391,25 +391,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Storage/storageAccounts/saforgallery5476\",\r\n \"name\": \"saforgallery5476\",\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\": \"2020-06-13T06:05:04.7476458Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery5476.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery5476.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery5476.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery5476.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/galleryPsTestRg9950/providers/Microsoft.Storage/storageAccounts/saforgallery3821\",\r\n \"name\": \"saforgallery3821\",\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\": \"2020-10-22T23:12:26.7229991Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery3821.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery3821.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery3821.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery3821.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/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Storage/storageAccounts/saforgallery5476?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3NhZm9yZ2FsbGVyeTU0NzY/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Storage/storageAccounts/saforgallery3821?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnkzODIxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b5a1c459-6f1a-40ed-89b2-0a6f9bcea3fc" + "aaec5fb1-e7b1-47d1-bf4c-e87361517497" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ] }, @@ -417,35 +417,35 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:05:31 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "8ef47fd1-2dbb-4375-8c5c-c1c3eb782aea" + "56de594c-d2f9-4b04-9a62-717aac0e9ad8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-correlation-request-id": [ - "eb1e1128-552e-4050-9240-a9027870d4d0" + "27ff3ea4-e0d0-478b-a04e-82a072623f07" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060532Z:eb1e1128-552e-4050-9240-a9027870d4d0" + "WESTUS:20201022T231254Z:27ff3ea4-e0d0-478b-a04e-82a072623f07" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:12:54 GMT" + ], "Content-Length": [ - "752" + "753" ], "Content-Type": [ "application/json" @@ -454,25 +454,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Storage/storageAccounts/saforgallery5476\",\r\n \"name\": \"saforgallery5476\",\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\": \"2020-06-13T06:05:04.7476458Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery5476.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery5476.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery5476.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery5476.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/galleryPsTestRg9950/providers/Microsoft.Storage/storageAccounts/saforgallery3821\",\r\n \"name\": \"saforgallery3821\",\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\": \"2020-10-22T23:12:26.7229991Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery3821.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery3821.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery3821.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery3821.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/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/publicIPAddresses/pip6201?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwNjIwMT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/publicIPAddresses/pip6143?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDYxNDM/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8804\"\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\": \"dn6774\"\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": [ - "7fb8384d-4d61-41c7-98cc-f2d886a343d1" + "ebf931e7-ca8d-4a6a-95b1-97e5cd47bf44" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ], "Content-Type": [ @@ -486,48 +486,48 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:05:35 GMT" - ], "Pragma": [ "no-cache" ], "Retry-After": [ "1" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "b7dedcfc-6fdd-4c15-8c06-c689b92e9696" + "7532e2a6-88ab-4d7a-964a-8263d378ac81" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/b7dedcfc-6fdd-4c15-8c06-c689b92e9696?api-version=2019-09-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Network/locations/eastus2/operations/7532e2a6-88ab-4d7a-964a-8263d378ac81?api-version=2019-09-01" ], "x-ms-correlation-request-id": [ - "8e9f75bf-fa20-4595-9416-c907381a7295" + "cece5f3b-ca70-4b6c-a536-77f8d86b6f26" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "0608508a-4f25-488f-8910-7221bb6053e0" + "793142d6-0a8a-43b4-ad2f-ef2a55d422af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060536Z:8e9f75bf-fa20-4595-9416-c907381a7295" + "WESTUS:20201022T231304Z:cece5f3b-ca70-4b6c-a536-77f8d86b6f26" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:13:04 GMT" + ], "Content-Length": [ - "762" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -536,19 +536,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pip6201\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/publicIPAddresses/pip6201\",\r\n \"etag\": \"W/\\\"68deff60-75b8-4484-a46e-2402866a4908\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"90f0e444-9702-4d06-869a-1c171377e680\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8804\",\r\n \"fqdn\": \"dn8804.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\": \"pip6143\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/publicIPAddresses/pip6143\",\r\n \"etag\": \"W/\\\"281a13fc-bcd3-47cf-ae97-e63067e556a8\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ef04c573-631f-41c6-ae52-33f94dbe81e3\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn6774\",\r\n \"fqdn\": \"dn6774.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/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/b7dedcfc-6fdd-4c15-8c06-c689b92e9696?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2I3ZGVkY2ZjLTZmZGQtNGMxNS04YzA2LWM2ODliOTJlOTY5Nj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Network/locations/eastus2/operations/7532e2a6-88ab-4d7a-964a-8263d378ac81?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzc1MzJlMmE2LTg4YWItNGQ3YS05NjRhLTgyNjNkMzc4YWM4MT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ] }, @@ -556,37 +556,37 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:05:36 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "7e21e434-a598-4f14-bd71-a82b93be38c2" + "4e4768d4-fcb5-488d-adc3-9832138d300b" ], "x-ms-correlation-request-id": [ - "48722624-fec8-4e0d-8968-a2212030204b" + "f199f5d8-aa22-4480-bdfd-2f7218b4aa19" ], "x-ms-arm-service-request-id": [ - "6000c284-a202-4a76-812c-f35c6737aa45" + "71e92e3c-8d02-4f3c-bea4-3e6f4147f098" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060537Z:48722624-fec8-4e0d-8968-a2212030204b" + "WESTUS:20201022T231306Z:f199f5d8-aa22-4480-bdfd-2f7218b4aa19" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:13:05 GMT" + ], "Content-Length": [ "29" ], @@ -601,15 +601,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/publicIPAddresses/pip6201?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwNjIwMT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/publicIPAddresses/pip6143?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDYxNDM/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ] }, @@ -617,42 +617,42 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:05:37 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"c456af1e-6ef7-4ffd-8ccb-fb028719225d\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "W/\"b7b721e8-2724-402f-aea5-0c969920385b\"" ], "x-ms-request-id": [ - "f495e929-15dd-4cb7-8ffb-893f16024f24" + "56bccf52-ec53-4d1f-91ad-53994ce312d6" ], "x-ms-correlation-request-id": [ - "f36accc8-5610-428b-a24e-b95fd486fb22" + "7eb19a94-854b-48d1-9b7c-d77fd064c875" ], "x-ms-arm-service-request-id": [ - "f56b2877-6d82-4ce9-9b46-a9986467383c" + "e4cdd922-47e8-423e-8b35-9679fab20928" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060537Z:f36accc8-5610-428b-a24e-b95fd486fb22" + "WESTUS:20201022T231306Z:7eb19a94-854b-48d1-9b7c-d77fd064c875" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:13:06 GMT" + ], "Content-Length": [ - "763" + "764" ], "Content-Type": [ "application/json; charset=utf-8" @@ -661,25 +661,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pip6201\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/publicIPAddresses/pip6201\",\r\n \"etag\": \"W/\\\"c456af1e-6ef7-4ffd-8ccb-fb028719225d\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"90f0e444-9702-4d06-869a-1c171377e680\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8804\",\r\n \"fqdn\": \"dn8804.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\": \"pip6143\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/publicIPAddresses/pip6143\",\r\n \"etag\": \"W/\\\"b7b721e8-2724-402f-aea5-0c969920385b\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ef04c573-631f-41c6-ae52-33f94dbe81e3\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn6774\",\r\n \"fqdn\": \"dn6774.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/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/publicIPAddresses/pip6201?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwNjIwMT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/publicIPAddresses/pip6143?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDYxNDM/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d0a1fc82-9a62-4839-ab87-83f2ea6672a9" + "0f2104ff-6c24-40d6-b0f8-d6b5d419bd4f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ] }, @@ -687,42 +687,42 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:05:37 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"c456af1e-6ef7-4ffd-8ccb-fb028719225d\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "W/\"b7b721e8-2724-402f-aea5-0c969920385b\"" ], "x-ms-request-id": [ - "8f5c3543-fc47-4cab-bb7b-82ac57ed084a" + "06baff6f-0236-46d0-9046-7e88364363fd" ], "x-ms-correlation-request-id": [ - "36f75c72-cfee-4806-b915-611bc76fcb96" + "fbb82087-9702-413d-9689-b7c4be9d1db5" ], "x-ms-arm-service-request-id": [ - "27a22d07-33f2-4cd2-ba9a-f3c4c37b9a20" + "501d05dd-e06b-4b4c-b524-274d88be04ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060537Z:36f75c72-cfee-4806-b915-611bc76fcb96" + "WESTUS:20201022T231306Z:fbb82087-9702-413d-9689-b7c4be9d1db5" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:13:06 GMT" + ], "Content-Length": [ - "763" + "764" ], "Content-Type": [ "application/json; charset=utf-8" @@ -731,80 +731,80 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pip6201\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/publicIPAddresses/pip6201\",\r\n \"etag\": \"W/\\\"c456af1e-6ef7-4ffd-8ccb-fb028719225d\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"90f0e444-9702-4d06-869a-1c171377e680\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8804\",\r\n \"fqdn\": \"dn8804.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\": \"pip6143\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/publicIPAddresses/pip6143\",\r\n \"etag\": \"W/\\\"b7b721e8-2724-402f-aea5-0c969920385b\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ef04c573-631f-41c6-ae52-33f94dbe81e3\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn6774\",\r\n \"fqdn\": \"dn6774.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/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/virtualNetworks/vn4028?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuNDAyOD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/virtualNetworks/vn632?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYzMj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "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\": \"sn489\"\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\": \"sn3362\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "14adee68-6b6c-4ac1-a1ce-436a69c817c4" + "345f66fc-e737-43b0-98e5-6c8b107bdee3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "395" + "396" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:05:38 GMT" - ], "Pragma": [ "no-cache" ], "Retry-After": [ "3" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "bdc24368-d30d-4885-b570-284b015d5bf1" + "cab4cbed-2531-4ac6-aa8d-6283f50d9d19" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/bdc24368-d30d-4885-b570-284b015d5bf1?api-version=2019-09-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Network/locations/eastus2/operations/cab4cbed-2531-4ac6-aa8d-6283f50d9d19?api-version=2019-09-01" ], "x-ms-correlation-request-id": [ - "b7daa447-1e3b-4d15-9c05-5aae4dd79372" + "48f14a07-d4f3-4580-80e4-4d4b79122f2a" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "cec5a878-a550-4238-9e24-da866627e7bb" + "430d0310-19fd-4484-bfe4-260834618e13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060539Z:b7daa447-1e3b-4d15-9c05-5aae4dd79372" + "WESTUS:20201022T231307Z:48f14a07-d4f3-4580-80e4-4d4b79122f2a" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:13:07 GMT" + ], "Content-Length": [ - "1357" + "1384" ], "Content-Type": [ "application/json; charset=utf-8" @@ -813,19 +813,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vn4028\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/virtualNetworks/vn4028\",\r\n \"etag\": \"W/\\\"58b5dbd2-8380-4f0d-bbf9-878ef4c420f8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"59f04759-b4a5-4be2-9367-19193eace7f9\",\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\": \"sn489\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/virtualNetworks/vn4028/subnets/sn489\",\r\n \"etag\": \"W/\\\"58b5dbd2-8380-4f0d-bbf9-878ef4c420f8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vn632\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/virtualNetworks/vn632\",\r\n \"etag\": \"W/\\\"ae947008-c7f8-4704-9a7e-6f5e949cb263\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"1e3b4064-7118-4a46-af43-c4ee9222f39e\",\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\": \"sn3362\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/virtualNetworks/vn632/subnets/sn3362\",\r\n \"etag\": \"W/\\\"ae947008-c7f8-4704-9a7e-6f5e949cb263\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/bdc24368-d30d-4885-b570-284b015d5bf1?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2JkYzI0MzY4LWQzMGQtNDg4NS1iNTcwLTI4NGIwMTVkNWJmMT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Network/locations/eastus2/operations/cab4cbed-2531-4ac6-aa8d-6283f50d9d19?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2NhYjRjYmVkLTI1MzEtNGFjNi1hYThkLTYyODNmNTBkOWQxOT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ] }, @@ -833,37 +833,37 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:05:41 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "b8303af1-9119-4dc5-9b15-932e43fb84b8" + "4b75a0bf-6494-4d75-be05-2fcafafc444c" ], "x-ms-correlation-request-id": [ - "791b3eeb-720e-4238-8e60-9dc7af3c71f7" + "508c5a83-ff2c-401b-bee8-806e584f265c" ], "x-ms-arm-service-request-id": [ - "fb7e7b36-c100-4d9c-ac2f-d419e6ac6619" + "964f44f7-b3b1-4fab-ad7d-2916462525e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060542Z:791b3eeb-720e-4238-8e60-9dc7af3c71f7" + "WESTUS:20201022T231311Z:508c5a83-ff2c-401b-bee8-806e584f265c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:13:10 GMT" + ], "Content-Length": [ "29" ], @@ -878,15 +878,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/virtualNetworks/vn4028?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuNDAyOD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/virtualNetworks/vn632?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYzMj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ] }, @@ -894,42 +894,42 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:05:41 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"5bc34bb8-9852-40f2-bcea-38985b1a1822\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "W/\"ee84d36d-4c1f-425a-946d-4fcc9baa64c7\"" ], "x-ms-request-id": [ - "e38d2df3-013c-45bd-80a2-a0569637096e" + "5de134af-3bd9-482b-878b-c0f6805502c6" ], "x-ms-correlation-request-id": [ - "3f424fdb-fe9a-4bd6-9d2c-4b53e06a2d2d" + "3c6e1e80-802b-4757-97ac-fcbc8c2c0ca1" ], "x-ms-arm-service-request-id": [ - "d704745d-1355-4441-80b6-59654f894b3a" + "85ca8745-f755-4ac1-a464-279c300deeb3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060542Z:3f424fdb-fe9a-4bd6-9d2c-4b53e06a2d2d" + "WESTUS:20201022T231311Z:3c6e1e80-802b-4757-97ac-fcbc8c2c0ca1" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:13:10 GMT" + ], "Content-Length": [ - "1359" + "1386" ], "Content-Type": [ "application/json; charset=utf-8" @@ -938,25 +938,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vn4028\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/virtualNetworks/vn4028\",\r\n \"etag\": \"W/\\\"5bc34bb8-9852-40f2-bcea-38985b1a1822\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"59f04759-b4a5-4be2-9367-19193eace7f9\",\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\": \"sn489\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/virtualNetworks/vn4028/subnets/sn489\",\r\n \"etag\": \"W/\\\"5bc34bb8-9852-40f2-bcea-38985b1a1822\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vn632\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/virtualNetworks/vn632\",\r\n \"etag\": \"W/\\\"ee84d36d-4c1f-425a-946d-4fcc9baa64c7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1e3b4064-7118-4a46-af43-c4ee9222f39e\",\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\": \"sn3362\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/virtualNetworks/vn632/subnets/sn3362\",\r\n \"etag\": \"W/\\\"ee84d36d-4c1f-425a-946d-4fcc9baa64c7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/virtualNetworks/vn4028/subnets/sn489?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuNDAyOC9zdWJuZXRzL3NuNDg5P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/virtualNetworks/vn632/subnets/sn3362?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYzMi9zdWJuZXRzL3NuMzM2Mj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4c39c2e7-1f12-43fe-adce-ba3fe2631f68" + "7334cd0e-ec3d-4c63-9232-26d9fb710958" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ] }, @@ -964,42 +964,42 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:05:41 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"5bc34bb8-9852-40f2-bcea-38985b1a1822\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "W/\"ee84d36d-4c1f-425a-946d-4fcc9baa64c7\"" ], "x-ms-request-id": [ - "e86eedf8-cd96-4ebe-9b0e-952d7590d249" + "aae6e270-4cff-4a92-a6da-d64ac910bcb8" ], "x-ms-correlation-request-id": [ - "e62e8c51-0cec-41a4-a0ba-aae6bb26c056" + "913becde-f158-46d8-a6a5-59ee07add035" ], "x-ms-arm-service-request-id": [ - "e3e88fdb-2899-4386-ad20-f8076adc2ee7" + "65cc02f1-d0aa-4400-b5a2-063d52e0e0f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060542Z:e62e8c51-0cec-41a4-a0ba-aae6bb26c056" + "WESTUS:20201022T231311Z:913becde-f158-46d8-a6a5-59ee07add035" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:13:10 GMT" + ], "Content-Length": [ - "526" + "548" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1008,77 +1008,77 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"sn489\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/virtualNetworks/vn4028/subnets/sn489\",\r\n \"etag\": \"W/\\\"5bc34bb8-9852-40f2-bcea-38985b1a1822\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"sn3362\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/virtualNetworks/vn632/subnets/sn3362\",\r\n \"etag\": \"W/\\\"ee84d36d-4c1f-425a-946d-4fcc9baa64c7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/networkInterfaces/nic7376?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzM3Nj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/networkInterfaces/nic1723?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE3MjM/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"sn489\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/virtualNetworks/vn4028/subnets/sn489\"\r\n }\r\n },\r\n \"name\": \"ip4804\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"sn3362\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/virtualNetworks/vn632/subnets/sn3362\"\r\n }\r\n },\r\n \"name\": \"ip4160\"\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": [ - "c068805d-c23a-48dd-89a7-ac068706135e" + "012959d4-1d69-46dd-929f-0cfcae1bf4c7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "745" + "747" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:05:43 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-request-id": [ - "0fc16759-d954-428f-aa68-383c0083c2cf" + "2706d78a-c410-4725-9cb7-afd7c1ec8f59" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/0fc16759-d954-428f-aa68-383c0083c2cf?api-version=2019-09-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Network/locations/eastus2/operations/2706d78a-c410-4725-9cb7-afd7c1ec8f59?api-version=2019-09-01" ], "x-ms-correlation-request-id": [ - "9898f6e5-69c0-4c62-a6de-61f91e6fa7c3" + "1531875a-ae53-4824-9d56-66c2f1eb5628" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "381c06e3-1028-45e0-9592-ec85c43d433c" + "6f07f4fd-cc6e-44cb-9d0d-b0faee1955bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060543Z:9898f6e5-69c0-4c62-a6de-61f91e6fa7c3" + "WESTUS:20201022T231313Z:1531875a-ae53-4824-9d56-66c2f1eb5628" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:13:12 GMT" + ], "Content-Length": [ - "1639" + "1642" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1087,19 +1087,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"nic7376\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/networkInterfaces/nic7376\",\r\n \"etag\": \"W/\\\"cb41be3d-d430-4995-b420-ce2dccb3bb89\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0a55184f-5d81-469d-85f8-3b9a0a96f2c1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip4804\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/networkInterfaces/nic7376/ipConfigurations/ip4804\",\r\n \"etag\": \"W/\\\"cb41be3d-d430-4995-b420-ce2dccb3bb89\\\"\",\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/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/virtualNetworks/vn4028/subnets/sn489\"\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\": \"lfd5awnfwtrexe1hdemt3lhh5b.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic1723\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/networkInterfaces/nic1723\",\r\n \"etag\": \"W/\\\"030b49b4-bdb0-4071-8ad9-a0ea9b064905\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7ac19ab6-65e5-4d10-ac69-9e0e94ec2625\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip4160\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/networkInterfaces/nic1723/ipConfigurations/ip4160\",\r\n \"etag\": \"W/\\\"030b49b4-bdb0-4071-8ad9-a0ea9b064905\\\"\",\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/galleryPsTestRg9950/providers/Microsoft.Network/virtualNetworks/vn632/subnets/sn3362\"\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\": \"mradwhqyofdevl0dytxjeixttg.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/networkInterfaces/nic7376?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzM3Nj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/networkInterfaces/nic1723?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE3MjM/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ] }, @@ -1107,42 +1107,42 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:05:43 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"cb41be3d-d430-4995-b420-ce2dccb3bb89\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "W/\"030b49b4-bdb0-4071-8ad9-a0ea9b064905\"" ], "x-ms-request-id": [ - "9114f046-96cb-46e2-b3ed-074cf2cbff91" + "e795b50f-0119-46cf-9d0c-b00d8cba62fe" ], "x-ms-correlation-request-id": [ - "13c4e6b0-bbdc-4537-bac6-ecff312cdbac" + "5a82ac84-f5f1-4540-b889-28996b96e93b" ], "x-ms-arm-service-request-id": [ - "c5f5c238-ea27-446b-80f6-af92b0290487" + "326619c7-67ee-40ca-916e-fd6d288cc21b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060544Z:13c4e6b0-bbdc-4537-bac6-ecff312cdbac" + "WESTUS:20201022T231313Z:5a82ac84-f5f1-4540-b889-28996b96e93b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:13:12 GMT" + ], "Content-Length": [ - "1639" + "1642" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1151,25 +1151,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"nic7376\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/networkInterfaces/nic7376\",\r\n \"etag\": \"W/\\\"cb41be3d-d430-4995-b420-ce2dccb3bb89\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0a55184f-5d81-469d-85f8-3b9a0a96f2c1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip4804\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/networkInterfaces/nic7376/ipConfigurations/ip4804\",\r\n \"etag\": \"W/\\\"cb41be3d-d430-4995-b420-ce2dccb3bb89\\\"\",\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/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/virtualNetworks/vn4028/subnets/sn489\"\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\": \"lfd5awnfwtrexe1hdemt3lhh5b.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic1723\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/networkInterfaces/nic1723\",\r\n \"etag\": \"W/\\\"030b49b4-bdb0-4071-8ad9-a0ea9b064905\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7ac19ab6-65e5-4d10-ac69-9e0e94ec2625\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip4160\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/networkInterfaces/nic1723/ipConfigurations/ip4160\",\r\n \"etag\": \"W/\\\"030b49b4-bdb0-4071-8ad9-a0ea9b064905\\\"\",\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/galleryPsTestRg9950/providers/Microsoft.Network/virtualNetworks/vn632/subnets/sn3362\"\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\": \"mradwhqyofdevl0dytxjeixttg.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/networkInterfaces/nic7376?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzM3Nj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/networkInterfaces/nic1723?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE3MjM/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c11b772-f427-4b28-ae78-9c13afb46eda" + "1eccf200-5ccf-469c-8533-bfcfe2db3bd6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ] }, @@ -1177,42 +1177,42 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:05:43 GMT" - ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"cb41be3d-d430-4995-b420-ce2dccb3bb89\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "W/\"030b49b4-bdb0-4071-8ad9-a0ea9b064905\"" ], "x-ms-request-id": [ - "37820d1d-91aa-4418-9a95-217c119a9bca" + "a4b58e59-4245-42bc-af98-811f6ad269cf" ], "x-ms-correlation-request-id": [ - "2a946641-ada0-4867-a3ca-4092ec236191" + "9c695355-17ac-421d-955f-632262d51cf3" ], "x-ms-arm-service-request-id": [ - "ef655b7c-fe8d-4841-910c-121f55bc92a3" + "9e960e31-90b6-4230-a3fd-d17715647f29" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060544Z:2a946641-ada0-4867-a3ca-4092ec236191" + "WESTUS:20201022T231313Z:9c695355-17ac-421d-955f-632262d51cf3" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:13:12 GMT" + ], "Content-Length": [ - "1639" + "1642" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1221,26 +1221,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"nic7376\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/networkInterfaces/nic7376\",\r\n \"etag\": \"W/\\\"cb41be3d-d430-4995-b420-ce2dccb3bb89\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0a55184f-5d81-469d-85f8-3b9a0a96f2c1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip4804\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/networkInterfaces/nic7376/ipConfigurations/ip4804\",\r\n \"etag\": \"W/\\\"cb41be3d-d430-4995-b420-ce2dccb3bb89\\\"\",\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/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/virtualNetworks/vn4028/subnets/sn489\"\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\": \"lfd5awnfwtrexe1hdemt3lhh5b.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic1723\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/networkInterfaces/nic1723\",\r\n \"etag\": \"W/\\\"030b49b4-bdb0-4071-8ad9-a0ea9b064905\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7ac19ab6-65e5-4d10-ac69-9e0e94ec2625\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip4160\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/networkInterfaces/nic1723/ipConfigurations/ip4160\",\r\n \"etag\": \"W/\\\"030b49b4-bdb0-4071-8ad9-a0ea9b064905\\\"\",\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/galleryPsTestRg9950/providers/Microsoft.Network/virtualNetworks/vn632/subnets/sn3362\"\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\": \"mradwhqyofdevl0dytxjeixttg.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/availabilitySets/asforgallery4759?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXZhaWxhYmlsaXR5U2V0cy9hc2ZvcmdhbGxlcnk0NzU5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/availabilitySets/asforgallery9985?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXNmb3JnYWxsZXJ5OTk4NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "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": [ - "aa2cada8-6ab2-4560-bf0b-2f2f0f7443b3" + "4a20976a-23be-41e4-838a-d8ebf050b10f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1253,39 +1253,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:05:46 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199" + "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1197" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7b4edf20-4080-4e8e-bd87-a7eb506ac54d" + "fe8d2277-324d-4841-a750-ad7912c2433b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "0a26f7ef-95be-4fd5-88b8-55446ed69465" + "f3b32ee1-2077-4be5-87e2-68ec7ab1bc07" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060547Z:0a26f7ef-95be-4fd5-88b8-55446ed69465" + "WESTUS:20201022T231315Z:f3b32ee1-2077-4be5-87e2-68ec7ab1bc07" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:13:15 GMT" + ], "Content-Length": [ - "463" + "464" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1294,80 +1294,80 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"asforgallery4759\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/availabilitySets/asforgallery4759\",\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\": \"asforgallery9985\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/availabilitySets/asforgallery9985\",\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/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/virtualMachines/vm7497?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtNzQ5Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/virtualMachines/vm6924?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY5MjQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20180315\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://saforgallery5476.blob.core.windows.net/crptestar2173/oscrptestar7165.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/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/networkInterfaces/nic7376\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/availabilitySets/asforgallery4759\"\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_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20180315\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://saforgallery3821.blob.core.windows.net/crptestar8729/oscrptestar8032.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/galleryPsTestRg9950/providers/Microsoft.Network/networkInterfaces/nic1723\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/availabilitySets/asforgallery9985\"\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": [ - "a4c71acf-0b18-4b10-a54b-3ef1e36adbd9" + "1ce4f2f2-f8bd-418a-bafe-4287e415b818" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1234" + "1236" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:05:48 GMT" - ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/operations/bd621877-7a8e-4b1e-a333-fdd751c9958a?api-version=2020-06-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/8c4ed540-fa0b-44cc-82a3-d99b90efd887?api-version=2020-06-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": [ - "bd621877-7a8e-4b1e-a333-fdd751c9958a" + "8c4ed540-fa0b-44cc-82a3-d99b90efd887" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "56da39c1-53e4-484c-8498-0797227e7ea6" + "0445a9ad-6a8c-45d4-a61b-cf911ba4ddb7" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060549Z:56da39c1-53e4-484c-8498-0797227e7ea6" + "WESTUS:20201022T231329Z:0445a9ad-6a8c-45d4-a61b-cf911ba4ddb7" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:13:29 GMT" + ], "Content-Length": [ - "1847" + "1850" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1376,123 +1376,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vm7497\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/virtualMachines/vm7497\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"9c7ef702-b256-4a72-9039-985cad7ef809\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY4759\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20180315\",\r\n \"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://saforgallery5476.blob.core.windows.net/crptestar2173/oscrptestar7165.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/networkInterfaces/nic7376\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vm6924\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/virtualMachines/vm6924\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"e59ff4a8-2d17-4a01-aa7e-2b31064c1ddb\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY9985\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20180315\",\r\n \"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://saforgallery3821.blob.core.windows.net/crptestar8729/oscrptestar8032.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/networkInterfaces/nic1723\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/operations/bd621877-7a8e-4b1e-a333-fdd751c9958a?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2JkNjIxODc3LTdhOGUtNGIxZS1hMzMzLWZkZDc1MWM5OTU4YT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/8c4ed540-fa0b-44cc-82a3-d99b90efd887?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzhjNGVkNTQwLWZhMGItNDRjYy04MmEzLWQ5OWI5MGVmZDg4Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:05:58 GMT" - ], "Pragma": [ "no-cache" ], "Retry-After": [ "50" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999" + "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29982" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5ea66d3c-c5d4-41b7-9489-0689f7e144b0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" - ], - "x-ms-correlation-request-id": [ - "2ba760c9-b752-4280-81d4-e02b91ed7b10" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T060559Z:2ba760c9-b752-4280-81d4-e02b91ed7b10" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "133" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:05:48.222911-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bd621877-7a8e-4b1e-a333-fdd751c9958a\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/operations/bd621877-7a8e-4b1e-a333-fdd751c9958a?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2JkNjIxODc3LTdhOGUtNGIxZS1hMzMzLWZkZDc1MWM5OTU4YT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:06:49 GMT" - ], - "Pragma": [ - "no-cache" + "c6487330-2cf0-4d87-908a-3152440a747f" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "da87170d-dfb9-49ae-a71c-094553c5804a" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11998" ], "x-ms-correlation-request-id": [ - "7cfcfed6-59cf-4989-8f19-710e18369804" + "ee3f7540-6cef-4b90-a17e-607b25d03e60" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060649Z:7cfcfed6-59cf-4989-8f19-710e18369804" + "WESTUS:20201022T231340Z:ee3f7540-6cef-4b90-a17e-607b25d03e60" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:13:39 GMT" + ], "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1501,59 +1440,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:05:48.222911-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bd621877-7a8e-4b1e-a333-fdd751c9958a\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:13:29.1038512-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8c4ed540-fa0b-44cc-82a3-d99b90efd887\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/operations/bd621877-7a8e-4b1e-a333-fdd751c9958a?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2JkNjIxODc3LTdhOGUtNGIxZS1hMzMzLWZkZDc1MWM5OTU4YT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/8c4ed540-fa0b-44cc-82a3-d99b90efd887?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzhjNGVkNTQwLWZhMGItNDRjYy04MmEzLWQ5OWI5MGVmZDg4Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:07:38 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29997" + "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29981" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "18b42622-847c-4e1e-8c8a-1160eb1bece2" + "8765ca59-d69e-4c4a-aa5f-2436f3ad438f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11997" ], "x-ms-correlation-request-id": [ - "290cd5d0-5864-46f6-9a1e-e6264347bf1b" + "a6c2d38e-33f5-49e2-8089-0bb61d189036" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060739Z:290cd5d0-5864-46f6-9a1e-e6264347bf1b" + "WESTUS:20201022T231430Z:a6c2d38e-33f5-49e2-8089-0bb61d189036" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:14:29 GMT" + ], "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1562,59 +1501,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:05:48.222911-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bd621877-7a8e-4b1e-a333-fdd751c9958a\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:13:29.1038512-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8c4ed540-fa0b-44cc-82a3-d99b90efd887\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/operations/bd621877-7a8e-4b1e-a333-fdd751c9958a?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2JkNjIxODc3LTdhOGUtNGIxZS1hMzMzLWZkZDc1MWM5OTU4YT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/8c4ed540-fa0b-44cc-82a3-d99b90efd887?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzhjNGVkNTQwLWZhMGItNDRjYy04MmEzLWQ5OWI5MGVmZDg4Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:08:29 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29995" + "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29980" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b82105a5-bf0f-4bab-b6b2-2f7bcc92c446" + "dc52a1ad-6dfc-4690-9d2f-5868fd70e810" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11996" ], "x-ms-correlation-request-id": [ - "96563133-78be-4278-9076-dbf78bcc9bde" + "b13f7d56-9535-4075-b532-9bcc745c0d36" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060829Z:96563133-78be-4278-9076-dbf78bcc9bde" + "WESTUS:20201022T231520Z:b13f7d56-9535-4075-b532-9bcc745c0d36" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:15:20 GMT" + ], "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1623,59 +1562,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:05:48.222911-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bd621877-7a8e-4b1e-a333-fdd751c9958a\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:13:29.1038512-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8c4ed540-fa0b-44cc-82a3-d99b90efd887\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/operations/bd621877-7a8e-4b1e-a333-fdd751c9958a?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2JkNjIxODc3LTdhOGUtNGIxZS1hMzMzLWZkZDc1MWM5OTU4YT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/8c4ed540-fa0b-44cc-82a3-d99b90efd887?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzhjNGVkNTQwLWZhMGItNDRjYy04MmEzLWQ5OWI5MGVmZDg4Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:09:19 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29994" + "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29978" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5460fc99-3ef9-4ec0-a59b-03160e7ea771" + "08aeb82d-b5ef-435c-8a8b-9109657a86cd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11995" ], "x-ms-correlation-request-id": [ - "e401f6a8-c477-4d88-842f-7b35da0f111f" + "4f323422-72bf-4f6c-b772-31688d741af9" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T060919Z:e401f6a8-c477-4d88-842f-7b35da0f111f" + "WESTUS:20201022T231610Z:4f323422-72bf-4f6c-b772-31688d741af9" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:16:10 GMT" + ], "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1684,59 +1623,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:05:48.222911-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bd621877-7a8e-4b1e-a333-fdd751c9958a\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:13:29.1038512-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8c4ed540-fa0b-44cc-82a3-d99b90efd887\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/operations/bd621877-7a8e-4b1e-a333-fdd751c9958a?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2JkNjIxODc3LTdhOGUtNGIxZS1hMzMzLWZkZDc1MWM5OTU4YT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/8c4ed540-fa0b-44cc-82a3-d99b90efd887?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzhjNGVkNTQwLWZhMGItNDRjYy04MmEzLWQ5OWI5MGVmZDg4Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:10:09 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29992" + "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29977" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "81656409-5ac5-4f21-b4e5-5c6f79e82112" + "8018e30c-a6fe-4b1a-8e97-36f3f107b32e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11994" ], "x-ms-correlation-request-id": [ - "481389e6-e285-4ffe-976d-ae3042e7c763" + "7ee2acfa-2d7e-4169-97d3-5226d47cae23" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061009Z:481389e6-e285-4ffe-976d-ae3042e7c763" + "WESTUS:20201022T231700Z:7ee2acfa-2d7e-4169-97d3-5226d47cae23" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:16:59 GMT" + ], "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1745,59 +1684,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:05:48.222911-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bd621877-7a8e-4b1e-a333-fdd751c9958a\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:13:29.1038512-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8c4ed540-fa0b-44cc-82a3-d99b90efd887\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/operations/bd621877-7a8e-4b1e-a333-fdd751c9958a?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2JkNjIxODc3LTdhOGUtNGIxZS1hMzMzLWZkZDc1MWM5OTU4YT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/8c4ed540-fa0b-44cc-82a3-d99b90efd887?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzhjNGVkNTQwLWZhMGItNDRjYy04MmEzLWQ5OWI5MGVmZDg4Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:10:59 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29990" + "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29973" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dc9c6968-0e8c-4d53-bd92-8dfbedf16e8a" + "c4fa78cb-6d6e-4f4f-a4d8-2e8f46ccad00" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11993" ], "x-ms-correlation-request-id": [ - "14425520-89b7-4e87-b635-ae547fa4fa3a" + "d13cddb3-25f3-4c15-b9bb-c4db3d2f7f93" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061100Z:14425520-89b7-4e87-b635-ae547fa4fa3a" + "WESTUS:20201022T231750Z:d13cddb3-25f3-4c15-b9bb-c4db3d2f7f93" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:17:50 GMT" + ], "Content-Length": [ - "183" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1806,59 +1745,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:05:48.222911-07:00\",\r\n \"endTime\": \"2020-06-12T23:10:32.2248064-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"bd621877-7a8e-4b1e-a333-fdd751c9958a\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:13:29.1038512-07:00\",\r\n \"endTime\": \"2020-10-22T16:17:34.0274727-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8c4ed540-fa0b-44cc-82a3-d99b90efd887\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/virtualMachines/vm7497?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtNzQ5Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/virtualMachines/vm6924?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY5MjQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:10:59 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31997" + "Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31921" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "95d8679a-98ab-433e-a678-782753786d39" + "8d946758-3d98-47b2-971e-f39dbf8c35f0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11992" ], "x-ms-correlation-request-id": [ - "c1f66c7c-5ce3-4631-8c32-343ab35cee62" + "118ad5da-1edd-4dc4-8f90-2c787e9cf76f" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061100Z:c1f66c7c-5ce3-4631-8c32-343ab35cee62" + "WESTUS:20201022T231751Z:118ad5da-1edd-4dc4-8f90-2c787e9cf76f" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:17:50 GMT" + ], "Content-Length": [ - "1876" + "1879" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1867,65 +1806,65 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vm7497\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/virtualMachines/vm7497\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"9c7ef702-b256-4a72-9039-985cad7ef809\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY4759\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20180315\",\r\n \"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://saforgallery5476.blob.core.windows.net/crptestar2173/oscrptestar7165.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/networkInterfaces/nic7376\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vm6924\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/virtualMachines/vm6924\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"e59ff4a8-2d17-4a01-aa7e-2b31064c1ddb\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY9985\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20180315\",\r\n \"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://saforgallery3821.blob.core.windows.net/crptestar8729/oscrptestar8032.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/networkInterfaces/nic1723\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/virtualMachines/vm7497?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtNzQ5Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/virtualMachines/vm6924?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY5MjQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "586e309c-fba2-4bfe-b45b-afc6c7216793" + "35b6199d-c5bc-472d-ba06-ea3635f3e9e0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:11:00 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31996" + "Microsoft.Compute/LowCostGet3Min;3990,Microsoft.Compute/LowCostGet30Min;31920" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5e113c3e-b0ed-4154-8f5a-30b2bd842a00" + "68587a69-a42b-4e23-88fb-640d860dcf06" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11991" ], "x-ms-correlation-request-id": [ - "e71f2c4d-e0cf-40ef-bf3d-bac18e1151da" + "d6ad4928-42b1-4d22-b333-f23f68084fd3" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061100Z:e71f2c4d-e0cf-40ef-bf3d-bac18e1151da" + "WESTUS:20201022T231751Z:d6ad4928-42b1-4d22-b333-f23f68084fd3" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:17:51 GMT" + ], "Content-Length": [ - "1876" + "1879" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1934,26 +1873,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vm7497\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/virtualMachines/vm7497\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"9c7ef702-b256-4a72-9039-985cad7ef809\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY4759\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20180315\",\r\n \"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://saforgallery5476.blob.core.windows.net/crptestar2173/oscrptestar7165.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Network/networkInterfaces/nic7376\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vm6924\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/virtualMachines/vm6924\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"e59ff4a8-2d17-4a01-aa7e-2b31064c1ddb\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY9985\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20180315\",\r\n \"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://saforgallery3821.blob.core.windows.net/crptestar8729/oscrptestar8032.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/networkInterfaces/nic1723\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/images/psTestSourceImage734?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaW1hZ2VzL3BzVGVzdFNvdXJjZUltYWdlNzM0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTg2OTM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"blobUri\": \"https://saforgallery5476.blob.core.windows.net/crptestar2173/oscrptestar7165.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://saforgallery3821.blob.core.windows.net/crptestar8729/oscrptestar8032.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": [ - "900307fa-74f5-45f4-98b0-0abfabfe558f" + "ae635c52-a324-40ce-bc6e-b5b260d84de2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1966,45 +1905,45 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:11:07 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/operations/7a2d9694-daa8-48ea-86ef-fd3310985c92?api-version=2020-06-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/89ff137b-8445-460b-8437-dbc82b292b1c?api-version=2020-06-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": [ - "7a2d9694-daa8-48ea-86ef-fd3310985c92" + "89ff137b-8445-460b-8437-dbc82b292b1c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "a105a829-f90e-4d7c-8033-76e47021352c" + "26efb284-7fe6-436e-8966-4fea5a56eec1" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061108Z:a105a829-f90e-4d7c-8033-76e47021352c" + "WESTUS:20201022T231758Z:26efb284-7fe6-436e-8966-4fea5a56eec1" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:17:58 GMT" + ], "Content-Length": [ - "764" + "767" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2013,59 +1952,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"psTestSourceImage734\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/images/psTestSourceImage734\",\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://saforgallery5476.blob.core.windows.net/crptestar2173/oscrptestar7165.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\": \"psTestSourceImage8693\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693\",\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://saforgallery3821.blob.core.windows.net/crptestar8729/oscrptestar8032.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/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/operations/7a2d9694-daa8-48ea-86ef-fd3310985c92?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzdhMmQ5Njk0LWRhYTgtNDhlYS04NmVmLWZkMzMxMDk4NWM5Mj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/89ff137b-8445-460b-8437-dbc82b292b1c?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzg5ZmYxMzdiLTg0NDUtNDYwYi04NDM3LWRiYzgyYjI5MmIxYz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:11:37 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29988" + "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29971" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ea6cf71a-6581-4041-b4d1-156efa13cd72" + "215f13fd-f833-455f-b8a7-96f535315893" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11990" ], "x-ms-correlation-request-id": [ - "f6e3dc17-eb83-4ea1-b828-d54784d2d189" + "dd68e70e-098e-4bfc-b036-c7801b77691b" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061138Z:f6e3dc17-eb83-4ea1-b828-d54784d2d189" + "WESTUS:20201022T231828Z:dd68e70e-098e-4bfc-b036-c7801b77691b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:18:28 GMT" + ], "Content-Length": [ - "183" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2074,59 +2013,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:11:02.287503-07:00\",\r\n \"endTime\": \"2020-06-12T23:11:12.6313164-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7a2d9694-daa8-48ea-86ef-fd3310985c92\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:17:52.7462917-07:00\",\r\n \"endTime\": \"2020-10-22T16:18:02.9963634-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"89ff137b-8445-460b-8437-dbc82b292b1c\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/images/psTestSourceImage734?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaW1hZ2VzL3BzVGVzdFNvdXJjZUltYWdlNzM0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTg2OTM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:11:37 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetImages3Min;358,Microsoft.Compute/GetImages30Min;1798" + "Microsoft.Compute/GetImages3Min;358,Microsoft.Compute/GetImages30Min;1792" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1cda935b-9e82-4901-a33c-fcc7500d6abb" + "26af7c77-c7fc-4329-ad9e-4657fa00e6be" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11989" ], "x-ms-correlation-request-id": [ - "5eddf609-b64b-412f-8eaf-f10e159136e9" + "0c37c219-4359-4cd1-a3f2-f1e2100f9c3c" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061138Z:5eddf609-b64b-412f-8eaf-f10e159136e9" + "WESTUS:20201022T231828Z:0c37c219-4359-4cd1-a3f2-f1e2100f9c3c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:18:28 GMT" + ], "Content-Length": [ - "793" + "796" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2135,65 +2074,65 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"psTestSourceImage734\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/images/psTestSourceImage734\",\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://saforgallery5476.blob.core.windows.net/crptestar2173/oscrptestar7165.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\": \"psTestSourceImage8693\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693\",\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://saforgallery3821.blob.core.windows.net/crptestar8729/oscrptestar8032.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/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/images/psTestSourceImage734?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaW1hZ2VzL3BzVGVzdFNvdXJjZUltYWdlNzM0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTg2OTM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "db070e95-f621-482b-814f-a0e881413f4e" + "009f5c3f-8e4d-4dbe-a93c-e7c9a2c6b31f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:11:37 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetImages3Min;357,Microsoft.Compute/GetImages30Min;1797" + "Microsoft.Compute/GetImages3Min;357,Microsoft.Compute/GetImages30Min;1791" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3e9412a2-87c1-45e9-b8dd-eb6084f68661" + "3660b933-3147-4865-9d16-a9d0b240d243" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11988" ], "x-ms-correlation-request-id": [ - "f47a2c97-09b3-4fa1-a1e9-327829713dd0" + "9de381f9-5f11-4d39-97b7-2e34411a6323" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061138Z:f47a2c97-09b3-4fa1-a1e9-327829713dd0" + "WESTUS:20201022T231828Z:9de381f9-5f11-4d39-97b7-2e34411a6323" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:18:28 GMT" + ], "Content-Length": [ - "793" + "796" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2202,26 +2141,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"psTestSourceImage734\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/images/psTestSourceImage734\",\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://saforgallery5476.blob.core.windows.net/crptestar2173/oscrptestar7165.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\": \"psTestSourceImage8693\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693\",\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://saforgallery3821.blob.core.windows.net/crptestar8729/oscrptestar8032.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/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTU3OD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "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": [ - "adbdb39f-b818-4446-a473-a80eb5c51d89" + "b61ad902-c1fd-40f8-8630-162378bda94b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2234,45 +2173,45 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:11:39 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/5c499ad6-20b1-478f-87cf-186da49efa17?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/bfc4ff59-3e73-4516-b28e-9cc9db85d9c3?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299" + "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;296" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "5c499ad6-20b1-478f-87cf-186da49efa17" + "bfc4ff59-3e73-4516-b28e-9cc9db85d9c3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], "x-ms-correlation-request-id": [ - "4e5db1ac-5d8d-4466-908f-dc29f0e4fa75" + "a6dda605-0a08-42a9-b90a-193429e7ce0c" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061140Z:4e5db1ac-5d8d-4466-908f-dc29f0e4fa75" + "WESTUS:20201022T231830Z:a6dda605-0a08-42a9-b90a-193429e7ce0c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:18:30 GMT" + ], "Content-Length": [ - "507" + "573" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2281,60 +2220,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery1578\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578\",\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\": \"0296790d-427c-48ca-b204-8b729bbd8670-GALLERYPSTESTGALLERY1578\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery5957\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957\",\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-GALLERYPSTESTGALLERY5957\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Private\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/5c499ad6-20b1-478f-87cf-186da49efa17?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy81YzQ5OWFkNi0yMGIxLTQ3OGYtODdjZi0xODZkYTQ5ZWZhMTc/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/bfc4ff59-3e73-4516-b28e-9cc9db85d9c3?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iZmM0ZmY1OS0zZTczLTQ1MTYtYjI4ZS05Y2M5ZGI4NWQ5YzM/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:12:09 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;2398" + "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4153" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "75f8b30b-d7ae-4d39-be12-f6750bebb78e" + "29ec80f7-bda5-430c-a11d-87a75ee3ad71" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11987" ], "x-ms-correlation-request-id": [ - "84ca55bb-c2e6-41b1-95c1-1a0f6c2b955e" + "bd89c922-ad93-48fd-9dbc-5b8c236c1aac" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061210Z:84ca55bb-c2e6-41b1-95c1-1a0f6c2b955e" + "WESTUS:20201022T231900Z:bd89c922-ad93-48fd-9dbc-5b8c236c1aac" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:19:00 GMT" + ], "Content-Length": [ "184" ], @@ -2345,62 +2284,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:11:39.6549776-07:00\",\r\n \"endTime\": \"2020-06-12T23:11:39.8580706-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5c499ad6-20b1-478f-87cf-186da49efa17\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:18:30.0217578-07:00\",\r\n \"endTime\": \"2020-10-22T16:18:30.2556521-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"bfc4ff59-3e73-4516-b28e-9cc9db85d9c3\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTU3OD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:12:09 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2496" + "Microsoft.Compute/GetGallery3Min;341,Microsoft.Compute/GetGallery30Min;2468" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "be5be707-830c-4ec9-86ad-fab7727a19ba" + "e8793089-934e-463c-8b6f-642d089acb85" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11986" ], "x-ms-correlation-request-id": [ - "15173b1f-c205-4e49-b662-ebbd17110d74" + "7020349a-2c60-49c5-9197-05901c9953c6" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061210Z:15173b1f-c205-4e49-b662-ebbd17110d74" + "WESTUS:20201022T231900Z:7020349a-2c60-49c5-9197-05901c9953c6" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:19:00 GMT" + ], "Content-Length": [ - "508" + "509" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2409,26 +2348,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery1578\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578\",\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\": \"0296790d-427c-48ca-b204-8b729bbd8670-GALLERYPSTESTGALLERY1578\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery5957\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957\",\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-GALLERYPSTESTGALLERY5957\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTU3OC9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTg0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzNzQ1P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "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": [ - "e40aacbf-ad76-4dbb-be18-e03bdf85669b" + "da3d3a85-a9ff-47ab-b258-db2f096f2d5d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2441,45 +2380,45 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:12:12 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/9fe010aa-1588-4341-a53f-59ff786a3df3?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/0fc18e6a-731e-4cd2-9d7e-8ffefc930247?api-version=2020-09-30" ], "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": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "9fe010aa-1588-4341-a53f-59ff786a3df3" + "0fc18e6a-731e-4cd2-9d7e-8ffefc930247" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], "x-ms-correlation-request-id": [ - "05ba7214-5169-4bc0-a260-5d65e0216908" + "b89fe2a2-60a4-4a4c-86a7-e4eef4fe6eb7" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061212Z:05ba7214-5169-4bc0-a260-5d65e0216908" + "WESTUS:20201022T231902Z:b89fe2a2-60a4-4a4c-86a7-e4eef4fe6eb7" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:19:02 GMT" + ], "Content-Length": [ - "641" + "646" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2488,60 +2427,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage84\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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\": \"galleryPsTestGalleryImage3745\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/9fe010aa-1588-4341-a53f-59ff786a3df3?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy85ZmUwMTBhYS0xNTg4LTQzNDEtYTUzZi01OWZmNzg2YTNkZjM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/0fc18e6a-731e-4cd2-9d7e-8ffefc930247?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wZmMxOGU2YS03MzFlLTRjZDItOWQ3ZS04ZmZlZmM5MzAyNDc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:12:42 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;2396" + "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4151" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "fc498881-fded-467a-8c40-fabfb74d0795" + "aecf15d1-07bc-49ac-a245-d7435a93e618" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11985" ], "x-ms-correlation-request-id": [ - "d4100af7-67c9-4ddd-af92-30b4ce287bce" + "312b1b40-6b76-4f4c-b5bd-29b64fe47c7f" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061242Z:d4100af7-67c9-4ddd-af92-30b4ce287bce" + "WESTUS:20201022T231932Z:312b1b40-6b76-4f4c-b5bd-29b64fe47c7f" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:19:32 GMT" + ], "Content-Length": [ "184" ], @@ -2552,62 +2491,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:11.5467506-07:00\",\r\n \"endTime\": \"2020-06-12T23:12:11.6561539-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9fe010aa-1588-4341-a53f-59ff786a3df3\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:01.9118646-07:00\",\r\n \"endTime\": \"2020-10-22T16:19:02.0368627-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0fc18e6a-731e-4cd2-9d7e-8ffefc930247\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTU3OC9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTg0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzNzQ1P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:12:42 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2996" + "Microsoft.Compute/GetGalleryImage3Min;594,Microsoft.Compute/GetGalleryImage30Min;2961" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "387540f8-1582-4847-ae04-debcdab7593a" + "27f64fa4-f8f5-40bd-8cd0-4e521978af1b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11984" ], "x-ms-correlation-request-id": [ - "7a7d3e36-c216-4294-a1ad-18dab2ed0664" + "ffb4cc20-93dd-4954-a8f7-beadca6df324" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061242Z:7a7d3e36-c216-4294-a1ad-18dab2ed0664" + "WESTUS:20201022T231932Z:ffb4cc20-93dd-4954-a8f7-beadca6df324" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:19:32 GMT" + ], "Content-Length": [ - "642" + "647" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2616,77 +2555,80 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage84\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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\": \"galleryPsTestGalleryImage3745\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTU3OC9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTg0L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzNzQ1L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "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\": \"2020-06-22T07:00:00Z\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/images/psTestSourceImage734\"\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\": \"2020-11-01T07: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/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693\"\r\n }\r\n }\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "82a28c4a-b5f4-4f1a-9b98-742d859fa285" + "ad28fe2a-5ad8-429c-bc4f-b9676cc468c5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "601" + "603" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:12:43 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30" ], "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": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "3c639aa5-fd5d-4f71-847f-f045466cdc60" + "fcb01f2f-56d4-464d-a072-3be120eb4cc0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1194" ], "x-ms-correlation-request-id": [ - "a15d83d0-b0f6-4682-b8b9-c7939548c9d0" + "5e70f9e0-e45b-4254-af40-142722662cd6" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061243Z:a15d83d0-b0f6-4682-b8b9-c7939548c9d0" + "WESTUS:20201022T231934Z:5e70f9e0-e45b-4254-af40-142722662cd6" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:19:33 GMT" + ], "Content-Length": [ - "1031" + "1036" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2695,50 +2637,46 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84/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\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"endOfLifeDate\": \"2020-06-22T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/images/psTestSourceImage734\"\r\n }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/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\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"endOfLifeDate\": \"2020-11-01T00: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/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693\"\r\n }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTU3OC9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTg0L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzNzQ1L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "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\": \"2020-09-20T07:00:00Z\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/images/psTestSourceImage734\"\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\": \"2021-01-30T08: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/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693\"\r\n }\r\n }\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "05a13651-8480-4433-8df3-bf9fd00d15ad" + "1e6007ce-880b-495a-ac91-c1c6dea3b004" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "601" + "603" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:32:50 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/152bfdd1-8523-4f62-9927-cf58bb278e10?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/df430ebe-c312-4d04-9b67-e7f2eaeba97a?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1198" @@ -2747,25 +2685,32 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "152bfdd1-8523-4f62-9927-cf58bb278e10" + "df430ebe-c312-4d04-9b67-e7f2eaeba97a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1193" ], "x-ms-correlation-request-id": [ - "e308b52a-631c-4da4-b2e9-5dd44a41e5d9" + "574ee840-b2aa-44aa-bf42-3d258f69763c" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T063250Z:e308b52a-631c-4da4-b2e9-5dd44a41e5d9" + "WESTUS:20201022T233841Z:574ee840-b2aa-44aa-bf42-3d258f69763c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:38:40 GMT" + ], "Content-Length": [ - "1145" + "1150" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2774,60 +2719,63 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84/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\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"endOfLifeDate\": \"2020-09-20T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/images/psTestSourceImage734\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/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\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"endOfLifeDate\": \"2021-01-30T00: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/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:13:13 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;2394" + "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4149" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "e910af46-1129-42e4-a400-8d61a4e1f6f8" + "9841fb43-55a1-4916-9adf-774c9050c751" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11983" ], "x-ms-correlation-request-id": [ - "180bb5c8-245a-47a0-ad74-f015d9e37a93" + "8dedeaec-a2b5-4788-a9a0-6d8037c21495" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061313Z:180bb5c8-245a-47a0-ad74-f015d9e37a93" + "WESTUS:20201022T232034Z:8dedeaec-a2b5-4788-a9a0-6d8037c21495" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:20:34 GMT" + ], "Content-Length": [ "134" ], @@ -2838,60 +2786,63 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:13:43 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;2391" + "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4148" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "b10cc1c5-943f-4b0f-b0c7-b9f7da5c540f" + "f90ecf6d-7638-4e2b-8ce3-38404478ae07" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "11982" ], "x-ms-correlation-request-id": [ - "b23f4f30-cb02-450f-871e-98bf0e884bd3" + "35ba1ce0-4060-43c3-87bf-5c77ab275c3c" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061344Z:b23f4f30-cb02-450f-871e-98bf0e884bd3" + "WESTUS:20201022T232134Z:35ba1ce0-4060-43c3-87bf-5c77ab275c3c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:21:34 GMT" + ], "Content-Length": [ "134" ], @@ -2902,60 +2853,63 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:14:14 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;2388" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4146" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "ba02cdf6-8f66-4bd4-82fb-90db7c37283a" + "80b9ffb8-c368-48c2-9060-ce7f5d7d9b4a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "11981" ], "x-ms-correlation-request-id": [ - "b1ab04e9-8e14-48f9-a891-87206898a96d" + "9cbf5bcc-e795-4ef4-ae54-d358dfc5eb7a" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061414Z:b1ab04e9-8e14-48f9-a891-87206898a96d" + "WESTUS:20201022T232235Z:9cbf5bcc-e795-4ef4-ae54-d358dfc5eb7a" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:22:34 GMT" + ], "Content-Length": [ "134" ], @@ -2966,60 +2920,63 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:14:43 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;2385" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4144" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "60792d72-893d-45a0-a69f-7c055c32fa71" + "b54fa1e8-b3c8-4cfa-9149-575e80276385" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" + "11980" ], "x-ms-correlation-request-id": [ - "2c2f238c-bdf1-40b6-acdd-8415fe8e1068" + "99611436-4e62-4aba-bf69-4a42a98e7b73" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061444Z:2c2f238c-bdf1-40b6-acdd-8415fe8e1068" + "WESTUS:20201022T232335Z:99611436-4e62-4aba-bf69-4a42a98e7b73" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:23:34 GMT" + ], "Content-Length": [ "134" ], @@ -3030,60 +2987,63 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:15:13 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;2382" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4142" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "d63600a7-fc9e-4b5e-b445-0331669a72ec" + "5454faff-d937-4736-a915-52633e126323" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" + "11979" ], "x-ms-correlation-request-id": [ - "2298a368-86af-4544-8e50-e4dbd9ffa834" + "e94d126c-64ee-414b-a2ac-e470cecc16b7" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061514Z:2298a368-86af-4544-8e50-e4dbd9ffa834" + "WESTUS:20201022T232435Z:e94d126c-64ee-414b-a2ac-e470cecc16b7" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:24:34 GMT" + ], "Content-Length": [ "134" ], @@ -3094,60 +3054,63 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:15:43 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2379" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4150" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "7b739c7b-2f15-4082-bd13-ccb2ba63d30c" + "a390fb18-d6f6-457a-8a8f-d8988f051f4c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" + "11978" ], "x-ms-correlation-request-id": [ - "fdc0468d-fe14-4a58-ac50-2a3bc06b73bc" + "6c7b304f-82ae-4659-ade6-baa3c32bb201" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061544Z:fdc0468d-fe14-4a58-ac50-2a3bc06b73bc" + "WESTUS:20201022T232535Z:6c7b304f-82ae-4659-ade6-baa3c32bb201" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:25:35 GMT" + ], "Content-Length": [ "134" ], @@ -3158,60 +3121,63 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:16:14 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2376" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4148" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "62f2f337-2fe3-4750-be60-a425be6cd7d0" + "deccb931-6628-42b0-9665-7b2c08a144b6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" + "11977" ], "x-ms-correlation-request-id": [ - "9ed278e9-c19f-4a41-bbbc-c68d76ad052e" + "11634bbc-5ef3-4de9-9de6-cb8e1e0aff94" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061614Z:9ed278e9-c19f-4a41-bbbc-c68d76ad052e" + "WESTUS:20201022T232636Z:11634bbc-5ef3-4de9-9de6-cb8e1e0aff94" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:26:35 GMT" + ], "Content-Length": [ "134" ], @@ -3222,60 +3188,63 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:16:44 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2373" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4146" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "d3163020-9029-4fb9-9c23-d22167aa442d" + "f8744722-c780-449b-b52c-5d8c792dfcae" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" + "11976" ], "x-ms-correlation-request-id": [ - "b7a1c0e6-5f6b-4b2a-b40f-1f888e219dd5" + "7bb31ccb-67c8-443b-8585-0c0ae3a399ea" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061644Z:b7a1c0e6-5f6b-4b2a-b40f-1f888e219dd5" + "WESTUS:20201022T232736Z:7bb31ccb-67c8-443b-8585-0c0ae3a399ea" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:27:35 GMT" + ], "Content-Length": [ "134" ], @@ -3286,60 +3255,63 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:17:14 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2370" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4144" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "ba95cf69-5c14-42e3-8da0-05d1b57ae076" + "94e596f8-9403-41cb-88ef-3bc7114af503" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" + "11975" ], "x-ms-correlation-request-id": [ - "01914ca3-5e27-43a1-9d08-e4285218b51e" + "f134646e-f8ac-4c58-8007-ed84a979db13" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061714Z:01914ca3-5e27-43a1-9d08-e4285218b51e" + "WESTUS:20201022T232836Z:f134646e-f8ac-4c58-8007-ed84a979db13" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:28:36 GMT" + ], "Content-Length": [ "134" ], @@ -3350,60 +3322,63 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:17:44 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2367" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4142" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "6bfeb8f9-4425-4952-b04c-cbabf4367498" + "462b7863-6d77-4b56-807a-54b3e07b8369" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11946" + "11974" ], "x-ms-correlation-request-id": [ - "912b5cf7-a889-4597-bb5f-8cba81f77f34" + "ab79e62e-5673-4470-a531-f4ec6c53bde8" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061745Z:912b5cf7-a889-4597-bb5f-8cba81f77f34" + "WESTUS:20201022T232937Z:ab79e62e-5673-4470-a531-f4ec6c53bde8" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:29:36 GMT" + ], "Content-Length": [ "134" ], @@ -3414,60 +3389,63 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:18:14 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2364" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4149" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "c450b658-5919-40f1-b4c9-05203de21071" + "40abee44-e881-4d6c-8558-8d5e758897f2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" + "11973" ], "x-ms-correlation-request-id": [ - "5db40dfa-ae67-46fd-951a-ffc63c8b31d6" + "0085f29d-0c13-4749-9b5b-302e31d915e3" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061815Z:5db40dfa-ae67-46fd-951a-ffc63c8b31d6" + "WESTUS:20201022T233037Z:0085f29d-0c13-4749-9b5b-302e31d915e3" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:30:36 GMT" + ], "Content-Length": [ "134" ], @@ -3478,60 +3456,63 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:18:45 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2361" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4147" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "d72f91e5-b3d2-4ce8-ae49-5b98f6e378e4" + "1c9712ca-8572-4519-b90e-1260e776a731" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11944" + "11972" ], "x-ms-correlation-request-id": [ - "f0c605f9-0e31-4112-8519-9a8b69d74ad3" + "7811b346-4406-44f2-824b-218db874da81" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061845Z:f0c605f9-0e31-4112-8519-9a8b69d74ad3" + "WESTUS:20201022T233137Z:7811b346-4406-44f2-824b-218db874da81" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:31:37 GMT" + ], "Content-Length": [ "134" ], @@ -3542,60 +3523,63 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:19:14 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2358" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4145" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "56216159-999e-431b-bc41-56d1ed9dae11" + "5453e96b-fde1-474d-b2ea-908f8c522f91" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11943" + "11971" ], "x-ms-correlation-request-id": [ - "0244afb1-c1a1-464c-9113-2396b0891d6a" + "56e86114-08f7-43b5-89ab-9c818825e2ca" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061915Z:0244afb1-c1a1-464c-9113-2396b0891d6a" + "WESTUS:20201022T233238Z:56e86114-08f7-43b5-89ab-9c818825e2ca" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:32:37 GMT" + ], "Content-Length": [ "134" ], @@ -3606,60 +3590,63 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:19:44 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2355" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4143" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "c83af0b2-8302-4615-8eb8-495176f10b90" + "d0ec979b-18b9-4585-82a8-383d305c5927" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11942" + "11970" ], "x-ms-correlation-request-id": [ - "3268cea5-3e25-4349-8626-39c07d9f0915" + "b70ac4da-fd47-489d-8765-0e59484c7917" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T061945Z:3268cea5-3e25-4349-8626-39c07d9f0915" + "WESTUS:20201022T233338Z:b70ac4da-fd47-489d-8765-0e59484c7917" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:33:37 GMT" + ], "Content-Length": [ "134" ], @@ -3670,60 +3657,63 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:20:14 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2352" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4141" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "2fde9843-864e-40c0-920b-53ef34295d2f" + "c3c75070-753d-4a7e-b2d3-7497e48600ec" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11941" + "11969" ], "x-ms-correlation-request-id": [ - "0807dcd1-4eda-4106-9186-216c01d98afe" + "7be0fc47-f328-41a2-8d2e-7d15d2959536" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T062015Z:0807dcd1-4eda-4106-9186-216c01d98afe" + "WESTUS:20201022T233438Z:7be0fc47-f328-41a2-8d2e-7d15d2959536" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:34:38 GMT" + ], "Content-Length": [ "134" ], @@ -3734,1403 +3724,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:20:45 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2349" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4154" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "4b3887cc-f764-40c7-93c4-e6ad4966dfb8" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11940" - ], - "x-ms-correlation-request-id": [ - "888da94f-a8eb-4f05-b7e0-d24be68e228b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T062045Z:888da94f-a8eb-4f05-b7e0-d24be68e228b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:21:15 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2347" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "62eacb79-61b1-4ca7-8fa7-be835c688e0f" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11939" - ], - "x-ms-correlation-request-id": [ - "779a750b-31f7-47e0-b5e0-37d47607abd5" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T062115Z:779a750b-31f7-47e0-b5e0-37d47607abd5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:21:45 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2344" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "b659d195-77b1-4334-87bc-ed24c09bb738" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11938" - ], - "x-ms-correlation-request-id": [ - "75f69156-54ae-4d0b-9b01-350a5e14b755" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T062146Z:75f69156-54ae-4d0b-9b01-350a5e14b755" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:22:16 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2341" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "22afe0d5-e44e-4042-9b94-ad04fc82a8d4" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11937" - ], - "x-ms-correlation-request-id": [ - "a93133bc-35f7-40f3-a5ef-71a85f6bd170" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T062216Z:a93133bc-35f7-40f3-a5ef-71a85f6bd170" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:22:46 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2338" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "748eca0f-9707-4c7f-b3cc-7e4dae3ad181" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11936" - ], - "x-ms-correlation-request-id": [ - "98f422d1-376a-44c7-94a9-0799dc0c810b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T062246Z:98f422d1-376a-44c7-94a9-0799dc0c810b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:23:16 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2335" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "b60a7027-28c9-4b06-8464-ad38d679fc4e" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11935" - ], - "x-ms-correlation-request-id": [ - "ff27dc34-44e6-4416-80d1-7cde617fd802" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T062316Z:ff27dc34-44e6-4416-80d1-7cde617fd802" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:23:45 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2332" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "9a2d2cca-cac1-4f8d-9e1e-2c57de561e2f" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11934" - ], - "x-ms-correlation-request-id": [ - "f05811f7-1e87-449b-8b29-548365003216" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T062346Z:f05811f7-1e87-449b-8b29-548365003216" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:24:15 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2329" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "bca057cb-bc8d-44aa-882c-6340c16f0e19" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11933" - ], - "x-ms-correlation-request-id": [ - "639ab468-225d-4499-9795-01c14ea588a7" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T062416Z:639ab468-225d-4499-9795-01c14ea588a7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:24:46 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2326" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "93809312-4f34-4990-88f5-8571577961c3" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11932" - ], - "x-ms-correlation-request-id": [ - "7eaca14e-6700-4b5a-a4f8-1d1c39316c9b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T062446Z:7eaca14e-6700-4b5a-a4f8-1d1c39316c9b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:25:16 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2323" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "3f1ad1c1-93a3-4a9e-8d76-515bf54dde99" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11931" - ], - "x-ms-correlation-request-id": [ - "d28cb86b-629f-4fc5-8f02-20196c86a3c1" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T062517Z:d28cb86b-629f-4fc5-8f02-20196c86a3c1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:25:46 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2320" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "c406bb92-fffe-4722-a7d5-c4489d34e486" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11930" - ], - "x-ms-correlation-request-id": [ - "edeeadbd-7180-41ba-8495-1ce6efff522c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T062547Z:edeeadbd-7180-41ba-8495-1ce6efff522c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:26:17 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2317" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "998b9ae4-2505-46c2-aa44-ce346b965906" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11929" - ], - "x-ms-correlation-request-id": [ - "0e88d722-c316-4886-b6ff-0f4a9b0efc21" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T062617Z:0e88d722-c316-4886-b6ff-0f4a9b0efc21" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:26:47 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2314" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "4a217903-3d96-46ff-b918-3cc6a4003dcb" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11928" - ], - "x-ms-correlation-request-id": [ - "1f68bf73-9b7a-42a6-9ca7-673e484c7b0e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T062647Z:1f68bf73-9b7a-42a6-9ca7-673e484c7b0e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:27:17 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2311" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "875f9587-e43e-4407-9d8f-a75e5bbc86f7" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11927" - ], - "x-ms-correlation-request-id": [ - "1ea20690-4b25-4361-8f81-02c050b0e6ad" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T062717Z:1ea20690-4b25-4361-8f81-02c050b0e6ad" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:27:46 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2308" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "10521c36-e86f-47e1-8ef3-69304c612ff8" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11926" - ], - "x-ms-correlation-request-id": [ - "c5261a87-0d8b-47c8-8377-68e72bb2ff81" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T062747Z:c5261a87-0d8b-47c8-8377-68e72bb2ff81" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:28:17 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2305" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "efe174ea-42f0-40fe-be64-73446106ca78" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11925" - ], - "x-ms-correlation-request-id": [ - "b5ad6efc-9979-4801-90bf-267e37fc49ca" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T062817Z:b5ad6efc-9979-4801-90bf-267e37fc49ca" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:28:47 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2302" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "e53706a5-312d-4edb-bf7a-93e08f708bb4" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11924" - ], - "x-ms-correlation-request-id": [ - "9a01b211-8a82-415f-b877-5d954ec56548" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T062848Z:9a01b211-8a82-415f-b877-5d954ec56548" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:29:17 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2300" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "d3c6cc22-cd4d-4643-8bce-2f8a93167acd" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11923" - ], - "x-ms-correlation-request-id": [ - "65440948-eab8-40bd-a649-abe0f382ed5c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T062918Z:65440948-eab8-40bd-a649-abe0f382ed5c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:29:48 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2297" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "e3115cc7-85ee-401e-ba1c-a1fe6c42a790" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11922" - ], - "x-ms-correlation-request-id": [ - "b3754d3e-3151-4224-b4a4-c933c563aa78" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T062948Z:b3754d3e-3151-4224-b4a4-c933c563aa78" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:30:17 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2294" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "647f817b-93b1-4d37-bb2e-8bede8c3419e" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11921" - ], - "x-ms-correlation-request-id": [ - "50c859e5-06d7-4418-9e3e-8b691284633b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T063018Z:50c859e5-06d7-4418-9e3e-8b691284633b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:30:47 GMT" - ], - "Pragma": [ - "no-cache" + "6093e32c-ad2a-421a-ab0f-5c84a38b6da4" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2291" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "82fbd97e-8075-45e4-93ac-76c88e082260" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11920" + "11968" ], "x-ms-correlation-request-id": [ - "8b807a9b-7bdc-4375-a552-fe58414e4597" + "34443839-6b0b-4110-8ef0-a4c930d48ea2" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T063048Z:8b807a9b-7bdc-4375-a552-fe58414e4597" + "WESTUS:20201022T233539Z:34443839-6b0b-4110-8ef0-a4c930d48ea2" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Sat, 13 Jun 2020 06:31:18 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2288" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "c237aa05-c647-478b-bbc5-6aec426f1d82" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11919" - ], - "x-ms-correlation-request-id": [ - "61c3586f-3c6a-42a3-b0e5-e5bf70d43836" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T063118Z:61c3586f-3c6a-42a3-b0e5-e5bf70d43836" - ], - "X-Content-Type-Options": [ - "nosniff" + "Thu, 22 Oct 2020 23:35:38 GMT" ], "Content-Length": [ "134" @@ -5142,60 +3791,63 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:31:48 GMT" - ], "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "no-cache" + ], + "Retry-After": [ + "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2285" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4152" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "ed3639b0-a312-4e73-994b-7838414cd158" + "8dd4b825-2895-46c9-af41-45abdf43613a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11918" + "11967" ], "x-ms-correlation-request-id": [ - "e5919727-1222-4429-b558-5dbbe45239b7" + "09d5764c-510b-41db-bac0-b4393611baa0" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T063148Z:e5919727-1222-4429-b558-5dbbe45239b7" + "WESTUS:20201022T233639Z:09d5764c-510b-41db-bac0-b4393611baa0" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:36:39 GMT" + ], "Content-Length": [ "134" ], @@ -5206,60 +3858,63 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:32:18 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2282" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4150" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "f25251a8-efbc-465e-a3f1-fd5b01fb06be" + "7ef9ac1f-e296-4266-9cd1-ab64b0064198" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11917" + "11966" ], "x-ms-correlation-request-id": [ - "4aa6879f-ac8f-4820-bd44-299939ca4136" + "0194400f-42d6-4036-ba44-ef9194fc2e88" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T063218Z:4aa6879f-ac8f-4820-bd44-299939ca4136" + "WESTUS:20201022T233739Z:0194400f-42d6-4036-ba44-ef9194fc2e88" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:37:39 GMT" + ], "Content-Length": [ "134" ], @@ -5270,60 +3925,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/3c639aa5-fd5d-4f71-847f-f045466cdc60?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8zYzYzOWFhNS1mZDVkLTRmNzEtODQ3Zi1mMDQ1NDY2Y2RjNjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:32:48 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2279" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4148" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "0974d1e5-2dde-4ed1-b9b5-411246fd4365" + "74679aa1-16d2-45f5-abe7-48039c6f32f0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11916" + "11965" ], "x-ms-correlation-request-id": [ - "1ce2919f-71ee-41a7-9f5d-dbc39b5f38d2" + "776cec08-6c96-45bb-a958-04c00dd5ecec" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T063249Z:1ce2919f-71ee-41a7-9f5d-dbc39b5f38d2" + "WESTUS:20201022T233840Z:776cec08-6c96-45bb-a958-04c00dd5ecec" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:38:40 GMT" + ], "Content-Length": [ "184" ], @@ -5334,62 +3989,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"endTime\": \"2020-06-12T23:32:28.8255227-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3c639aa5-fd5d-4f71-847f-f045466cdc60\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"endTime\": \"2020-10-22T16:37:49.4116167-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTU3OC9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTg0L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzNzQ1L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:32:48 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImageVersion3Min;1997,Microsoft.Compute/GetGalleryImageVersion30Min;9995" + "Microsoft.Compute/GetGalleryImageVersion3Min;1995,Microsoft.Compute/GetGalleryImageVersion30Min;9988" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "19409ff9-6800-4c4f-9ebe-61567ac6f743" + "8bf56308-6efa-48b6-a279-cb721b57689d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11915" + "11964" ], "x-ms-correlation-request-id": [ - "2a6141e3-a879-4bf1-8dcb-ad59d93060ac" + "598beffb-fd6f-465b-9e2a-41d45efff081" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T063249Z:2a6141e3-a879-4bf1-8dcb-ad59d93060ac" + "WESTUS:20201022T233840Z:598beffb-fd6f-465b-9e2a-41d45efff081" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:38:40 GMT" + ], "Content-Length": [ - "1146" + "1151" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5398,68 +4053,68 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84/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\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"endOfLifeDate\": \"2020-06-22T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/images/psTestSourceImage734\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/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\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"endOfLifeDate\": \"2020-11-01T00: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/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTU3OC9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTg0L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzNzQ1L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1270d40c-689d-488e-ab88-54d22f162208" + "38280a23-2b34-44ca-99c0-bac61c8141b7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:32:49 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImageVersion3Min;1996,Microsoft.Compute/GetGalleryImageVersion30Min;9994" + "Microsoft.Compute/GetGalleryImageVersion3Min;1994,Microsoft.Compute/GetGalleryImageVersion30Min;9987" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "d3e80610-518a-4184-97e4-bc47ef215c2f" + "82e0a8a3-3c87-44fe-909b-6e20e4faa08e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11914" + "11963" ], "x-ms-correlation-request-id": [ - "8b47211c-3c41-4019-8cb7-dfb91dfc2d0d" + "9bfddd38-008e-4478-86bf-bb31287501b6" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T063249Z:8b47211c-3c41-4019-8cb7-dfb91dfc2d0d" + "WESTUS:20201022T233840Z:9bfddd38-008e-4478-86bf-bb31287501b6" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:38:40 GMT" + ], "Content-Length": [ - "1146" + "1151" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5468,62 +4123,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84/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\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"endOfLifeDate\": \"2020-06-22T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/images/psTestSourceImage734\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/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\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"endOfLifeDate\": \"2020-11-01T00: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/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTU3OC9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTg0L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzNzQ1L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:34:20 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImageVersion3Min;1993,Microsoft.Compute/GetGalleryImageVersion30Min;9991" + "Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9984" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "1b1e1995-3fa3-4287-8e5d-f167f335c3af" + "81d3a6f9-18f0-469c-b58a-e003d34e34bc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11909" + "11958" ], "x-ms-correlation-request-id": [ - "ce4ebf72-7935-4c3a-a78b-b4cdedede93f" + "d65b862f-deac-4279-aa75-ed599a002111" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T063420Z:ce4ebf72-7935-4c3a-a78b-b4cdedede93f" + "WESTUS:20201022T234142Z:d65b862f-deac-4279-aa75-ed599a002111" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:41:41 GMT" + ], "Content-Length": [ - "1146" + "1151" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5532,68 +4187,68 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84/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\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"endOfLifeDate\": \"2020-09-20T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/images/psTestSourceImage734\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/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\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"endOfLifeDate\": \"2021-01-30T00: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/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTU3OC9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTg0L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzNzQ1L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5f9fa8a-2960-4861-92be-6f1ebfabcc10" + "7ea47b3d-89b3-4e77-bb66-0224c5f80839" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:34:20 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImageVersion3Min;1992,Microsoft.Compute/GetGalleryImageVersion30Min;9990" + "Microsoft.Compute/GetGalleryImageVersion3Min;1998,Microsoft.Compute/GetGalleryImageVersion30Min;9983" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "7592be8b-10ba-4798-8057-5a1e9547c309" + "f40ce4ba-3b67-4621-bab0-8e9f8c7d7522" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11908" + "11957" ], "x-ms-correlation-request-id": [ - "0b3016b6-f94d-4f81-bcde-9a93b19f7649" + "d8567afb-e3b9-4cff-95a6-5c58c6671e25" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T063420Z:0b3016b6-f94d-4f81-bcde-9a93b19f7649" + "WESTUS:20201022T234142Z:d8567afb-e3b9-4cff-95a6-5c58c6671e25" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:41:41 GMT" + ], "Content-Length": [ - "1146" + "1151" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5602,68 +4257,68 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84/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\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"endOfLifeDate\": \"2020-09-20T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/images/psTestSourceImage734\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/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\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"endOfLifeDate\": \"2021-01-30T00: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/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84/versions/1.0.0?$expand=ReplicationStatus&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTU3OC9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTg0L3ZlcnNpb25zLzEuMC4wPyRleHBhbmQ9UmVwbGljYXRpb25TdGF0dXMmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/versions/1.0.0?$expand=ReplicationStatus&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzNzQ1L3ZlcnNpb25zLzEuMC4wPyRleHBhbmQ9UmVwbGljYXRpb25TdGF0dXMmYXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eaa73b91-1617-4ab4-9f20-ca02b8f71e3f" + "9f67809f-03a1-4ba8-999e-799f6e72a132" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:32:49 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImageVersion3Min;1995,Microsoft.Compute/GetGalleryImageVersion30Min;9993" + "Microsoft.Compute/GetGalleryImageVersion3Min;1993,Microsoft.Compute/GetGalleryImageVersion30Min;9986" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "b2e8662d-a90c-4099-947c-0297d8f669b0" + "e1fa8287-264c-472e-baac-ff6b8b485cef" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11913" + "11962" ], "x-ms-correlation-request-id": [ - "d2d0fee7-84d1-4e8f-98c2-ac2156d74ca9" + "56f182be-2402-4045-93a9-ee47b5c23890" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T063249Z:d2d0fee7-84d1-4e8f-98c2-ac2156d74ca9" + "WESTUS:20201022T233840Z:56f182be-2402-4045-93a9-ee47b5c23890" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:38:40 GMT" + ], "Content-Length": [ - "1364" + "1369" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5672,60 +4327,63 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84/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\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"endOfLifeDate\": \"2020-06-22T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/images/psTestSourceImage734\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"replicationStatus\": {\r\n \"aggregatedState\": \"Completed\",\r\n \"summary\": [\r\n {\r\n \"region\": \"eastus2\",\r\n \"state\": \"Completed\",\r\n \"progress\": 100\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/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/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\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"endOfLifeDate\": \"2020-11-01T00: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/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"replicationStatus\": {\r\n \"aggregatedState\": \"Completed\",\r\n \"summary\": [\r\n {\r\n \"region\": \"eastus2\",\r\n \"state\": \"Completed\",\r\n \"progress\": 100\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/152bfdd1-8523-4f62-9927-cf58bb278e10?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8xNTJiZmRkMS04NTIzLTRmNjItOTkyNy1jZjU4YmIyNzhlMTA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/df430ebe-c312-4d04-9b67-e7f2eaeba97a?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9kZjQzMGViZS1jMzEyLTRkMDQtOWI2Ny1lN2YyZWFlYmE5N2E/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:33:19 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2276" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4146" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "e6a94318-fc6a-43f3-b4cb-d461d0fa8c09" + "c676b8d9-ccad-4509-948a-7ce19324d74a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11912" + "11961" ], "x-ms-correlation-request-id": [ - "6d9d96fb-de5c-4cd7-a711-de62633a5ffc" + "86bac651-0da8-4695-bdcd-c74830cb2bed" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T063320Z:6d9d96fb-de5c-4cd7-a711-de62633a5ffc" + "WESTUS:20201022T233941Z:86bac651-0da8-4695-bdcd-c74830cb2bed" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:39:40 GMT" + ], "Content-Length": [ "134" ], @@ -5736,60 +4394,63 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:32:49.6699225-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"152bfdd1-8523-4f62-9927-cf58bb278e10\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:38:40.6770898-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"df430ebe-c312-4d04-9b67-e7f2eaeba97a\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/152bfdd1-8523-4f62-9927-cf58bb278e10?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8xNTJiZmRkMS04NTIzLTRmNjItOTkyNy1jZjU4YmIyNzhlMTA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/df430ebe-c312-4d04-9b67-e7f2eaeba97a?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9kZjQzMGViZS1jMzEyLTRkMDQtOWI2Ny1lN2YyZWFlYmE5N2E/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:33:49 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2274" + "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4152" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "4110991e-8fc2-435e-97d1-1575665a0f69" + "fc0c2a3a-f71f-4a45-a231-f6b16b4570e3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11911" + "11960" ], "x-ms-correlation-request-id": [ - "71237042-9691-4b02-ac57-476ba86f1460" + "5f33cef1-c4f1-4e55-a968-61cb5e430749" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T063350Z:71237042-9691-4b02-ac57-476ba86f1460" + "WESTUS:20201022T234041Z:5f33cef1-c4f1-4e55-a968-61cb5e430749" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:40:40 GMT" + ], "Content-Length": [ "134" ], @@ -5800,60 +4461,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:32:49.6699225-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"152bfdd1-8523-4f62-9927-cf58bb278e10\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:38:40.6770898-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"df430ebe-c312-4d04-9b67-e7f2eaeba97a\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/152bfdd1-8523-4f62-9927-cf58bb278e10?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8xNTJiZmRkMS04NTIzLTRmNjItOTkyNy1jZjU4YmIyNzhlMTA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/df430ebe-c312-4d04-9b67-e7f2eaeba97a?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9kZjQzMGViZS1jMzEyLTRkMDQtOWI2Ny1lN2YyZWFlYmE5N2E/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:34:20 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2271" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4150" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "6c5377b3-d11d-48a7-9253-fc131b7866ea" + "910015ce-dd15-4684-b78b-ed10170f4237" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11910" + "11959" ], "x-ms-correlation-request-id": [ - "1ca1b8e3-8f21-417e-aa30-d3ebc69be41d" + "017c3fea-aa16-4b51-b409-1be3f39e53f2" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T063420Z:1ca1b8e3-8f21-417e-aa30-d3ebc69be41d" + "WESTUS:20201022T234141Z:017c3fea-aa16-4b51-b409-1be3f39e53f2" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:41:41 GMT" + ], "Content-Length": [ "184" ], @@ -5864,86 +4525,91 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:32:49.6699225-07:00\",\r\n \"endTime\": \"2020-06-12T23:34:19.7356054-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"152bfdd1-8523-4f62-9927-cf58bb278e10\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:38:40.6770898-07:00\",\r\n \"endTime\": \"2020-10-22T16:41:10.8486799-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"df430ebe-c312-4d04-9b67-e7f2eaeba97a\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84/versions?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTU3OC9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTg0L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/versions?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzNzQ1L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d9a13d4d-e443-4520-ae95-1aca818f2dc6" + "949906a1-c5ef-40de-9ac4-c4a8694c2e3c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:34:21 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "5fcf5d93-832b-49ce-896d-0ccb175b2a44", - "6233906f-9192-4095-9421-bd297295912d", - "f38e9d65-d251-4423-8f5f-96f109f2458f", - "45493542-ee1f-4287-8245-51f4d4b6e51f", - "afad4c25-dde3-4edf-b3ec-efc3f127fb73", - "345d95f0-c80e-433f-9c39-1a3f8c512aec", - "2420a08e-6def-4e20-8e6d-d136b3583811", - "b7868148-7738-4839-b790-d538d8d15007", - "b5d3bbe0-1353-49f0-8044-fb89126d1392", - "5ea0491b-44ee-416a-bf95-c31280303eb6", - "1889b924-5f8f-4979-a94f-c0b4574bc6ee", - "023ce2a8-af3a-491f-a642-4171f15937a8", - "d1cc5735-314f-4b96-8f27-1b9ffe3597d0", - "478e3317-a528-4dbc-b740-03d2a4c2036e", - "0b55d28b-da0a-40f1-8279-cb8a1c521570", - "bfbb6971-b0e5-439e-96a1-4552cc1502b6", - "4137e839-4eb7-4cee-9e17-470a589bc5a1", - "593912ef-5713-4213-8c9a-05ce3fc64cd2", - "1a77215f-320d-4c02-909b-da53c1f27d3c", - "f5f094d9-36a6-4c19-89c1-d13d5e1f94e0", - "42cd1922-81bf-401d-945a-86747a3701ba", - "b5ba798d-8803-4584-bd4c-b562850c5058", - "d4828352-e25e-4213-a7d6-c89d515a8cea", - "d537c6cb-70c4-4e24-839e-f47f12cbade6", - "2890acb1-607b-4294-a739-80b7e9db28e6", - "531ed8c6-843e-4002-8891-dda3b3c60fe5", - "5af58313-130d-42e3-86df-8636b78d2e20", - "e577fc1c-0ace-4af8-a906-dfacf55859d5", - "3c873a0a-a692-4a17-bdbf-99538bf04453", - "93da3ee1-b200-41db-8775-745f5f44ff1d", - "44fdef0b-f5e4-4a91-99e5-0eada6da340d", - "a6d26904-e4c3-4215-acae-fc5bea9abe8a", - "69ef56b1-b86d-4733-b67e-976325cb81fb", - "570081b4-dd82-4099-8a87-f394ece1574a", - "cfb5a073-8526-4162-8d33-08091a1a965f" + "dd2ed183-bd18-49ff-b512-bd202beda84a", + "40860ab9-f2c7-40ea-aee4-05811cb2db05", + "f7c97797-970d-4723-9e99-65b804660f87", + "bf01726f-86a4-4d0d-a7de-31d85a5866db", + "2dee530b-92f3-4cee-8b44-27082642d4fa", + "d37ea41a-e18f-409d-aec8-dad532be90df", + "b78d316c-eed6-4d23-ada5-59f95b8764e1", + "fb7429b7-6446-4b60-8c2e-e822555a646a", + "74c9a3f0-5a43-483f-9c39-4ed6c79cb061", + "761c3ec9-43c5-4b30-b5cd-e3264583ed98", + "19c63f84-37ac-4146-b00a-6bca81f957c6", + "0e05e873-f307-40db-abf4-5c9a76c117f8", + "b2809d85-b364-400d-bba5-a0bfc6e6de86", + "5f57ae87-be2d-4c28-ab3e-ace10f36592b", + "5e91a5b6-5d7d-42d4-9d2c-0be655297508", + "3b18f67a-367b-4f77-87a6-25283d9cff5a", + "5a43a20f-8ab3-449d-857b-0efb5e9d23c1", + "9411755e-2714-4ed0-b3ce-43d1b1d3baa6", + "083f4b3b-70ae-4959-8ca7-39b417f293a0", + "32f572a0-d5be-4ac4-8724-70044d578010", + "5d14b2cd-a405-4d37-9836-1343eebe1ab8", + "66c2aa24-62f1-4b57-8c0c-f5aa2cda5844", + "2c403464-e313-4e5a-b4fc-24b104e860a1", + "5b6756ed-dd8f-4cda-8c45-1652fd32b586", + "88f3712b-e6ac-46b9-a79c-37f5599747df", + "3c6054ea-64e5-4fdb-9908-f4265ed6cc5f", + "a4bbf35a-1254-46c6-a54c-9ae7f19cf66e", + "6e4d178a-f8bf-45ff-92bf-2f44fc35442d", + "fc6b6242-f433-438d-90cf-7e0908d833a0", + "ec43cc11-670d-411b-907f-6163d122638f", + "b3cdde2f-de72-4702-9bfd-96636d24fb45", + "e5c5f508-b30b-487d-adf7-9d4a4dccc50f", + "17caed0b-7691-4f45-a749-28e3e781f169", + "bc9a8009-efa5-4e17-8f07-83f2f6a99fd7", + "9a9113e0-ce3d-40ca-92e6-bdad63e33ea7", + "83f4bf00-7e49-434b-a1d2-3333cdd95259", + "e1af7b33-3304-48f6-8d6c-6952e6765410", + "f0473bc4-f980-4ef0-8509-791a98fce4c8", + "5b5e30d7-3133-4221-923a-e4f7283a15cb", + "724a4000-0c66-4aea-a633-33d84f1e047a", + "7c8694ab-e875-440a-94ba-22909e29cb4a", + "e1d0be52-1701-4e52-9819-0a74621d4f62", + "d3d6be90-acc3-4135-b580-8a922fd26413" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11907" + "11956" ], "x-ms-request-id": [ - "8a4b11e5-56ad-496b-a4bc-bcf0d1baa1b2" + "7fe4707c-a40a-4254-ac1f-67987a844eec" ], "x-ms-correlation-request-id": [ - "8a4b11e5-56ad-496b-a4bc-bcf0d1baa1b2" + "7fe4707c-a40a-4254-ac1f-67987a844eec" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T063422Z:8a4b11e5-56ad-496b-a4bc-bcf0d1baa1b2" + "WESTUS:20201022T234143Z:7fe4707c-a40a-4254-ac1f-67987a844eec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5951,96 +4617,104 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "895" + "Date": [ + "Thu, 22 Oct 2020 23:41:43 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "900" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84/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\": \"2020-06-12T23:12:43.2667367-07:00\",\r\n \"endOfLifeDate\": \"2020-09-20T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/images/psTestSourceImage734\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/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\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"endOfLifeDate\": \"2021-01-30T00: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/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84/versions?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTU3OC9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTg0L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/versions?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzNzQ1L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "401dffdb-1cbe-40df-9962-e86fb7740d06" + "14509df9-a131-4b0e-b9d6-85d219291a5a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:35:53 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "715d5126-054e-4274-8f30-279eb12443e0", - "84b72a98-245f-4332-b925-be6d35fadea6", - "dab31b47-20e7-43f1-9a7a-472d2a425a20", - "4744a3cd-31d4-4271-9fb5-030899440140", - "d95344dc-ea86-4559-9cc1-ba86cfa9ed56", - "db7ddb79-fca3-4238-a75c-fb81af1ab5f0", - "0a4e2613-bfbc-47ca-a934-60d6fd21e142", - "e7030039-e3fb-44d2-9c09-76cb7fde9df7", - "8cde90d8-c812-41a9-a26f-1c2e0dc1e527", - "fa98c34c-76d0-4f1e-8af1-089f4a9a6209", - "cac183c1-b3cd-4a35-8261-02280b455c94", - "07993480-5a1b-47e3-8691-afa7389dd012", - "60808e28-fb2c-4b3a-9c8b-c4e65a17e8e1", - "8d93b417-5cfe-4025-9522-46adf787c5c5", - "c7414c23-55a5-49e5-8d98-1fa73f40d9ba", - "eeaddb21-ebb1-4824-93e6-7f24bca93427", - "88fd1146-951f-491a-9abc-25a3dfec6180", - "4a66e9e6-10a1-46f5-9dad-e20adb46c2e0", - "45a2f81c-56af-40a2-8388-7efa8e61a124", - "1efdcab4-d385-4d5b-85ad-649ff252a22d", - "22a73196-1b9b-4482-92fd-8713095ec2a5", - "635e28b6-f819-4dcc-9b12-a20a7caacfb3", - "2dce7c3d-ce60-49c6-924f-443829296e92", - "ad816e7e-0a08-4c77-aa1b-7a614d0882d7", - "975aa5f4-45c0-43c4-9884-1ddd60fc5f8c", - "9b5446e6-e759-451c-8747-6203c459ab92", - "aa2ac777-eb67-4653-9851-979fda6784b6", - "f52670d2-f798-41b4-8a84-bf63fff752cc", - "910249f3-bd6a-4563-a9d7-8144adf34553", - "3b672454-5b5a-487b-ac31-abc36ddf63af", - "0420ef8d-f9df-416e-9493-3fa02e0b3a9e", - "a224cc7d-edca-4054-9fd7-c027d9520bf5", - "9171a998-1cc5-4416-ad6b-7b12a5a1f185", - "77298ca3-ff30-47a9-ab1d-572ad38f69c8", - "560442cd-5aba-4283-b0ec-729e5f37d7f9" + "136f66e6-0915-4512-9b46-06dd5ae29bdc", + "69288caa-98ff-4628-bc0f-87b55c11be2e", + "a52f9944-135e-4644-87a4-0c63604bd93f", + "8031ee73-5e75-488a-a845-6c01d498da6c", + "277822ce-ad5e-4c82-a66b-867e6041b20a", + "4d0e0ad3-06c0-4d78-a5d9-fabc679ce7e8", + "e71b2eb5-dda6-4734-82ce-98fc541f16e0", + "7e58fbb6-6199-4a63-b8e2-2db3cb7e5bb7", + "d499304e-ad64-4870-8123-19393663c029", + "7b3020bc-1632-4b70-abbe-76e637311525", + "a7766d95-b980-4118-a752-1b9e2d49e6b5", + "0b0bf6b3-c12a-45a1-aa18-1848a53031b7", + "8020d942-ccd6-445c-9487-da766f6bcdcf", + "7be73e92-11fa-4f33-9727-39797e1153a3", + "9952856f-2501-4937-a762-b7da8ead1148", + "9953ca2f-d8ee-4913-ae06-fe2cf0cd3182", + "bd667df1-2e19-478f-b0a2-aa3b2e21c7f2", + "10a5ca64-0de0-4d48-8ab5-1047d0ba11e1", + "66968db8-5f20-4b3a-8692-058414f0597e", + "93593c24-005f-4e6e-b7bc-2be7d34f64b1", + "eaef44d1-2739-4af9-9f74-aa4df5b79228", + "d368e7ce-df52-4e77-85b3-c746b48fd178", + "4401f894-e8fe-4a3c-8b7f-c10c45343154", + "e397b9f0-557b-4727-bfca-cb5c635c6459", + "96962fb7-e2aa-43f7-a615-429d6d967252", + "1fa636a6-aba6-4c7b-8f0e-dfa0097e3e4a", + "9a3ccbab-5814-41e2-b5b9-a994d04f5843", + "9736d912-0ea5-47e3-98bb-eb324f65e930", + "b9f4a4a6-4bdb-4143-9a69-422114576e4b", + "e4312cd7-50b0-46b8-96cd-f6c8ebf69e01", + "939253ce-962e-40cb-85b4-b775dda6b992", + "b125f35f-c44e-4545-842f-90bfd905f48d", + "71fe9238-0618-4b43-8164-f75c830c44fe", + "b36234d2-e1c8-4845-a6bc-a8626fd60621", + "a2df2a05-8274-47ae-b73c-3111a3ef7ecc", + "66226737-9d01-4341-97ef-5b63673e7800", + "88bfb73b-d50e-4a29-bcab-770fb3e17a8c", + "10445497-a4ad-4f19-8e5d-a06439d947ef", + "a7322188-64e2-4c63-9448-71a68e33c95d", + "abd68f01-cf4e-4d79-b3ff-40d239b08be4", + "c920a3ab-8115-4b83-95ea-e40968072516", + "c5894c79-04f5-477e-bfed-b2b5be8e2c72", + "8779d777-e4a0-4cf1-8f11-44da1245ea61" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11902" + "11952" ], "x-ms-request-id": [ - "34232335-4e0e-4f67-9b60-7a5ef8f72098" + "28b7c326-8b03-4a18-8383-bff35af23af4" ], "x-ms-correlation-request-id": [ - "34232335-4e0e-4f67-9b60-7a5ef8f72098" + "28b7c326-8b03-4a18-8383-bff35af23af4" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T063554Z:34232335-4e0e-4f67-9b60-7a5ef8f72098" + "WESTUS:20201022T234346Z:28b7c326-8b03-4a18-8383-bff35af23af4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6048,57 +4722,56 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "12" + "Date": [ + "Thu, 22 Oct 2020 23:43:46 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "12" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTU3OC9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTg0L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzNzQ1L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6e6f5188-c896-4b23-9a0d-54c55349264c" + "d0c7644d-d34a-4ea4-9e53-2230e6959fe8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:34:22 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/402ec3a2-f01b-410e-a795-c8738da84cd6?monitor=true&api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/78986a1d-e90f-4b92-a358-be943c27ec7b?monitor=true&api-version=2020-09-30" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/402ec3a2-f01b-410e-a795-c8738da84cd6?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/78986a1d-e90f-4b92-a358-be943c27ec7b?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/DeleteGalleryImageVersion3Min;149,Microsoft.Compute/DeleteGalleryImageVersion30Min;999" @@ -6107,148 +4780,94 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "402ec3a2-f01b-410e-a795-c8738da84cd6" + "78986a1d-e90f-4b92-a358-be943c27ec7b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14999" ], "x-ms-correlation-request-id": [ - "53c8c289-a704-4e11-b3fc-3cc446098754" + "682cf089-cf9a-48b4-8c51-01ebde7d6969" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T063422Z:53c8c289-a704-4e11-b3fc-3cc446098754" + "WESTUS:20201022T234144Z:682cf089-cf9a-48b4-8c51-01ebde7d6969" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 22 Oct 2020 23:41:43 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/402ec3a2-f01b-410e-a795-c8738da84cd6?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy80MDJlYzNhMi1mMDFiLTQxMGUtYTc5NS1jODczOGRhODRjZDY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/78986a1d-e90f-4b92-a358-be943c27ec7b?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83ODk4NmExZC1lOTBmLTRiOTItYTM1OC1iZTk0M2MyN2VjN2I/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:34:52 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2268" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4148" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "1d7be0bd-13c2-4f3e-bbf7-2bc3ec6f1753" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11906" - ], - "x-ms-correlation-request-id": [ - "e48c21e4-8a84-454e-be41-b14afeffcd26" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200613T063452Z:e48c21e4-8a84-454e-be41-b14afeffcd26" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:34:22.6732356-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"402ec3a2-f01b-410e-a795-c8738da84cd6\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/402ec3a2-f01b-410e-a795-c8738da84cd6?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy80MDJlYzNhMi1mMDFiLTQxMGUtYTc5NS1jODczOGRhODRjZDY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 13 Jun 2020 06:35:22 GMT" - ], - "Pragma": [ - "no-cache" + "822ea189-bb53-4fa7-a099-191a3a4ff0ba" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;2265" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" - ], - "x-ms-request-id": [ - "8e69ea7d-f2bc-4e7c-93c2-160c6553be3e" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11905" + "11955" ], "x-ms-correlation-request-id": [ - "e0e7f867-88db-4042-b35e-af9e18658a66" + "c4a4a83a-a7ae-47ff-a514-f9f73977f2a5" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T063522Z:e0e7f867-88db-4042-b35e-af9e18658a66" + "WESTUS:20201022T234244Z:c4a4a83a-a7ae-47ff-a514-f9f73977f2a5" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:42:43 GMT" + ], "Content-Length": [ "134" ], @@ -6259,60 +4878,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:34:22.6732356-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"402ec3a2-f01b-410e-a795-c8738da84cd6\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:41:43.8955623-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"78986a1d-e90f-4b92-a358-be943c27ec7b\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/402ec3a2-f01b-410e-a795-c8738da84cd6?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy80MDJlYzNhMi1mMDFiLTQxMGUtYTc5NS1jODczOGRhODRjZDY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/78986a1d-e90f-4b92-a358-be943c27ec7b?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83ODk4NmExZC1lOTBmLTRiOTItYTM1OC1iZTk0M2MyN2VjN2I/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:35:52 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;2262" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4146" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "2dda5ea0-9181-4f43-aa30-870efbb39a95" + "ca7dfe97-d610-4b0b-a3a8-1302c6b60a13" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11904" + "11954" ], "x-ms-correlation-request-id": [ - "a24dcf97-d908-4f28-9aae-441e8311cd44" + "813d742f-9c48-43e7-8e5a-ddb008849955" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T063553Z:a24dcf97-d908-4f28-9aae-441e8311cd44" + "WESTUS:20201022T234344Z:813d742f-9c48-43e7-8e5a-ddb008849955" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:43:44 GMT" + ], "Content-Length": [ "184" ], @@ -6323,108 +4942,101 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:34:22.6732356-07:00\",\r\n \"endTime\": \"2020-06-12T23:35:52.8639164-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"402ec3a2-f01b-410e-a795-c8738da84cd6\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:41:43.8955623-07:00\",\r\n \"endTime\": \"2020-10-22T16:43:14.0830795-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"78986a1d-e90f-4b92-a358-be943c27ec7b\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/402ec3a2-f01b-410e-a795-c8738da84cd6?monitor=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy80MDJlYzNhMi1mMDFiLTQxMGUtYTc5NS1jODczOGRhODRjZDY/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/78986a1d-e90f-4b92-a358-be943c27ec7b?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83ODk4NmExZC1lOTBmLTRiOTItYTM1OC1iZTk0M2MyN2VjN2I/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:35:52 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1182,Microsoft.Compute/GetOperationStatus30Min;2261" + "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4145" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "d02d4e33-2148-419d-8602-bd8c78ebb184" + "4ca817fe-ba07-4552-843e-9ec3493aeab9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11903" + "11953" ], "x-ms-correlation-request-id": [ - "dd8cb369-a261-4ca6-a0bd-d9aa17f0bc30" + "a4b60305-a50f-4512-b2ca-e209b41fab5e" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T063553Z:dd8cb369-a261-4ca6-a0bd-d9aa17f0bc30" + "WESTUS:20201022T234344Z:a4b60305-a50f-4512-b2ca-e209b41fab5e" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 22 Oct 2020 23:43:44 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/images/psTestSourceImage734?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaW1hZ2VzL3BzVGVzdFNvdXJjZUltYWdlNzM0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTg2OTM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d179ecee-1c19-437a-a71a-0ff1bc35d167" + "aa21c917-cd0b-4581-b888-8b93df6304b0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:40:54 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/operations/cd16d36f-5d70-4a24-87fd-77334b7876f3?monitor=true&api-version=2020-06-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/f604a968-db5c-4eb6-8d93-33636e6415cc?monitor=true&api-version=2020-06-01" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/operations/cd16d36f-5d70-4a24-87fd-77334b7876f3?api-version=2020-06-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/f604a968-db5c-4eb6-8d93-33636e6415cc?api-version=2020-06-01" ], "Azure-AsyncNotification": [ "Enabled" @@ -6436,56 +5048,60 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cd16d36f-5d70-4a24-87fd-77334b7876f3" + "f604a968-db5c-4eb6-8d93-33636e6415cc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "c9481434-4d5a-4152-859f-1a8f97a46515" + "8c394935-c448-4533-a220-dab1c882d4f8" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T064054Z:c9481434-4d5a-4152-859f-1a8f97a46515" + "WESTUS:20201022T234846Z:8c394935-c448-4533-a220-dab1c882d4f8" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 22 Oct 2020 23:48:46 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/images/psTestSourceImage734?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaW1hZ2VzL3BzVGVzdFNvdXJjZUltYWdlNzM0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTg2OTM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b25412e9-1de3-4f13-8f35-8c3c77fe5725" + "eacde523-3115-4ffc-b6d9-120b3165efd6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:43:07 GMT" - ], "Pragma": [ "no-cache" ], @@ -6493,13 +5109,13 @@ "14994" ], "x-ms-request-id": [ - "4babbd8d-e7a3-4d46-965c-b160afadccc0" + "761970a2-8c68-4389-b13c-7dc8453f3360" ], "x-ms-correlation-request-id": [ - "4babbd8d-e7a3-4d46-965c-b160afadccc0" + "761970a2-8c68-4389-b13c-7dc8453f3360" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T064307Z:4babbd8d-e7a3-4d46-965c-b160afadccc0" + "WESTUS:20201022T235130Z:761970a2-8c68-4389-b13c-7dc8453f3360" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6507,6 +5123,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:51:29 GMT" + ], "Expires": [ "-1" ] @@ -6515,53 +5134,53 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/operations/cd16d36f-5d70-4a24-87fd-77334b7876f3?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2NkMTZkMzZmLTVkNzAtNGEyNC04N2ZkLTc3MzM0Yjc4NzZmMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/f604a968-db5c-4eb6-8d93-33636e6415cc?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2Y2MDRhOTY4LWRiNWMtNGViNi04ZDkzLTMzNjM2ZTY0MTVjYz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:41:24 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29992" + "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29986" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "921f4d80-cc6d-494c-a47b-2875010cd734" + "9ff1f665-c5fe-438c-80e4-dce431263c4b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "88526741-2ccd-42d3-93ff-bcdde041bc94" + "b28836c0-474c-4b14-a345-8f9e08e7c4f0" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T064125Z:88526741-2ccd-42d3-93ff-bcdde041bc94" + "WESTUS:20201022T234916Z:b28836c0-474c-4b14-a345-8f9e08e7c4f0" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:49:16 GMT" + ], "Content-Length": [ "184" ], @@ -6572,108 +5191,101 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:40:54.8781581-07:00\",\r\n \"endTime\": \"2020-06-12T23:40:59.9875687-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"cd16d36f-5d70-4a24-87fd-77334b7876f3\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:48:46.6966297-07:00\",\r\n \"endTime\": \"2020-10-22T16:48:51.8216873-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f604a968-db5c-4eb6-8d93-33636e6415cc\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/operations/cd16d36f-5d70-4a24-87fd-77334b7876f3?monitor=true&api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2NkMTZkMzZmLTVkNzAtNGEyNC04N2ZkLTc3MzM0Yjc4NzZmMz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/f604a968-db5c-4eb6-8d93-33636e6415cc?monitor=true&api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2Y2MDRhOTY4LWRiNWMtNGViNi04ZDkzLTMzNjM2ZTY0MTVjYz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:41:24 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29991" + "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29985" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5fe67afa-dddd-45ce-8e8f-2d85a6643b3b" + "ec220855-608a-4a31-b98c-8215eb9b8a3d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "a7ceac8b-a838-4cc6-a9cf-9a81f9d91902" + "b46b5b08-7acb-4b9a-ae04-37c9d4351e0d" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T064125Z:a7ceac8b-a838-4cc6-a9cf-9a81f9d91902" + "WESTUS:20201022T234917Z:b46b5b08-7acb-4b9a-ae04-37c9d4351e0d" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 22 Oct 2020 23:49:16 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/virtualMachines/vm7497?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtNzQ5Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/virtualMachines/vm6924?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY5MjQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26a608d8-2b50-4ad5-8091-4253a1c8afbf" + "e5484adf-f732-4f89-8f75-90ea7d80f73e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:41:25 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/operations/13154447-7c54-48b4-a50b-8f5d2b3e3ea9?monitor=true&api-version=2020-06-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/e9323d1f-0a27-44f2-9a64-4043a2ab7ed2?monitor=true&api-version=2020-06-01" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/operations/13154447-7c54-48b4-a50b-8f5d2b3e3ea9?api-version=2020-06-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/e9323d1f-0a27-44f2-9a64-4043a2ab7ed2?api-version=2020-06-01" ], "Azure-AsyncNotification": [ "Enabled" @@ -6685,56 +5297,60 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "13154447-7c54-48b4-a50b-8f5d2b3e3ea9" + "e9323d1f-0a27-44f2-9a64-4043a2ab7ed2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "b7814c85-bd69-4272-8c44-7be8050d8bfd" + "68bbc0b0-2920-404f-ac23-e59cb5bc1118" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T064125Z:b7814c85-bd69-4272-8c44-7be8050d8bfd" + "WESTUS:20201022T234917Z:68bbc0b0-2920-404f-ac23-e59cb5bc1118" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 22 Oct 2020 23:49:17 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/virtualMachines/vm7497?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtNzQ5Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/virtualMachines/vm6924?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY5MjQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05745ebf-adb2-4d53-ae1d-400c97644ca0" + "609e6791-a244-4f25-a239-1493e86ae3e8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:43:07 GMT" - ], "Pragma": [ "no-cache" ], @@ -6742,13 +5358,13 @@ "14995" ], "x-ms-request-id": [ - "a75922c3-ac83-42da-9c30-c4e3e0a9ffeb" + "346bcaba-ff12-48e3-8f2a-a8755592d3f9" ], "x-ms-correlation-request-id": [ - "a75922c3-ac83-42da-9c30-c4e3e0a9ffeb" + "346bcaba-ff12-48e3-8f2a-a8755592d3f9" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T064307Z:a75922c3-ac83-42da-9c30-c4e3e0a9ffeb" + "WESTUS:20201022T235129Z:346bcaba-ff12-48e3-8f2a-a8755592d3f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6756,6 +5372,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:51:28 GMT" + ], "Expires": [ "-1" ] @@ -6764,56 +5383,56 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/operations/13154447-7c54-48b4-a50b-8f5d2b3e3ea9?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzEzMTU0NDQ3LTdjNTQtNDhiNC1hNTBiLThmNWQyYjNlM2VhOT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/e9323d1f-0a27-44f2-9a64-4043a2ab7ed2?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2U5MzIzZDFmLTBhMjctNDRmMi05YTY0LTQwNDNhMmFiN2VkMj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:41:35 GMT" - ], "Pragma": [ "no-cache" ], "Retry-After": [ "30" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29990" + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29983" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "49cefa85-171d-4330-975d-85c6c97d4b4e" + "95f5074f-a098-4938-9401-bb99aea68f6c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "50ddd639-c0df-48f1-9b4a-980288bcaff8" + "e239006b-386e-4621-883f-6516c290f933" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T064135Z:50ddd639-c0df-48f1-9b4a-980288bcaff8" + "WESTUS:20201022T234927Z:e239006b-386e-4621-883f-6516c290f933" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:49:27 GMT" + ], "Content-Length": [ "134" ], @@ -6824,59 +5443,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:41:25.4096207-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"13154447-7c54-48b4-a50b-8f5d2b3e3ea9\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:49:17.2282436-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e9323d1f-0a27-44f2-9a64-4043a2ab7ed2\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/operations/13154447-7c54-48b4-a50b-8f5d2b3e3ea9?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzEzMTU0NDQ3LTdjNTQtNDhiNC1hNTBiLThmNWQyYjNlM2VhOT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/e9323d1f-0a27-44f2-9a64-4043a2ab7ed2?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2U5MzIzZDFmLTBhMjctNDRmMi05YTY0LTQwNDNhMmFiN2VkMj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:42:05 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29988" + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29982" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "964e674c-2fa4-45e2-9e76-fed1ae923f7e" + "986df32c-23c9-428f-aff1-9babcb21136d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "9fcf34d6-f471-4b30-ae8f-ea50530ae127" + "842f3833-1a01-4579-ba04-cc5b586effca" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T064205Z:9fcf34d6-f471-4b30-ae8f-ea50530ae127" + "WESTUS:20201022T234957Z:842f3833-1a01-4579-ba04-cc5b586effca" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:49:57 GMT" + ], "Content-Length": [ - "184" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6885,105 +5504,159 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:41:25.4096207-07:00\",\r\n \"endTime\": \"2020-06-12T23:42:02.9567369-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"13154447-7c54-48b4-a50b-8f5d2b3e3ea9\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:49:17.2282436-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e9323d1f-0a27-44f2-9a64-4043a2ab7ed2\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/operations/13154447-7c54-48b4-a50b-8f5d2b3e3ea9?monitor=true&api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzEzMTU0NDQ3LTdjNTQtNDhiNC1hNTBiLThmNWQyYjNlM2VhOT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/e9323d1f-0a27-44f2-9a64-4043a2ab7ed2?api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2U5MzIzZDFmLTBhMjctNDRmMi05YTY0LTQwNDNhMmFiN2VkMj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:42:05 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29980" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "74e7ecf9-abb5-4cb9-ba5f-cbd94b7bd636" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "a4f26b3d-967e-477e-a590-9fddcec40fd9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201022T235027Z:a4f26b3d-967e-477e-a590-9fddcec40fd9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 22 Oct 2020 23:50:27 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:49:17.2282436-07:00\",\r\n \"endTime\": \"2020-10-22T16:49:58.8535257-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e9323d1f-0a27-44f2-9a64-4043a2ab7ed2\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/e9323d1f-0a27-44f2-9a64-4043a2ab7ed2?monitor=true&api-version=2020-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2U5MzIzZDFmLTBhMjctNDRmMi05YTY0LTQwNDNhMmFiN2VkMj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29987" + "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29979" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "36e74250-fb9e-4ef9-abb3-abfc1a29350c" + "bc2faa52-bbbf-492b-ab58-b2c863fdf47a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-correlation-request-id": [ - "e253f6af-8fc5-4a46-b8cd-15a3d17cfed1" + "c12a3c23-68da-4e32-99d4-5ce4b6678e19" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T064206Z:e253f6af-8fc5-4a46-b8cd-15a3d17cfed1" + "WESTUS:20201022T235027Z:c12a3c23-68da-4e32-99d4-5ce4b6678e19" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 22 Oct 2020 23:50:27 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578/images/galleryPsTestGalleryImage84?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTU3OC9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTg0P2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzNzQ1P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0806fcfc-05f5-482b-b541-fa0e7f5afd98" + "9a953d4a-b630-4377-ab6b-4a7d66d69da0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:42:05 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/17f9ca63-2b45-43d5-9321-8eae547ac0a3?monitor=true&api-version=2019-12-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/4f887188-a866-42cd-bdbb-72a5cea50e95?monitor=true&api-version=2020-09-30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/17f9ca63-2b45-43d5-9321-8eae547ac0a3?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/4f887188-a866-42cd-bdbb-72a5cea50e95?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/DeleteGalleryImage3Min;49,Microsoft.Compute/DeleteGalleryImage30Min;299" @@ -6992,86 +5665,93 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "17f9ca63-2b45-43d5-9321-8eae547ac0a3" + "4f887188-a866-42cd-bdbb-72a5cea50e95" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], "x-ms-correlation-request-id": [ - "f66cec3d-20df-4312-9104-02b9e0460fbe" + "8819010d-c4b7-4300-9a65-e69b9ce247f2" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T064206Z:f66cec3d-20df-4312-9104-02b9e0460fbe" + "WESTUS:20201022T235028Z:8819010d-c4b7-4300-9a65-e69b9ce247f2" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 22 Oct 2020 23:50:27 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/17f9ca63-2b45-43d5-9321-8eae547ac0a3?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8xN2Y5Y2E2My0yYjQ1LTQzZDUtOTMyMS04ZWFlNTQ3YWMwYTM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/4f887188-a866-42cd-bdbb-72a5cea50e95?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy80Zjg4NzE4OC1hODY2LTQyY2QtYmRiYi03MmE1Y2VhNTBlOTU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:42:35 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;2274" + "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4160" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "e5cd9b86-6429-493c-b7a5-eb773f2b9b60" + "6ed257f6-60bd-42dd-a5c3-9b86787b544c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-correlation-request-id": [ - "f6d2b717-e1e9-496f-8f53-76e059f85dc9" + "1e783e28-25d6-437e-b35a-9f7adb04abd2" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T064236Z:f6d2b717-e1e9-496f-8f53-76e059f85dc9" + "WESTUS:20201022T235058Z:1e783e28-25d6-437e-b35a-9f7adb04abd2" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:50:57 GMT" + ], "Content-Length": [ - "184" + "183" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7080,108 +5760,101 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:42:06.5649491-07:00\",\r\n \"endTime\": \"2020-06-12T23:42:06.7684808-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"17f9ca63-2b45-43d5-9321-8eae547ac0a3\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:50:28.317439-07:00\",\r\n \"endTime\": \"2020-10-22T16:50:28.5519056-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4f887188-a866-42cd-bdbb-72a5cea50e95\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/17f9ca63-2b45-43d5-9321-8eae547ac0a3?monitor=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8xN2Y5Y2E2My0yYjQ1LTQzZDUtOTMyMS04ZWFlNTQ3YWMwYTM/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/4f887188-a866-42cd-bdbb-72a5cea50e95?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy80Zjg4NzE4OC1hODY2LTQyY2QtYmRiYi03MmE1Y2VhNTBlOTU/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:42:35 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;2273" + "Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4159" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "198a237a-c5ea-4ceb-b64f-3894b58eaa6a" + "f8868dea-74ab-455c-bc28-2d315b334bd7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-correlation-request-id": [ - "51f929f5-91eb-4018-a89f-6860193f858d" + "f58cb289-aa98-496c-956b-fea9b2971a68" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T064236Z:51f929f5-91eb-4018-a89f-6860193f858d" + "WESTUS:20201022T235058Z:f58cb289-aa98-496c-956b-fea9b2971a68" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 22 Oct 2020 23:50:57 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg243/providers/Microsoft.Compute/galleries/galleryPsTestGallery1578?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzI0My9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5MTU3OD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c352220e-6fa6-4903-b847-0d480e77a292" + "46ab08e9-6e62-4d9e-92d5-a038443409d0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:42:36 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/f47d0e3b-e68d-4b55-93cf-5440a4c953fa?monitor=true&api-version=2019-12-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/f1fcf756-9f68-4321-bc90-05c3632854e9?monitor=true&api-version=2020-09-30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/f47d0e3b-e68d-4b55-93cf-5440a4c953fa?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/f1fcf756-9f68-4321-bc90-05c3632854e9?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;299" @@ -7190,86 +5863,93 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "f47d0e3b-e68d-4b55-93cf-5440a4c953fa" + "f1fcf756-9f68-4321-bc90-05c3632854e9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14996" ], "x-ms-correlation-request-id": [ - "adad671a-145c-4a05-ae3c-bb281b7964c9" + "33dfab89-131e-4671-b189-e5ff656dff15" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T064237Z:adad671a-145c-4a05-ae3c-bb281b7964c9" + "WESTUS:20201022T235059Z:33dfab89-131e-4671-b189-e5ff656dff15" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 22 Oct 2020 23:50:58 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/f47d0e3b-e68d-4b55-93cf-5440a4c953fa?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mNDdkMGUzYi1lNjhkLTRiNTUtOTNjZi01NDQwYTRjOTUzZmE/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/f1fcf756-9f68-4321-bc90-05c3632854e9?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mMWZjZjc1Ni05ZjY4LTQzMjEtYmM5MC0wNWMzNjMyODU0ZTk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:43:07 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;2271" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4157" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "7926eb49-b0b4-4680-9405-6477f4f03bfe" + "87b4a60e-dfbd-4f79-bb21-a4d9ac0951ac" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-correlation-request-id": [ - "da2859c9-2d91-4877-b912-ec9da6440d13" + "43c6fe09-abb5-44e6-b4db-6c039c5aa504" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T064307Z:da2859c9-2d91-4877-b912-ec9da6440d13" + "WESTUS:20201022T235129Z:43c6fe09-abb5-44e6-b4db-6c039c5aa504" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:51:28 GMT" + ], "Content-Length": [ - "184" + "182" ], "Content-Type": [ "application/json; charset=utf-8" @@ -7278,65 +5958,65 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-06-12T23:42:37.1754891-07:00\",\r\n \"endTime\": \"2020-06-12T23:42:37.2536091-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f47d0e3b-e68d-4b55-93cf-5440a4c953fa\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:50:59.0986877-07:00\",\r\n \"endTime\": \"2020-10-22T16:50:59.19241-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f1fcf756-9f68-4321-bc90-05c3632854e9\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/capsOperations/f47d0e3b-e68d-4b55-93cf-5440a4c953fa?monitor=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mNDdkMGUzYi1lNjhkLTRiNTUtOTNjZi01NDQwYTRjOTUzZmE/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/f1fcf756-9f68-4321-bc90-05c3632854e9?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mMWZjZjc1Ni05ZjY4LTQzMjEtYmM5MC0wNWMzNjMyODU0ZTk/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19041.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/38.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 13 Jun 2020 06:43:07 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;2270" + "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4156" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527,bdbf79bb-2dbb-4caf-982f-b2778f09497d_132299949206540527" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "1dd8ff8b-0b4b-414e-a174-06ceeccb0eea" + "2b3fe3b9-ac77-42e3-b310-c82d99bf1629" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11990" ], "x-ms-correlation-request-id": [ - "cd1ac539-2f89-4822-8f76-7410326c0fa1" + "d669c661-9b7a-478c-a11d-9e3e7167061c" ], "x-ms-routing-request-id": [ - "WESTUS:20200613T064307Z:cd1ac539-2f89-4822-8f76-7410326c0fa1" + "WESTUS:20201022T235129Z:d669c661-9b7a-478c-a11d-9e3e7167061c" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 22 Oct 2020 23:51:28 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -7345,36 +6025,36 @@ ], "Names": { "GalleryImageVersion_CRUD_Tests": [ - "galleryPsTestRg243", - "psTestSourceImage734", - "galleryPsTestGallery1578", - "galleryPsTestGalleryImage84" + "galleryPsTestRg9950", + "psTestSourceImage8693", + "galleryPsTestGallery5957", + "galleryPsTestGalleryImage3745" ], "CreateCRPImage": [ - "saforgallery5476", - "asforgallery4759" + "saforgallery3821", + "asforgallery9985" ], "CreatePublicIP": [ - "pip6201", - "dn8804" + "pip6143", + "dn6774" ], "CreateVNET": [ - "vn4028", - "sn489" + "vn632", + "sn3362" ], "CreateNIC": [ - "nic7376", - "ip4804" + "nic1723", + "ip4160" ], "CreateDefaultVMInput": [ - "crptestar2173", - "crptestar3983", - "crptestar7165", - "vm7497", - "Microsoft.Compute/virtualMachines837" + "crptestar8729", + "crptestar1077", + "crptestar8032", + "vm6924", + "Microsoft.Compute/virtualMachines5763" ] }, "Variables": { - "SubscriptionId": "0296790d-427c-48ca-b204-8b729bbd8670" + "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 847d1a018a0b..6a12ddf57ff7 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryImage_CRUD_Tests.json +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryImage_CRUD_Tests.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg7368?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNjg/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg5359?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzUzNTk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e1e62610-8c13-4e3c-9b66-988e96697fe1" + "68191049-45e8-478e-9644-409692bce604" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ @@ -29,9 +29,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:28:44 GMT" - ], "Pragma": [ "no-cache" ], @@ -39,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "bc2cc9f1-4b49-4c62-bdfe-afa79c402c1b" + "e90b7ca1-69b6-478b-bf04-ebf9cefede10" ], "x-ms-correlation-request-id": [ - "bc2cc9f1-4b49-4c62-bdfe-afa79c402c1b" + "e90b7ca1-69b6-478b-bf04-ebf9cefede10" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T012845Z:bc2cc9f1-4b49-4c62-bdfe-afa79c402c1b" + "WESTUS:20201022T230740Z:e90b7ca1-69b6-478b-bf04-ebf9cefede10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -53,6 +50,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:07:40 GMT" + ], "Content-Length": [ "192" ], @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368\",\r\n \"name\": \"galleryPsTestRg7368\",\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/galleryPsTestRg5359\",\r\n \"name\": \"galleryPsTestRg5359\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368/providers/Microsoft.Compute/galleries/galleryPsTestGallery941?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk0MT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzUzNTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4OTc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "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": [ - "d2dcb1a3-4687-4a8e-a7c8-6ca34a69fdf4" + "d22f8749-2ebd-4e1d-b1dd-efac76d53287" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -95,42 +95,45 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:28:48 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/15074ef6-1655-4767-81f0-388fa1c3c2af?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fb6f1ca1-73f3-412a-a0ad-1fa428c6f4a6?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateGallery3Min;48,Microsoft.Compute/CreateUpdateGallery30Min;296" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "15074ef6-1655-4767-81f0-388fa1c3c2af" + "fb6f1ca1-73f3-412a-a0ad-1fa428c6f4a6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "fec9783d-055c-4646-a947-b241d2526646" + "dbbb020a-81ba-4b67-9ada-53ba41ace969" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T012849Z:fec9783d-055c-4646-a947-b241d2526646" + "WESTUS:20201022T230744Z:dbbb020a-81ba-4b67-9ada-53ba41ace969" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:07:43 GMT" + ], "Content-Length": [ - "505" + "573" ], "Content-Type": [ "application/json; charset=utf-8" @@ -139,59 +142,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery941\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368/providers/Microsoft.Compute/galleries/galleryPsTestGallery941\",\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-GALLERYPSTESTGALLERY941\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8897\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897\",\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-GALLERYPSTESTGALLERY8897\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Private\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/15074ef6-1655-4767-81f0-388fa1c3c2af?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8xNTA3NGVmNi0xNjU1LTQ3NjctODFmMC0zODhmYTFjM2MyYWY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fb6f1ca1-73f3-412a-a0ad-1fa428c6f4a6?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mYjZmMWNhMS03M2YzLTQxMmEtYTBhZC0xZmE0MjhjNmY0YTY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:29:18 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4163" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "6ad42f32-ef29-43fc-a4c3-1ce2d28271b5" + "3261dc2d-24e2-49db-8c33-43d423785127" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "47927bbb-1775-418b-b5b5-2bbc6c8eaca0" + "a13e0992-d7e7-4e0b-9b8c-e3e13d0851c5" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T012919Z:47927bbb-1775-418b-b5b5-2bbc6c8eaca0" + "WESTUS:20201022T230814Z:a13e0992-d7e7-4e0b-9b8c-e3e13d0851c5" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:08:14 GMT" + ], "Content-Length": [ - "183" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -200,59 +206,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:28:47.869301-08:00\",\r\n \"endTime\": \"2020-02-20T17:28:48.1193159-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"15074ef6-1655-4767-81f0-388fa1c3c2af\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:07:43.8183343-07:00\",\r\n \"endTime\": \"2020-10-22T16:07:43.8964573-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"fb6f1ca1-73f3-412a-a0ad-1fa428c6f4a6\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368/providers/Microsoft.Compute/galleries/galleryPsTestGallery941?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk0MT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzUzNTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4OTc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:29:18 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;337,Microsoft.Compute/GetGallery30Min;2472" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "eb669e70-4bc5-4ac5-b4e3-d0f93d5719a1" + "560e7f98-f658-46d5-96b9-1fa59fe38916" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "ffdda3f9-d2e2-4484-a44e-43194e293bda" + "f32b43e7-c09d-4982-93f0-c450eb699623" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T012919Z:ffdda3f9-d2e2-4484-a44e-43194e293bda" + "WESTUS:20201022T230814Z:f32b43e7-c09d-4982-93f0-c450eb699623" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:08:14 GMT" + ], "Content-Length": [ - "506" + "509" ], "Content-Type": [ "application/json; charset=utf-8" @@ -261,26 +270,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery941\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368/providers/Microsoft.Compute/galleries/galleryPsTestGallery941\",\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-GALLERYPSTESTGALLERY941\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8897\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897\",\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-GALLERYPSTESTGALLERY8897\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368/providers/Microsoft.Compute/galleries/galleryPsTestGallery941/images/galleryPsTestGalleryImage6286?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk0MS9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTYyODY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images/galleryPsTestGalleryImage8015?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzUzNTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4OTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4MDE1P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "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": [ - "55b7b7b8-198e-4aaf-ac67-4bd8607f5199" + "7078bf97-837c-4455-bbcb-efb037f3aafe" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -293,42 +302,45 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:29:20 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/7dbfbcb1-45ef-4dcc-898b-16272004feeb?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/e75bdc81-6b12-4d5b-afd8-2d592ffcaaa5?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;746" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "7dbfbcb1-45ef-4dcc-898b-16272004feeb" + "e75bdc81-6b12-4d5b-afd8-2d592ffcaaa5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "ef3a9d83-f74d-4c02-8bbe-0351c13ea925" + "adcaae5e-3834-4fb1-b206-d53f60517298" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T012920Z:ef3a9d83-f74d-4c02-8bbe-0351c13ea925" + "WESTUS:20201022T230816Z:adcaae5e-3834-4fb1-b206-d53f60517298" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:08:16 GMT" + ], "Content-Length": [ - "645" + "646" ], "Content-Type": [ "application/json; charset=utf-8" @@ -337,26 +349,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage6286\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368/providers/Microsoft.Compute/galleries/galleryPsTestGallery941/images/galleryPsTestGalleryImage6286\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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\": \"galleryPsTestGalleryImage8015\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images/galleryPsTestGalleryImage8015\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"description\": \"This is the gallery image description.\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368/providers/Microsoft.Compute/galleries/galleryPsTestGallery941/images/galleryPsTestGalleryImage6286?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk0MS9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTYyODY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images/galleryPsTestGalleryImage8015?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzUzNTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4OTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4MDE1P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "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": [ - "bdd856f5-2e4a-4d33-877e-06641a64f2e4" + "eda125ba-0727-42c0-b863-583056c3988d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -369,42 +381,45 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:29:51 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/0b7768a6-9a6c-4edf-ac15-ea7817befbca?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fe80c8b1-9fd8-4b25-b345-00bb350eb54f?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateGalleryImage3Min;148,Microsoft.Compute/CreateUpdateGalleryImage30Min;745" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "0b7768a6-9a6c-4edf-ac15-ea7817befbca" + "fe80c8b1-9fd8-4b25-b345-00bb350eb54f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "c51928a8-4f19-4631-bfec-05af014f6ce8" + "ec36a6cb-85af-443a-85bd-ad5e98bd7f51" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T012951Z:c51928a8-4f19-4631-bfec-05af014f6ce8" + "WESTUS:20201022T230847Z:ec36a6cb-85af-443a-85bd-ad5e98bd7f51" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:08:46 GMT" + ], "Content-Length": [ - "627" + "628" ], "Content-Type": [ "application/json; charset=utf-8" @@ -413,57 +428,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage6286\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368/providers/Microsoft.Compute/galleries/galleryPsTestGallery941/images/galleryPsTestGalleryImage6286\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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\": \"galleryPsTestGalleryImage8015\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images/galleryPsTestGalleryImage8015\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Updated description.\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/7dbfbcb1-45ef-4dcc-898b-16272004feeb?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83ZGJmYmNiMS00NWVmLTRkY2MtODk4Yi0xNjI3MjAwNGZlZWI/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/e75bdc81-6b12-4d5b-afd8-2d592ffcaaa5?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lNzViZGM4MS02YjEyLTRkNWItYWZkOC0yZDU5MmZmY2FhYTU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:29:50 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4161" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "879b98da-a4d8-49f6-9cff-9849821f95ef" + "7a50ce1a-b9f1-4700-a813-0b17fbb3bf14" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "45b30b3c-1bdc-4957-8b1d-3a5843788813" + "6dd5185d-9715-469a-9883-56af7b946693" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T012950Z:45b30b3c-1bdc-4957-8b1d-3a5843788813" + "WESTUS:20201022T230846Z:6dd5185d-9715-469a-9883-56af7b946693" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:08:45 GMT" + ], "Content-Length": [ "184" ], @@ -474,59 +492,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:29:20.2454325-08:00\",\r\n \"endTime\": \"2020-02-20T17:29:20.3548119-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7dbfbcb1-45ef-4dcc-898b-16272004feeb\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:08:15.8339603-07:00\",\r\n \"endTime\": \"2020-10-22T16:08:15.9433783-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e75bdc81-6b12-4d5b-afd8-2d592ffcaaa5\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368/providers/Microsoft.Compute/galleries/galleryPsTestGallery941/images/galleryPsTestGalleryImage6286?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk0MS9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTYyODY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images/galleryPsTestGalleryImage8015?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzUzNTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4OTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4MDE1P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:29:50 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGalleryImage3Min;588,Microsoft.Compute/GetGalleryImage30Min;2961" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "1688bd5d-ea9d-4a13-8d2e-cc4190597859" + "97893d87-24c8-4e14-884f-bf7aa64e4a96" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "36a4485e-d28e-43ea-9ff7-e9b9c8f1ee74" + "33b77fc9-1187-49c6-8f0f-a61ae8414890" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T012951Z:36a4485e-d28e-43ea-9ff7-e9b9c8f1ee74" + "WESTUS:20201022T230846Z:33b77fc9-1187-49c6-8f0f-a61ae8414890" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:08:46 GMT" + ], "Content-Length": [ - "646" + "647" ], "Content-Type": [ "application/json; charset=utf-8" @@ -535,65 +556,68 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage6286\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368/providers/Microsoft.Compute/galleries/galleryPsTestGallery941/images/galleryPsTestGalleryImage6286\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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\": \"galleryPsTestGalleryImage8015\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images/galleryPsTestGalleryImage8015\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"This is the gallery image description.\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368/providers/Microsoft.Compute/galleries/galleryPsTestGallery941/images/galleryPsTestGalleryImage6286?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk0MS9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTYyODY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images/galleryPsTestGalleryImage8015?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzUzNTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4OTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4MDE1P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4131099f-123e-49a6-b6e4-3144183f78fa" + "d6a62161-0d68-453f-bec2-dd138929c2c5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:29:51 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGalleryImage3Min;587,Microsoft.Compute/GetGalleryImage30Min;2960" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "62c24f2d-0815-45ff-839f-5dd03ae3321a" + "47821a10-14f4-4c5c-bcab-b845089c5d02" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "cb606853-db43-4326-80f3-2f3928e1dc82" + "4575f5ff-f415-41c0-836c-f511eed61540" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T012951Z:cb606853-db43-4326-80f3-2f3928e1dc82" + "WESTUS:20201022T230846Z:4575f5ff-f415-41c0-836c-f511eed61540" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:08:46 GMT" + ], "Content-Length": [ - "646" + "647" ], "Content-Type": [ "application/json; charset=utf-8" @@ -602,59 +626,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage6286\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368/providers/Microsoft.Compute/galleries/galleryPsTestGallery941/images/galleryPsTestGalleryImage6286\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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\": \"galleryPsTestGalleryImage8015\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images/galleryPsTestGalleryImage8015\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"This is the gallery image description.\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368/providers/Microsoft.Compute/galleries/galleryPsTestGallery941/images/galleryPsTestGalleryImage6286?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk0MS9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTYyODY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images/galleryPsTestGalleryImage8015?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzUzNTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4OTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4MDE1P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:30:21 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGalleryImage3Min;586,Microsoft.Compute/GetGalleryImage30Min;2955" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "a00b9407-f297-4aca-9400-2ede00c8fdbc" + "973dfe38-adb9-4a8e-9add-b3cfc06d44dd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-correlation-request-id": [ - "421325c5-2a14-4d5b-b855-3c7a938e1191" + "5fd01e85-49d9-46c1-afb2-2f2175da6ba5" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013022Z:421325c5-2a14-4d5b-b855-3c7a938e1191" + "WESTUS:20201022T230917Z:5fd01e85-49d9-46c1-afb2-2f2175da6ba5" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:09:16 GMT" + ], "Content-Length": [ - "628" + "629" ], "Content-Type": [ "application/json; charset=utf-8" @@ -663,65 +690,68 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage6286\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368/providers/Microsoft.Compute/galleries/galleryPsTestGallery941/images/galleryPsTestGalleryImage6286\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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\": \"galleryPsTestGalleryImage8015\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images/galleryPsTestGalleryImage8015\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Updated description.\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368/providers/Microsoft.Compute/galleries/galleryPsTestGallery941/images/galleryPsTestGalleryImage6286?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk0MS9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTYyODY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images/galleryPsTestGalleryImage8015?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzUzNTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4OTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4MDE1P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "95bba199-514f-4936-a8d8-47ad8e09756a" + "6353644b-a9f1-44cd-a971-6fa33342eee8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:30:21 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGalleryImage3Min;585,Microsoft.Compute/GetGalleryImage30Min;2954" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "8643e797-a396-4f2c-8a46-e861989b1fd6" + "beb12661-318f-4155-a8d4-d34244bad89e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], "x-ms-correlation-request-id": [ - "bbc7713e-bfea-4123-901c-502aca77c365" + "f4565e39-848f-4cf1-992f-75bb7c697ec2" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013022Z:bbc7713e-bfea-4123-901c-502aca77c365" + "WESTUS:20201022T230917Z:f4565e39-848f-4cf1-992f-75bb7c697ec2" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:09:16 GMT" + ], "Content-Length": [ - "628" + "629" ], "Content-Type": [ "application/json; charset=utf-8" @@ -730,57 +760,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage6286\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368/providers/Microsoft.Compute/galleries/galleryPsTestGallery941/images/galleryPsTestGalleryImage6286\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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\": \"galleryPsTestGalleryImage8015\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images/galleryPsTestGalleryImage8015\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Updated description.\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/0b7768a6-9a6c-4edf-ac15-ea7817befbca?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wYjc3NjhhNi05YTZjLTRlZGYtYWMxNS1lYTc4MTdiZWZiY2E/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fe80c8b1-9fd8-4b25-b345-00bb350eb54f?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mZTgwYzhiMS05ZmQ4LTRiMjUtYjM0NS0wMGJiMzUwZWI1NGY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:30:21 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4158" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "3207d34f-7810-4635-ab91-3310355e3bb8" + "12b1b749-d1a2-4177-8879-390a2b50ffc4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-correlation-request-id": [ - "88ffa2aa-b2fe-47dc-9bf1-151f26fc19a3" + "c08c008a-6d95-4e5d-86bf-88e0c60665b7" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013021Z:88ffa2aa-b2fe-47dc-9bf1-151f26fc19a3" + "WESTUS:20201022T230917Z:c08c008a-6d95-4e5d-86bf-88e0c60665b7" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:09:16 GMT" + ], "Content-Length": [ "184" ], @@ -791,95 +824,91 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:29:51.3868934-08:00\",\r\n \"endTime\": \"2020-02-20T17:29:51.4181491-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0b7768a6-9a6c-4edf-ac15-ea7817befbca\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:08:46.8964855-07:00\",\r\n \"endTime\": \"2020-10-22T16:08:46.9277347-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"fe80c8b1-9fd8-4b25-b345-00bb350eb54f\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368/providers/Microsoft.Compute/galleries/galleryPsTestGallery941/images?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk0MS9pbWFnZXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzUzNTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4OTcvaW1hZ2VzP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad0cca63-4ed4-44e8-984d-076766183734" + "50609e37-7033-44e6-bff3-6be21bb85786" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:30:23 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "fecb13f9-bb81-4305-8d46-df333bfa74d4", - "0a49d506-54d6-4a9d-bb36-ca1ca17cc235", - "55a70e76-1f9e-4506-8e42-f109328cf6fd", - "dca0b23e-8d40-4435-b382-f2346784dc59", - "ec94507d-eb97-4d44-aee7-c6db908628d7", - "4ccde0c0-7ea6-4898-b820-ebb650d13ec6", - "b8e38715-4e08-409d-a96c-3cdd9645f861", - "fcd13c44-19a2-4335-8e99-7689d3fc51de", - "39d6b36d-a4ce-4465-8664-125400d77670", - "ba9a7820-c9e6-4b1a-845f-a115d6ad31c1", - "db6a44c3-adc2-4c47-8c14-fda76de221ba", - "6f50c1ac-88d2-4706-a2fb-877278c67183", - "51e37a3c-296d-43ad-8ef4-d4877e8461b7", - "45ae1227-30ee-47a5-af08-cd938cb53815", - "1fcb25df-9733-4b4f-b66a-cdeb6cb2faa7", - "e1d1e737-9c5b-4387-8288-4d9d5db15b31", - "722b4bd6-317b-4f7b-9a8a-fd90ff030b8d", - "5d9c5024-a29a-485f-ac29-12ebbc8e2797", - "f04df368-0743-4b1c-a8a1-72066f30e4c8", - "874255d9-5692-400c-8b32-10e454a35944", - "6685e3a2-e1d2-4a31-88ec-d8ada05a2482", - "2f0276dc-1d08-4231-9a57-70eecf5b5098", - "ca17ce82-019f-4ca1-93e7-c6dff79eb8ff", - "6c610ff2-7534-4b87-8f78-496de4bbc613", - "a1596b67-63de-4e9a-8f2a-f6f8454048a3", - "2a972757-8fe1-4fad-b44e-420214f816c7", - "80b13aba-5977-47e6-8e15-df7c4aec46e6", - "0a89076b-aaa5-4e69-9baa-7cdfe3652ede", - "251766db-9e46-4200-919b-ba1f44bbe435", - "4938102c-1364-46cf-ace1-9407da051704", - "95f528d6-9c06-4884-9004-fffc3c750412", - "bdd63cbb-1b9a-4e0d-8252-9595472b1b7f", - "1074b13c-9a32-4859-8d45-815a0de59196", - "b096a0f8-7873-4723-8d17-338538a594f6", - "2d24f7cd-a81d-4b43-ac7f-639f91c3e268", - "1ef1d2e8-67ab-493d-bd66-ff539c6bcda5", - "baa7fec9-1699-4f6f-8333-018beb0c5b00", - "0169422b-7d76-40be-8a0c-86565d71ad88", - "622cf7af-e928-47d3-a11a-2af6561a09fe", - "14e1c96d-e8a3-4e9d-ba53-1121eb18c1a2", - "e915cb0a-93fa-4e45-bdae-8d01e89e8e5a", - "2ae858d9-01fe-4c9a-a9ab-07cbe715ee4a", - "a822c5e4-0bd0-4b52-a0f9-0b9b2d301257", - "d583dbfa-6721-40b5-bd70-80bed10d6972" + "e7fecd32-2a89-41f0-b35e-759715f287a0", + "b0fbd3ee-c9e8-45f5-b7a7-20315c2e4cc6", + "03d476f4-7425-45db-b63c-f38425a2fbf1", + "e881c475-69cb-4d6f-a8bf-1c4b0cac0edc", + "7d3eef71-053e-46ab-a1bf-100e76d8fb1f", + "b53a35c8-3fdf-45f6-9657-5fe2b399055a", + "fd759f9e-ed3a-46c4-803c-3739896c2721", + "44ffcaca-36d6-4601-9309-9435befc6424", + "5d9a1bd3-e984-4ac1-be5a-33358bfd6c7d", + "8295b913-cb57-4011-8de0-3dbd5c7b9b56", + "0a0872af-c3a0-4827-a685-44651f81ea42", + "f5006ac9-4257-447b-a0ca-193b047e6cb3", + "2159f7ff-8b21-4bbc-b2ee-02fb5598bd93", + "a30cac47-8c95-40d2-9b5c-cbc659066d88", + "477a13be-7917-4b2d-af5f-94c1c6712bc2", + "b36ff679-395f-45a5-b1c3-5a5720486a19", + "808ca131-a46e-4b5f-bf49-43d0c12749cb", + "3267e724-ad3b-4952-b165-dcd3fb9d675f", + "ccb63cb1-4708-4e7f-b091-173715d5a684", + "e20682d6-af09-42cf-b0a3-47f89f357dd2", + "ab34a94c-a46d-4670-b373-494343f782f3", + "fa079b1f-c045-419f-ae2a-5cfcc5ec16a8", + "d386302b-0eae-4158-8da7-f6897cf01cd3", + "040e575a-5b01-4fac-b6c3-897658c73aed", + "d9a15f2c-b8f9-45b2-a7eb-373dbe4e13e1", + "37082f34-29e4-4889-a52c-def8b13c99c4", + "7ee7b8b4-5c38-4f06-acc5-ff3e87759cbc", + "21f0a828-4816-484b-a441-dbade3a60314", + "6c91f2c5-d56d-4d88-a3ea-3918c19e596b", + "2b585a18-380c-436d-8f20-be098835b2c2", + "61392074-a789-45ba-91e5-b3b2f2a740a4", + "9d4c7ad6-b660-4ddf-93ae-f582a88ba672", + "457e685e-2592-4cd4-932f-08d5ba35d3c6", + "db12db1a-00bd-4815-b684-598b3872feaa", + "57b899bd-7890-4ccc-b25b-980108b1054c", + "7eead5f9-7632-4634-8577-c4b366ce2cb1", + "ab00c5b0-e8be-4506-946f-7d9741955a3f", + "6e55e5f0-1bb0-4a2f-84c4-6c7d403cc8bd", + "a65a53ed-d290-4d72-8ffb-6925230ed8f1", + "9a612e45-a23e-404a-8a58-752a5036caff", + "26188204-84d0-4c62-a6bd-0e7f405bf434", + "df345a51-eb8a-4123-9763-64a5a443cf30", + "ea4e0ce0-8827-4e41-83ea-d2f096ca7681" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], "x-ms-request-id": [ - "ae2eb0d8-4991-4236-ba18-c5fb8403db0f" + "432534dd-0ac4-4622-a3ce-b2dec49a4963" ], "x-ms-correlation-request-id": [ - "ae2eb0d8-4991-4236-ba18-c5fb8403db0f" + "432534dd-0ac4-4622-a3ce-b2dec49a4963" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013023Z:ae2eb0d8-4991-4236-ba18-c5fb8403db0f" + "WESTUS:20201022T230917Z:432534dd-0ac4-4622-a3ce-b2dec49a4963" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -887,105 +916,104 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "534" + "Date": [ + "Thu, 22 Oct 2020 23:09:17 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "535" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"galleryPsTestGalleryImage6286\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368/providers/Microsoft.Compute/galleries/galleryPsTestGallery941/images/galleryPsTestGalleryImage6286\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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\": \"galleryPsTestGalleryImage8015\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images/galleryPsTestGalleryImage8015\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Updated description.\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368/providers/Microsoft.Compute/galleries/galleryPsTestGallery941/images?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk0MS9pbWFnZXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzUzNTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4OTcvaW1hZ2VzP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "514b34fe-3293-4793-9900-e01bebef1c2d" + "cedeee07-7760-4695-965a-a1685b15d0f0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:30:54 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "530abaa3-8223-42d7-b2a4-adcda6e6d4a8", - "d1fe72f8-a16f-491b-b9b9-d1831f7db7ec", - "31e0933e-5662-4cdd-84fb-54c845d9d019", - "b59f3d97-5d24-43a3-8329-1659ff0ec091", - "ed67fb66-1cbd-4896-92db-7d20217e7feb", - "16040aaa-a327-4ed0-9a1a-22f59448ee71", - "763dd8b7-831f-4758-985e-bf0bd46d42a8", - "6f18e5d2-c8a9-4372-b254-0557b54105ef", - "3380b93c-de51-47b1-9eab-1ba1c159e16b", - "82443817-274d-4a2c-9961-c8952ebb0bd5", - "9c2966eb-0b95-4f3f-8d94-5018b7ad4206", - "11bbe2cc-00e7-4b8e-924e-08f4acec7238", - "d37cb029-e425-4882-a91b-d9744e0e588c", - "266c7379-f503-4726-a919-3bd4b18014a1", - "824e0710-b0d8-4430-b551-248480e837a8", - "3d41042e-3fa7-4b68-838d-e713e9264458", - "55f68b16-b0d8-4075-ab01-dfc396004a27", - "596e2c01-d915-4246-8245-50565ee9744c", - "824acedb-1c36-418a-8949-9ffb63bf1a54", - "0bbc5439-21c0-42b2-a169-c950c5ea00b7", - "8d8350b1-a666-4df6-84e9-a0834bd623dd", - "6c3cae68-7b71-49ee-9239-462972124bab", - "e233802d-2757-4655-b140-1f79003755b5", - "92adcb61-4b63-46b4-8560-27a5958ecf2c", - "49ce364f-a120-43b5-8a29-9bdcbb872952", - "2cdf5b26-6a5c-4740-907a-e2f5d4499c59", - "a234c7df-b66a-45ac-918d-a459eb63fbc3", - "77c9f12e-f5c4-4a77-8bca-a9f6818f6f60", - "e023c2ec-4bd4-4b06-962b-7a60eea645b8", - "6333c2a0-9e87-4c81-88cb-46a9416ae8fb", - "2b8615bb-a4cc-4ac1-a9f2-e737a1d15123", - "4abeca04-4d6c-44be-8c3b-507a7b03eff3", - "71e7f549-196e-4e1c-a63e-2be090dab6fd", - "bf6d9ed0-1d05-4e90-a057-7ba083d4b4ed", - "e24a59d4-89ad-4869-b2fb-ad6ea5aac241", - "f93007a7-b1d6-46ef-9cf8-2f8d4c7cee5a", - "4ebf5c9b-5df1-4e99-bf1d-647968dfc24f", - "5dd363c3-6188-4d51-a628-65bfb3c9c763", - "1cd0f9cb-dcbb-4b67-a99b-2c8685bbcbac", - "8f00e352-d106-47ca-b7f1-7bb9575fbd77", - "15828d19-8e99-4731-8549-578c54c4ecb1", - "da051a2a-8881-42de-8fa8-73ce97f5ebb4", - "fb5d184a-c830-49a0-b82f-4c65bfc1fe00", - "aa101046-20f0-4db7-88b9-e8c0ea6991c3" + "41387edf-4bb8-43f9-82a2-47a4e7b7686d", + "a443fe41-eb54-49a6-9f5d-220953d30dfd", + "afc6ff7a-0368-4bed-8edf-2cd4f80d7254", + "104e895c-b17e-434d-9404-65d1dbce6225", + "11a088ad-d598-49fb-bbf2-28e84a0f7175", + "8905e5ab-1251-41ae-93f8-a01c2c7d07a3", + "f6a3d2fd-ad2e-4cee-9716-7a56b85d231e", + "85909707-a516-4111-8157-4a1f4d0ebe1a", + "136c946c-ef90-483e-be3a-d008cf02dc34", + "e6a12768-656f-4b6c-acc1-7a3766904753", + "553927f2-d435-442e-83da-d2f9f48746f3", + "54e9e475-c93e-4cd0-8759-9fe0d7820e8f", + "dc5435fb-33b4-42c7-90b8-c087173c7846", + "396844ba-6420-4ca6-bcb9-c4a325cca4e6", + "a5638416-77fe-4380-902d-6999586b8ccd", + "779f8c7b-33b5-46df-bbe8-f46878cfae88", + "786dc45c-84da-4ed3-833f-7372243f0243", + "d6f4638a-ff7c-423d-a7b3-09ec622aabf6", + "fd592446-398c-4162-980f-230281c178df", + "84c5640f-e562-4e5c-b717-6a0992f8c39e", + "12423d9b-42b1-4513-ab94-d07cc77e22e5", + "5c5fe6c6-a04b-496f-bea1-7984f47218e2", + "86b74bd0-d3c5-4a71-bf77-fe9bc258df30", + "23947693-2f5b-4e76-b105-ffcf10f3fd6b", + "e3847006-44e9-4fef-a48e-01a0923c8d87", + "248014f0-491f-4ed9-b7b8-2931ddb659d0", + "95114234-376d-49a7-a485-7e0a3b0d954d", + "a50af20a-e166-493f-8081-6d62161ee944", + "839ed460-f21d-4de4-93a8-3128549c3c6c", + "323f6f49-a6a3-4c94-b367-8ff5e81344d4", + "1613f0f8-4286-49e9-9d07-63259621ba34", + "b88c33af-e419-4ec7-a724-9e1fd549e20f", + "99b96e41-2ca6-40b9-97f8-6354cd048fe6", + "eae83516-5ff0-46c4-946f-58f8d9855ebf", + "f3414f9d-3c19-44db-868e-ba8c64bd7a0c", + "d7fc4460-450b-45e5-8331-5815e5cb1998", + "dd3c57c1-2777-4f37-b4ac-d8af2f74dd6f", + "0a09a42b-ce34-4acf-9898-8cd96a11482d", + "864e48e7-9a95-4758-a1b2-d5e5557e4bd8", + "2c29d299-d639-4f14-ac28-ae0cb282db70", + "f17f2311-5289-49c0-8a65-72bdc30d1a2b", + "4a5c98b0-e627-452a-80cf-5f490e8447e9", + "dcb97b1b-c414-4b04-8866-afe230c384ef" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], "x-ms-request-id": [ - "b7cf9438-bb71-47b8-bb3a-0abc65d65d8d" + "46f6a72b-8d9a-4990-b05c-83530a5a39f5" ], "x-ms-correlation-request-id": [ - "b7cf9438-bb71-47b8-bb3a-0abc65d65d8d" + "46f6a72b-8d9a-4990-b05c-83530a5a39f5" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013055Z:b7cf9438-bb71-47b8-bb3a-0abc65d65d8d" + "WESTUS:20201022T230949Z:46f6a72b-8d9a-4990-b05c-83530a5a39f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -993,139 +1021,148 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "12" + "Date": [ + "Thu, 22 Oct 2020 23:09:48 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "12" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368/providers/Microsoft.Compute/galleries/galleryPsTestGallery941/images/galleryPsTestGalleryImage6286?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk0MS9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTYyODY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images/galleryPsTestGalleryImage8015?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzUzNTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4OTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4MDE1P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0c22cd1e-2c51-4b1c-afa7-b7a574fa01ae" + "a755e9c4-6d81-4990-ada9-367d86b55429" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:30:23 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/20a90fab-fd25-4b91-9560-f9f0660ba494?monitor=true&api-version=2019-12-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/b87fec8c-b822-4ba4-88d4-9ed3ff6f78a7?monitor=true&api-version=2020-09-30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/20a90fab-fd25-4b91-9560-f9f0660ba494?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/b87fec8c-b822-4ba4-88d4-9ed3ff6f78a7?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/DeleteGalleryImage3Min;49,Microsoft.Compute/DeleteGalleryImage30Min;298" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "20a90fab-fd25-4b91-9560-f9f0660ba494" + "b87fec8c-b822-4ba4-88d4-9ed3ff6f78a7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "c3a4bc72-50a1-470f-a5b4-3f578a0a66be" + "7ce52957-3764-4243-873f-7f4a1b323ed2" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013024Z:c3a4bc72-50a1-470f-a5b4-3f578a0a66be" + "WESTUS:20201022T230918Z:7ce52957-3764-4243-873f-7f4a1b323ed2" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 22 Oct 2020 23:09:17 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/20a90fab-fd25-4b91-9560-f9f0660ba494?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yMGE5MGZhYi1mZDI1LTRiOTEtOTU2MC1mOWYwNjYwYmE0OTQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/b87fec8c-b822-4ba4-88d4-9ed3ff6f78a7?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iODdmZWM4Yy1iODIyLTRiYTQtODhkNC05ZWQzZmY2Zjc4YTc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:30:53 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4156" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "4a1214b6-967d-45ed-a42e-018765038781" + "095f17e4-57a6-4e8e-83ed-b13c46a09631" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], "x-ms-correlation-request-id": [ - "d3324f9e-d4fc-4193-a9f4-de416ce1c81b" + "e7b49dd5-0f9c-4e6c-b48b-f1c92d495e9a" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013054Z:d3324f9e-d4fc-4193-a9f4-de416ce1c81b" + "WESTUS:20201022T230948Z:e7b49dd5-0f9c-4e6c-b48b-f1c92d495e9a" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:09:47 GMT" + ], "Content-Length": [ - "183" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1134,187 +1171,196 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:30:23.9502019-08:00\",\r\n \"endTime\": \"2020-02-20T17:30:24.059579-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"20a90fab-fd25-4b91-9560-f9f0660ba494\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:09:18.3651908-07:00\",\r\n \"endTime\": \"2020-10-22T16:09:18.4589184-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b87fec8c-b822-4ba4-88d4-9ed3ff6f78a7\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/20a90fab-fd25-4b91-9560-f9f0660ba494?monitor=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yMGE5MGZhYi1mZDI1LTRiOTEtOTU2MC1mOWYwNjYwYmE0OTQ/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/b87fec8c-b822-4ba4-88d4-9ed3ff6f78a7?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iODdmZWM4Yy1iODIyLTRiYTQtODhkNC05ZWQzZmY2Zjc4YTc/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:30:53 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4155" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "f9caa1f6-8532-477a-bdce-8475a9dd419e" + "061cb7ba-0a9d-4f94-8b2f-5b9b03ee87c3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], "x-ms-correlation-request-id": [ - "7940fdc8-a7f6-426e-a7d1-d6acc926c00d" + "97c439ac-971b-4417-9e7a-ae6b047887c7" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013054Z:7940fdc8-a7f6-426e-a7d1-d6acc926c00d" + "WESTUS:20201022T230948Z:97c439ac-971b-4417-9e7a-ae6b047887c7" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 22 Oct 2020 23:09:47 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7368/providers/Microsoft.Compute/galleries/galleryPsTestGallery941?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk0MT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzUzNTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4OTc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "35adc7d0-1e35-4280-b54e-b3e068c72ab6" + "d49e04f3-ac7f-4e0c-b607-5c4d96138af1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:30:54 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/1b4d2708-1917-43a5-9866-2f95c746282f?monitor=true&api-version=2019-12-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/7e73201d-726d-4694-bf04-bb81591c6153?monitor=true&api-version=2020-09-30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/1b4d2708-1917-43a5-9866-2f95c746282f?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/7e73201d-726d-4694-bf04-bb81591c6153?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;298" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "1b4d2708-1917-43a5-9866-2f95c746282f" + "7e73201d-726d-4694-bf04-bb81591c6153" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "8994902e-c3e8-41a8-acc7-aeeb8957b9f2" + "fe2fa2ca-9321-458e-bb8b-33bd9f2365c8" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013055Z:8994902e-c3e8-41a8-acc7-aeeb8957b9f2" + "WESTUS:20201022T230949Z:fe2fa2ca-9321-458e-bb8b-33bd9f2365c8" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 22 Oct 2020 23:09:48 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/1b4d2708-1917-43a5-9866-2f95c746282f?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8xYjRkMjcwOC0xOTE3LTQzYTUtOTg2Ni0yZjk1Yzc0NjI4MmY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/7e73201d-726d-4694-bf04-bb81591c6153?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83ZTczMjAxZC03MjZkLTQ2OTQtYmYwNC1iYjgxNTkxYzYxNTM/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:31:25 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4152" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "2dbac05c-a4d7-4c64-aeef-55dbdbc609d8" + "6d8e57a3-8cdd-46fd-9649-1563172075f3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], "x-ms-correlation-request-id": [ - "6f5d1485-b91b-4967-a77c-6a4cef11c48f" + "02041aff-a46e-41ef-8d8e-6b295b07b536" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013125Z:6f5d1485-b91b-4967-a77c-6a4cef11c48f" + "WESTUS:20201022T231019Z:02041aff-a46e-41ef-8d8e-6b295b07b536" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Thu, 22 Oct 2020 23:10:19 GMT" + ], "Content-Length": [ - "183" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1323,62 +1369,65 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:30:55.4197718-08:00\",\r\n \"endTime\": \"2020-02-20T17:30:55.513524-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1b4d2708-1917-43a5-9866-2f95c746282f\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:09:49.3652366-07:00\",\r\n \"endTime\": \"2020-10-22T16:09:49.4433703-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7e73201d-726d-4694-bf04-bb81591c6153\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/1b4d2708-1917-43a5-9866-2f95c746282f?monitor=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8xYjRkMjcwOC0xOTE3LTQzYTUtOTg2Ni0yZjk1Yzc0NjI4MmY/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/7e73201d-726d-4694-bf04-bb81591c6153?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83ZTczMjAxZC03MjZkLTQ2OTQtYmYwNC1iYjgxNTkxYzYxNTM/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:31:25 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4151" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "45745dfa-c1c3-4877-b4dd-44f1c9897cba" + "881906b1-3170-4e39-a6fa-219becc5a44b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], "x-ms-correlation-request-id": [ - "5252e075-f750-4606-9294-32f82f864d57" + "ec523a18-553b-4fa8-8aee-7849fed8b483" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T013126Z:5252e075-f750-4606-9294-32f82f864d57" + "WESTUS:20201022T231019Z:ec523a18-553b-4fa8-8aee-7849fed8b483" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Thu, 22 Oct 2020 23:10:19 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -1387,9 +1436,9 @@ ], "Names": { "GalleryImage_CRUD_Tests": [ - "galleryPsTestRg7368", - "galleryPsTestGallery941", - "galleryPsTestGalleryImage6286" + "galleryPsTestRg5359", + "galleryPsTestGallery8897", + "galleryPsTestGalleryImage8015" ] }, "Variables": { diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_CRUD_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_CRUD_Tests.json index 233663e66002..22908d55578e 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_CRUD_Tests.json +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_CRUD_Tests.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg7559?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc1NTk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg6640?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY2NDA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "10acf0b4-339b-4cb4-91c6-22636ef7ca23" + "2a51ad5b-67fd-408f-a74c-a771969cd0d8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ @@ -29,23 +29,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:54:56 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "9004c70f-a927-4352-846c-cbc7059147f3" + "929ae659-c813-4d6a-8b64-cb6a8b947123" ], "x-ms-correlation-request-id": [ - "9004c70f-a927-4352-846c-cbc7059147f3" + "929ae659-c813-4d6a-8b64-cb6a8b947123" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015457Z:9004c70f-a927-4352-846c-cbc7059147f3" + "WESTUS:20201023T000411Z:929ae659-c813-4d6a-8b64-cb6a8b947123" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -53,6 +50,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:04:10 GMT" + ], "Content-Length": [ "192" ], @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559\",\r\n \"name\": \"galleryPsTestRg7559\",\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/galleryPsTestRg6640\",\r\n \"name\": \"galleryPsTestRg6640\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559/providers/Microsoft.Compute/galleries/galleryPsTestGallery3975?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc1NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM5NzU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY2NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1NDQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "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": [ - "af3d287c-83aa-417d-adfd-7281b65e0408" + "d1f4e50b-0327-4fc9-9701-d60f4298cde6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -95,42 +95,45 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:54:58 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/6c86436a-c351-4aee-b24a-8aac955e8eda?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/218a0ac1-17d3-4d74-a1f2-1ad07492b99f?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "6c86436a-c351-4aee-b24a-8aac955e8eda" + "218a0ac1-17d3-4d74-a1f2-1ad07492b99f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "cedf9519-7fd2-4400-a8b9-a45e1913fe42" + "c5504e50-2334-4bc6-af37-60507cceb38b" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015459Z:cedf9519-7fd2-4400-a8b9-a45e1913fe42" + "WESTUS:20201023T000414Z:c5504e50-2334-4bc6-af37-60507cceb38b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:04:13 GMT" + ], "Content-Length": [ - "508" + "573" ], "Content-Type": [ "application/json; charset=utf-8" @@ -139,26 +142,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery3975\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559/providers/Microsoft.Compute/galleries/galleryPsTestGallery3975\",\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-GALLERYPSTESTGALLERY3975\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8544\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544\",\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-GALLERYPSTESTGALLERY8544\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Private\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559/providers/Microsoft.Compute/galleries/galleryPsTestGallery3975?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc1NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM5NzU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY2NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1NDQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is an updated description\"\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fc558519-c6a2-4e17-b54c-6bc374ccc9ff" + "1f27a869-1bed-4987-9d4b-7b7ed39c4e6e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -171,42 +174,45 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:55:30 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/e4a0e2b2-7dd9-47f4-8489-1739e026a23f?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/3ec5c497-dcaf-4e92-a9bd-7ee77b35353a?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateGallery3Min;48,Microsoft.Compute/CreateUpdateGallery30Min;298" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "e4a0e2b2-7dd9-47f4-8489-1739e026a23f" + "3ec5c497-dcaf-4e92-a9bd-7ee77b35353a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "6bcac59e-6cae-415f-8e70-a89a8f323812" + "94f0aefb-61a9-4770-a128-e48e0d6670a1" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015530Z:6bcac59e-6cae-415f-8e70-a89a8f323812" + "WESTUS:20201023T000444Z:94f0aefb-61a9-4770-a128-e48e0d6670a1" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:04:44 GMT" + ], "Content-Length": [ - "503" + "568" ], "Content-Type": [ "application/json; charset=utf-8" @@ -215,59 +221,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery3975\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559/providers/Microsoft.Compute/galleries/galleryPsTestGallery3975\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY3975\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8544\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8544\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Private\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/6c86436a-c351-4aee-b24a-8aac955e8eda?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy82Yzg2NDM2YS1jMzUxLTRhZWUtYjI0YS04YWFjOTU1ZThlZGE/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/218a0ac1-17d3-4d74-a1f2-1ad07492b99f?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yMThhMGFjMS0xN2QzLTRkNzQtYTFmMi0xYWQwNzQ5MmI5OWY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:55:29 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4174" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "74cf17fa-7bd9-4648-8317-b444b5b46870" + "1161e843-c622-4dcb-b5c0-aa0edf602bcc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-correlation-request-id": [ - "d2973555-40d3-444e-b944-d2454f738985" + "727c85cf-22e6-49bc-87d4-5e567399cdab" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015529Z:d2973555-40d3-444e-b944-d2454f738985" + "WESTUS:20201023T000444Z:727c85cf-22e6-49bc-87d4-5e567399cdab" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:04:44 GMT" + ], "Content-Length": [ - "183" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -276,57 +285,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:54:59.070538-08:00\",\r\n \"endTime\": \"2020-02-20T17:54:59.3049156-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"6c86436a-c351-4aee-b24a-8aac955e8eda\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T17:04:13.5669615-07:00\",\r\n \"endTime\": \"2020-10-22T17:04:13.7700778-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"218a0ac1-17d3-4d74-a1f2-1ad07492b99f\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559/providers/Microsoft.Compute/galleries/galleryPsTestGallery3975?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc1NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM5NzU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY2NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1NDQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:55:29 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2492" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "099ac34e-edb6-4f70-95f6-89a9a02fbe25" + "4138f18d-c2de-4777-ad43-091efa4a0fa2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "4b06a871-682f-4017-83c2-ca73215920a6" + "42d6f9ba-7774-4008-99ce-f6fcb7f59987" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015529Z:4b06a871-682f-4017-83c2-ca73215920a6" + "WESTUS:20201023T000444Z:42d6f9ba-7774-4008-99ce-f6fcb7f59987" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:04:44 GMT" + ], "Content-Length": [ "509" ], @@ -337,63 +349,66 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery3975\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559/providers/Microsoft.Compute/galleries/galleryPsTestGallery3975\",\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-GALLERYPSTESTGALLERY3975\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8544\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544\",\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-GALLERYPSTESTGALLERY8544\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559/providers/Microsoft.Compute/galleries/galleryPsTestGallery3975?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc1NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM5NzU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY2NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1NDQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "95ddba46-05e1-4c49-ab9e-65a2361ac9e2" + "2a032d99-f40a-4862-a7b5-fd434c22e2b7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:55:29 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;345,Microsoft.Compute/GetGallery30Min;2491" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "176be979-2250-4467-9b0e-cc56b4ea3856" + "7bc1d785-7efb-4fb1-bd7f-e8837d8c2ec4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-correlation-request-id": [ - "a5ffac99-e8b8-4d96-9500-ab30eaeacb60" + "2169f4ca-7c61-4f2d-a9f2-f1bc6befcc68" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015529Z:a5ffac99-e8b8-4d96-9500-ab30eaeacb60" + "WESTUS:20201023T000444Z:2169f4ca-7c61-4f2d-a9f2-f1bc6befcc68" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:04:44 GMT" + ], "Content-Length": [ "509" ], @@ -404,57 +419,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery3975\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559/providers/Microsoft.Compute/galleries/galleryPsTestGallery3975\",\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-GALLERYPSTESTGALLERY3975\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8544\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544\",\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-GALLERYPSTESTGALLERY8544\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559/providers/Microsoft.Compute/galleries/galleryPsTestGallery3975?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc1NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM5NzU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY2NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1NDQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:55:30 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;344,Microsoft.Compute/GetGallery30Min;2490" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "5189edc6-955f-4e26-ad76-6795c06ba42f" + "92d269c8-6552-4e64-9ca6-08bf453afcda" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-correlation-request-id": [ - "f7c456b7-b0c0-406b-9a4c-e444fe3a6fe6" + "c2bb266b-40c1-412a-b356-63b3fc9513af" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015530Z:f7c456b7-b0c0-406b-9a4c-e444fe3a6fe6" + "WESTUS:20201023T000444Z:c2bb266b-40c1-412a-b356-63b3fc9513af" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:04:44 GMT" + ], "Content-Length": [ "503" ], @@ -465,63 +483,66 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery3975\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559/providers/Microsoft.Compute/galleries/galleryPsTestGallery3975\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY3975\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8544\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8544\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559/providers/Microsoft.Compute/galleries/galleryPsTestGallery3975?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc1NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM5NzU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY2NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1NDQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e98c73aa-4b34-45c2-9ab4-a10287e21e4a" + "15cd883e-d24c-4132-90a5-93118fa34058" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:55:30 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;343,Microsoft.Compute/GetGallery30Min;2489" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "ad267959-6aff-4ccd-ada6-0fb5334bd478" + "26b110a9-e0bd-4cd3-b51b-117d3ac20ee2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-correlation-request-id": [ - "8a660634-f4b8-4f90-a4a5-1174b7fb76c5" + "684cd184-6258-4fea-910e-28aa2a394d68" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015530Z:8a660634-f4b8-4f90-a4a5-1174b7fb76c5" + "WESTUS:20201023T000445Z:684cd184-6258-4fea-910e-28aa2a394d68" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:04:44 GMT" + ], "Content-Length": [ "503" ], @@ -532,25 +553,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery3975\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559/providers/Microsoft.Compute/galleries/galleryPsTestGallery3975\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY3975\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8544\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8544\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg7559New?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc1NTlOZXc/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg6640New?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY2NDBOZXc/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cc15f20d-f00c-462d-97fc-05883bf33cd5" + "22097a2a-aff1-4535-9949-f3ad9540805d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ @@ -564,23 +585,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:55:30 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-request-id": [ - "385bd10d-1823-439a-afb8-531631049998" + "f6eeb8ac-1931-47e0-ab48-aacc3398cb0f" ], "x-ms-correlation-request-id": [ - "385bd10d-1823-439a-afb8-531631049998" + "f6eeb8ac-1931-47e0-ab48-aacc3398cb0f" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015531Z:385bd10d-1823-439a-afb8-531631049998" + "WESTUS:20201023T000445Z:f6eeb8ac-1931-47e0-ab48-aacc3398cb0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -588,6 +606,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:04:45 GMT" + ], "Content-Length": [ "198" ], @@ -598,26 +619,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559New\",\r\n \"name\": \"galleryPsTestRg7559New\",\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/galleryPsTestRg6640New\",\r\n \"name\": \"galleryPsTestRg6640New\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559New/providers/Microsoft.Compute/galleries/galleryPsTestGallery3975New?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc1NTlOZXcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM5NzVOZXc/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640New/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544New?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY2NDBOZXcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1NDROZXc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is an updated description\"\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "450dace7-5d10-4b24-9da8-a0d14273e316" + "1952488e-d72d-444e-a3d3-e315b0c51149" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -630,42 +651,45 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:55:34 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/4cbe9fa9-bf3b-4053-aca4-e69a1df343e2?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a791cbdd-8f07-4634-b3fa-e817dcbd2049?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateGallery3Min;47,Microsoft.Compute/CreateUpdateGallery30Min;297" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "4cbe9fa9-bf3b-4053-aca4-e69a1df343e2" + "a791cbdd-8f07-4634-b3fa-e817dcbd2049" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "0868ef77-706d-498f-883f-d51ca29c0a6d" + "912ee172-f996-486f-8f1f-41f86d32d688" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015534Z:0868ef77-706d-498f-883f-d51ca29c0a6d" + "WESTUS:20201023T000457Z:912ee172-f996-486f-8f1f-41f86d32d688" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:04:57 GMT" + ], "Content-Length": [ - "514" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -674,59 +698,62 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery3975New\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559New/providers/Microsoft.Compute/galleries/galleryPsTestGallery3975New\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY3975NEW\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8544New\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640New/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544New\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8544NEW\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Private\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/4cbe9fa9-bf3b-4053-aca4-e69a1df343e2?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy80Y2JlOWZhOS1iZjNiLTQwNTMtYWNhNC1lNjlhMWRmMzQzZTI/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a791cbdd-8f07-4634-b3fa-e817dcbd2049?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hNzkxY2JkZC04ZjA3LTQ2MzQtYjNmYS1lODE3ZGNiZDIwNDk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:56:03 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4181" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "22fbb511-ab13-4719-bbba-c6c5ea4b5713" + "a91db3e3-0fb9-4746-9c71-e8f524ce739d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-correlation-request-id": [ - "0d8c8355-20be-487b-8ca8-c1900631b8f8" + "c518bfda-a764-41d8-b359-6524accf175d" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015604Z:0d8c8355-20be-487b-8ca8-c1900631b8f8" + "WESTUS:20201023T000527Z:c518bfda-a764-41d8-b359-6524accf175d" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:05:27 GMT" + ], "Content-Length": [ - "184" + "183" ], "Content-Type": [ "application/json; charset=utf-8" @@ -735,57 +762,60 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:55:33.5246023-08:00\",\r\n \"endTime\": \"2020-02-20T17:55:33.6027326-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4cbe9fa9-bf3b-4053-aca4-e69a1df343e2\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T17:04:56.957546-07:00\",\r\n \"endTime\": \"2020-10-22T17:04:57.0513482-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a791cbdd-8f07-4634-b3fa-e817dcbd2049\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559New/providers/Microsoft.Compute/galleries/galleryPsTestGallery3975New?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc1NTlOZXcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM5NzVOZXc/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640New/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544New?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY2NDBOZXcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1NDROZXc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:56:03 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;335,Microsoft.Compute/GetGallery30Min;2481" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "d241d0c2-e727-4ceb-b3cb-b36bb23a3227" + "6940be1b-83e1-47fb-86ec-249e4e242cc7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-correlation-request-id": [ - "ed6683a2-8f4e-42ed-84f0-c0cfcc607eb1" + "a25315c1-d8a7-4fbe-8abf-6a70ead9b075" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015604Z:ed6683a2-8f4e-42ed-84f0-c0cfcc607eb1" + "WESTUS:20201023T000527Z:a25315c1-d8a7-4fbe-8abf-6a70ead9b075" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:05:27 GMT" + ], "Content-Length": [ "515" ], @@ -796,63 +826,66 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery3975New\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559New/providers/Microsoft.Compute/galleries/galleryPsTestGallery3975New\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY3975NEW\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8544New\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640New/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544New\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8544NEW\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559/providers/Microsoft.Compute/galleries?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc1NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY2NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcz9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e13f3a61-4489-4180-993f-85e724bde118" + "e298d99b-cb16-4885-a16b-64e09f845993" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:56:04 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListGalleryInResourceGroup3Min;99,Microsoft.Compute/ListGalleryInResourceGroup30Min;999" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "89f4ed83-c08b-49fd-b4b3-9423dd260620" + "32015e38-3513-4eec-8b3a-4abc44cc49db" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-correlation-request-id": [ - "211567d3-6f87-4806-9c7d-a089fd396e1c" + "0e5b4ef6-7eba-4803-9726-9efb7c84a9f5" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015604Z:211567d3-6f87-4806-9c7d-a089fd396e1c" + "WESTUS:20201023T000527Z:0e5b4ef6-7eba-4803-9726-9efb7c84a9f5" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:05:27 GMT" + ], "Content-Length": [ "580" ], @@ -863,49 +896,46 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"galleryPsTestGallery3975\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG7559/providers/Microsoft.Compute/galleries/galleryPsTestGallery3975\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY3975\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"galleryPsTestGallery8544\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8544\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559/providers/Microsoft.Compute/galleries?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc1NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY2NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcz9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee4e772a-e397-433b-9e3a-392ab4de5f04" + "57732c37-16ad-44fb-8b07-3ffae6921c39" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:57:06 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11985" ], "x-ms-request-id": [ - "d4d5b43d-aa6a-42c6-8946-b330d5ecb71f" + "4a117397-a6d4-4a2b-8e7f-e6534459ea15" ], "x-ms-correlation-request-id": [ - "d4d5b43d-aa6a-42c6-8946-b330d5ecb71f" + "4a117397-a6d4-4a2b-8e7f-e6534459ea15" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015706Z:d4d5b43d-aa6a-42c6-8946-b330d5ecb71f" + "WESTUS:20201023T000631Z:4a117397-a6d4-4a2b-8e7f-e6534459ea15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -913,70 +943,84 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "12" + "Date": [ + "Fri, 23 Oct 2020 00:06:30 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "12" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/galleries?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9nYWxsZXJpZXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/galleries?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9nYWxsZXJpZXM/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6ac4a9a-bf4d-4b25-a48c-2f93824d1052" + "864b057c-c97a-4203-b53e-8b4cb8ee206f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:56:04 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "53478c2e-ebc8-4645-9164-2c081f814edd", - "d9587f4f-5679-4ca4-9ffd-3d924c66a0b7", - "6082421f-f587-455c-95f5-f38e0b53ed3b", - "62fab883-2249-4b2a-8a5b-24d48ed2d6a4", - "f3660074-5113-467c-adb0-0bb90221ab1f", - "926c9b66-eed4-426c-8aeb-6569a0993b41", - "5127f730-9f53-4a0c-b737-2798c2124445", - "4466d4aa-b733-471c-bec0-9b0bf51df837", - "189526d7-1b35-4003-8dce-d03db1b0de0f" + "fa0403a7-648e-4307-a327-8d859cf68420", + "f16cac33-9d10-40e1-9eb2-810c8af16d02", + "27314b73-8d2b-46b6-9089-53ead59d5a36", + "dd4e5a4a-e65b-4c70-91e0-253cafe6ea1c", + "f574e311-1f40-45b8-8279-4f963f9c282e", + "b631361a-fa0b-425d-807b-b2f94301306c", + "6a40c879-12fa-4c9a-8ab8-d91e9f399e28", + "4cfbf4f9-4e86-49ea-bec1-7535b15ee47b", + "58d939f6-9fc7-4b26-89f1-bab8bc5082be", + "e0cfa560-5aac-48f6-beb7-c7b756a5ddad", + "3ec1409b-270a-4688-b7a6-6a7fab4ccd18", + "cba4c03c-7afe-4a12-9604-46a9d262b8a2", + "8c81d3e9-34fd-4087-8171-95aeaba1cad9", + "f69cd3b3-4931-4f29-8c44-0f34c332b982", + "15c92025-2df8-4854-9be5-9e23fdd6fdde", + "3e51dfc5-08fe-452d-89a5-733e9d052bab", + "6f40161b-ce69-4552-80f9-e9c40e1867fe", + "7e6ad697-8dc3-492b-ae66-fccbe2aeef30", + "c344c3be-4d81-4bf5-8cce-7bcbb0ec2130", + "64fe783d-e921-4e1d-a815-f7fd138e602f", + "a4ee30c9-4571-4b35-8b47-79aab528730f", + "148394c4-898d-4fb3-8ce5-728285efcebd", + "76055931-bf21-4ca0-8d75-4d428623549e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11990" ], "x-ms-request-id": [ - "8975bb32-dc29-42c1-9a4a-59bc0512c5f2" + "196f7d1c-cb1c-4984-ae2a-b12aa809a346" ], "x-ms-correlation-request-id": [ - "8975bb32-dc29-42c1-9a4a-59bc0512c5f2" + "196f7d1c-cb1c-4984-ae2a-b12aa809a346" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015605Z:8975bb32-dc29-42c1-9a4a-59bc0512c5f2" + "WESTUS:20201023T000529Z:196f7d1c-cb1c-4984-ae2a-b12aa809a346" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -984,137 +1028,146 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "15720" + "Date": [ + "Fri, 23 Oct 2020 00:05:28 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "44162" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"longlivedgalwcus\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYWCUS/providers/Microsoft.Compute/galleries/longlivedgalwcus\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery used for e2e testing\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEDGALWCUS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gal1-with-dash\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/SIG1/providers/Microsoft.Compute/galleries/gal1-with-dash\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"description\": \"Shared Image Gallery for my ORG\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GAL1-WITH-DASH\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryForCirrus\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRG/providers/Microsoft.Compute/galleries/galleryForCirrus\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery created for cirrus scaling test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYFORCIRRUS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"xwLongLivedGallerywestcentralus\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRG/providers/Microsoft.Compute/galleries/xwLongLivedGallerywestcentralus\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"description\": \"long lived gallery created in using powershell in westcentralus\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWLONGLIVEDGALLERYWESTCENTRALUS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"xwGallery0726westcentralus\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGallery0726westcentralus\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"description\": \"input gallery created in ps.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERY0726WESTCENTRALUS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"xwGallery1207\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGallery1207\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERY1207\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"xwGalleryForCirrus\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGalleryForCirrus\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery created for cirrus\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERYFORCIRRUS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"xwGallery0921SouthCentralUs\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGallery0921SouthCentralUs\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERY0921SOUTHCENTRALUS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery3975\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG7559/providers/Microsoft.Compute/galleries/galleryPsTestGallery3975\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY3975\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery3975New\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG7559NEW/providers/Microsoft.Compute/galleries/galleryPsTestGallery3975New\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY3975NEW\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"myGalleryHaHa20191004\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/TEMPRG2/providers/Microsoft.Compute/galleries/myGalleryHaHa20191004\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"description\": \"This is the gallery description.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-MYGALLERYHAHA20191004\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerywbyqitoobqxu\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-2-21-2020-PRODBRAZILSOUTH/providers/Microsoft.Compute/galleries/gallerywbyqitoobqxu\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYWBYQITOOBQXU\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryywjygbfjzwtx\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-2-20-2020-PRODEASTASIA/providers/Microsoft.Compute/galleries/galleryywjygbfjzwtx\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYYWJYGBFJZWTX\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"grlianTestGallery\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GRLIANRG/providers/Microsoft.Compute/galleries/grlianTestGallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GRLIANTESTGALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"longlivedgallery\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYAZURESUPPORTRG/providers/Microsoft.Compute/galleries/longlivedgallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"description\": \"My Private Gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEDGALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery2975\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG3906/providers/Microsoft.Compute/galleries/galleryPsTestGallery2975\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY2975\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery8333\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG9881/providers/Microsoft.Compute/galleries/galleryPsTestGallery8333\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8333\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"longlivedgal\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERY/providers/Microsoft.Compute/galleries/longlivedgal\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"properties\": {\r\n \"description\": \"gallery used for e2e testing\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEDGAL\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"mygalleryForCrp97f7\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERY/providers/Microsoft.Compute/galleries/mygalleryForCrp97f7\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-MYGALLERYFORCRP97F7\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"mygalleryForCrpEastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERY/providers/Microsoft.Compute/galleries/mygalleryForCrpEastus2euap\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-MYGALLERYFORCRPEASTUS2EUAP\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallery1euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/RGEUAP/providers/Microsoft.Compute/galleries/gallery1euap\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERY1EUAP\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"GALLERYNZQXFYCGSOVZ\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/TEMPRG/providers/Microsoft.Compute/galleries/GALLERYNZQXFYCGSOVZ\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYNZQXFYCGSOVZ\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"VZDUADOJ\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/TEMPRG/providers/Microsoft.Compute/galleries/VZDUADOJ\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-VZDUADOJ\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"xw32Gallery20181105\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xw32Gallery20181105\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"My Private Gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XW32GALLERY20181105\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"xw32Gallery20181212\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xw32Gallery20181212\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"xw Private Gallery updated\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XW32GALLERY20181212\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"xw32test_gallery\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xw32test_gallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XW32TEST_GALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"xwGallery0725\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGallery0725\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"description\": \"input gallery created in ps.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERY0725\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"xwGallery0820Test\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGallery0820Test\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERY0820TEST\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"xwGallery20181213\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGallery20181213\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"description\": \"updated\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERY20181213\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"xwGalleryTest\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGalleryTest\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"description\": \"input gallery created in ps.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERYTEST\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"xwGalleryTest20180821\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGalleryTest20180821\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERYTEST20180821\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"xwGalleryTest20180927\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGalleryTest20180927\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery created in using powershell for testing on 20180927 in eastus2euap.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERYTEST20180927\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"xwGalleryTest20181007\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGalleryTest20181007\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery created in using powershell for testing on 20181007 in eastus2euap.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERYTEST20181007\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"xwGalleryTest20181009\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGalleryTest20181009\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERYTEST20181009\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"xwGalleryTest20181026\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWRGTEST/providers/Microsoft.Compute/galleries/xwGalleryTest20181026\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery created in using powershell for testing on 20181026 in eastus2euap.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWGALLERYTEST20181026\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"xwTestGallery2\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/XWTESTRG2/providers/Microsoft.Compute/galleries/xwTestGallery2\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"description\": \"This is the second gallery created in another RG.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-XWTESTGALLERY2\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"grlianTestGalleryUniqueName\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GRLIANRG/providers/Microsoft.Compute/galleries/grlianTestGalleryUniqueName\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"description\": \"My Private Gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GRLIANTESTGALLERYUNIQUENAME\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"grlianTestGalleryUniqueNameT15\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GRLIANRG/providers/Microsoft.Compute/galleries/grlianTestGalleryUniqueNameT15\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"description\": \"My Private Gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GRLIANTESTGALLERYUNIQUENAMET15\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"galleryesvygavwonxl\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-3-2020-PRODWESTCENTRALUS/providers/Microsoft.Compute/galleries/galleryesvygavwonxl\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYESVYGAVWONXL\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerybzektbfwpnhb\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-4-2020-PRODWESTCENTRALUS/providers/Microsoft.Compute/galleries/gallerybzektbfwpnhb\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYBZEKTBFWPNHB\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryhevfrypvwebt\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-5-2020-PRODWESTCENTRALUS/providers/Microsoft.Compute/galleries/galleryhevfrypvwebt\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYHEVFRYPVWEBT\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerypfbtfergacrp\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-6-2020-PRODWESTCENTRALUS/providers/Microsoft.Compute/galleries/gallerypfbtfergacrp\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPFBTFERGACRP\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryjotpfpinylvh\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-8-2020-PRODWESTCENTRALUS/providers/Microsoft.Compute/galleries/galleryjotpfpinylvh\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYJOTPFPINYLVH\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"longlivedgalwcus\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYWCUS/providers/Microsoft.Compute/galleries/longlivedgalwcus\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery used for e2e testing\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEDGALWCUS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gal1-with-dash\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/SIG1/providers/Microsoft.Compute/galleries/gal1-with-dash\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"description\": \"Shared Image Gallery for my ORG\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GAL1-WITH-DASH\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerynfrphfwyzeyy\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-3-2020-PRODSOUTHCENTRALUS/providers/Microsoft.Compute/galleries/gallerynfrphfwyzeyy\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYNFRPHFWYZEYY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryeiwnxjqhrizs\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-4-2020-PRODSOUTHCENTRALUS/providers/Microsoft.Compute/galleries/galleryeiwnxjqhrizs\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYEIWNXJQHRIZS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryyizbvcsirvna\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-5-2020-PRODSOUTHCENTRALUS/providers/Microsoft.Compute/galleries/galleryyizbvcsirvna\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYYIZBVCSIRVNA\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryvziynzcwyfvb\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-6-2020-PRODSOUTHCENTRALUS/providers/Microsoft.Compute/galleries/galleryvziynzcwyfvb\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYVZIYNZCWYFVB\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerytuognthrhlhc\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-7-2020-PRODSOUTHCENTRALUS/providers/Microsoft.Compute/galleries/gallerytuognthrhlhc\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYTUOGNTHRHLHC\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerymzwbagbpgaho\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-8-2020-PRODSOUTHCENTRALUS/providers/Microsoft.Compute/galleries/gallerymzwbagbpgaho\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYMZWBAGBPGAHO\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"newgal\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYSCUS/providers/Microsoft.Compute/galleries/newgal\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-NEWGAL\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery7877\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG3904/providers/Microsoft.Compute/galleries/galleryPsTestGallery7877\",\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-GALLERYPSTESTGALLERY7877\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery8544\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8544\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery8544New\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG6640NEW/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544New\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8544NEW\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery2082\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG955/providers/Microsoft.Compute/galleries/galleryPsTestGallery2082\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY2082\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery5452\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG2221/providers/Microsoft.Compute/galleries/galleryPsTestGallery5452\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY5452\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery2813\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG2383/providers/Microsoft.Compute/galleries/galleryPsTestGallery2813\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY2813\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery1535\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG2561/providers/Microsoft.Compute/galleries/galleryPsTestGallery1535\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY1535\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery2290\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG3320/providers/Microsoft.Compute/galleries/galleryPsTestGallery2290\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY2290\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery7072\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG3950/providers/Microsoft.Compute/galleries/galleryPsTestGallery7072\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY7072\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery6097\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG5384/providers/Microsoft.Compute/galleries/galleryPsTestGallery6097\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY6097\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery6736\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG5735/providers/Microsoft.Compute/galleries/galleryPsTestGallery6736\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY6736\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery2697\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG5937/providers/Microsoft.Compute/galleries/galleryPsTestGallery2697\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY2697\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery4873\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG7379/providers/Microsoft.Compute/galleries/galleryPsTestGallery4873\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY4873\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery5395\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG7539/providers/Microsoft.Compute/galleries/galleryPsTestGallery5395\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY5395\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery9652\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG768/providers/Microsoft.Compute/galleries/galleryPsTestGallery9652\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY9652\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery4074\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG7763/providers/Microsoft.Compute/galleries/galleryPsTestGallery4074\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY4074\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery8638\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG7993/providers/Microsoft.Compute/galleries/galleryPsTestGallery8638\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8638\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery9035\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG8001/providers/Microsoft.Compute/galleries/galleryPsTestGallery9035\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY9035\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery5554\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG8037/providers/Microsoft.Compute/galleries/galleryPsTestGallery5554\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY5554\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery8307\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG8405/providers/Microsoft.Compute/galleries/galleryPsTestGallery8307\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8307\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery9682\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG8649/providers/Microsoft.Compute/galleries/galleryPsTestGallery9682\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY9682\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery8732\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG9198/providers/Microsoft.Compute/galleries/galleryPsTestGallery8732\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8732\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery3722\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG9909/providers/Microsoft.Compute/galleries/galleryPsTestGallery3722\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY3722\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery7310\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG9915/providers/Microsoft.Compute/galleries/galleryPsTestGallery7310\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY7310\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryituasnuotqjj\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-3-2020-PRODWESTUS/providers/Microsoft.Compute/galleries/galleryituasnuotqjj\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYITUASNUOTQJJ\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerykzxlmtntmhpe\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-4-2020-PRODWESTUS/providers/Microsoft.Compute/galleries/gallerykzxlmtntmhpe\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYKZXLMTNTMHPE\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryetsnokrzufeg\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-5-2020-PRODWESTUS/providers/Microsoft.Compute/galleries/galleryetsnokrzufeg\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYETSNOKRZUFEG\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerytcidnseplsex\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-6-2020-PRODWESTUS/providers/Microsoft.Compute/galleries/gallerytcidnseplsex\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYTCIDNSEPLSEX\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerywfdzwwunzeim\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-7-2020-PRODWESTUS/providers/Microsoft.Compute/galleries/gallerywfdzwwunzeim\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYWFDZWWUNZEIM\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryinnhevgxzxvp\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-8-2020-PRODWESTUS/providers/Microsoft.Compute/galleries/galleryinnhevgxzxvp\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYINNHEVGXZXVP\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"sigtiptest\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYWESTUS/providers/Microsoft.Compute/galleries/sigtiptest\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-SIGTIPTEST\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"CopyV2Standardgalleryjrmpmjaiouic\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-22-2020-PRODEASTUS/providers/Microsoft.Compute/galleries/CopyV2Standardgalleryjrmpmjaiouic\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-COPYV2STANDARDGALLERYJRMPMJAIOUIC\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"sig_test_aus\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/SIG_TEST/providers/Microsoft.Compute/galleries/sig_test_aus\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-SIG_TEST_AUS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"myGalleryHaHa20191004\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/TEMPRG2/providers/Microsoft.Compute/galleries/myGalleryHaHa20191004\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"description\": \"This is the gallery description.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-MYGALLERYHAHA20191004\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"DiskLonglivedGallerycanadacentral\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDSIGDISKRGINCANADACENTRAL/providers/Microsoft.Compute/galleries/DiskLonglivedGallerycanadacentral\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-DISKLONGLIVEDGALLERYCANADACENTRAL\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"disklonglivedgalleryIncanadacentral\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGRUNNINGRG-CANADACENTRAL/providers/Microsoft.Compute/galleries/disklonglivedgalleryIncanadacentral\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-DISKLONGLIVEDGALLERYINCANADACENTRAL\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"CopyV2Standardgallerymfjxsafpslar\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-22-2020-PRODNORTHEUROPE/providers/Microsoft.Compute/galleries/CopyV2Standardgallerymfjxsafpslar\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-COPYV2STANDARDGALLERYMFJXSAFPSLAR\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryevfczbqxmdgy\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-22-2020-PRODBRAZILSOUTH/providers/Microsoft.Compute/galleries/galleryevfczbqxmdgy\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYEVFCZBQXMDGY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryudatdkismxmx\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-22-2020-PRODBRAZILSOUTH/providers/Microsoft.Compute/galleries/galleryudatdkismxmx\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYUDATDKISMXMX\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"disklonglivedgalleryInukwest\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGRUNNINGRG-UKWEST/providers/Microsoft.Compute/galleries/disklonglivedgalleryInukwest\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"ukwest\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-DISKLONGLIVEDGALLERYINUKWEST\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryysgcpwxutvyr\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-19-2020-PRODEASTASIA/providers/Microsoft.Compute/galleries/galleryysgcpwxutvyr\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYYSGCPWXUTVYR\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"CopyV2Standardgallerybrknzmfubnkg\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-22-2020-PRODWESTUS2/providers/Microsoft.Compute/galleries/CopyV2Standardgallerybrknzmfubnkg\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-COPYV2STANDARDGALLERYBRKNZMFUBNKG\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerycjblbwvxtepk\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-22-2020-PRODWESTUS2/providers/Microsoft.Compute/galleries/gallerycjblbwvxtepk\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYCJBLBWVXTEPK\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"grlianTestGallery\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GRLIANRG/providers/Microsoft.Compute/galleries/grlianTestGallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GRLIANTESTGALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"longlivedgallery\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYAZURESUPPORTRG/providers/Microsoft.Compute/galleries/longlivedgallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"description\": \"My Private Gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEDGALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"disklonglivedgalleryIncanadaeast\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGRUNNINGRG-CANADAEAST/providers/Microsoft.Compute/galleries/disklonglivedgalleryIncanadaeast\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-DISKLONGLIVEDGALLERYINCANADAEAST\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"disklonglivedgalleryInaustraliasoutheast\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGRUNNINGRG-AUSTRALIASOUTHEAST/providers/Microsoft.Compute/galleries/disklonglivedgalleryInaustraliasoutheast\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-DISKLONGLIVEDGALLERYINAUSTRALIASOUTHEAST\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerylynbzaemiqkk\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-16-2020-PRODAUSTRALIACENTRAL/providers/Microsoft.Compute/galleries/gallerylynbzaemiqkk\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"australiacentral\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYLYNBZAEMIQKK\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerylzzkdkslrjrk\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-19-2020-PRODSOUTHAFRICANORTH/providers/Microsoft.Compute/galleries/gallerylzzkdkslrjrk\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southafricanorth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYLZZKDKSLRJRK\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryocqwcgmssdus\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-19-2020-PRODGERMANYWESTCENTRAL/providers/Microsoft.Compute/galleries/galleryocqwcgmssdus\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"germanywestcentral\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYOCQWCGMSSDUS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryjyzlrurtgyql\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-1-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/galleryjyzlrurtgyql\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYJYZLRURTGYQL\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryigpiolyxhegn\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-13-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/galleryigpiolyxhegn\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYIGPIOLYXHEGN\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryogghackydurn\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-14-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/galleryogghackydurn\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYOGGHACKYDURN\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerykpxqivdffoaa\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-15-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/gallerykpxqivdffoaa\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYKPXQIVDFFOAA\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryxqygvvznxsqb\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-16-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/galleryxqygvvznxsqb\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYXQYGVVZNXSQB\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryiobuyuchtwqd\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-19-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/galleryiobuyuchtwqd\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYIOBUYUCHTWQD\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerylplkjragptrk\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-2-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/gallerylplkjragptrk\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYLPLKJRAGPTRK\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryzlnxggfqnutb\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-20-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/galleryzlnxggfqnutb\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYZLNXGGFQNUTB\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerynqfywamohuwn\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-21-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/gallerynqfywamohuwn\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYNQFYWAMOHUWN\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerydiaqgdrffnqp\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-22-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/gallerydiaqgdrffnqp\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYDIAQGDRFFNQP\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerylxacxcogxpae\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-5-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/gallerylxacxcogxpae\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYLXACXCOGXPAE\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerythozbswcgroh\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-6-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/gallerythozbswcgroh\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYTHOZBSWCGROH\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerysemcjztbtwxi\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-7-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/gallerysemcjztbtwxi\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYSEMCJZTBTWXI\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerywjmkvbvqrotp\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-8-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/gallerywjmkvbvqrotp\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYWJMKVBVQROTP\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryqlssopvwhqff\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-9-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/galleryqlssopvwhqff\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYQLSSOPVWHQFF\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryjzyueyqqhpil\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-19-2020-PRODSOUTHAFRICAWEST/providers/Microsoft.Compute/galleries/galleryjzyueyqqhpil\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southafricawest\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYJZYUEYQQHPIL\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryjqdethyiqazk\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-9-22-2020-PRODUAECENTRAL/providers/Microsoft.Compute/galleries/galleryjqdethyiqazk\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"uaecentral\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYJQDETHYIQAZK\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerywqtbjxzinvmg\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-19-2020-PRODGERMANYNORTH/providers/Microsoft.Compute/galleries/gallerywqtbjxzinvmg\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"germanynorth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYWQTBJXZINVMG\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerygdhgvktbsoih\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-12-2020-PRODEASTUS2EUAP/providers/Microsoft.Compute/galleries/gallerygdhgvktbsoih\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYGDHGVKTBSOIH\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryllxtxrqndlpf\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-21-2020-PRODEASTUS2EUAP/providers/Microsoft.Compute/galleries/galleryllxtxrqndlpf\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYLLXTXRQNDLPF\"\r\n },\r\n \"provisioningState\": \"Failed\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerytbdvjdjernaf\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-22-2020-PRODEASTUS2EUAP/providers/Microsoft.Compute/galleries/gallerytbdvjdjernaf\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYTBDVJDJERNAF\"\r\n },\r\n \"provisioningState\": \"Failed\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerylfkshwrluerz\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-8-28-2020-PRODEASTUS2EUAP/providers/Microsoft.Compute/galleries/gallerylfkshwrluerz\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYLFKSHWRLUERZ\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerymwimjygfbnqs\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-8-28-2020-PRODEASTUS2EUAP/providers/Microsoft.Compute/galleries/gallerymwimjygfbnqs\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYMWIMJYGFBNQS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerytmxmixvwqcko\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-8-28-2020-PRODEASTUS2EUAP/providers/Microsoft.Compute/galleries/gallerytmxmixvwqcko\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYTMXMIXVWQCKO\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerymnconpyfpgxw\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-9-16-2020-PRODEASTUS2EUAP/providers/Microsoft.Compute/galleries/gallerymnconpyfpgxw\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYMNCONPYFPGXW\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryznmufdqjjpkc\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-9-18-2020-PRODEASTUS2EUAP/providers/Microsoft.Compute/galleries/galleryznmufdqjjpkc\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYZNMUFDQJJPKC\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryalxhukvwtcxi\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-9-23-2020-PRODEASTUS2EUAP/providers/Microsoft.Compute/galleries/galleryalxhukvwtcxi\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYALXHUKVWTCXI\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery2975\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG3906/providers/Microsoft.Compute/galleries/galleryPsTestGallery2975\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY2975\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery8333\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG9881/providers/Microsoft.Compute/galleries/galleryPsTestGallery8333\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8333\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"longlivedgal\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERY/providers/Microsoft.Compute/galleries/longlivedgal\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"properties\": {\r\n \"description\": \"gallery used for e2e testing\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEDGAL\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"mygalleryForCrp97f7\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERY/providers/Microsoft.Compute/galleries/mygalleryForCrp97f7\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-MYGALLERYFORCRP97F7\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"mygalleryForCrpEastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERY/providers/Microsoft.Compute/galleries/mygalleryForCrpEastus2euap\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-MYGALLERYFORCRPEASTUS2EUAP\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"tireganTestGallery\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERY/providers/Microsoft.Compute/galleries/tireganTestGallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-TIREGANTESTGALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"TVMTestGallery\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDTRUSTEDVMRG/providers/Microsoft.Compute/galleries/TVMTestGallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"TrustedVM gallery test in Canary.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-TVMTESTGALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallery1euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/RGEUAP/providers/Microsoft.Compute/galleries/gallery1euap\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERY1EUAP\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"tempnewgallery\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/TEMPNEWRG/providers/Microsoft.Compute/galleries/tempnewgallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-TEMPNEWGALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"grlianTestGalleryUniqueName\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GRLIANRG/providers/Microsoft.Compute/galleries/grlianTestGalleryUniqueName\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"description\": \"My Private Gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GRLIANTESTGALLERYUNIQUENAME\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"grlianTestGalleryUniqueNameT15\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GRLIANRG/providers/Microsoft.Compute/galleries/grlianTestGalleryUniqueNameT15\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"description\": \"My Private Gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GRLIANTESTGALLERYUNIQUENAMET15\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"canarydrillsig\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/SIGCANARYDRDRILL/providers/Microsoft.Compute/galleries/canarydrillsig\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-CANARYDRILLSIG\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559/providers/Microsoft.Compute/galleries/galleryPsTestGallery3975?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc1NTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM5NzU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY2NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1NDQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "65e39a53-c5d8-47ef-870f-5ce8e6c35291" + "b66f3bac-3fd1-4640-97d1-615cf3c6fb71" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:56:05 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/988f0163-9bd3-4fbc-a4e1-97976bd22d51?monitor=true&api-version=2019-12-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a4c37762-d4c8-4bf9-8475-027c1c63d869?monitor=true&api-version=2020-09-30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/988f0163-9bd3-4fbc-a4e1-97976bd22d51?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a4c37762-d4c8-4bf9-8475-027c1c63d869?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;298" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "988f0163-9bd3-4fbc-a4e1-97976bd22d51" + "a4c37762-d4c8-4bf9-8475-027c1c63d869" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "a1d0a213-f0be-41b6-8c67-93c29f3ac333" + "d797b5a1-5628-448d-b653-2086a4630e04" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015605Z:a1d0a213-f0be-41b6-8c67-93c29f3ac333" + "WESTUS:20201023T000529Z:d797b5a1-5628-448d-b653-2086a4630e04" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 23 Oct 2020 00:05:29 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/988f0163-9bd3-4fbc-a4e1-97976bd22d51?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy85ODhmMDE2My05YmQzLTRmYmMtYTRlMS05Nzk3NmJkMjJkNTE/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a4c37762-d4c8-4bf9-8475-027c1c63d869?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hNGMzNzc2Mi1kNGM4LTRiZjktODQ3NS0wMjdjMWM2M2Q4Njk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:56:35 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4179" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "bee31eef-bbb8-4dd8-9729-5f56a602828e" + "64620ed1-0be8-484c-8412-f7940405b5da" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11989" ], "x-ms-correlation-request-id": [ - "3359d6ef-5648-41e6-b148-a1a29c996cb6" + "c83a389d-e40b-4eb7-a626-6f3244e5969d" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015635Z:3359d6ef-5648-41e6-b148-a1a29c996cb6" + "WESTUS:20201023T000600Z:c83a389d-e40b-4eb7-a626-6f3244e5969d" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:05:59 GMT" + ], "Content-Length": [ "184" ], @@ -1125,187 +1178,196 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:56:05.6350176-08:00\",\r\n \"endTime\": \"2020-02-20T17:56:05.7443838-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"988f0163-9bd3-4fbc-a4e1-97976bd22d51\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T17:05:29.7231711-07:00\",\r\n \"endTime\": \"2020-10-22T17:05:29.8325421-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a4c37762-d4c8-4bf9-8475-027c1c63d869\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/988f0163-9bd3-4fbc-a4e1-97976bd22d51?monitor=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy85ODhmMDE2My05YmQzLTRmYmMtYTRlMS05Nzk3NmJkMjJkNTE/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a4c37762-d4c8-4bf9-8475-027c1c63d869?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hNGMzNzc2Mi1kNGM4LTRiZjktODQ3NS0wMjdjMWM2M2Q4Njk/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:56:35 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4178" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "d6bf1617-e6ff-4f12-90be-c9d06765fa76" + "a671553f-8799-453b-8792-68a742dc378d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11988" ], "x-ms-correlation-request-id": [ - "e69b759a-6a05-4c26-9f76-18e9d00375b5" + "aa2b0eae-54bc-4f33-96a2-39a27af679fa" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015636Z:e69b759a-6a05-4c26-9f76-18e9d00375b5" + "WESTUS:20201023T000600Z:aa2b0eae-54bc-4f33-96a2-39a27af679fa" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 23 Oct 2020 00:05:59 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7559New/providers/Microsoft.Compute/galleries/galleryPsTestGallery3975New?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzc1NTlOZXcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM5NzVOZXc/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640New/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544New?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY2NDBOZXcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1NDROZXc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6f370032-32b4-43a7-8cd5-e00d841eedae" + "72cfd543-6580-43d7-9b78-8242fca2e206" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:56:35 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/882fd8e9-4505-4ce5-a3c8-c55c585110e6?monitor=true&api-version=2019-12-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/9b68aa61-0523-4596-8ef2-cea5913627af?monitor=true&api-version=2020-09-30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/882fd8e9-4505-4ce5-a3c8-c55c585110e6?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/9b68aa61-0523-4596-8ef2-cea5913627af?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/DeleteGallery3Min;48,Microsoft.Compute/DeleteGallery30Min;297" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "882fd8e9-4505-4ce5-a3c8-c55c585110e6" + "9b68aa61-0523-4596-8ef2-cea5913627af" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "0aadcc9a-ab16-47d8-91c5-ce553dc66ef9" + "190ba0ef-3013-4799-ba29-4fbe9f47e563" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015636Z:0aadcc9a-ab16-47d8-91c5-ce553dc66ef9" + "WESTUS:20201023T000600Z:190ba0ef-3013-4799-ba29-4fbe9f47e563" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 23 Oct 2020 00:06:00 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/882fd8e9-4505-4ce5-a3c8-c55c585110e6?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy84ODJmZDhlOS00NTA1LTRjZTUtYTNjOC1jNTVjNTg1MTEwZTY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/9b68aa61-0523-4596-8ef2-cea5913627af?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy85YjY4YWE2MS0wNTIzLTQ1OTYtOGVmMi1jZWE1OTEzNjI3YWY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:57:06 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4176" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "d766ced6-edbb-4df5-af40-c530e1952b56" + "12f8a94c-3522-426c-b424-538457fe26c4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11987" ], "x-ms-correlation-request-id": [ - "e2edb39c-0896-46db-ad25-394f3a30c6cd" + "ec36010a-4fba-424e-9979-5c13c54e02c1" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015706Z:e2edb39c-0896-46db-ad25-394f3a30c6cd" + "WESTUS:20201023T000630Z:ec36010a-4fba-424e-9979-5c13c54e02c1" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 23 Oct 2020 00:06:30 GMT" + ], "Content-Length": [ - "183" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1314,62 +1376,65 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:56:36.495454-08:00\",\r\n \"endTime\": \"2020-02-20T17:56:36.6048301-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"882fd8e9-4505-4ce5-a3c8-c55c585110e6\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T17:06:00.6606963-07:00\",\r\n \"endTime\": \"2020-10-22T17:06:00.7544529-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9b68aa61-0523-4596-8ef2-cea5913627af\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/882fd8e9-4505-4ce5-a3c8-c55c585110e6?monitor=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy84ODJmZDhlOS00NTA1LTRjZTUtYTNjOC1jNTVjNTg1MTEwZTY/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/9b68aa61-0523-4596-8ef2-cea5913627af?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy85YjY4YWE2MS0wNTIzLTQ1OTYtOGVmMi1jZWE1OTEzNjI3YWY/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29220.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 21 Feb 2020 01:57:06 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4175" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498,1dd04696-ef54-4aec-bada-944b3b397491_132254296168923498" + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" ], "x-ms-request-id": [ - "eed1e521-6f53-4fda-af0b-e757ad1f55f6" + "6ce2c8f9-95ee-496d-b5d1-70c295b0e4d7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11986" ], "x-ms-correlation-request-id": [ - "42310865-e9f5-4eaf-8f4f-80f6f8478fbc" + "a2e51954-b5d9-44b4-b42d-5bf0a10de600" ], "x-ms-routing-request-id": [ - "WESTUS:20200221T015706Z:42310865-e9f5-4eaf-8f4f-80f6f8478fbc" + "WESTUS:20201023T000630Z:a2e51954-b5d9-44b4-b42d-5bf0a10de600" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 23 Oct 2020 00:06:30 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -1378,8 +1443,8 @@ ], "Names": { "Gallery_CRUD_Tests": [ - "galleryPsTestRg7559", - "galleryPsTestGallery3975" + "galleryPsTestRg6640", + "galleryPsTestGallery8544" ] }, "Variables": { diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_WithSharingProfile_CRUD_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_WithSharingProfile_CRUD_Tests.json new file mode 100644 index 000000000000..04d5d2685162 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_WithSharingProfile_CRUD_Tests.json @@ -0,0 +1,1032 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg9293?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyOTM/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "25b285c3-7ff0-4f7d-bf0e-16832816b600" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "ca72a5fc-1c84-463f-9ebc-316c09dc89e4" + ], + "x-ms-correlation-request-id": [ + "ca72a5fc-1c84-463f-9ebc-316c09dc89e4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201024T072142Z:ca72a5fc-1c84-463f-9ebc-316c09dc89e4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 24 Oct 2020 07:21:42 GMT" + ], + "Content-Length": [ + "192" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9293\",\r\n \"name\": \"galleryPsTestRg9293\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9293/providers/Microsoft.Compute/galleries/galleryPsTestGallery7879?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTc4Nzk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "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": [ + "e1a5353c-3be1-46d7-a4d2-c55112773d7a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "177" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/c8b23f36-86de-4843-850d-552dfdad486c?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;295" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + ], + "x-ms-request-id": [ + "c8b23f36-86de-4843-850d-552dfdad486c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "5f11578a-4d55-41da-8084-09f64f3aaf8a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201024T072146Z:5f11578a-4d55-41da-8084-09f64f3aaf8a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 24 Oct 2020 07:21:45 GMT" + ], + "Content-Length": [ + "572" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery7879\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9293/providers/Microsoft.Compute/galleries/galleryPsTestGallery7879\",\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-GALLERYPSTESTGALLERY7879\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/c8b23f36-86de-4843-850d-552dfdad486c?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9jOGIyM2YzNi04NmRlLTQ4NDMtODUwZC01NTJkZmRhZDQ4NmM/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4157" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + ], + "x-ms-request-id": [ + "2c9b91a3-b741-4880-809e-df9403dd163c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "353979b7-f610-446b-81dc-1d9b6072f63f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201024T072216Z:353979b7-f610-446b-81dc-1d9b6072f63f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 24 Oct 2020 07:22:15 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-10-24T00:21:45.5314289-07:00\",\r\n \"endTime\": \"2020-10-24T00:21:45.7502063-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c8b23f36-86de-4843-850d-552dfdad486c\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9293/providers/Microsoft.Compute/galleries/galleryPsTestGallery7879?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTc4Nzk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;345,Microsoft.Compute/GetGallery30Min;2437" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + ], + "x-ms-request-id": [ + "5cca4187-6b77-4304-8ff5-343b56a91757" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "7b5f26e3-070c-4c34-92df-c81e2614c840" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201024T072216Z:7b5f26e3-070c-4c34-92df-c81e2614c840" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 24 Oct 2020 07:22:15 GMT" + ], + "Content-Length": [ + "509" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery7879\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9293/providers/Microsoft.Compute/galleries/galleryPsTestGallery7879\",\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-GALLERYPSTESTGALLERY7879\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9293/providers/Microsoft.Compute/galleries/galleryPsTestGallery7879?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTc4Nzk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ad03c652-f36f-46ef-8c66-c2d04f783957" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;344,Microsoft.Compute/GetGallery30Min;2436" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + ], + "x-ms-request-id": [ + "d21dfc69-f3e8-40f4-8db7-2546e6bc3319" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "38ed1114-deee-4099-81b5-e2fd4180bded" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201024T072216Z:38ed1114-deee-4099-81b5-e2fd4180bded" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 24 Oct 2020 07:22:15 GMT" + ], + "Content-Length": [ + "509" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery7879\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9293/providers/Microsoft.Compute/galleries/galleryPsTestGallery7879\",\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-GALLERYPSTESTGALLERY7879\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9293/providers/Microsoft.Compute/galleries/galleryPsTestGallery7879/share?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTc4Nzkvc2hhcmU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"operationType\": \"Add\",\r\n \"groups\": [\r\n {\r\n \"type\": \"AADTenants\",\r\n \"ids\": [\r\n \"5a798993-22c5-47d3-b2d6-39f2155c6fe7\"\r\n ]\r\n },\r\n {\r\n \"type\": \"Subscriptions\",\r\n \"ids\": [\r\n \"cae89549-47e2-45ab-8d6b-fc3d27752bbd\"\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ee289d3c-4b56-40b2-9759-2cb4f71bde9d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "287" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/760c9b92-fe48-47a8-8d19-1ec93e155f63?monitor=true&api-version=2020-09-30" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/760c9b92-fe48-47a8-8d19-1ec93e155f63?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PostShareGallery3Min;9,Microsoft.Compute/PostShareGallery30Min;52" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + ], + "x-ms-request-id": [ + "760c9b92-fe48-47a8-8d19-1ec93e155f63" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "f01a64e7-44ed-4f79-84f1-4a2e4f572f87" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201024T072216Z:f01a64e7-44ed-4f79-84f1-4a2e4f572f87" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 24 Oct 2020 07:22:16 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9293/providers/Microsoft.Compute/galleries/galleryPsTestGallery7879/share?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTc4Nzkvc2hhcmU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"operationType\": \"ResetToPrivate\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7162c29-90cb-464c-b454-dc2524d272a8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "41" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/0bc4e873-1201-4b1f-9cb6-05e0adb4b4a2?monitor=true&api-version=2020-09-30" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/0bc4e873-1201-4b1f-9cb6-05e0adb4b4a2?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PostShareGallery3Min;8,Microsoft.Compute/PostShareGallery30Min;51" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + ], + "x-ms-request-id": [ + "0bc4e873-1201-4b1f-9cb6-05e0adb4b4a2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "4695182d-cf9e-4602-be7e-abd37983e0c5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201024T072247Z:4695182d-cf9e-4602-be7e-abd37983e0c5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 24 Oct 2020 07:22:47 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/760c9b92-fe48-47a8-8d19-1ec93e155f63?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83NjBjOWI5Mi1mZTQ4LTQ3YTgtOGQxOS0xZWM5M2UxNTVmNjM/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4155" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + ], + "x-ms-request-id": [ + "c228b075-6b97-4048-949d-5404b3c835d8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "ec12c650-e7c3-444b-9bfb-ffd3cd2b0fe9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201024T072247Z:ec12c650-e7c3-444b-9bfb-ffd3cd2b0fe9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 24 Oct 2020 07:22:46 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-10-24T00:22:16.8113825-07:00\",\r\n \"endTime\": \"2020-10-24T00:22:18.0144163-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"760c9b92-fe48-47a8-8d19-1ec93e155f63\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/760c9b92-fe48-47a8-8d19-1ec93e155f63?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83NjBjOWI5Mi1mZTQ4LTQ3YTgtOGQxOS0xZWM5M2UxNTVmNjM/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4154" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + ], + "x-ms-request-id": [ + "39816447-9ac5-4b98-8b0e-fee2e9a82c01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "77515a2b-f184-4713-a28e-f30cf495e725" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201024T072247Z:77515a2b-f184-4713-a28e-f30cf495e725" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 24 Oct 2020 07:22:46 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9293/providers/Microsoft.Compute/galleries/galleryPsTestGallery7879?api-version=2020-09-30&$select=Permissions", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTc4Nzk/YXBpLXZlcnNpb249MjAyMC0wOS0zMCYkc2VsZWN0PVBlcm1pc3Npb25z", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "417b5c98-ceb3-42ac-9670-a1cd23e03073" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;343,Microsoft.Compute/GetGallery30Min;2435" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + ], + "x-ms-request-id": [ + "de0064a7-8a16-4d47-af47-e3ce57065bc9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "ad9062a6-617a-4203-ac69-f48f820e0483" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201024T072247Z:ad9062a6-617a-4203-ac69-f48f820e0483" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 24 Oct 2020 07:22:46 GMT" + ], + "Content-Length": [ + "886" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery7879\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9293/providers/Microsoft.Compute/galleries/galleryPsTestGallery7879\",\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-GALLERYPSTESTGALLERY7879\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\",\r\n \"groups\": [\r\n {\r\n \"type\": \"Subscriptions\",\r\n \"ids\": [\r\n \"cae89549-47e2-45ab-8d6b-fc3d27752bbd\"\r\n ]\r\n },\r\n {\r\n \"type\": \"AADTenants\",\r\n \"ids\": [\r\n \"5a798993-22c5-47d3-b2d6-39f2155c6fe7\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/0bc4e873-1201-4b1f-9cb6-05e0adb4b4a2?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wYmM0ZTg3My0xMjAxLTRiMWYtOWNiNi0wNWUwYWRiNGI0YTI/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4152" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + ], + "x-ms-request-id": [ + "9caef4eb-ae31-4884-a113-79d690c7fd05" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "377b5099-3109-48d3-8275-d90cfab5de10" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201024T072318Z:377b5099-3109-48d3-8275-d90cfab5de10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 24 Oct 2020 07:23:18 GMT" + ], + "Content-Length": [ + "183" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-10-24T00:22:47.718593-07:00\",\r\n \"endTime\": \"2020-10-24T00:22:48.0311193-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0bc4e873-1201-4b1f-9cb6-05e0adb4b4a2\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/0bc4e873-1201-4b1f-9cb6-05e0adb4b4a2?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wYmM0ZTg3My0xMjAxLTRiMWYtOWNiNi0wNWUwYWRiNGI0YTI/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4151" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + ], + "x-ms-request-id": [ + "d76b2fca-eb07-4d14-854a-e7676a1339b5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "50f24b72-240a-4e70-acff-7460f86f30e8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201024T072318Z:50f24b72-240a-4e70-acff-7460f86f30e8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 24 Oct 2020 07:23:18 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9293/providers/Microsoft.Compute/galleries/galleryPsTestGallery7879?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTc4Nzk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a1d68450-6b82-4890-910a-5038e89ef400" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/75e62468-19af-49d9-9313-32282525dbd5?monitor=true&api-version=2020-09-30" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/75e62468-19af-49d9-9313-32282525dbd5?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;287" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + ], + "x-ms-request-id": [ + "75e62468-19af-49d9-9313-32282525dbd5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "3794d915-97de-443b-8801-ba45e993832c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201024T072318Z:3794d915-97de-443b-8801-ba45e993832c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 24 Oct 2020 07:23:18 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/75e62468-19af-49d9-9313-32282525dbd5?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83NWU2MjQ2OC0xOWFmLTQ5ZDktOTMxMy0zMjI4MjUyNWRiZDU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4149" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + ], + "x-ms-request-id": [ + "1dd7f199-e663-4935-b2d1-70cecbe1497d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "ba33bcbb-ca75-47e5-859e-5a046e3f9056" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201024T072348Z:ba33bcbb-ca75-47e5-859e-5a046e3f9056" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 24 Oct 2020 07:23:48 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-10-24T00:23:18.7189312-07:00\",\r\n \"endTime\": \"2020-10-24T00:23:18.8127057-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"75e62468-19af-49d9-9313-32282525dbd5\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/75e62468-19af-49d9-9313-32282525dbd5?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83NWU2MjQ2OC0xOWFmLTQ5ZDktOTMxMy0zMjI4MjUyNWRiZDU/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29220.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4148" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + ], + "x-ms-request-id": [ + "178668de-aafe-485d-ace0-71e6619c211c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "c430052b-b6c0-40b2-9194-644a6e4c182f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201024T072349Z:c430052b-b6c0-40b2-9194-644a6e4c182f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 24 Oct 2020 07:23:48 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Gallery_WithSharingProfile_CRUD_Tests": [ + "galleryPsTestRg9293", + "galleryPsTestGallery7879" + ] + }, + "Variables": { + "SubscriptionId": "97f78232-382b-46a7-8a72-964d692c4f3f" + } +} \ No newline at end of file From 548eb77cf41eb40e0380163cb17ec3c36d33523d Mon Sep 17 00:00:00 2001 From: Kang Sun Date: Wed, 2 Dec 2020 16:32:23 -0800 Subject: [PATCH 06/27] save work for gallery with sharing profile, caps side test --- .../tests/ScenarioTests/GalleryTests.cs | 3 +- ...Gallery_WithSharingProfile_CRUD_Tests.json | 324 +++++++++--------- 2 files changed, 163 insertions(+), 164 deletions(-) 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 e540b70b0eab..b94df3e7b15a 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/GalleryTests.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/GalleryTests.cs @@ -353,7 +353,6 @@ public void Gallery_WithSharingProfile_CRUD_Tests() { EnsureClientsInitialized(context); string rgName = ComputeManagementTestUtilities.GenerateName(ResourceGroupPrefix); - string rgName2 = rgName + "New"; m_ResourcesClient.ResourceGroups.CreateOrUpdate(rgName, new ResourceGroup { Location = galleryHomeLocation }); Trace.TraceInformation("Created the resource group: " + rgName); @@ -409,7 +408,7 @@ public void Gallery_WithSharingProfile_CRUD_Tests() }; m_CrpClient.GallerySharingProfile.Update(rgName, galleryName, resetPrivateUpdate); - + Trace.TraceInformation("Deleting this gallery."); m_CrpClient.Galleries.Delete(rgName, galleryName); // resource groups cleanup is taken cared by MockContext.Dispose() method. diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_WithSharingProfile_CRUD_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_WithSharingProfile_CRUD_Tests.json index 04d5d2685162..7ddf8841632e 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_WithSharingProfile_CRUD_Tests.json +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_WithSharingProfile_CRUD_Tests.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg9293?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyOTM/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg3878?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM4Nzg/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "25b285c3-7ff0-4f7d-bf0e-16832816b600" + "79dd8723-5f81-47fd-b52c-e94943fbfcea" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "ca72a5fc-1c84-463f-9ebc-316c09dc89e4" + "58422333-f947-4b7a-b8ff-2bce5821a96a" ], "x-ms-correlation-request-id": [ - "ca72a5fc-1c84-463f-9ebc-316c09dc89e4" + "58422333-f947-4b7a-b8ff-2bce5821a96a" ], "x-ms-routing-request-id": [ - "WESTUS:20201024T072142Z:ca72a5fc-1c84-463f-9ebc-316c09dc89e4" + "WESTUS:20201203T002509Z:58422333-f947-4b7a-b8ff-2bce5821a96a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Sat, 24 Oct 2020 07:21:42 GMT" + "Thu, 03 Dec 2020 00:25:08 GMT" ], "Content-Length": [ "192" @@ -63,23 +63,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9293\",\r\n \"name\": \"galleryPsTestRg9293\",\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/galleryPsTestRg3878\",\r\n \"name\": \"galleryPsTestRg3878\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9293/providers/Microsoft.Compute/galleries/galleryPsTestGallery7879?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTc4Nzk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3878/providers/Microsoft.Compute/galleries/galleryPsTestGallery5549?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM4NzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU1NDk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "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": [ - "e1a5353c-3be1-46d7-a4d2-c55112773d7a" + "8dff7fc2-e778-4059-87b1-7bc46f9a8349" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" @@ -99,19 +99,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/c8b23f36-86de-4843-850d-552dfdad486c?api-version=2020-09-30" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/b7b9dd18-c179-419a-84b8-559ab6658dbd?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;295" + "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973,1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973" ], "x-ms-request-id": [ - "c8b23f36-86de-4843-850d-552dfdad486c" + "b7b9dd18-c179-419a-84b8-559ab6658dbd" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -121,16 +121,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "5f11578a-4d55-41da-8084-09f64f3aaf8a" + "c53a1b22-91b8-4d7c-b066-0e1dd5245481" ], "x-ms-routing-request-id": [ - "WESTUS:20201024T072146Z:5f11578a-4d55-41da-8084-09f64f3aaf8a" + "WESTUS:20201203T002512Z:c53a1b22-91b8-4d7c-b066-0e1dd5245481" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 24 Oct 2020 07:21:45 GMT" + "Thu, 03 Dec 2020 00:25:11 GMT" ], "Content-Length": [ "572" @@ -142,17 +142,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery7879\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9293/providers/Microsoft.Compute/galleries/galleryPsTestGallery7879\",\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-GALLERYPSTESTGALLERY7879\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery5549\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3878/providers/Microsoft.Compute/galleries/galleryPsTestGallery5549\",\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-GALLERYPSTESTGALLERY5549\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/c8b23f36-86de-4843-850d-552dfdad486c?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9jOGIyM2YzNi04NmRlLTQ4NDMtODUwZC01NTJkZmRhZDQ4NmM/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/b7b9dd18-c179-419a-84b8-559ab6658dbd?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iN2I5ZGQxOC1jMTc5LTQxOWEtODRiOC01NTlhYjY2NThkYmQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" @@ -166,16 +166,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4157" + "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4198" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973,1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973" ], "x-ms-request-id": [ - "2c9b91a3-b741-4880-809e-df9403dd163c" + "412a921a-20e6-4148-ae87-29deb3db9725" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -185,19 +185,19 @@ "11999" ], "x-ms-correlation-request-id": [ - "353979b7-f610-446b-81dc-1d9b6072f63f" + "14eba504-c086-41c1-9d56-93e0475d809c" ], "x-ms-routing-request-id": [ - "WESTUS:20201024T072216Z:353979b7-f610-446b-81dc-1d9b6072f63f" + "WESTUS:20201203T002542Z:14eba504-c086-41c1-9d56-93e0475d809c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 24 Oct 2020 07:22:15 GMT" + "Thu, 03 Dec 2020 00:25:41 GMT" ], "Content-Length": [ - "184" + "183" ], "Content-Type": [ "application/json; charset=utf-8" @@ -206,17 +206,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-24T00:21:45.5314289-07:00\",\r\n \"endTime\": \"2020-10-24T00:21:45.7502063-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c8b23f36-86de-4843-850d-552dfdad486c\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-12-02T16:25:11.683585-08:00\",\r\n \"endTime\": \"2020-12-02T16:25:11.9179662-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b7b9dd18-c179-419a-84b8-559ab6658dbd\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9293/providers/Microsoft.Compute/galleries/galleryPsTestGallery7879?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTc4Nzk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3878/providers/Microsoft.Compute/galleries/galleryPsTestGallery5549?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM4NzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU1NDk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" @@ -230,16 +230,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;345,Microsoft.Compute/GetGallery30Min;2437" + "Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2496" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973,1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973" ], "x-ms-request-id": [ - "5cca4187-6b77-4304-8ff5-343b56a91757" + "c116d269-0575-4695-9a00-6823c5a8a5b8" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -249,16 +249,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "7b5f26e3-070c-4c34-92df-c81e2614c840" + "559cb721-3679-4d03-8784-5321b7ea4c34" ], "x-ms-routing-request-id": [ - "WESTUS:20201024T072216Z:7b5f26e3-070c-4c34-92df-c81e2614c840" + "WESTUS:20201203T002542Z:559cb721-3679-4d03-8784-5321b7ea4c34" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 24 Oct 2020 07:22:15 GMT" + "Thu, 03 Dec 2020 00:25:41 GMT" ], "Content-Length": [ "509" @@ -270,23 +270,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery7879\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9293/providers/Microsoft.Compute/galleries/galleryPsTestGallery7879\",\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-GALLERYPSTESTGALLERY7879\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery5549\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3878/providers/Microsoft.Compute/galleries/galleryPsTestGallery5549\",\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-GALLERYPSTESTGALLERY5549\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9293/providers/Microsoft.Compute/galleries/galleryPsTestGallery7879?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTc4Nzk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3878/providers/Microsoft.Compute/galleries/galleryPsTestGallery5549?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM4NzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU1NDk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad03c652-f36f-46ef-8c66-c2d04f783957" + "20708dc3-4199-4d0c-96d9-bb6f70b80826" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" @@ -300,16 +300,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;344,Microsoft.Compute/GetGallery30Min;2436" + "Microsoft.Compute/GetGallery3Min;345,Microsoft.Compute/GetGallery30Min;2495" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973,1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973" ], "x-ms-request-id": [ - "d21dfc69-f3e8-40f4-8db7-2546e6bc3319" + "88977b02-73a9-4ce8-93b1-ca3d64d69893" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -319,16 +319,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "38ed1114-deee-4099-81b5-e2fd4180bded" + "f7d250f1-2f37-4bb3-bb24-0dccbd63b40c" ], "x-ms-routing-request-id": [ - "WESTUS:20201024T072216Z:38ed1114-deee-4099-81b5-e2fd4180bded" + "WESTUS:20201203T002543Z:f7d250f1-2f37-4bb3-bb24-0dccbd63b40c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 24 Oct 2020 07:22:15 GMT" + "Thu, 03 Dec 2020 00:25:42 GMT" ], "Content-Length": [ "509" @@ -340,23 +340,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery7879\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9293/providers/Microsoft.Compute/galleries/galleryPsTestGallery7879\",\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-GALLERYPSTESTGALLERY7879\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery5549\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3878/providers/Microsoft.Compute/galleries/galleryPsTestGallery5549\",\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-GALLERYPSTESTGALLERY5549\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9293/providers/Microsoft.Compute/galleries/galleryPsTestGallery7879/share?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTc4Nzkvc2hhcmU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3878/providers/Microsoft.Compute/galleries/galleryPsTestGallery5549/share?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM4NzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU1NDkvc2hhcmU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"operationType\": \"Add\",\r\n \"groups\": [\r\n {\r\n \"type\": \"AADTenants\",\r\n \"ids\": [\r\n \"5a798993-22c5-47d3-b2d6-39f2155c6fe7\"\r\n ]\r\n },\r\n {\r\n \"type\": \"Subscriptions\",\r\n \"ids\": [\r\n \"cae89549-47e2-45ab-8d6b-fc3d27752bbd\"\r\n ]\r\n }\r\n ]\r\n}", + "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": [ - "ee289d3c-4b56-40b2-9759-2cb4f71bde9d" + "45e6b421-06a9-4762-83b2-ba3054d57e87" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" @@ -376,22 +376,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/760c9b92-fe48-47a8-8d19-1ec93e155f63?monitor=true&api-version=2020-09-30" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/885f35d6-2e73-49f2-a15e-01fea176e42a?monitor=true&api-version=2020-09-30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/760c9b92-fe48-47a8-8d19-1ec93e155f63?api-version=2020-09-30" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/885f35d6-2e73-49f2-a15e-01fea176e42a?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/PostShareGallery3Min;9,Microsoft.Compute/PostShareGallery30Min;52" + "Microsoft.Compute/PostShareGallery3Min;9,Microsoft.Compute/PostShareGallery30Min;59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973,1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973" ], "x-ms-request-id": [ - "760c9b92-fe48-47a8-8d19-1ec93e155f63" + "885f35d6-2e73-49f2-a15e-01fea176e42a" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -401,16 +401,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "f01a64e7-44ed-4f79-84f1-4a2e4f572f87" + "7d5d0dcc-162a-4de9-938d-09594ccea39b" ], "x-ms-routing-request-id": [ - "WESTUS:20201024T072216Z:f01a64e7-44ed-4f79-84f1-4a2e4f572f87" + "WESTUS:20201203T002543Z:7d5d0dcc-162a-4de9-938d-09594ccea39b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 24 Oct 2020 07:22:16 GMT" + "Thu, 03 Dec 2020 00:25:42 GMT" ], "Expires": [ "-1" @@ -423,19 +423,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9293/providers/Microsoft.Compute/galleries/galleryPsTestGallery7879/share?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTc4Nzkvc2hhcmU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3878/providers/Microsoft.Compute/galleries/galleryPsTestGallery5549/share?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM4NzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU1NDkvc2hhcmU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"operationType\": \"ResetToPrivate\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e7162c29-90cb-464c-b454-dc2524d272a8" + "1184e4a5-92fa-4e79-8389-3fb2e9f6f6d7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" @@ -455,22 +455,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/0bc4e873-1201-4b1f-9cb6-05e0adb4b4a2?monitor=true&api-version=2020-09-30" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/ed97ea1b-21ed-4cf3-9a91-48e4b913d272?monitor=true&api-version=2020-09-30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/0bc4e873-1201-4b1f-9cb6-05e0adb4b4a2?api-version=2020-09-30" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/ed97ea1b-21ed-4cf3-9a91-48e4b913d272?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/PostShareGallery3Min;8,Microsoft.Compute/PostShareGallery30Min;51" + "Microsoft.Compute/PostShareGallery3Min;8,Microsoft.Compute/PostShareGallery30Min;58" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973,1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973" ], "x-ms-request-id": [ - "0bc4e873-1201-4b1f-9cb6-05e0adb4b4a2" + "ed97ea1b-21ed-4cf3-9a91-48e4b913d272" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -480,16 +480,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "4695182d-cf9e-4602-be7e-abd37983e0c5" + "92b68091-0707-4c53-8f48-1aab5f746550" ], "x-ms-routing-request-id": [ - "WESTUS:20201024T072247Z:4695182d-cf9e-4602-be7e-abd37983e0c5" + "WESTUS:20201203T002614Z:92b68091-0707-4c53-8f48-1aab5f746550" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 24 Oct 2020 07:22:47 GMT" + "Thu, 03 Dec 2020 00:26:14 GMT" ], "Expires": [ "-1" @@ -502,13 +502,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/760c9b92-fe48-47a8-8d19-1ec93e155f63?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83NjBjOWI5Mi1mZTQ4LTQ3YTgtOGQxOS0xZWM5M2UxNTVmNjM/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/885f35d6-2e73-49f2-a15e-01fea176e42a?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy84ODVmMzVkNi0yZTczLTQ5ZjItYTE1ZS0wMWZlYTE3NmU0MmE/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" @@ -522,16 +522,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4155" + "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4196" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973,1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973" ], "x-ms-request-id": [ - "c228b075-6b97-4048-949d-5404b3c835d8" + "a0aa0668-dcbd-45ea-a7e9-0218ce99b82e" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -541,16 +541,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "ec12c650-e7c3-444b-9bfb-ffd3cd2b0fe9" + "a86448ba-77dc-4786-895b-a1a044e999d7" ], "x-ms-routing-request-id": [ - "WESTUS:20201024T072247Z:ec12c650-e7c3-444b-9bfb-ffd3cd2b0fe9" + "WESTUS:20201203T002613Z:a86448ba-77dc-4786-895b-a1a044e999d7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 24 Oct 2020 07:22:46 GMT" + "Thu, 03 Dec 2020 00:26:13 GMT" ], "Content-Length": [ "184" @@ -562,17 +562,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-24T00:22:16.8113825-07:00\",\r\n \"endTime\": \"2020-10-24T00:22:18.0144163-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"760c9b92-fe48-47a8-8d19-1ec93e155f63\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-12-02T16:25:43.1369075-08:00\",\r\n \"endTime\": \"2020-12-02T16:25:44.2775399-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"885f35d6-2e73-49f2-a15e-01fea176e42a\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/760c9b92-fe48-47a8-8d19-1ec93e155f63?monitor=true&api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83NjBjOWI5Mi1mZTQ4LTQ3YTgtOGQxOS0xZWM5M2UxNTVmNjM/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/885f35d6-2e73-49f2-a15e-01fea176e42a?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy84ODVmMzVkNi0yZTczLTQ5ZjItYTE1ZS0wMWZlYTE3NmU0MmE/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" @@ -586,16 +586,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4154" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4195" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973,1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973" ], "x-ms-request-id": [ - "39816447-9ac5-4b98-8b0e-fee2e9a82c01" + "ba85574a-3e12-4b85-9917-66187ceccd3a" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -605,16 +605,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "77515a2b-f184-4713-a28e-f30cf495e725" + "78ef128d-abb9-4fa4-851f-9e046b127ace" ], "x-ms-routing-request-id": [ - "WESTUS:20201024T072247Z:77515a2b-f184-4713-a28e-f30cf495e725" + "WESTUS:20201203T002613Z:78ef128d-abb9-4fa4-851f-9e046b127ace" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 24 Oct 2020 07:22:46 GMT" + "Thu, 03 Dec 2020 00:26:13 GMT" ], "Expires": [ "-1" @@ -627,19 +627,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9293/providers/Microsoft.Compute/galleries/galleryPsTestGallery7879?api-version=2020-09-30&$select=Permissions", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTc4Nzk/YXBpLXZlcnNpb249MjAyMC0wOS0zMCYkc2VsZWN0PVBlcm1pc3Npb25z", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3878/providers/Microsoft.Compute/galleries/galleryPsTestGallery5549?api-version=2020-09-30&$select=Permissions", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM4NzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU1NDk/YXBpLXZlcnNpb249MjAyMC0wOS0zMCYkc2VsZWN0PVBlcm1pc3Npb25z", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "417b5c98-ceb3-42ac-9670-a1cd23e03073" + "1ca7e966-67db-45e4-b376-51634e096e79" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" @@ -653,16 +653,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;343,Microsoft.Compute/GetGallery30Min;2435" + "Microsoft.Compute/GetGallery3Min;344,Microsoft.Compute/GetGallery30Min;2494" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973,1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973" ], "x-ms-request-id": [ - "de0064a7-8a16-4d47-af47-e3ce57065bc9" + "6c16cfaf-6bfa-4bba-9f0e-781d209bfc26" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -672,16 +672,16 @@ "11994" ], "x-ms-correlation-request-id": [ - "ad9062a6-617a-4203-ac69-f48f820e0483" + "38d98d9d-e055-4510-91c6-3c713ce8f4f8" ], "x-ms-routing-request-id": [ - "WESTUS:20201024T072247Z:ad9062a6-617a-4203-ac69-f48f820e0483" + "WESTUS:20201203T002613Z:38d98d9d-e055-4510-91c6-3c713ce8f4f8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 24 Oct 2020 07:22:46 GMT" + "Thu, 03 Dec 2020 00:26:13 GMT" ], "Content-Length": [ "886" @@ -693,17 +693,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery7879\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9293/providers/Microsoft.Compute/galleries/galleryPsTestGallery7879\",\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-GALLERYPSTESTGALLERY7879\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\",\r\n \"groups\": [\r\n {\r\n \"type\": \"Subscriptions\",\r\n \"ids\": [\r\n \"cae89549-47e2-45ab-8d6b-fc3d27752bbd\"\r\n ]\r\n },\r\n {\r\n \"type\": \"AADTenants\",\r\n \"ids\": [\r\n \"5a798993-22c5-47d3-b2d6-39f2155c6fe7\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery5549\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3878/providers/Microsoft.Compute/galleries/galleryPsTestGallery5549\",\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-GALLERYPSTESTGALLERY5549\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\",\r\n \"groups\": [\r\n {\r\n \"type\": \"Subscriptions\",\r\n \"ids\": [\r\n \"640c5810-13bf-4b82-b94d-f38c2565e3bc\"\r\n ]\r\n },\r\n {\r\n \"type\": \"AADTenants\",\r\n \"ids\": [\r\n \"583d66a9-0041-4999-8838-75baece101d5\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/0bc4e873-1201-4b1f-9cb6-05e0adb4b4a2?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wYmM0ZTg3My0xMjAxLTRiMWYtOWNiNi0wNWUwYWRiNGI0YTI/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/ed97ea1b-21ed-4cf3-9a91-48e4b913d272?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lZDk3ZWExYi0yMWVkLTRjZjMtOWE5MS00OGU0YjkxM2QyNzI/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" @@ -717,16 +717,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4152" + "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4193" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973,1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973" ], "x-ms-request-id": [ - "9caef4eb-ae31-4884-a113-79d690c7fd05" + "2c94c83b-d3b9-4d34-a220-6f6d0fcc414a" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -736,19 +736,19 @@ "11993" ], "x-ms-correlation-request-id": [ - "377b5099-3109-48d3-8275-d90cfab5de10" + "3bacf833-cb21-41de-939e-0c3d1df34bc7" ], "x-ms-routing-request-id": [ - "WESTUS:20201024T072318Z:377b5099-3109-48d3-8275-d90cfab5de10" + "WESTUS:20201203T002644Z:3bacf833-cb21-41de-939e-0c3d1df34bc7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 24 Oct 2020 07:23:18 GMT" + "Thu, 03 Dec 2020 00:26:44 GMT" ], "Content-Length": [ - "183" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -757,17 +757,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-24T00:22:47.718593-07:00\",\r\n \"endTime\": \"2020-10-24T00:22:48.0311193-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0bc4e873-1201-4b1f-9cb6-05e0adb4b4a2\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-12-02T16:26:13.9496084-08:00\",\r\n \"endTime\": \"2020-12-02T16:26:14.2777352-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ed97ea1b-21ed-4cf3-9a91-48e4b913d272\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/0bc4e873-1201-4b1f-9cb6-05e0adb4b4a2?monitor=true&api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wYmM0ZTg3My0xMjAxLTRiMWYtOWNiNi0wNWUwYWRiNGI0YTI/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/ed97ea1b-21ed-4cf3-9a91-48e4b913d272?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lZDk3ZWExYi0yMWVkLTRjZjMtOWE5MS00OGU0YjkxM2QyNzI/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" @@ -781,16 +781,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4151" + "Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4192" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973,1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973" ], "x-ms-request-id": [ - "d76b2fca-eb07-4d14-854a-e7676a1339b5" + "a999defd-c90e-479b-97a2-396dc763732b" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -800,16 +800,16 @@ "11992" ], "x-ms-correlation-request-id": [ - "50f24b72-240a-4e70-acff-7460f86f30e8" + "20a46e84-2b08-4186-8a9e-7ef888bbd157" ], "x-ms-routing-request-id": [ - "WESTUS:20201024T072318Z:50f24b72-240a-4e70-acff-7460f86f30e8" + "WESTUS:20201203T002644Z:20a46e84-2b08-4186-8a9e-7ef888bbd157" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 24 Oct 2020 07:23:18 GMT" + "Thu, 03 Dec 2020 00:26:44 GMT" ], "Expires": [ "-1" @@ -822,19 +822,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9293/providers/Microsoft.Compute/galleries/galleryPsTestGallery7879?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzkyOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTc4Nzk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3878/providers/Microsoft.Compute/galleries/galleryPsTestGallery5549?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM4NzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU1NDk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1d68450-6b82-4890-910a-5038e89ef400" + "f58699ed-9321-4818-a19d-0ee74d0fdc77" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" @@ -848,22 +848,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/75e62468-19af-49d9-9313-32282525dbd5?monitor=true&api-version=2020-09-30" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/aef5f068-322d-4cf4-b438-585f91a0d4c7?monitor=true&api-version=2020-09-30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/75e62468-19af-49d9-9313-32282525dbd5?api-version=2020-09-30" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/aef5f068-322d-4cf4-b438-585f91a0d4c7?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;287" + "Microsoft.Compute/DeleteGallery3Min;48,Microsoft.Compute/DeleteGallery30Min;259" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973,1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973" ], "x-ms-request-id": [ - "75e62468-19af-49d9-9313-32282525dbd5" + "aef5f068-322d-4cf4-b438-585f91a0d4c7" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -873,16 +873,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "3794d915-97de-443b-8801-ba45e993832c" + "1dc16209-f65e-4f3f-b250-a12b1da6c4e2" ], "x-ms-routing-request-id": [ - "WESTUS:20201024T072318Z:3794d915-97de-443b-8801-ba45e993832c" + "WESTUS:20201203T002645Z:1dc16209-f65e-4f3f-b250-a12b1da6c4e2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 24 Oct 2020 07:23:18 GMT" + "Thu, 03 Dec 2020 00:26:44 GMT" ], "Expires": [ "-1" @@ -895,13 +895,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/75e62468-19af-49d9-9313-32282525dbd5?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83NWU2MjQ2OC0xOWFmLTQ5ZDktOTMxMy0zMjI4MjUyNWRiZDU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/aef5f068-322d-4cf4-b438-585f91a0d4c7?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hZWY1ZjA2OC0zMjJkLTRjZjQtYjQzOC01ODVmOTFhMGQ0Yzc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" @@ -915,16 +915,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4149" + "Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4190" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973,1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973" ], "x-ms-request-id": [ - "1dd7f199-e663-4935-b2d1-70cecbe1497d" + "9305ed43-cace-45e7-84c5-7d2d806fd93b" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -934,19 +934,19 @@ "11991" ], "x-ms-correlation-request-id": [ - "ba33bcbb-ca75-47e5-859e-5a046e3f9056" + "082ea0db-4505-40b9-8310-a9aca865ff0c" ], "x-ms-routing-request-id": [ - "WESTUS:20201024T072348Z:ba33bcbb-ca75-47e5-859e-5a046e3f9056" + "WESTUS:20201203T002715Z:082ea0db-4505-40b9-8310-a9aca865ff0c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 24 Oct 2020 07:23:48 GMT" + "Thu, 03 Dec 2020 00:27:14 GMT" ], "Content-Length": [ - "184" + "183" ], "Content-Type": [ "application/json; charset=utf-8" @@ -955,17 +955,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-24T00:23:18.7189312-07:00\",\r\n \"endTime\": \"2020-10-24T00:23:18.8127057-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"75e62468-19af-49d9-9313-32282525dbd5\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2020-12-02T16:26:44.9810527-08:00\",\r\n \"endTime\": \"2020-12-02T16:26:45.090428-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"aef5f068-322d-4cf4-b438-585f91a0d4c7\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/75e62468-19af-49d9-9313-32282525dbd5?monitor=true&api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83NWU2MjQ2OC0xOWFmLTQ5ZDktOTMxMy0zMjI4MjUyNWRiZDU/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/aef5f068-322d-4cf4-b438-585f91a0d4c7?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hZWY1ZjA2OC0zMjJkLTRjZjQtYjQzOC01ODVmOTFhMGQ0Yzc/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29321.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" @@ -979,16 +979,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4148" + "Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4189" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973,1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973" ], "x-ms-request-id": [ - "178668de-aafe-485d-ace0-71e6619c211c" + "e0a6b2b0-3748-4509-a41b-f6a034a4e5e0" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -998,16 +998,16 @@ "11990" ], "x-ms-correlation-request-id": [ - "c430052b-b6c0-40b2-9194-644a6e4c182f" + "f3c87a89-1298-4cb3-8307-6535787d00ac" ], "x-ms-routing-request-id": [ - "WESTUS:20201024T072349Z:c430052b-b6c0-40b2-9194-644a6e4c182f" + "WESTUS:20201203T002715Z:f3c87a89-1298-4cb3-8307-6535787d00ac" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 24 Oct 2020 07:23:48 GMT" + "Thu, 03 Dec 2020 00:27:14 GMT" ], "Expires": [ "-1" @@ -1022,8 +1022,8 @@ ], "Names": { "Gallery_WithSharingProfile_CRUD_Tests": [ - "galleryPsTestRg9293", - "galleryPsTestGallery7879" + "galleryPsTestRg3878", + "galleryPsTestGallery5549" ] }, "Variables": { From 0e06c303a2d5038c7b2811cc49fc2b4bcb2bad1f Mon Sep 17 00:00:00 2001 From: Kang Sun Date: Fri, 15 Jan 2021 18:28:20 -0800 Subject: [PATCH 07/27] update blob as source code --- .../Models/GalleryArtifactVersionSource.cs | 12 +--- .../Generated/Models/GalleryDataDiskImage.cs | 2 +- .../src/Generated/Models/GalleryDiskImage.cs | 4 +- .../Models/GalleryDiskImageSource.cs | 57 +++++++++++++++++++ .../Generated/Models/GalleryOSDiskImage.cs | 2 +- 5 files changed, 62 insertions(+), 15 deletions(-) create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryDiskImageSource.cs 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..70bab384c3c1 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryDiskImageSource.cs @@ -0,0 +1,57 @@ +// +// 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 disk image source. + /// + 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. + public GalleryDiskImageSource(string id = default(string), string uri = default(string)) + : base(id) + { + Uri = uri; + 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; } + + } +} 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(); From d88f514f46ef5f318865e502da0e02a30cd33144 Mon Sep 17 00:00:00 2001 From: Kang Sun Date: Tue, 19 Jan 2021 23:16:04 -0800 Subject: [PATCH 08/27] uncheck shared gallery test which can not run right now --- .../tests/ScenarioTests/SharedGalleryTests.cs | 160 ------------------ 1 file changed, 160 deletions(-) delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/SharedGalleryTests.cs diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/SharedGalleryTests.cs b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/SharedGalleryTests.cs deleted file mode 100644 index 5fa7c786f973..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/SharedGalleryTests.cs +++ /dev/null @@ -1,160 +0,0 @@ -using Microsoft.Rest.ClientRuntime.Azure.TestFramework; -using System; -using System.Collections.Generic; -using System.Text; -using Xunit; -using Microsoft.Azure.Management.ResourceManager.Models; -using Microsoft.Azure.Management.ResourceManager; -using System.Diagnostics; -using Microsoft.Azure.Management.Compute.Models; -using Microsoft.Rest.Azure; -using System.Linq; -using Microsoft.Azure.Management.Compute; - - -namespace Compute.Tests -{ - public class SharedGalleryTests : VMTestBase - { - // these needs to be decided and created, especially subscription. - // two gallery shared to the tenant, but only one gallery shared to the sub - protected const string SubscriptionId = "galleryPsTestRg"; - protected const string GalleryUniqueName = "galleryPsTestGallery"; - protected const string GalleryImageName = "galleryPsTestGalleryImage"; - protected const string GalleryImageVersionName = "1.0.0"; - - private string galleryHomeLocation = "eastus2"; - - [Fact] - public void SharedGallery_GetAndList_Tests() - { - using (MockContext context = MockContext.Start(this.GetType())) - { - EnsureClientsInitialized(context); - - SharedGallery sharedGalleryOut = m_CrpClient.SharedGalleries.Get(galleryHomeLocation, GalleryUniqueName); - Trace.TraceInformation("Got the shared gallery {0} which is shared to subscription {1}.", GalleryUniqueName, SubscriptionId); - Assert.NotNull(sharedGalleryOut); - ValidateSharedGallery(sharedGalleryOut); - - - IPage sharedGalleriesList = m_CrpClient.SharedGalleries.List(galleryHomeLocation, "tenant"); - Trace.TraceInformation("Got the shared galleries which are shared to tenant of subscription {0}.", SubscriptionId); - - int count = sharedGalleriesList.Count(); - Assert.Equal(2, count); - - foreach(SharedGallery gallery in sharedGalleriesList) - { - if(gallery.Name == GalleryUniqueName) - { - ValidateSharedGallery(gallery); - break; - } - } - - sharedGalleriesList = m_CrpClient.SharedGalleries.List(galleryHomeLocation); - - count = sharedGalleriesList.Count(); - Assert.Equal(1, count); - Trace.TraceInformation("Got the shared gallery {0} which is shared to subscription {1}.", GalleryUniqueName, SubscriptionId); - - ValidateSharedGallery(sharedGalleriesList.First()); - - } - } - - [Fact] - public void SharedGalleryImage_GetAndList_Tests() - { - using (MockContext context = MockContext.Start(this.GetType())) - { - EnsureClientsInitialized(context); - - SharedGalleryImage sharedGalleryImageOut = m_CrpClient.SharedGalleryImages.Get(galleryHomeLocation, GalleryUniqueName, GalleryImageName); - Trace.TraceInformation("Got the shared gallery image {0} which is shared to subscription {1}.", GalleryImageName, SubscriptionId); - Assert.NotNull(sharedGalleryImageOut); - ValidateSharedGalleryImage(sharedGalleryImageOut); - - - IPage sharedGalleryImagesList = m_CrpClient.SharedGalleryImages.List(galleryHomeLocation, GalleryUniqueName, "tenant"); - Trace.TraceInformation("Got the shared gallery images which are shared to tenant of subscription {0}.", SubscriptionId); - - int count = sharedGalleryImagesList.Count(); - Assert.Equal(2, count); - - foreach (SharedGalleryImage galleryImage in sharedGalleryImagesList) - { - if (galleryImage.Name == GalleryImageName) - { - ValidateSharedGalleryImage(galleryImage); - break; - } - } - - sharedGalleryImagesList = m_CrpClient.SharedGalleryImages.List(galleryHomeLocation, GalleryUniqueName); - - count = sharedGalleryImagesList.Count(); - Assert.Equal(1, count); - Trace.TraceInformation("Got the shared gallery {0} which is shared to subscription {1}.", GalleryUniqueName, SubscriptionId); - - ValidateSharedGalleryImage(sharedGalleryImagesList.First()); - } - } - - [Fact] - public void SharedGalleryImageVersion_GetAndList_Tests() - { - using (MockContext context = MockContext.Start(this.GetType())) - { - EnsureClientsInitialized(context); - - SharedGalleryImageVersion sharedGalleryImageVersionOut = m_CrpClient.SharedGalleryImageVersions.Get(galleryHomeLocation, GalleryUniqueName, GalleryImageName, GalleryImageVersionName); - Trace.TraceInformation("Got the shared gallery image name {0} which is shared to subscription {1}.", GalleryImageVersionName, SubscriptionId); - Assert.NotNull(sharedGalleryImageVersionOut); - ValidateSharedGalleryImageVersion(sharedGalleryImageVersionOut); - - IPage sharedGalleryImageVersionsList = m_CrpClient.SharedGalleryImageVersions.List(galleryHomeLocation, GalleryUniqueName, GalleryImageName, "tenant"); - Trace.TraceInformation("Got the shared gallery image versions which are shared to tenant of subscription {0}.", SubscriptionId); - - int count = sharedGalleryImageVersionsList.Count(); - Assert.Equal(2, count); - - foreach (SharedGalleryImageVersion galleryImageVersion in sharedGalleryImageVersionsList) - { - if (galleryImageVersion.Name == GalleryImageVersionName) - { - ValidateSharedGalleryImageVersion(galleryImageVersion); - break; - } - } - - sharedGalleryImageVersionsList = m_CrpClient.SharedGalleryImageVersions.List(galleryHomeLocation, GalleryUniqueName, GalleryImageName); - - count = sharedGalleryImageVersionsList.Count(); - Assert.Equal(1, count); - Trace.TraceInformation("Got the shared gallery {0} which is shared to subscription {1}.", GalleryUniqueName, SubscriptionId); - - ValidateSharedGalleryImageVersion(sharedGalleryImageVersionsList.First()); - } - } - - private void ValidateSharedGallery(SharedGallery sharedGallery) - { - string expectedId = "/SharedGalleries/" + GalleryUniqueName; - Assert.Equal(expectedId, sharedGallery.UniqueId); - } - - private void ValidateSharedGalleryImage(SharedGalleryImage sharedGalleryImage) - { - string expectedId = "/SharedGalleries/" + GalleryUniqueName + "/Images/" + GalleryImageName; - Assert.Equal(expectedId, sharedGalleryImage.UniqueId); - } - - private void ValidateSharedGalleryImageVersion(SharedGalleryImageVersion sharedGalleryImageVersion) - { - string expectedId = "/SharedGalleries/" + GalleryUniqueName + "/Images/" + GalleryImageName + "/Versions/" + GalleryImageVersionName; - Assert.Equal(expectedId, sharedGalleryImageVersion.UniqueId); - } - } -} From 2ea8208b8593d5612e21b67f4b94f47e19de80f0 Mon Sep 17 00:00:00 2001 From: Kang Sun Date: Thu, 4 Feb 2021 16:06:07 -0800 Subject: [PATCH 09/27] save --- .../AzSdk.RP.props | 2 +- .../tests/ScenarioTests/GalleryTests.cs | 4 +- .../tests/ScenarioTests/SharedGalleryTests.cs | 159 ++++++++++++++++++ 3 files changed, 162 insertions(+), 3 deletions(-) create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/SharedGalleryTests.cs diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/AzSdk.RP.props b/sdk/compute/Microsoft.Azure.Management.Compute/AzSdk.RP.props index ab55962cc552..4491d23ad8c9 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/AzSdk.RP.props +++ b/sdk/compute/Microsoft.Azure.Management.Compute/AzSdk.RP.props @@ -1,7 +1,7 @@  - Compute_2020-10-01-preview;Compute_2020-06-30;Compute_2020-05-01;Compute_2019-12-01;Compute_2019-11-01;Compute_2019-04-01;ContainerService_2017-01-31; + Compute_2020-06-01;Compute_2020-10-01-preview;Compute_2020-09-30;Compute_2019-12-01;Compute_2019-04-01;ContainerService_2017-01-31; $(PackageTags);$(CommonTags);$(AzureApiTag); \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/GalleryTests.cs b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/GalleryTests.cs index b94df3e7b15a..e9dc6fe76dab 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/GalleryTests.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/GalleryTests.cs @@ -369,7 +369,7 @@ public void Gallery_WithSharingProfile_CRUD_Tests() ValidateGallery(galleryIn, galleryOut); Trace.TraceInformation("Update the sharing profile via post, add the sharing profile groups."); - string newTenantId = Guid.NewGuid().ToString(); + string newTenantId = "583d66a9-0041-4999-8838-75baece101d5"; SharingProfileGroup tenantGroups = new SharingProfileGroup() { Type = "AADTenants", @@ -377,7 +377,7 @@ public void Gallery_WithSharingProfile_CRUD_Tests() }; - string newSubId = Guid.NewGuid().ToString(); + string newSubId = "640c5810-13bf-4b82-b94d-f38c2565e3bc"; SharingProfileGroup subGroups = new SharingProfileGroup() { Type = "Subscriptions", diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/SharedGalleryTests.cs b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/SharedGalleryTests.cs new file mode 100644 index 000000000000..fe066e49a104 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/SharedGalleryTests.cs @@ -0,0 +1,159 @@ +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using System; +using System.Collections.Generic; +using System.Text; +using Xunit; +using Microsoft.Azure.Management.ResourceManager.Models; +using Microsoft.Azure.Management.ResourceManager; +using System.Diagnostics; +using Microsoft.Azure.Management.Compute.Models; +using Microsoft.Rest.Azure; +using System.Linq; +using Microsoft.Azure.Management.Compute; + + +namespace Compute.Tests +{ + public class SharedGalleryTests : VMTestBase + { + // these needs to be decided and created, especially subscription. + // two gallery shared to the tenant, but only one gallery shared to the sub + protected const string GalleryUniqueName = "97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYCXYCGPPV"; + protected const string GalleryImageName = "jmaesscc"; + protected const string GalleryImageVersionName = "1.0.0"; + + private string galleryAccessLocation = "eastus2"; + + [Fact] + public void SharedGallery_GetAndList_Tests() + { + using (MockContext context = MockContext.Start(this.GetType())) + { + EnsureClientsInitialized(context); + + SharedGallery sharedGalleryOut = m_CrpClient.SharedGalleries.Get(galleryAccessLocation, GalleryUniqueName); + Trace.TraceInformation("Got the shared gallery {0} which is shared to current subscription.", GalleryUniqueName); + Assert.NotNull(sharedGalleryOut); + ValidateSharedGallery(sharedGalleryOut); + + + IPage sharedGalleriesList = m_CrpClient.SharedGalleries.List(galleryAccessLocation, "tenant"); + Trace.TraceInformation("Got the shared galleries which are shared to tenant of current subscription."); + + int count = sharedGalleriesList.Count(); + Assert.Equal(2, count); + + foreach(SharedGallery gallery in sharedGalleriesList) + { + if(gallery.Name == GalleryUniqueName) + { + ValidateSharedGallery(gallery); + break; + } + } + + sharedGalleriesList = m_CrpClient.SharedGalleries.List(galleryAccessLocation); + + count = sharedGalleriesList.Count(); + Assert.Equal(1, count); + Trace.TraceInformation("Got the shared gallery {0} which is shared to current subscription.", GalleryUniqueName); + + ValidateSharedGallery(sharedGalleriesList.First()); + + } + } + + [Fact] + public void SharedGalleryImage_GetAndList_Tests() + { + using (MockContext context = MockContext.Start(this.GetType())) + { + EnsureClientsInitialized(context); + + SharedGalleryImage sharedGalleryImageOut = m_CrpClient.SharedGalleryImages.Get(galleryAccessLocation, GalleryUniqueName, GalleryImageName); + Trace.TraceInformation("Got the shared gallery image {0} which is shared to current subscription.", GalleryImageName); + Assert.NotNull(sharedGalleryImageOut); + ValidateSharedGalleryImage(sharedGalleryImageOut); + + + IPage sharedGalleryImagesList = m_CrpClient.SharedGalleryImages.List(galleryAccessLocation, GalleryUniqueName, "tenant"); + Trace.TraceInformation("Got the shared gallery images which are shared to tenant of current subscription."); + + int count = sharedGalleryImagesList.Count(); + Assert.Equal(1, count); + + foreach (SharedGalleryImage galleryImage in sharedGalleryImagesList) + { + if (galleryImage.Name == GalleryImageName) + { + ValidateSharedGalleryImage(galleryImage); + break; + } + } + + sharedGalleryImagesList = m_CrpClient.SharedGalleryImages.List(galleryAccessLocation, GalleryUniqueName); + + count = sharedGalleryImagesList.Count(); + Assert.Equal(1, count); + Trace.TraceInformation("Got the shared gallery {0} which is shared to current subscription.", GalleryUniqueName); + + ValidateSharedGalleryImage(sharedGalleryImagesList.First()); + } + } + + [Fact] + public void SharedGalleryImageVersion_GetAndList_Tests() + { + using (MockContext context = MockContext.Start(this.GetType())) + { + EnsureClientsInitialized(context); + + SharedGalleryImageVersion sharedGalleryImageVersionOut = m_CrpClient.SharedGalleryImageVersions.Get(galleryAccessLocation, GalleryUniqueName, GalleryImageName, GalleryImageVersionName); + Trace.TraceInformation("Got the shared gallery image name {0} which is shared to current subscription.", GalleryImageVersionName); + Assert.NotNull(sharedGalleryImageVersionOut); + ValidateSharedGalleryImageVersion(sharedGalleryImageVersionOut); + + IPage sharedGalleryImageVersionsList = m_CrpClient.SharedGalleryImageVersions.List(galleryAccessLocation, GalleryUniqueName, GalleryImageName, "tenant"); + Trace.TraceInformation("Got the shared gallery image versions which are shared to tenant of current subscription."); + + int count = sharedGalleryImageVersionsList.Count(); + Assert.Equal(2, count); + + foreach (SharedGalleryImageVersion galleryImageVersion in sharedGalleryImageVersionsList) + { + if (galleryImageVersion.Name == GalleryImageVersionName) + { + ValidateSharedGalleryImageVersion(galleryImageVersion); + break; + } + } + + sharedGalleryImageVersionsList = m_CrpClient.SharedGalleryImageVersions.List(galleryAccessLocation, GalleryUniqueName, GalleryImageName); + + count = sharedGalleryImageVersionsList.Count(); + Assert.Equal(1, count); + Trace.TraceInformation("Got the shared gallery {0} which is shared to current subscription.", GalleryUniqueName); + + ValidateSharedGalleryImageVersion(sharedGalleryImageVersionsList.First()); + } + } + + private void ValidateSharedGallery(SharedGallery sharedGallery) + { + string expectedId = "/SharedGalleries/" + GalleryUniqueName; + Assert.Equal(expectedId, sharedGallery.UniqueId); + } + + private void ValidateSharedGalleryImage(SharedGalleryImage sharedGalleryImage) + { + string expectedId = "/SharedGalleries/" + GalleryUniqueName + "/Images/" + GalleryImageName; + Assert.Equal(expectedId, sharedGalleryImage.UniqueId); + } + + private void ValidateSharedGalleryImageVersion(SharedGalleryImageVersion sharedGalleryImageVersion) + { + string expectedId = "/SharedGalleries/" + GalleryUniqueName + "/Images/" + GalleryImageName + "/Versions/" + GalleryImageVersionName; + Assert.Equal(expectedId, sharedGalleryImageVersion.UniqueId); + } + } +} From e50747fc0d9d44d3559f3af922658d189e16b583 Mon Sep 17 00:00:00 2001 From: Kang Sun Date: Thu, 4 Feb 2021 16:12:47 -0800 Subject: [PATCH 10/27] save --- .../src/Generated/Models/GalleryDataDiskImage.cs | 2 +- .../src/Generated/Models/GalleryDiskImage.cs | 4 ++-- .../src/Generated/Models/GalleryOSDiskImage.cs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) 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 e82d5fb31abc..dded924670dd 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?), GalleryDiskImageSource source = default(GalleryDiskImageSource)) + public GalleryDataDiskImage(int lun, int? sizeInGB = default(int?), HostCaching? hostCaching = default(HostCaching?), GalleryArtifactVersionSource source = default(GalleryArtifactVersionSource)) : 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 d8b0768b28f3..24fa155c0709 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?), GalleryDiskImageSource source = default(GalleryDiskImageSource)) + public GalleryDiskImage(int? sizeInGB = default(int?), HostCaching? hostCaching = default(HostCaching?), GalleryArtifactVersionSource source = default(GalleryArtifactVersionSource)) { SizeInGB = sizeInGB; HostCaching = hostCaching; @@ -64,7 +64,7 @@ public GalleryDiskImage() /// /// [JsonProperty(PropertyName = "source")] - public GalleryDiskImageSource Source { get; set; } + public GalleryArtifactVersionSource Source { get; set; } } } 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 ebfdc5930db6..88501804a832 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?), GalleryDiskImageSource source = default(GalleryDiskImageSource)) + public GalleryOSDiskImage(int? sizeInGB = default(int?), HostCaching? hostCaching = default(HostCaching?), GalleryArtifactVersionSource source = default(GalleryArtifactVersionSource)) : base(sizeInGB, hostCaching, source) { CustomInit(); From 70ad6ef831b1d18973a1e6955fad080108ac6628 Mon Sep 17 00:00:00 2001 From: Kang Sun Date: Mon, 8 Feb 2021 12:42:28 -0800 Subject: [PATCH 11/27] add shared gallery tests --- .../tests/ScenarioTests/SharedGalleryTests.cs | 34 +- .../GalleryApplicationVersion_CRUD_Tests.json | 991 +++++++++--------- ...dGalleryImageVersion_GetAndList_Tests.json | 276 +++++ .../SharedGalleryImage_GetAndList_Tests.json | 276 +++++ .../SharedGallery_GetAndList_Tests.json | 276 +++++ 5 files changed, 1328 insertions(+), 525 deletions(-) create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/SharedGalleryTests/SharedGalleryImageVersion_GetAndList_Tests.json create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/SharedGalleryTests/SharedGalleryImage_GetAndList_Tests.json create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/SharedGalleryTests/SharedGallery_GetAndList_Tests.json diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/SharedGalleryTests.cs b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/SharedGalleryTests.cs index fe066e49a104..f1160c5dad35 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/SharedGalleryTests.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/SharedGalleryTests.cs @@ -18,11 +18,11 @@ public class SharedGalleryTests : VMTestBase { // these needs to be decided and created, especially subscription. // two gallery shared to the tenant, but only one gallery shared to the sub - protected const string GalleryUniqueName = "97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYCXYCGPPV"; + protected const string GalleryUniqueName = "97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV"; protected const string GalleryImageName = "jmaesscc"; protected const string GalleryImageVersionName = "1.0.0"; - private string galleryAccessLocation = "eastus2"; + private string galleryAccessLocation = "eastus2euap"; [Fact] public void SharedGallery_GetAndList_Tests() @@ -41,7 +41,7 @@ public void SharedGallery_GetAndList_Tests() Trace.TraceInformation("Got the shared galleries which are shared to tenant of current subscription."); int count = sharedGalleriesList.Count(); - Assert.Equal(2, count); + Assert.Equal(1, count); foreach(SharedGallery gallery in sharedGalleriesList) { @@ -60,6 +60,14 @@ public void SharedGallery_GetAndList_Tests() ValidateSharedGallery(sharedGalleriesList.First()); + sharedGalleriesList = m_CrpClient.SharedGalleries.List(galleryAccessLocation, sharedTo: SharedToValues.Tenant); + + count = sharedGalleriesList.Count(); + Assert.Equal(1, count); + Trace.TraceInformation("Got the shared gallery {0} which is shared to current tenant.", GalleryUniqueName); + + ValidateSharedGallery(sharedGalleriesList.First()); + } } @@ -73,6 +81,7 @@ public void SharedGalleryImage_GetAndList_Tests() SharedGalleryImage sharedGalleryImageOut = m_CrpClient.SharedGalleryImages.Get(galleryAccessLocation, GalleryUniqueName, GalleryImageName); Trace.TraceInformation("Got the shared gallery image {0} which is shared to current subscription.", GalleryImageName); Assert.NotNull(sharedGalleryImageOut); + ValidateSharedGalleryImage(sharedGalleryImageOut); @@ -98,6 +107,14 @@ public void SharedGalleryImage_GetAndList_Tests() Trace.TraceInformation("Got the shared gallery {0} which is shared to current subscription.", GalleryUniqueName); ValidateSharedGalleryImage(sharedGalleryImagesList.First()); + + sharedGalleryImagesList = m_CrpClient.SharedGalleryImages.List(galleryAccessLocation, GalleryUniqueName, sharedTo: SharedToValues.Tenant); + + count = sharedGalleryImagesList.Count(); + Assert.Equal(1, count); + Trace.TraceInformation("Got the shared gallery {0} which is shared to current tenant.", GalleryUniqueName); + + ValidateSharedGalleryImage(sharedGalleryImagesList.First()); } } @@ -117,7 +134,7 @@ public void SharedGalleryImageVersion_GetAndList_Tests() Trace.TraceInformation("Got the shared gallery image versions which are shared to tenant of current subscription."); int count = sharedGalleryImageVersionsList.Count(); - Assert.Equal(2, count); + Assert.Equal(1, count); foreach (SharedGalleryImageVersion galleryImageVersion in sharedGalleryImageVersionsList) { @@ -135,6 +152,15 @@ public void SharedGalleryImageVersion_GetAndList_Tests() Trace.TraceInformation("Got the shared gallery {0} which is shared to current subscription.", GalleryUniqueName); ValidateSharedGalleryImageVersion(sharedGalleryImageVersionsList.First()); + + sharedGalleryImageVersionsList = m_CrpClient.SharedGalleryImageVersions.List(galleryAccessLocation, GalleryUniqueName, GalleryImageName, + sharedTo: SharedToValues.Tenant); + + count = sharedGalleryImageVersionsList.Count(); + Assert.Equal(1, count); + Trace.TraceInformation("Got the shared gallery {0} which is shared to current tenant.", GalleryUniqueName); + + ValidateSharedGalleryImageVersion(sharedGalleryImageVersionsList.First()); } } 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 9db44846d8a9..6c1bcd9b8de9 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryApplicationVersion_CRUD_Tests.json +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryApplicationVersion_CRUD_Tests.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/galleryPsTestRg3726?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM3MjY/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg9624?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk2MjQ/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"galleryPsTestRg3726\": \"2021-01-22 06:51:32Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"galleryPsTestRg9624\": \"2021-02-08 19:22:52Z\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fc29f855-2bcb-40e1-97c1-16475ffe12e7" + "4c88c81e-d934-47a5-bb83-d10b54fcc381" ], "Accept-Language": [ "en-US" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-request-id": [ - "27f87b30-7823-4036-bb7e-bdeccff1a9f8" + "c2c60004-05a4-420c-bdea-97d2426d2de5" ], "x-ms-correlation-request-id": [ - "27f87b30-7823-4036-bb7e-bdeccff1a9f8" + "c2c60004-05a4-420c-bdea-97d2426d2de5" ], "x-ms-routing-request-id": [ - "WESTINDIA:20210122T065133Z:27f87b30-7823-4036-bb7e-bdeccff1a9f8" + "WESTUS:20210208T192255Z:c2c60004-05a4-420c-bdea-97d2426d2de5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Fri, 22 Jan 2021 06:51:32 GMT" + "Mon, 08 Feb 2021 19:22:54 GMT" ], "Content-Length": [ "252" @@ -63,17 +63,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg3726\",\r\n \"name\": \"galleryPsTestRg3726\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"galleryPsTestRg3726\": \"2021-01-22 06:51:32Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624\",\r\n \"name\": \"galleryPsTestRg9624\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"galleryPsTestRg9624\": \"2021-02-08 19:22:52Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg3726/providers/Microsoft.Storage/storageAccounts/saforgallery5567?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM3MjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnk1NTY3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Storage/storageAccounts/saforgallery2295?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnkyMjk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6bc84f25-6431-465e-9aea-e711b4524eac" + "42999a72-43da-44a6-b103-3db3330ea427" ], "Accept-Language": [ "en-US" @@ -99,13 +99,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/e881add7-d462-4309-841d-ad854baf3123?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/2989c957-ea6b-4b74-95ab-37ef908d9873?monitor=true&api-version=2015-06-15" ], "Retry-After": [ "17" ], "x-ms-request-id": [ - "e881add7-d462-4309-841d-ad854baf3123" + "2989c957-ea6b-4b74-95ab-37ef908d9873" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,16 +117,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "a33d0a15-7446-43c9-9bf1-19f78bf0ed61" + "2f680037-514c-498f-8d12-11a5ce8c1fdd" ], "x-ms-routing-request-id": [ - "WESTINDIA:20210122T065138Z:a33d0a15-7446-43c9-9bf1-19f78bf0ed61" + "WESTUS:20210208T192303Z:2f680037-514c-498f-8d12-11a5ce8c1fdd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jan 2021 06:51:37 GMT" + "Mon, 08 Feb 2021 19:23:02 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -142,8 +142,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/e881add7-d462-4309-841d-ad854baf3123?monitor=true&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZTg4MWFkZDctZDQ2Mi00MzA5LTg0MWQtYWQ4NTRiYWYzMTIzP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/2989c957-ea6b-4b74-95ab-37ef908d9873?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvMjk4OWM5NTctZWE2Yi00Yjc0LTk1YWItMzdlZjkwOGQ5ODczP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -162,7 +162,7 @@ "no-cache" ], "x-ms-request-id": [ - "03144621-ed24-4ff3-8607-7b9ac479c0b1" + "1b37223b-3c2b-4287-9ddc-f750dcb3ae0e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -174,16 +174,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "973baf87-0ac2-452e-9cb3-e00684d36c47" + "4194b7e7-88cf-4ffd-a20b-523f358020d2" ], "x-ms-routing-request-id": [ - "WESTINDIA:20210122T065155Z:973baf87-0ac2-452e-9cb3-e00684d36c47" + "WESTUS:20210208T192321Z:4194b7e7-88cf-4ffd-a20b-523f358020d2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jan 2021 06:51:54 GMT" + "Mon, 08 Feb 2021 19:23:21 GMT" ], "Content-Length": [ "95" @@ -199,13 +199,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg3726/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM3MjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1cdd8e53-4362-4973-b4d4-2cf34bdba9e5" + "6e1c19fe-06a2-4fcd-bbfd-3ee57d10e78c" ], "Accept-Language": [ "en-US" @@ -225,7 +225,7 @@ "no-cache" ], "x-ms-request-id": [ - "6d0f9697-e852-4d96-b1a4-9df2695896c8" + "08fe4ffb-eaaa-4876-bc45-2673b5a9ee15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,16 +237,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "9b2e0a50-2822-4240-b8b0-28dddbb1d963" + "3c5eaadf-7421-4014-8c14-f73633a5e00b" ], "x-ms-routing-request-id": [ - "WESTINDIA:20210122T065205Z:9b2e0a50-2822-4240-b8b0-28dddbb1d963" + "WESTUS:20210208T192331Z:3c5eaadf-7421-4014-8c14-f73633a5e00b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jan 2021 06:52:04 GMT" + "Mon, 08 Feb 2021 19:23:31 GMT" ], "Content-Length": [ "776" @@ -258,17 +258,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg3726/providers/Microsoft.Storage/storageAccounts/saforgallery5567\",\r\n \"name\": \"saforgallery5567\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-01-22T06:51:36.673108Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery5567.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery5567.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery5567.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery5567.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Storage/storageAccounts/saforgallery2295\",\r\n \"name\": \"saforgallery2295\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-08T19:23:01.9718059Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery2295.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery2295.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery2295.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery2295.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg3726/providers/Microsoft.Storage/storageAccounts/saforgallery5567?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM3MjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnk1NTY3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Storage/storageAccounts/saforgallery2295?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnkyMjk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "10d0baac-91d8-4bf8-a8ba-4764bc8b3cd0" + "864568ce-c4aa-487e-a175-522894596052" ], "Accept-Language": [ "en-US" @@ -288,7 +288,7 @@ "no-cache" ], "x-ms-request-id": [ - "ab5ff90b-95c4-4fce-8867-53299105e38e" + "8acc40d9-742b-4948-ab76-c3461d958325" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -300,16 +300,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "11ee2c4c-d263-4daa-8827-5b33f79a88d8" + "fab52b4e-e0f1-4d1d-8759-16a402643e2a" ], "x-ms-routing-request-id": [ - "WESTINDIA:20210122T065206Z:11ee2c4c-d263-4daa-8827-5b33f79a88d8" + "WESTUS:20210208T192331Z:fab52b4e-e0f1-4d1d-8759-16a402643e2a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jan 2021 06:52:05 GMT" + "Mon, 08 Feb 2021 19:23:31 GMT" ], "Content-Length": [ "764" @@ -321,17 +321,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg3726/providers/Microsoft.Storage/storageAccounts/saforgallery5567\",\r\n \"name\": \"saforgallery5567\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-01-22T06:51:36.673108Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery5567.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery5567.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery5567.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery5567.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Storage/storageAccounts/saforgallery2295\",\r\n \"name\": \"saforgallery2295\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-08T19:23:01.9718059Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery2295.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery2295.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery2295.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery2295.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg3726/providers/Microsoft.Storage/storageAccounts/saforgallery5567/listKeys?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM3MjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnk1NTY3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Storage/storageAccounts/saforgallery2295/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnkyMjk1L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fffde959-7658-4ec8-b506-5fd901768fc1" + "ee2e137f-42a4-4c8a-9b30-7ba0480d92dc" ], "Accept-Language": [ "en-US" @@ -351,7 +351,7 @@ "no-cache" ], "x-ms-request-id": [ - "6e0866c7-05cc-4f6e-bf2e-fcab1d01125c" + "a85b88a0-8aa6-43d6-9070-2f0dff9ef0d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -363,16 +363,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "94da3bc1-10a2-4b55-a3ba-765a7e9a7f9f" + "8377464c-9bc3-49db-bd87-ddc0e49b7b58" ], "x-ms-routing-request-id": [ - "WESTINDIA:20210122T065206Z:94da3bc1-10a2-4b55-a3ba-765a7e9a7f9f" + "WESTUS:20210208T192332Z:8377464c-9bc3-49db-bd87-ddc0e49b7b58" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jan 2021 06:52:05 GMT" + "Mon, 08 Feb 2021 19:23:32 GMT" ], "Content-Length": [ "197" @@ -384,17 +384,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"key1\": \"d8NAL7LdiIEQhh+tVoG6m/H8Ub7cCNIdLxtFS5XFtx2UZzqP6bR2zMqdD1FOXsjxJYoVp7OH5yEYj9fL97R6Dw==\",\r\n \"key2\": \"iryGnN2RptCWO03yPBre89LUvDyKDy9yOnfd7Nh9cEDstpQKDQpfH4ZcwkGYFJQHNvw1VPDPcWycwwaqBdtF+w==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"CmtYFQXTnq9i/fGy0wZ6+srnkWEkv/101ArxDZFO+aoSEvBlxWqDQW9ojXXQdwlMPGWj9r5zmpnGlU7JrkXJ1Q==\",\r\n \"key2\": \"siKyGGTACI/P8ZUmzsCd6nBqnBcH7nZ95MIqJBKWuilzdxbNZHgzIe4J3fKn3WLun991wKkxFpuKGPNp0ZpRtQ==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg3726/providers/Microsoft.Compute/galleries/galleryPsTestGallery9696?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM3MjYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk2OTY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1OTA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\"\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9e93115f-eebc-467d-aacb-3627aa435c18" + "65955a5f-1f2f-42b4-90eb-92b4ea99fc63" ], "Accept-Language": [ "en-US" @@ -403,7 +403,7 @@ "FxVersion/4.6.29518.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -420,7 +420,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/capsOperations/c401468d-8f2e-4edf-80e0-eeb4017cf846?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/fba9c352-7905-41db-9385-dfdceb7a7991?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299" @@ -429,10 +429,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518,e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "c401468d-8f2e-4edf-80e0-eeb4017cf846" + "fba9c352-7905-41db-9385-dfdceb7a7991" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -442,19 +442,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "cec23caa-0d09-460a-9157-e1f6931e595e" + "fd2f9540-bf31-466e-b5ea-d3c858b27610" ], "x-ms-routing-request-id": [ - "WESTINDIA:20210122T065211Z:cec23caa-0d09-460a-9157-e1f6931e595e" + "WESTUS:20210208T192342Z:fd2f9540-bf31-466e-b5ea-d3c858b27610" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jan 2021 06:52:10 GMT" + "Mon, 08 Feb 2021 19:23:42 GMT" ], "Content-Length": [ - "514" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -463,12 +463,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery9696\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg3726/providers/Microsoft.Compute/galleries/galleryPsTestGallery9696\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"0296790d-427c-48ca-b204-8b729bbd8670-GALLERYPSTESTGALLERY9696\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8590\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8590\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Private\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/capsOperations/c401468d-8f2e-4edf-80e0-eeb4017cf846?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9jNDAxNDY4ZC04ZjJlLTRlZGYtODBlMC1lZWI0MDE3Y2Y4NDY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/fba9c352-7905-41db-9385-dfdceb7a7991?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9mYmE5YzM1Mi03OTA1LTQxZGItOTM4NS1kZmRjZWI3YTc5OTE/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -476,7 +476,7 @@ "FxVersion/4.6.29518.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -487,35 +487,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4198" + "Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4153" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518,e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "459caaa4-c706-4127-a9bb-dc2817fe0ba8" + "4aa6c219-4454-4f4e-86af-1382da0ff15d" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-correlation-request-id": [ - "1de92e96-2af3-429a-aa6b-2a9c4e0ae4a0" + "d289ac04-20ef-447c-a0e8-7b81d67f6685" ], "x-ms-routing-request-id": [ - "WESTINDIA:20210122T065241Z:1de92e96-2af3-429a-aa6b-2a9c4e0ae4a0" + "WESTUS:20210208T192413Z:d289ac04-20ef-447c-a0e8-7b81d67f6685" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jan 2021 06:52:41 GMT" + "Mon, 08 Feb 2021 19:24:12 GMT" ], "Content-Length": [ "184" @@ -527,12 +527,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-01-22T12:22:10.5972204+05:30\",\r\n \"endTime\": \"2021-01-22T12:22:14.7379123+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c401468d-8f2e-4edf-80e0-eeb4017cf846\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-02-08T11:23:40.6072646-08:00\",\r\n \"endTime\": \"2021-02-08T11:23:41.4822639-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"fba9c352-7905-41db-9385-dfdceb7a7991\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg3726/providers/Microsoft.Compute/galleries/galleryPsTestGallery9696?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM3MjYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk2OTY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1OTA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -540,7 +540,7 @@ "FxVersion/4.6.29518.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -557,29 +557,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518,e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "d44858e8-56fa-4cd1-83cc-8d31b2e0d34a" + "b6097bf3-025d-4c52-8d1a-0b7faf5d5f04" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "9f0d42c4-c87a-4d07-9d56-bf7ca05054dc" + "945f0877-d31b-45d6-ab82-8f470cdb988b" ], "x-ms-routing-request-id": [ - "WESTINDIA:20210122T065241Z:9f0d42c4-c87a-4d07-9d56-bf7ca05054dc" + "WESTUS:20210208T192413Z:945f0877-d31b-45d6-ab82-8f470cdb988b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jan 2021 06:52:41 GMT" + "Mon, 08 Feb 2021 19:24:12 GMT" ], "Content-Length": [ "515" @@ -591,17 +591,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery9696\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg3726/providers/Microsoft.Compute/galleries/galleryPsTestGallery9696\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"0296790d-427c-48ca-b204-8b729bbd8670-GALLERYPSTESTGALLERY9696\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8590\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8590\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg3726/providers/Microsoft.Compute/galleries/galleryPsTestGallery9696/applications/galleryPsTestGalleryApplication1761?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM3MjYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk2OTYvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24xNzYxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590/applications/galleryPsTestGalleryApplication8184?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1OTAvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb244MTg0P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\",\r\n \"supportedOSType\": \"Windows\"\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e476615e-ca2a-4f78-86ea-31793cc33c70" + "524c8028-9ea5-498b-95c2-f179ae8a26de" ], "Accept-Language": [ "en-US" @@ -610,7 +610,7 @@ "FxVersion/4.6.29518.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -633,10 +633,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518,e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "2e4fb8f8-f689-449c-ab30-4152939117f4" + "a6ac87b9-2f8e-42c6-8f00-3816f2349e3c" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -646,16 +646,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "fe3f6f30-3fff-4216-ba60-f9be6e859d17" + "dbb88ee8-bee0-4cd3-97b4-5d609c419958" ], "x-ms-routing-request-id": [ - "WESTINDIA:20210122T065242Z:fe3f6f30-3fff-4216-ba60-f9be6e859d17" + "WESTUS:20210208T192413Z:dbb88ee8-bee0-4cd3-97b4-5d609c419958" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jan 2021 06:52:41 GMT" + "Mon, 08 Feb 2021 19:24:13 GMT" ], "Content-Length": [ "634" @@ -667,12 +667,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication1761\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg3726/providers/Microsoft.Compute/galleries/galleryPsTestGallery9696/applications/galleryPsTestGalleryApplication1761\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication8184\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590/applications/galleryPsTestGalleryApplication8184\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg3726/providers/Microsoft.Compute/galleries/galleryPsTestGallery9696/applications/galleryPsTestGalleryApplication1761?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM3MjYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk2OTYvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24xNzYxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590/applications/galleryPsTestGalleryApplication8184?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1OTAvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb244MTg0P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -680,7 +680,7 @@ "FxVersion/4.6.29518.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -697,29 +697,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518,e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "8694aec3-a110-4871-9886-532929d01936" + "df5ca3d9-2459-4297-b8a4-d7fc453d5bf0" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-correlation-request-id": [ - "7ad6110f-95d8-475c-87ac-3d2b8ec88213" + "064dcd99-4255-40f6-a435-6eaa3e2b0453" ], "x-ms-routing-request-id": [ - "WESTINDIA:20210122T065312Z:7ad6110f-95d8-475c-87ac-3d2b8ec88213" + "WESTUS:20210208T192444Z:064dcd99-4255-40f6-a435-6eaa3e2b0453" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jan 2021 06:53:11 GMT" + "Mon, 08 Feb 2021 19:24:43 GMT" ], "Content-Length": [ "634" @@ -731,17 +731,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication1761\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg3726/providers/Microsoft.Compute/galleries/galleryPsTestGallery9696/applications/galleryPsTestGalleryApplication1761\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication8184\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590/applications/galleryPsTestGalleryApplication8184\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg3726/providers/Microsoft.Compute/galleries/galleryPsTestGallery9696/applications/galleryPsTestGalleryApplication1761/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM3MjYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk2OTYvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24xNzYxL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590/applications/galleryPsTestGalleryApplication8184/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1OTAvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb244MTg0L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery5567.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=AOat3BzgnkLCF7BHJo8h4rMc5RSSDZ8ttvGfgx6drD8%3D&st=2021-01-21T06%3A52%3A08Z&se=2021-01-24T06%3A52%3A08Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"SoutheastAsia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"endOfLifeDate\": \"2021-01-31T18:30:00Z\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery2295.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=i%2FZftR0%2BcZaW%2FHqx6GCytHdp9rHt%2BodyL8wMxu0XyPk%3D&st=2021-02-07T19%3A23%3A34Z&se=2021-02-10T19%3A23%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 \"targetRegions\": [\r\n {\r\n \"name\": \"SoutheastAsia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"endOfLifeDate\": \"2021-02-18T08:00:00Z\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8e975cae-dff8-4b7f-9ce6-f350312963f6" + "81ff979c-cd2c-4327-95d6-89c2d4f249f1" ], "Accept-Language": [ "en-US" @@ -750,13 +750,13 @@ "FxVersion/4.6.29518.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "827" + "835" ] }, "ResponseHeaders": { @@ -767,7 +767,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/capsOperations/d50168f8-113e-40c1-a8d5-8dad48fbbcbd?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/c70badaa-9b94-49d9-86f0-8385a8304e5e?api-version=2020-09-30" ], "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": [ - "e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518,e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "d50168f8-113e-40c1-a8d5-8dad48fbbcbd" + "c70badaa-9b94-49d9-86f0-8385a8304e5e" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -789,19 +789,19 @@ "1197" ], "x-ms-correlation-request-id": [ - "aa8abef6-f32a-4cb6-8b06-5f42f810d9da" + "e7f3bd03-475a-47b3-98d5-c469c47fa859" ], "x-ms-routing-request-id": [ - "WESTINDIA:20210122T065313Z:aa8abef6-f32a-4cb6-8b06-5f42f810d9da" + "WESTUS:20210208T192445Z:e7f3bd03-475a-47b3-98d5-c469c47fa859" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jan 2021 06:53:12 GMT" + "Mon, 08 Feb 2021 19:24:44 GMT" ], "Content-Length": [ - "1312" + "1319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -810,17 +810,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg3726/providers/Microsoft.Compute/galleries/galleryPsTestGallery9696/applications/galleryPsTestGalleryApplication1761/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery5567.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=AOat3BzgnkLCF7BHJo8h4rMc5RSSDZ8ttvGfgx6drD8%3D&st=2021-01-21T06%3A52%3A08Z&se=2021-01-24T06%3A52%3A08Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-01-22T12:23:12.9253166+05:30\",\r\n \"endOfLifeDate\": \"2021-02-01T00:00:00+05:30\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590/applications/galleryPsTestGalleryApplication8184/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery2295.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=i%2FZftR0%2BcZaW%2FHqx6GCytHdp9rHt%2BodyL8wMxu0XyPk%3D&st=2021-02-07T19%3A23%3A34Z&se=2021-02-10T19%3A23%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 \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-08T11:24:44.513999-08:00\",\r\n \"endOfLifeDate\": \"2021-02-18T00:00:00-08:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg3726/providers/Microsoft.Compute/galleries/galleryPsTestGallery9696/applications/galleryPsTestGalleryApplication1761/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM3MjYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk2OTYvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24xNzYxL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590/applications/galleryPsTestGalleryApplication8184/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1OTAvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb244MTg0L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery5567.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=AOat3BzgnkLCF7BHJo8h4rMc5RSSDZ8ttvGfgx6drD8%3D&st=2021-01-21T06%3A52%3A08Z&se=2021-01-24T06%3A52%3A08Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"SoutheastAsia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"endOfLifeDate\": \"2021-05-01T18:30:00Z\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery2295.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=i%2FZftR0%2BcZaW%2FHqx6GCytHdp9rHt%2BodyL8wMxu0XyPk%3D&st=2021-02-07T19%3A23%3A34Z&se=2021-02-10T19%3A23%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 \"targetRegions\": [\r\n {\r\n \"name\": \"SoutheastAsia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"endOfLifeDate\": \"2021-05-19T07:00:00Z\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fced9f31-5b3f-4a65-9380-52e4843eddb8" + "abfb47f8-1186-49dc-9153-f4de20b02f3f" ], "Accept-Language": [ "en-US" @@ -829,13 +829,13 @@ "FxVersion/4.6.29518.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "827" + "835" ] }, "ResponseHeaders": { @@ -846,7 +846,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/capsOperations/8b568fae-1730-4829-a751-aea8dcb621c3?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/cc35f8ed-c7ef-456f-b0b7-6521ed722d7f?api-version=2020-09-30" ], "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": [ - "e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518,e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "8b568fae-1730-4829-a751-aea8dcb621c3" + "cc35f8ed-c7ef-456f-b0b7-6521ed722d7f" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -868,19 +868,19 @@ "1196" ], "x-ms-correlation-request-id": [ - "f6a7fecc-f51e-45c9-9596-450835ac745e" + "ec8b521d-ee36-4730-b628-e70ca9c7d175" ], "x-ms-routing-request-id": [ - "WESTINDIA:20210122T065745Z:f6a7fecc-f51e-45c9-9596-450835ac745e" + "WESTUS:20210208T192918Z:ec8b521d-ee36-4730-b628-e70ca9c7d175" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jan 2021 06:57:45 GMT" + "Mon, 08 Feb 2021 19:29:17 GMT" ], "Content-Length": [ - "1312" + "1319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -889,12 +889,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg3726/providers/Microsoft.Compute/galleries/galleryPsTestGallery9696/applications/galleryPsTestGalleryApplication1761/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery5567.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=AOat3BzgnkLCF7BHJo8h4rMc5RSSDZ8ttvGfgx6drD8%3D&st=2021-01-21T06%3A52%3A08Z&se=2021-01-24T06%3A52%3A08Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-01-22T12:23:12.9253166+05:30\",\r\n \"endOfLifeDate\": \"2021-05-02T00:00:00+05:30\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590/applications/galleryPsTestGalleryApplication8184/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery2295.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=i%2FZftR0%2BcZaW%2FHqx6GCytHdp9rHt%2BodyL8wMxu0XyPk%3D&st=2021-02-07T19%3A23%3A34Z&se=2021-02-10T19%3A23%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 \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-08T11:24:44.513999-08:00\",\r\n \"endOfLifeDate\": \"2021-05-19T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/capsOperations/d50168f8-113e-40c1-a8d5-8dad48fbbcbd?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9kNTAxNjhmOC0xMTNlLTQwYzEtYThkNS04ZGFkNDhmYmJjYmQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/c70badaa-9b94-49d9-86f0-8385a8304e5e?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9jNzBiYWRhYS05Yjk0LTQ5ZDktODZmMC04Mzg1YTgzMDRlNWU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -902,7 +902,7 @@ "FxVersion/4.6.29518.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -913,35 +913,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4196" + "Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4148" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518,e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "a3254379-dd3e-4e19-820e-15430d28abdd" + "71a5217b-4daf-4f25-ab61-4f17d11bbcb4" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-correlation-request-id": [ - "1bdf94e3-376d-4cb8-9e8a-de904b19871e" + "50588786-a4ea-48f8-a5dd-51317f788c6a" ], "x-ms-routing-request-id": [ - "WESTINDIA:20210122T065343Z:1bdf94e3-376d-4cb8-9e8a-de904b19871e" + "WESTUS:20210208T192515Z:50588786-a4ea-48f8-a5dd-51317f788c6a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jan 2021 06:53:42 GMT" + "Mon, 08 Feb 2021 19:25:14 GMT" ], "Content-Length": [ "134" @@ -953,12 +953,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-01-22T12:23:12.8471763+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d50168f8-113e-40c1-a8d5-8dad48fbbcbd\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-02-08T11:24:44.4671096-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c70badaa-9b94-49d9-86f0-8385a8304e5e\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/capsOperations/d50168f8-113e-40c1-a8d5-8dad48fbbcbd?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9kNTAxNjhmOC0xMTNlLTQwYzEtYThkNS04ZGFkNDhmYmJjYmQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/c70badaa-9b94-49d9-86f0-8385a8304e5e?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9jNzBiYWRhYS05Yjk0LTQ5ZDktODZmMC04Mzg1YTgzMDRlNWU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -966,7 +966,7 @@ "FxVersion/4.6.29518.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -977,35 +977,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4193" + "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4143" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518,e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "f2763afe-f711-4959-b45c-418da68de561" + "c1d31e22-2bd3-43f4-851e-e60aeea89223" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-correlation-request-id": [ - "27e5beb5-d381-4814-9276-764c4ea1521e" + "acf5a5fb-b550-4d0b-aecb-e1cf093b0c6a" ], "x-ms-routing-request-id": [ - "WESTINDIA:20210122T065413Z:27e5beb5-d381-4814-9276-764c4ea1521e" + "WESTUS:20210208T192545Z:acf5a5fb-b550-4d0b-aecb-e1cf093b0c6a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jan 2021 06:54:13 GMT" + "Mon, 08 Feb 2021 19:25:45 GMT" ], "Content-Length": [ "134" @@ -1017,12 +1017,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-01-22T12:23:12.8471763+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d50168f8-113e-40c1-a8d5-8dad48fbbcbd\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-02-08T11:24:44.4671096-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c70badaa-9b94-49d9-86f0-8385a8304e5e\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/capsOperations/d50168f8-113e-40c1-a8d5-8dad48fbbcbd?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9kNTAxNjhmOC0xMTNlLTQwYzEtYThkNS04ZGFkNDhmYmJjYmQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/c70badaa-9b94-49d9-86f0-8385a8304e5e?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9jNzBiYWRhYS05Yjk0LTQ5ZDktODZmMC04Mzg1YTgzMDRlNWU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1030,7 +1030,7 @@ "FxVersion/4.6.29518.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -1041,35 +1041,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4190" + "Microsoft.Compute/GetOperationStatus3Min;1181,Microsoft.Compute/GetOperationStatus30Min;4138" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518,e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "b2df7b73-8e58-4456-aeef-baa9ecaa8977" + "cba29e0c-be95-4bbc-8dbd-425d3e861131" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-correlation-request-id": [ - "4e058e8b-86ee-4f21-a483-c816e3eaacfd" + "15702a80-66d1-4b82-a2ce-639b461d43ea" ], "x-ms-routing-request-id": [ - "WESTINDIA:20210122T065443Z:4e058e8b-86ee-4f21-a483-c816e3eaacfd" + "WESTUS:20210208T192615Z:15702a80-66d1-4b82-a2ce-639b461d43ea" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jan 2021 06:54:43 GMT" + "Mon, 08 Feb 2021 19:26:15 GMT" ], "Content-Length": [ "134" @@ -1081,12 +1081,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-01-22T12:23:12.8471763+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d50168f8-113e-40c1-a8d5-8dad48fbbcbd\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-02-08T11:24:44.4671096-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c70badaa-9b94-49d9-86f0-8385a8304e5e\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/capsOperations/d50168f8-113e-40c1-a8d5-8dad48fbbcbd?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9kNTAxNjhmOC0xMTNlLTQwYzEtYThkNS04ZGFkNDhmYmJjYmQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/c70badaa-9b94-49d9-86f0-8385a8304e5e?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9jNzBiYWRhYS05Yjk0LTQ5ZDktODZmMC04Mzg1YTgzMDRlNWU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1094,7 +1094,7 @@ "FxVersion/4.6.29518.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -1105,35 +1105,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4187" + "Microsoft.Compute/GetOperationStatus3Min;1179,Microsoft.Compute/GetOperationStatus30Min;4134" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518,e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "e041f895-8529-4615-89f5-874196c16ca0" + "342ea252-49f7-4c59-b4d9-836b350302ac" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-correlation-request-id": [ - "fb72b3f4-faf2-4145-b5f8-f3d597e5e1ac" + "8b890e0c-7524-4a28-a84a-dfe1ff1a42b7" ], "x-ms-routing-request-id": [ - "WESTINDIA:20210122T065513Z:fb72b3f4-faf2-4145-b5f8-f3d597e5e1ac" + "WESTUS:20210208T192645Z:8b890e0c-7524-4a28-a84a-dfe1ff1a42b7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jan 2021 06:55:13 GMT" + "Mon, 08 Feb 2021 19:26:45 GMT" ], "Content-Length": [ "134" @@ -1145,12 +1145,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-01-22T12:23:12.8471763+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d50168f8-113e-40c1-a8d5-8dad48fbbcbd\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-02-08T11:24:44.4671096-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c70badaa-9b94-49d9-86f0-8385a8304e5e\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/capsOperations/d50168f8-113e-40c1-a8d5-8dad48fbbcbd?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9kNTAxNjhmOC0xMTNlLTQwYzEtYThkNS04ZGFkNDhmYmJjYmQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/c70badaa-9b94-49d9-86f0-8385a8304e5e?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9jNzBiYWRhYS05Yjk0LTQ5ZDktODZmMC04Mzg1YTgzMDRlNWU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1158,7 +1158,7 @@ "FxVersion/4.6.29518.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -1169,35 +1169,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;4184" + "Microsoft.Compute/GetOperationStatus3Min;1177,Microsoft.Compute/GetOperationStatus30Min;4129" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518,e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "5554a2fa-ed99-4419-be62-032387b1e92e" + "83ca1b7f-3c5a-4475-af45-045acf365f82" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-correlation-request-id": [ - "b1715b34-1549-495f-847e-c48992055e1a" + "f5b0ec1f-d372-4ce0-a61e-c6c54d4bc5c2" ], "x-ms-routing-request-id": [ - "WESTINDIA:20210122T065544Z:b1715b34-1549-495f-847e-c48992055e1a" + "WESTUS:20210208T192716Z:f5b0ec1f-d372-4ce0-a61e-c6c54d4bc5c2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jan 2021 06:55:44 GMT" + "Mon, 08 Feb 2021 19:27:15 GMT" ], "Content-Length": [ "134" @@ -1209,12 +1209,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-01-22T12:23:12.8471763+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d50168f8-113e-40c1-a8d5-8dad48fbbcbd\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-02-08T11:24:44.4671096-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c70badaa-9b94-49d9-86f0-8385a8304e5e\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/capsOperations/d50168f8-113e-40c1-a8d5-8dad48fbbcbd?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9kNTAxNjhmOC0xMTNlLTQwYzEtYThkNS04ZGFkNDhmYmJjYmQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/c70badaa-9b94-49d9-86f0-8385a8304e5e?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9jNzBiYWRhYS05Yjk0LTQ5ZDktODZmMC04Mzg1YTgzMDRlNWU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1222,7 +1222,7 @@ "FxVersion/4.6.29518.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -1233,35 +1233,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4181" + "Microsoft.Compute/GetOperationStatus3Min;1174,Microsoft.Compute/GetOperationStatus30Min;4125" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518,e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "c235faf6-ae37-4292-8f66-fc9e2de6da49" + "a2edaefa-6d98-4f69-8bdc-ac4412b3ad21" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11990" ], "x-ms-correlation-request-id": [ - "68fe7d11-6c2d-4210-8818-525db70ca986" + "9195da53-4633-4dcf-856c-9fbe9d4c948b" ], "x-ms-routing-request-id": [ - "WESTINDIA:20210122T065614Z:68fe7d11-6c2d-4210-8818-525db70ca986" + "WESTUS:20210208T192746Z:9195da53-4633-4dcf-856c-9fbe9d4c948b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jan 2021 06:56:13 GMT" + "Mon, 08 Feb 2021 19:27:46 GMT" ], "Content-Length": [ "134" @@ -1273,12 +1273,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-01-22T12:23:12.8471763+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d50168f8-113e-40c1-a8d5-8dad48fbbcbd\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-02-08T11:24:44.4671096-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c70badaa-9b94-49d9-86f0-8385a8304e5e\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/capsOperations/d50168f8-113e-40c1-a8d5-8dad48fbbcbd?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9kNTAxNjhmOC0xMTNlLTQwYzEtYThkNS04ZGFkNDhmYmJjYmQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/c70badaa-9b94-49d9-86f0-8385a8304e5e?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9jNzBiYWRhYS05Yjk0LTQ5ZDktODZmMC04Mzg1YTgzMDRlNWU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1286,7 +1286,7 @@ "FxVersion/4.6.29518.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -1297,35 +1297,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4178" + "Microsoft.Compute/GetOperationStatus3Min;1175,Microsoft.Compute/GetOperationStatus30Min;4121" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518,e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "fcbc04ac-aa1e-40cc-968d-87f245e935c7" + "d9b3976d-f83d-4f45-8a0b-55bfcd71cdac" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11989" ], "x-ms-correlation-request-id": [ - "8920d248-ac07-416a-a4f5-ead648039b4d" + "c05e7874-8f51-4ce7-bbb9-e4a6355f2328" ], "x-ms-routing-request-id": [ - "WESTINDIA:20210122T065644Z:8920d248-ac07-416a-a4f5-ead648039b4d" + "WESTUS:20210208T192816Z:c05e7874-8f51-4ce7-bbb9-e4a6355f2328" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jan 2021 06:56:43 GMT" + "Mon, 08 Feb 2021 19:28:16 GMT" ], "Content-Length": [ "134" @@ -1337,12 +1337,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-01-22T12:23:12.8471763+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d50168f8-113e-40c1-a8d5-8dad48fbbcbd\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-02-08T11:24:44.4671096-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c70badaa-9b94-49d9-86f0-8385a8304e5e\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/capsOperations/d50168f8-113e-40c1-a8d5-8dad48fbbcbd?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9kNTAxNjhmOC0xMTNlLTQwYzEtYThkNS04ZGFkNDhmYmJjYmQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/c70badaa-9b94-49d9-86f0-8385a8304e5e?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9jNzBiYWRhYS05Yjk0LTQ5ZDktODZmMC04Mzg1YTgzMDRlNWU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1350,7 +1350,7 @@ "FxVersion/4.6.29518.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -1361,35 +1361,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4175" + "Microsoft.Compute/GetOperationStatus3Min;1175,Microsoft.Compute/GetOperationStatus30Min;4117" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518,e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "5a59807a-74a6-4ac2-9380-cfc11b8ec79b" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "f8614f51-5d37-485f-9ba3-5d75afc14fb6" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], "x-ms-correlation-request-id": [ - "61b4cca7-54db-41da-8991-fade59313623" + "83c07451-1006-4eb2-8a4f-62c5f69b3e49" ], "x-ms-routing-request-id": [ - "WESTINDIA:20210122T065714Z:61b4cca7-54db-41da-8991-fade59313623" + "WESTUS:20210208T192846Z:83c07451-1006-4eb2-8a4f-62c5f69b3e49" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jan 2021 06:57:14 GMT" + "Mon, 08 Feb 2021 19:28:46 GMT" ], "Content-Length": [ "134" @@ -1401,12 +1401,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-01-22T12:23:12.8471763+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d50168f8-113e-40c1-a8d5-8dad48fbbcbd\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-02-08T11:24:44.4671096-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c70badaa-9b94-49d9-86f0-8385a8304e5e\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/capsOperations/d50168f8-113e-40c1-a8d5-8dad48fbbcbd?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9kNTAxNjhmOC0xMTNlLTQwYzEtYThkNS04ZGFkNDhmYmJjYmQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/c70badaa-9b94-49d9-86f0-8385a8304e5e?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9jNzBiYWRhYS05Yjk0LTQ5ZDktODZmMC04Mzg1YTgzMDRlNWU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1414,7 +1414,7 @@ "FxVersion/4.6.29518.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -1425,35 +1425,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4172" + "Microsoft.Compute/GetOperationStatus3Min;1176,Microsoft.Compute/GetOperationStatus30Min;4113" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518,e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "5f1f1c6c-a3a5-414b-a2a1-64f22f534a3e" + "df51e33b-b6e3-4550-9804-f52e7cec7079" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11987" ], "x-ms-correlation-request-id": [ - "29986f14-059b-4dd1-b16a-83210c1ae7fc" + "4686a73d-dff8-4b38-9834-ac759d8683d9" ], "x-ms-routing-request-id": [ - "WESTINDIA:20210122T065744Z:29986f14-059b-4dd1-b16a-83210c1ae7fc" + "WESTUS:20210208T192917Z:4686a73d-dff8-4b38-9834-ac759d8683d9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jan 2021 06:57:44 GMT" + "Mon, 08 Feb 2021 19:29:16 GMT" ], "Content-Length": [ "184" @@ -1465,12 +1465,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-01-22T12:23:12.8471763+05:30\",\r\n \"endTime\": \"2021-01-22T12:27:43.2844868+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d50168f8-113e-40c1-a8d5-8dad48fbbcbd\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-02-08T11:24:44.4671096-08:00\",\r\n \"endTime\": \"2021-02-08T11:29:14.8132594-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c70badaa-9b94-49d9-86f0-8385a8304e5e\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg3726/providers/Microsoft.Compute/galleries/galleryPsTestGallery9696/applications/galleryPsTestGalleryApplication1761/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM3MjYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk2OTYvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24xNzYxL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590/applications/galleryPsTestGalleryApplication8184/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1OTAvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb244MTg0L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1478,7 +1478,7 @@ "FxVersion/4.6.29518.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -1491,87 +1491,36 @@ "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/GetGalleryApplicationVersion3Min;1999,Microsoft.Compute/GetGalleryApplicationVersion30Min;9999" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "x-ms-correlation-request-id": [ - "cf20f7cd-d9d5-454c-91ef-5a013a9c10ec" - ], - "x-ms-routing-request-id": [ - "WESTUS:20201022T235858Z:cf20f7cd-d9d5-454c-91ef-5a013a9c10ec" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 23:58:58 GMT" - ], - "Content-Length": [ - "184" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:53:25.4136438-07:00\",\r\n \"endTime\": \"2020-10-22T16:58:40.6523124-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"11cb0e69-f860-43bb-b13d-4db4d6654534\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg8861/providers/Microsoft.Compute/galleries/galleryPsTestGallery5108/applications/galleryPsTestGalleryApplication2971/versions/1.0.0?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg4NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTUxMDgvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24yOTcxL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29220.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryApplicationVersion3Min;1998,Microsoft.Compute/GetGalleryApplicationVersion30Min;9998" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518,e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "3287515a-19f3-4880-99a2-bfc24733f8ab" + "506fcc8c-7264-46e3-81af-2645b43fedc7" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11986" ], "x-ms-correlation-request-id": [ - "c14317d3-d630-4daf-a362-915760bb6255" + "e15e48d0-94ab-4b16-984a-99432f5ecce5" ], "x-ms-routing-request-id": [ - "WESTINDIA:20210122T065745Z:c14317d3-d630-4daf-a362-915760bb6255" + "WESTUS:20210208T192917Z:e15e48d0-94ab-4b16-984a-99432f5ecce5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jan 2021 06:57:44 GMT" + "Mon, 08 Feb 2021 19:29:16 GMT" ], "Content-Length": [ - "1313" + "1320" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1580,17 +1529,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg3726/providers/Microsoft.Compute/galleries/galleryPsTestGallery9696/applications/galleryPsTestGalleryApplication1761/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery5567.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=AOat3BzgnkLCF7BHJo8h4rMc5RSSDZ8ttvGfgx6drD8%3D&st=2021-01-21T06%3A52%3A08Z&se=2021-01-24T06%3A52%3A08Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-01-22T12:23:12.9253166+05:30\",\r\n \"endOfLifeDate\": \"2021-02-01T00:00:00+05:30\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590/applications/galleryPsTestGalleryApplication8184/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery2295.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=i%2FZftR0%2BcZaW%2FHqx6GCytHdp9rHt%2BodyL8wMxu0XyPk%3D&st=2021-02-07T19%3A23%3A34Z&se=2021-02-10T19%3A23%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 \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-08T11:24:44.513999-08:00\",\r\n \"endOfLifeDate\": \"2021-02-18T00:00:00-08:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg3726/providers/Microsoft.Compute/galleries/galleryPsTestGallery9696/applications/galleryPsTestGalleryApplication1761/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM3MjYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk2OTYvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24xNzYxL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590/applications/galleryPsTestGalleryApplication8184/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1OTAvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb244MTg0L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa357ae1-4072-4b1e-b19d-3bf153ce0a47" + "fd08c2d2-be1b-4a60-bec8-04398238b727" ], "Accept-Language": [ "en-US" @@ -1599,7 +1548,7 @@ "FxVersion/4.6.29518.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -1616,32 +1565,32 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518,e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "2935837b-bb40-4c0f-a254-48cd74d4b13a" + "738a29c5-063c-43a4-aa49-c8a2d07798f0" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11985" ], "x-ms-correlation-request-id": [ - "de8a1465-5274-460e-a829-10920fd13da9" + "5a0f4cec-a3ee-430c-98a9-5930012b65b9" ], "x-ms-routing-request-id": [ - "WESTINDIA:20210122T065745Z:de8a1465-5274-460e-a829-10920fd13da9" + "WESTUS:20210208T192917Z:5a0f4cec-a3ee-430c-98a9-5930012b65b9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jan 2021 06:57:44 GMT" + "Mon, 08 Feb 2021 19:29:16 GMT" ], "Content-Length": [ - "1313" + "1320" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1650,12 +1599,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg3726/providers/Microsoft.Compute/galleries/galleryPsTestGallery9696/applications/galleryPsTestGalleryApplication1761/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery5567.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=AOat3BzgnkLCF7BHJo8h4rMc5RSSDZ8ttvGfgx6drD8%3D&st=2021-01-21T06%3A52%3A08Z&se=2021-01-24T06%3A52%3A08Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-01-22T12:23:12.9253166+05:30\",\r\n \"endOfLifeDate\": \"2021-02-01T00:00:00+05:30\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590/applications/galleryPsTestGalleryApplication8184/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery2295.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=i%2FZftR0%2BcZaW%2FHqx6GCytHdp9rHt%2BodyL8wMxu0XyPk%3D&st=2021-02-07T19%3A23%3A34Z&se=2021-02-10T19%3A23%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 \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-08T11:24:44.513999-08:00\",\r\n \"endOfLifeDate\": \"2021-02-18T00:00:00-08:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg3726/providers/Microsoft.Compute/galleries/galleryPsTestGallery9696/applications/galleryPsTestGalleryApplication1761/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM3MjYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk2OTYvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24xNzYxL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590/applications/galleryPsTestGalleryApplication8184/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1OTAvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb244MTg0L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1663,7 +1612,7 @@ "FxVersion/4.6.29518.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -1674,38 +1623,38 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryApplicationVersion3Min;1998,Microsoft.Compute/GetGalleryApplicationVersion30Min;9995" + "Microsoft.Compute/GetGalleryApplicationVersion3Min;1999,Microsoft.Compute/GetGalleryApplicationVersion30Min;9995" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518,e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "0b6a4d6c-7634-44ca-b79d-fb60a086cc17" + "9ceb3ee0-c482-4f2e-90a7-bd723524df97" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11977" ], "x-ms-correlation-request-id": [ - "010b9287-fa0d-482d-a14a-01acdd521897" + "2c75b41b-9939-43e9-a4fe-0e77e6d5a207" ], "x-ms-routing-request-id": [ - "WESTINDIA:20210122T070047Z:010b9287-fa0d-482d-a14a-01acdd521897" + "WESTUS:20210208T193220Z:2c75b41b-9939-43e9-a4fe-0e77e6d5a207" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jan 2021 07:00:46 GMT" + "Mon, 08 Feb 2021 19:32:20 GMT" ], "Content-Length": [ - "1313" + "1320" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1714,17 +1663,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg3726/providers/Microsoft.Compute/galleries/galleryPsTestGallery9696/applications/galleryPsTestGalleryApplication1761/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery5567.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=AOat3BzgnkLCF7BHJo8h4rMc5RSSDZ8ttvGfgx6drD8%3D&st=2021-01-21T06%3A52%3A08Z&se=2021-01-24T06%3A52%3A08Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-01-22T12:23:12.9253166+05:30\",\r\n \"endOfLifeDate\": \"2021-05-02T00:00:00+05:30\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590/applications/galleryPsTestGalleryApplication8184/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery2295.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=i%2FZftR0%2BcZaW%2FHqx6GCytHdp9rHt%2BodyL8wMxu0XyPk%3D&st=2021-02-07T19%3A23%3A34Z&se=2021-02-10T19%3A23%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 \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-08T11:24:44.513999-08:00\",\r\n \"endOfLifeDate\": \"2021-05-19T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg3726/providers/Microsoft.Compute/galleries/galleryPsTestGallery9696/applications/galleryPsTestGalleryApplication1761/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM3MjYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk2OTYvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24xNzYxL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590/applications/galleryPsTestGalleryApplication8184/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1OTAvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb244MTg0L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "afc3270f-a7e5-4487-8671-36081eda71ac" + "76203de8-516d-4904-858e-cc1d08733371" ], "Accept-Language": [ "en-US" @@ -1733,7 +1682,7 @@ "FxVersion/4.6.29518.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -1744,38 +1693,38 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryApplicationVersion3Min;1997,Microsoft.Compute/GetGalleryApplicationVersion30Min;9994" + "Microsoft.Compute/GetGalleryApplicationVersion3Min;1998,Microsoft.Compute/GetGalleryApplicationVersion30Min;9994" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518,e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "1dbaa2d2-c4f4-4ce9-9268-1ec7c9dbd5df" + "261e3101-3d65-48e0-ae74-a0d92d303d87" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11976" ], "x-ms-correlation-request-id": [ - "d589e69a-a4ab-4958-9ae1-fcbece9ac222" + "7986a7f9-ec7e-4160-940f-2f04120ec76b" ], "x-ms-routing-request-id": [ - "WESTINDIA:20210122T070047Z:d589e69a-a4ab-4958-9ae1-fcbece9ac222" + "WESTUS:20210208T193220Z:7986a7f9-ec7e-4160-940f-2f04120ec76b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jan 2021 07:00:46 GMT" + "Mon, 08 Feb 2021 19:32:20 GMT" ], "Content-Length": [ - "1313" + "1320" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1784,17 +1733,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg3726/providers/Microsoft.Compute/galleries/galleryPsTestGallery9696/applications/galleryPsTestGalleryApplication1761/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery5567.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=AOat3BzgnkLCF7BHJo8h4rMc5RSSDZ8ttvGfgx6drD8%3D&st=2021-01-21T06%3A52%3A08Z&se=2021-01-24T06%3A52%3A08Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-01-22T12:23:12.9253166+05:30\",\r\n \"endOfLifeDate\": \"2021-05-02T00:00:00+05:30\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590/applications/galleryPsTestGalleryApplication8184/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery2295.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=i%2FZftR0%2BcZaW%2FHqx6GCytHdp9rHt%2BodyL8wMxu0XyPk%3D&st=2021-02-07T19%3A23%3A34Z&se=2021-02-10T19%3A23%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 \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-08T11:24:44.513999-08:00\",\r\n \"endOfLifeDate\": \"2021-05-19T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg3726/providers/Microsoft.Compute/galleries/galleryPsTestGallery9696/applications/galleryPsTestGalleryApplication1761/versions/1.0.0?$expand=ReplicationStatus&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM3MjYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk2OTYvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24xNzYxL3ZlcnNpb25zLzEuMC4wPyRleHBhbmQ9UmVwbGljYXRpb25TdGF0dXMmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590/applications/galleryPsTestGalleryApplication8184/versions/1.0.0?$expand=ReplicationStatus&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1OTAvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb244MTg0L3ZlcnNpb25zLzEuMC4wPyRleHBhbmQ9UmVwbGljYXRpb25TdGF0dXMmYXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13019401-18f2-407c-9935-b29e64c59bfa" + "e9a29d70-7cd0-4dd3-8df8-cbc8959b4e6a" ], "Accept-Language": [ "en-US" @@ -1803,7 +1752,7 @@ "FxVersion/4.6.29518.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -1820,32 +1769,32 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518,e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "1801706a-4ee9-4748-81c3-300fdbf76260" + "2b9c8b96-552a-42cb-9916-95a6f8cbd124" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11984" ], "x-ms-correlation-request-id": [ - "f184f60d-4b7d-491b-92fc-be48132f7523" + "f36b1446-dda3-452b-a457-42562345c47d" ], "x-ms-routing-request-id": [ - "WESTINDIA:20210122T065745Z:f184f60d-4b7d-491b-92fc-be48132f7523" + "WESTUS:20210208T192917Z:f36b1446-dda3-452b-a457-42562345c47d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jan 2021 06:57:44 GMT" + "Mon, 08 Feb 2021 19:29:17 GMT" ], "Content-Length": [ - "1537" + "1544" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1854,12 +1803,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg3726/providers/Microsoft.Compute/galleries/galleryPsTestGallery9696/applications/galleryPsTestGalleryApplication1761/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery5567.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=AOat3BzgnkLCF7BHJo8h4rMc5RSSDZ8ttvGfgx6drD8%3D&st=2021-01-21T06%3A52%3A08Z&se=2021-01-24T06%3A52%3A08Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-01-22T12:23:12.9253166+05:30\",\r\n \"endOfLifeDate\": \"2021-02-01T00:00:00+05:30\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"replicationStatus\": {\r\n \"aggregatedState\": \"Completed\",\r\n \"summary\": [\r\n {\r\n \"region\": \"southeastasia\",\r\n \"state\": \"Completed\",\r\n \"progress\": 100\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/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590/applications/galleryPsTestGalleryApplication8184/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery2295.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=i%2FZftR0%2BcZaW%2FHqx6GCytHdp9rHt%2BodyL8wMxu0XyPk%3D&st=2021-02-07T19%3A23%3A34Z&se=2021-02-10T19%3A23%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 \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-08T11:24:44.513999-08:00\",\r\n \"endOfLifeDate\": \"2021-02-18T00:00:00-08:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"replicationStatus\": {\r\n \"aggregatedState\": \"Completed\",\r\n \"summary\": [\r\n {\r\n \"region\": \"southeastasia\",\r\n \"state\": \"Completed\",\r\n \"progress\": 100\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/capsOperations/8b568fae-1730-4829-a751-aea8dcb621c3?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy84YjU2OGZhZS0xNzMwLTQ4MjktYTc1MS1hZWE4ZGNiNjIxYzM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/cc35f8ed-c7ef-456f-b0b7-6521ed722d7f?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9jYzM1ZjhlZC1jN2VmLTQ1NmYtYjBiNy02NTIxZWQ3MjJkN2Y/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1867,7 +1816,7 @@ "FxVersion/4.6.29518.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -1878,38 +1827,38 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4169" + "Microsoft.Compute/GetOperationStatus3Min;1175,Microsoft.Compute/GetOperationStatus30Min;4108" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518,e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "50c59154-ba14-4e0c-ad21-3efc978e0977" + "cc1bf115-cda0-4fbc-af3a-6d3c8f04118b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], "x-ms-correlation-request-id": [ - "62d580d5-1061-4033-8832-8b072d03c83f" + "47e1bc94-8ee0-4829-b002-419ee842c470" ], "x-ms-routing-request-id": [ - "WESTINDIA:20210122T065815Z:62d580d5-1061-4033-8832-8b072d03c83f" + "WESTUS:20210208T192948Z:47e1bc94-8ee0-4829-b002-419ee842c470" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jan 2021 06:58:15 GMT" + "Mon, 08 Feb 2021 19:29:47 GMT" ], "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1918,12 +1867,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-01-22T12:27:45.612555+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8b568fae-1730-4829-a751-aea8dcb621c3\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-02-08T11:29:18.1569617-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cc35f8ed-c7ef-456f-b0b7-6521ed722d7f\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/capsOperations/8b568fae-1730-4829-a751-aea8dcb621c3?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy84YjU2OGZhZS0xNzMwLTQ4MjktYTc1MS1hZWE4ZGNiNjIxYzM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/cc35f8ed-c7ef-456f-b0b7-6521ed722d7f?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9jYzM1ZjhlZC1jN2VmLTQ1NmYtYjBiNy02NTIxZWQ3MjJkN2Y/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1931,7 +1880,7 @@ "FxVersion/4.6.29518.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -1942,38 +1891,38 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4166" + "Microsoft.Compute/GetOperationStatus3Min;1175,Microsoft.Compute/GetOperationStatus30Min;4103" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518,e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "ec5e0cfd-eea7-49fd-ac4c-9aaf19728f69" + "60877ad8-4a88-4379-9b6c-ed0b5e439590" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11982" ], "x-ms-correlation-request-id": [ - "f5b72d83-3220-4db5-b5b4-540c1935a796" + "482c2357-37a0-42a5-9893-e72dc116cf9d" ], "x-ms-routing-request-id": [ - "WESTINDIA:20210122T065846Z:f5b72d83-3220-4db5-b5b4-540c1935a796" + "WESTUS:20210208T193019Z:482c2357-37a0-42a5-9893-e72dc116cf9d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jan 2021 06:58:46 GMT" + "Mon, 08 Feb 2021 19:30:19 GMT" ], "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1982,12 +1931,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-01-22T12:27:45.612555+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8b568fae-1730-4829-a751-aea8dcb621c3\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-02-08T11:29:18.1569617-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cc35f8ed-c7ef-456f-b0b7-6521ed722d7f\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/capsOperations/8b568fae-1730-4829-a751-aea8dcb621c3?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy84YjU2OGZhZS0xNzMwLTQ4MjktYTc1MS1hZWE4ZGNiNjIxYzM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/cc35f8ed-c7ef-456f-b0b7-6521ed722d7f?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9jYzM1ZjhlZC1jN2VmLTQ1NmYtYjBiNy02NTIxZWQ3MjJkN2Y/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1995,7 +1944,7 @@ "FxVersion/4.6.29518.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -2006,38 +1955,38 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4163" + "Microsoft.Compute/GetOperationStatus3Min;1174,Microsoft.Compute/GetOperationStatus30Min;4099" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518,e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "667285cd-1c05-4e09-8b5a-ef820f615a7e" + "86432e65-2c3d-4aaa-b016-62b74cbb9be3" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11981" ], "x-ms-correlation-request-id": [ - "4fd8314c-8712-4413-b965-ac7eda82a41d" + "02277262-f456-4f7e-a98e-13bb1259b766" ], "x-ms-routing-request-id": [ - "WESTINDIA:20210122T065916Z:4fd8314c-8712-4413-b965-ac7eda82a41d" + "WESTUS:20210208T193049Z:02277262-f456-4f7e-a98e-13bb1259b766" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jan 2021 06:59:16 GMT" + "Mon, 08 Feb 2021 19:30:49 GMT" ], "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2046,12 +1995,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-01-22T12:27:45.612555+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8b568fae-1730-4829-a751-aea8dcb621c3\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-02-08T11:29:18.1569617-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cc35f8ed-c7ef-456f-b0b7-6521ed722d7f\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/capsOperations/8b568fae-1730-4829-a751-aea8dcb621c3?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy84YjU2OGZhZS0xNzMwLTQ4MjktYTc1MS1hZWE4ZGNiNjIxYzM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/cc35f8ed-c7ef-456f-b0b7-6521ed722d7f?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9jYzM1ZjhlZC1jN2VmLTQ1NmYtYjBiNy02NTIxZWQ3MjJkN2Y/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2059,7 +2008,7 @@ "FxVersion/4.6.29518.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -2070,38 +2019,38 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4160" + "Microsoft.Compute/GetOperationStatus3Min;1174,Microsoft.Compute/GetOperationStatus30Min;4094" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518,e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "600edb50-bd26-4ebb-b26b-342e63ea12c0" + "017355e9-2e18-49a1-b2c9-4c0bfb92b31c" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11980" ], "x-ms-correlation-request-id": [ - "eba239b0-e478-46b1-8bf0-4856c4e0a98c" + "bc7cce41-a27a-46f3-825d-3bb92964ff73" ], "x-ms-routing-request-id": [ - "WESTINDIA:20210122T065946Z:eba239b0-e478-46b1-8bf0-4856c4e0a98c" + "WESTUS:20210208T193120Z:bc7cce41-a27a-46f3-825d-3bb92964ff73" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jan 2021 06:59:45 GMT" + "Mon, 08 Feb 2021 19:31:19 GMT" ], "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2110,12 +2059,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-01-22T12:27:45.612555+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8b568fae-1730-4829-a751-aea8dcb621c3\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-02-08T11:29:18.1569617-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cc35f8ed-c7ef-456f-b0b7-6521ed722d7f\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/capsOperations/8b568fae-1730-4829-a751-aea8dcb621c3?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy84YjU2OGZhZS0xNzMwLTQ4MjktYTc1MS1hZWE4ZGNiNjIxYzM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/cc35f8ed-c7ef-456f-b0b7-6521ed722d7f?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9jYzM1ZjhlZC1jN2VmLTQ1NmYtYjBiNy02NTIxZWQ3MjJkN2Y/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2123,7 +2072,7 @@ "FxVersion/4.6.29518.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -2134,38 +2083,38 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4157" + "Microsoft.Compute/GetOperationStatus3Min;1174,Microsoft.Compute/GetOperationStatus30Min;4090" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518,e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "5cbd1aa5-2e21-4588-9e1e-34b8f11e6402" + "4b4d0380-272e-4882-a02a-f31f9fcafaf7" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11979" ], "x-ms-correlation-request-id": [ - "dbc771ff-f509-45af-9856-6a558839a806" + "34fd2c20-49c0-418f-b15a-bf92586551e6" ], "x-ms-routing-request-id": [ - "WESTINDIA:20210122T070016Z:dbc771ff-f509-45af-9856-6a558839a806" + "WESTUS:20210208T193150Z:34fd2c20-49c0-418f-b15a-bf92586551e6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jan 2021 07:00:16 GMT" + "Mon, 08 Feb 2021 19:31:49 GMT" ], "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2174,12 +2123,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-01-22T12:27:45.612555+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8b568fae-1730-4829-a751-aea8dcb621c3\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-02-08T11:29:18.1569617-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cc35f8ed-c7ef-456f-b0b7-6521ed722d7f\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/capsOperations/8b568fae-1730-4829-a751-aea8dcb621c3?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy84YjU2OGZhZS0xNzMwLTQ4MjktYTc1MS1hZWE4ZGNiNjIxYzM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/cc35f8ed-c7ef-456f-b0b7-6521ed722d7f?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9jYzM1ZjhlZC1jN2VmLTQ1NmYtYjBiNy02NTIxZWQ3MjJkN2Y/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2187,7 +2136,7 @@ "FxVersion/4.6.29518.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -2198,38 +2147,38 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4154" + "Microsoft.Compute/GetOperationStatus3Min;1174,Microsoft.Compute/GetOperationStatus30Min;4085" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518,e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "a6aa0028-4b3c-447f-9c2c-0ab640f56d3d" + "bd14c71d-8659-48ab-aa07-86a4389a0a7b" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11978" ], "x-ms-correlation-request-id": [ - "124b07a1-b4b0-4da2-9926-2a628ca45719" + "98fdef4f-fc9b-4bf3-9e91-41ffee0a1c9f" ], "x-ms-routing-request-id": [ - "WESTINDIA:20210122T070046Z:124b07a1-b4b0-4da2-9926-2a628ca45719" + "WESTUS:20210208T193220Z:98fdef4f-fc9b-4bf3-9e91-41ffee0a1c9f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jan 2021 07:00:46 GMT" + "Mon, 08 Feb 2021 19:32:20 GMT" ], "Content-Length": [ - "183" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2238,17 +2187,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-01-22T12:27:45.612555+05:30\",\r\n \"endTime\": \"2021-01-22T12:30:45.7374218+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8b568fae-1730-4829-a751-aea8dcb621c3\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-02-08T11:29:18.1569617-08:00\",\r\n \"endTime\": \"2021-02-08T11:32:18.2987964-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"cc35f8ed-c7ef-456f-b0b7-6521ed722d7f\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg3726/providers/Microsoft.Compute/galleries/galleryPsTestGallery9696/applications/galleryPsTestGalleryApplication1761/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM3MjYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk2OTYvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24xNzYxL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590/applications/galleryPsTestGalleryApplication8184/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1OTAvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb244MTg0L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "89ac27cd-b351-4bb2-9547-8725bcdadfeb" + "ca6342dc-4947-41e7-aeb4-5116ad78d017" ], "Accept-Language": [ "en-US" @@ -2257,7 +2206,7 @@ "FxVersion/4.6.29518.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -2268,10 +2217,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/capsOperations/45984383-0dda-40b1-a0ac-eec1a203c7e8?monitor=true&api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/73b0e9a3-8362-4262-81ec-c0a3768997bd?monitor=true&api-version=2020-09-30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/capsOperations/45984383-0dda-40b1-a0ac-eec1a203c7e8?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/73b0e9a3-8362-4262-81ec-c0a3768997bd?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/DeleteGalleryApplicationVersion3Min;149,Microsoft.Compute/DeleteGalleryApplicationVersion30Min;999" @@ -2280,10 +2229,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518,e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "45984383-0dda-40b1-a0ac-eec1a203c7e8" + "73b0e9a3-8362-4262-81ec-c0a3768997bd" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2293,16 +2242,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "6552329b-7543-4bea-ba2b-bd02deea4414" + "6fc11401-c0aa-4b85-a085-37e7aa174838" ], "x-ms-routing-request-id": [ - "WESTINDIA:20210122T070047Z:6552329b-7543-4bea-ba2b-bd02deea4414" + "WESTUS:20210208T193221Z:6fc11401-c0aa-4b85-a085-37e7aa174838" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jan 2021 07:00:46 GMT" + "Mon, 08 Feb 2021 19:32:21 GMT" ], "Expires": [ "-1" @@ -2315,8 +2264,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/capsOperations/45984383-0dda-40b1-a0ac-eec1a203c7e8?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy80NTk4NDM4My0wZGRhLTQwYjEtYTBhYy1lZWMxYTIwM2M3ZTg/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/73b0e9a3-8362-4262-81ec-c0a3768997bd?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy83M2IwZTlhMy04MzYyLTQyNjItODFlYy1jMGEzNzY4OTk3YmQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2324,7 +2273,7 @@ "FxVersion/4.6.29518.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -2335,35 +2284,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4151" + "Microsoft.Compute/GetOperationStatus3Min;1174,Microsoft.Compute/GetOperationStatus30Min;4081" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518,e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "f45b1c55-db81-45e3-929e-6cca6e46a7ce" + "28fe8198-4b89-4791-ad2d-2b572c95566f" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11975" ], "x-ms-correlation-request-id": [ - "28ecbfcf-2cd0-4e26-b8c8-7f24b6d4e704" + "9f0232ed-f4c8-4296-8bf7-7505c2f969b1" ], "x-ms-routing-request-id": [ - "WESTINDIA:20210122T070117Z:28ecbfcf-2cd0-4e26-b8c8-7f24b6d4e704" + "WESTUS:20210208T193251Z:9f0232ed-f4c8-4296-8bf7-7505c2f969b1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jan 2021 07:01:16 GMT" + "Mon, 08 Feb 2021 19:32:51 GMT" ], "Content-Length": [ "134" @@ -2375,12 +2324,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-01-22T12:30:47.4405624+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"45984383-0dda-40b1-a0ac-eec1a203c7e8\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-02-08T11:32:21.1581909-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"73b0e9a3-8362-4262-81ec-c0a3768997bd\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/capsOperations/45984383-0dda-40b1-a0ac-eec1a203c7e8?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy80NTk4NDM4My0wZGRhLTQwYjEtYTBhYy1lZWMxYTIwM2M3ZTg/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/73b0e9a3-8362-4262-81ec-c0a3768997bd?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy83M2IwZTlhMy04MzYyLTQyNjItODFlYy1jMGEzNzY4OTk3YmQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2388,7 +2337,7 @@ "FxVersion/4.6.29518.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -2399,35 +2348,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4148" + "Microsoft.Compute/GetOperationStatus3Min;1174,Microsoft.Compute/GetOperationStatus30Min;4076" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518,e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "dfeb7112-cd48-4b74-8d9d-fdb2abaad209" + "7d1f5734-7677-4e80-9774-d72dfa3d523b" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11974" ], "x-ms-correlation-request-id": [ - "4f6bcc11-46a7-4010-a4b1-41a45918089b" + "db2e4e52-2083-444a-a1bd-c12e6221f888" ], "x-ms-routing-request-id": [ - "WESTINDIA:20210122T070148Z:4f6bcc11-46a7-4010-a4b1-41a45918089b" + "WESTUS:20210208T193321Z:db2e4e52-2083-444a-a1bd-c12e6221f888" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jan 2021 07:01:47 GMT" + "Mon, 08 Feb 2021 19:33:21 GMT" ], "Content-Length": [ "134" @@ -2439,12 +2388,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-01-22T12:30:47.4405624+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"45984383-0dda-40b1-a0ac-eec1a203c7e8\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-02-08T11:32:21.1581909-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"73b0e9a3-8362-4262-81ec-c0a3768997bd\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/capsOperations/45984383-0dda-40b1-a0ac-eec1a203c7e8?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy80NTk4NDM4My0wZGRhLTQwYjEtYTBhYy1lZWMxYTIwM2M3ZTg/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/73b0e9a3-8362-4262-81ec-c0a3768997bd?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy83M2IwZTlhMy04MzYyLTQyNjItODFlYy1jMGEzNzY4OTk3YmQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2452,7 +2401,7 @@ "FxVersion/4.6.29518.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -2463,38 +2412,38 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4145" + "Microsoft.Compute/GetOperationStatus3Min;1174,Microsoft.Compute/GetOperationStatus30Min;4072" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518,e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "42364e0a-6e8e-405e-865d-c75d4db9349f" + "06344c00-4f60-437c-87a9-7632874c44e4" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11973" ], "x-ms-correlation-request-id": [ - "42c42c89-2ac6-4482-959e-d3fa08081db2" + "9e43c6fa-6960-4aff-b447-a55b0294ba77" ], "x-ms-routing-request-id": [ - "WESTINDIA:20210122T070218Z:42c42c89-2ac6-4482-959e-d3fa08081db2" + "WESTUS:20210208T193352Z:9e43c6fa-6960-4aff-b447-a55b0294ba77" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jan 2021 07:02:17 GMT" + "Mon, 08 Feb 2021 19:33:51 GMT" ], "Content-Length": [ - "184" + "183" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2503,12 +2452,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-01-22T12:30:47.4405624+05:30\",\r\n \"endTime\": \"2021-01-22T12:32:17.6905494+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"45984383-0dda-40b1-a0ac-eec1a203c7e8\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-02-08T11:32:21.1581909-08:00\",\r\n \"endTime\": \"2021-02-08T11:33:51.424434-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"73b0e9a3-8362-4262-81ec-c0a3768997bd\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/capsOperations/45984383-0dda-40b1-a0ac-eec1a203c7e8?monitor=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy80NTk4NDM4My0wZGRhLTQwYjEtYTBhYy1lZWMxYTIwM2M3ZTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/73b0e9a3-8362-4262-81ec-c0a3768997bd?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy83M2IwZTlhMy04MzYyLTQyNjItODFlYy1jMGEzNzY4OTk3YmQ/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2516,7 +2465,7 @@ "FxVersion/4.6.29518.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -2527,35 +2476,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1182,Microsoft.Compute/GetOperationStatus30Min;4144" + "Microsoft.Compute/GetOperationStatus3Min;1173,Microsoft.Compute/GetOperationStatus30Min;4071" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518,e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "a592e14d-eb60-4b33-9e82-f245fa5ab70c" + "77cd5542-fad5-4218-a5e0-5de015c404e9" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11972" ], "x-ms-correlation-request-id": [ - "95b7c596-70cb-46d2-8c1d-11b01d5d9f5f" + "3cc82f2b-e263-490a-b662-951841dea810" ], "x-ms-routing-request-id": [ - "WESTINDIA:20210122T070218Z:95b7c596-70cb-46d2-8c1d-11b01d5d9f5f" + "WESTUS:20210208T193352Z:3cc82f2b-e263-490a-b662-951841dea810" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jan 2021 07:02:17 GMT" + "Mon, 08 Feb 2021 19:33:51 GMT" ], "Expires": [ "-1" @@ -2568,13 +2517,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg3726/providers/Microsoft.Compute/galleries/galleryPsTestGallery9696/applications/galleryPsTestGalleryApplication1761?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM3MjYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk2OTYvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24xNzYxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590/applications/galleryPsTestGalleryApplication8184?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1OTAvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb244MTg0P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "151c9544-bf6f-4d32-878e-a6df815594e9" + "cd307ffb-28f2-4af4-b7ba-867a004750d9" ], "Accept-Language": [ "en-US" @@ -2583,7 +2532,7 @@ "FxVersion/4.6.29518.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -2600,10 +2549,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518,e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "8ee15979-3d89-42c2-bd09-37690caa2136" + "5ec5144e-92c0-4700-bef1-514852a6fb69" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2613,16 +2562,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "32837281-72ae-4f73-a328-de8cc2aef3aa" + "9e0cde8c-6771-49c8-ae52-ba37ca1362c7" ], "x-ms-routing-request-id": [ - "WESTINDIA:20210122T070218Z:32837281-72ae-4f73-a328-de8cc2aef3aa" + "WESTUS:20210208T193352Z:9e0cde8c-6771-49c8-ae52-ba37ca1362c7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jan 2021 07:02:17 GMT" + "Mon, 08 Feb 2021 19:33:51 GMT" ], "Expires": [ "-1" @@ -2635,13 +2584,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/galleryPsTestRg3726/providers/Microsoft.Compute/galleries/galleryPsTestGallery9696?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM3MjYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTk2OTY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1OTA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee08ae40-d17f-4c08-8f4c-a7207fcbd5d5" + "fa83fe19-3829-46d6-bc03-aadae83fac89" ], "Accept-Language": [ "en-US" @@ -2650,7 +2599,7 @@ "FxVersion/4.6.29518.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -2661,22 +2610,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/capsOperations/f1975baf-73e5-4891-a2b1-9290b7496aad?monitor=true&api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/1c0d3f22-7bed-4649-98d7-ee78c6592faf?monitor=true&api-version=2020-09-30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/capsOperations/f1975baf-73e5-4891-a2b1-9290b7496aad?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/1c0d3f22-7bed-4649-98d7-ee78c6592faf?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;299" + "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;847" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518,e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "f1975baf-73e5-4891-a2b1-9290b7496aad" + "1c0d3f22-7bed-4649-98d7-ee78c6592faf" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2686,16 +2635,16 @@ "14997" ], "x-ms-correlation-request-id": [ - "0925ccae-f69d-4e85-9aed-f33e2bccb4a5" + "2a80e253-af19-4f20-a565-4f1efc8b0c21" ], "x-ms-routing-request-id": [ - "WESTINDIA:20210122T070219Z:0925ccae-f69d-4e85-9aed-f33e2bccb4a5" + "WESTUS:20210208T193353Z:2a80e253-af19-4f20-a565-4f1efc8b0c21" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jan 2021 07:02:18 GMT" + "Mon, 08 Feb 2021 19:33:53 GMT" ], "Expires": [ "-1" @@ -2708,8 +2657,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/capsOperations/f1975baf-73e5-4891-a2b1-9290b7496aad?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9mMTk3NWJhZi03M2U1LTQ4OTEtYTJiMS05MjkwYjc0OTZhYWQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/1c0d3f22-7bed-4649-98d7-ee78c6592faf?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xYzBkM2YyMi03YmVkLTQ2NDktOThkNy1lZTc4YzY1OTJmYWY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2717,7 +2666,7 @@ "FxVersion/4.6.29518.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -2728,35 +2677,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1182,Microsoft.Compute/GetOperationStatus30Min;4141" + "Microsoft.Compute/GetOperationStatus3Min;1173,Microsoft.Compute/GetOperationStatus30Min;4066" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518,e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "348e0da0-b0d6-403f-a8c2-59975aad25d0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "5ebe96a4-f151-470f-a85a-9fb9bad57583" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], "x-ms-correlation-request-id": [ - "10b588c3-67c7-44ce-8cfb-ae36edafabc2" + "ff580130-214a-4189-a2f1-a89f14604445" ], "x-ms-routing-request-id": [ - "WESTINDIA:20210122T070249Z:10b588c3-67c7-44ce-8cfb-ae36edafabc2" + "WESTUS:20210208T193423Z:ff580130-214a-4189-a2f1-a89f14604445" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jan 2021 07:02:49 GMT" + "Mon, 08 Feb 2021 19:34:23 GMT" ], "Content-Length": [ "184" @@ -2768,12 +2717,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-01-22T12:32:19.0030065+05:30\",\r\n \"endTime\": \"2021-01-22T12:32:20.5342687+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f1975baf-73e5-4891-a2b1-9290b7496aad\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-02-08T11:33:53.6119587-08:00\",\r\n \"endTime\": \"2021-02-08T11:33:54.3463112-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1c0d3f22-7bed-4649-98d7-ee78c6592faf\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/southeastasia/capsOperations/f1975baf-73e5-4891-a2b1-9290b7496aad?monitor=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9mMTk3NWJhZi03M2U1LTQ4OTEtYTJiMS05MjkwYjc0OTZhYWQ/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/1c0d3f22-7bed-4649-98d7-ee78c6592faf?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xYzBkM2YyMi03YmVkLTQ2NDktOThkNy1lZTc4YzY1OTJmYWY/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2781,7 +2730,7 @@ "FxVersion/4.6.29518.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -2792,35 +2741,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1181,Microsoft.Compute/GetOperationStatus30Min;4140" + "Microsoft.Compute/GetOperationStatus3Min;1172,Microsoft.Compute/GetOperationStatus30Min;4065" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518,e49ba983-e5f9-41f1-955c-c34884d47cef_132189043488010518" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "d610dc7c-a95d-470d-a453-60b110cdb683" + "596e3af0-f613-4ee1-a262-b2398629e782" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11970" ], "x-ms-correlation-request-id": [ - "f7640ca5-c101-407f-a8b5-d5f6d611b30e" + "9a916cb1-4235-465c-b077-8ddeef573712" ], "x-ms-routing-request-id": [ - "WESTINDIA:20210122T070250Z:f7640ca5-c101-407f-a8b5-d5f6d611b30e" + "WESTUS:20210208T193424Z:9a916cb1-4235-465c-b077-8ddeef573712" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 22 Jan 2021 07:02:49 GMT" + "Mon, 08 Feb 2021 19:34:23 GMT" ], "Expires": [ "-1" @@ -2835,17 +2784,17 @@ ], "Names": { "GalleryApplicationVersion_CRUD_Tests": [ - "galleryPsTestRg3726", - "psTestSourceApplication4718", - "galleryPsTestGallery9696", - "galleryPsTestGalleryApplication1761" + "galleryPsTestRg9624", + "psTestSourceApplication1861", + "galleryPsTestGallery8590", + "galleryPsTestGalleryApplication8184" ], "CreateApplicationMediaLink": [ - "saforgallery5567", - "asforgallery426" + "saforgallery2295", + "asforgallery2247" ] }, "Variables": { - "SubscriptionId": "0296790d-427c-48ca-b204-8b729bbd8670" + "SubscriptionId": "97f78232-382b-46a7-8a72-964d692c4f3f" } } \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/SharedGalleryTests/SharedGalleryImageVersion_GetAndList_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/SharedGalleryTests/SharedGalleryImageVersion_GetAndList_Tests.json new file mode 100644 index 000000000000..fbac5862023e --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/SharedGalleryTests/SharedGalleryImageVersion_GetAndList_Tests.json @@ -0,0 +1,276 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/images/jmaesscc/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlYvaW1hZ2VzL2ptYWVzc2NjL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9dc34f5e-5762-419b-952a-ee0c0023e499" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132558183756113295" + ], + "x-ms-request-id": [ + "dbda6703-94a6-4488-8b8d-527c7f657e1b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "0cceb714-d5dc-4475-99f2-7074c80ac63c" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210208T190000Z:0cceb714-d5dc-4475-99f2-7074c80ac63c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 08 Feb 2021 19:00:00 GMT" + ], + "Content-Length": [ + "287" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"identifier\": {\r\n \"uniqueId\": \"/SharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/Images/jmaesscc/Versions/1.0.0\"\r\n },\r\n \"properties\": {\r\n \"publishedDate\": \"2021-01-27T20:14:24.4218083-08:00\"\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"1.0.0\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/images/jmaesscc/versions?api-version=2020-09-30&sharedTo=tenant", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlYvaW1hZ2VzL2ptYWVzc2NjL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjAtMDktMzAmc2hhcmVkVG89dGVuYW50", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "10c6d07b-5fa0-452c-a886-92f7aaa66346" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132558183756113295" + ], + "x-ms-request-id": [ + "d92650ad-a01e-4baa-abd8-f72a367a20ff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "29a04dda-4c08-49a6-88eb-52e481e8189e" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210208T190000Z:29a04dda-4c08-49a6-88eb-52e481e8189e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 08 Feb 2021 19:00:00 GMT" + ], + "Content-Length": [ + "352" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"identifier\": {\r\n \"uniqueId\": \"/SharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/Images/jmaesscc/Versions/1.0.0\"\r\n },\r\n \"properties\": {\r\n \"publishedDate\": \"2021-01-27T20:14:24.4218083-08:00\"\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"1.0.0\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/images/jmaesscc/versions?api-version=2020-09-30&sharedTo=tenant", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlYvaW1hZ2VzL2ptYWVzc2NjL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjAtMDktMzAmc2hhcmVkVG89dGVuYW50", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0c1af5f7-562a-4b94-a8f3-a72336d7a296" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132558183756113295" + ], + "x-ms-request-id": [ + "43903a3f-a8e7-47ac-a429-83e3f436b2e3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "7d825ebc-d4d7-4853-91ac-9a06676d3711" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210208T190000Z:7d825ebc-d4d7-4853-91ac-9a06676d3711" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 08 Feb 2021 19:00:00 GMT" + ], + "Content-Length": [ + "352" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"identifier\": {\r\n \"uniqueId\": \"/SharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/Images/jmaesscc/Versions/1.0.0\"\r\n },\r\n \"properties\": {\r\n \"publishedDate\": \"2021-01-27T20:14:24.4218083-08:00\"\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"1.0.0\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/images/jmaesscc/versions?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlYvaW1hZ2VzL2ptYWVzc2NjL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9ad9b503-5806-4397-b83e-fcee84fa2aea" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132558183756113295" + ], + "x-ms-request-id": [ + "6b6df937-def2-4c9a-89bb-9ee6f3b0cad3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "bf8894d5-943c-4eff-ad33-6bbef041bab6" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210208T190000Z:bf8894d5-943c-4eff-ad33-6bbef041bab6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 08 Feb 2021 19:00:00 GMT" + ], + "Content-Length": [ + "352" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"identifier\": {\r\n \"uniqueId\": \"/SharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/Images/jmaesscc/Versions/1.0.0\"\r\n },\r\n \"properties\": {\r\n \"publishedDate\": \"2021-01-27T20:14:24.4218083-08:00\"\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"1.0.0\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "97f78232-382b-46a7-8a72-964d692c4f3f" + } +} \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/SharedGalleryTests/SharedGalleryImage_GetAndList_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/SharedGalleryTests/SharedGalleryImage_GetAndList_Tests.json new file mode 100644 index 000000000000..2c516bed1e9e --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/SharedGalleryTests/SharedGalleryImage_GetAndList_Tests.json @@ -0,0 +1,276 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/images/jmaesscc?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlYvaW1hZ2VzL2ptYWVzc2NjP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "11200ebb-e800-49c2-8c6a-67189e594429" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132558183756113295" + ], + "x-ms-request-id": [ + "4afcf93c-8fe5-47a0-b3b1-95eef5f6402f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "a9714df4-9391-4c93-ad21-5019579283ff" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210208T185953Z:a9714df4-9391-4c93-ad21-5019579283ff" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 08 Feb 2021 18:59:53 GMT" + ], + "Content-Length": [ + "448" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"identifier\": {\r\n \"uniqueId\": \"/SharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/Images/jmaesscc\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"GalleryPub\",\r\n \"offer\": \"GalleryOffer\",\r\n \"sku\": \"GallerySku\"\r\n },\r\n \"recommended\": {},\r\n \"hyperVGeneration\": \"V1\"\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"jmaesscc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/images?api-version=2020-09-30&sharedTo=tenant", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlYvaW1hZ2VzP2FwaS12ZXJzaW9uPTIwMjAtMDktMzAmc2hhcmVkVG89dGVuYW50", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2b32e804-b423-4051-b793-4680a9984331" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132558183756113295" + ], + "x-ms-request-id": [ + "cacf2eff-2372-4b51-8018-3942eaf322e9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "af163c97-9aba-4532-b260-3d9a91e05cce" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210208T185954Z:af163c97-9aba-4532-b260-3d9a91e05cce" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 08 Feb 2021 18:59:53 GMT" + ], + "Content-Length": [ + "545" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"identifier\": {\r\n \"uniqueId\": \"/SharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/Images/jmaesscc\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"GalleryPub\",\r\n \"offer\": \"GalleryOffer\",\r\n \"sku\": \"GallerySku\"\r\n },\r\n \"recommended\": {},\r\n \"hyperVGeneration\": \"V1\"\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"jmaesscc\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/images?api-version=2020-09-30&sharedTo=tenant", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlYvaW1hZ2VzP2FwaS12ZXJzaW9uPTIwMjAtMDktMzAmc2hhcmVkVG89dGVuYW50", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e8468d16-da1a-4c1f-869c-4e64816804af" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132558183756113295" + ], + "x-ms-request-id": [ + "4df2d3fa-b1a7-4151-bc4a-9f5259206194" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "4e9d1274-60c8-413c-ab9e-812b6d954ad8" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210208T185954Z:4e9d1274-60c8-413c-ab9e-812b6d954ad8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 08 Feb 2021 18:59:53 GMT" + ], + "Content-Length": [ + "545" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"identifier\": {\r\n \"uniqueId\": \"/SharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/Images/jmaesscc\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"GalleryPub\",\r\n \"offer\": \"GalleryOffer\",\r\n \"sku\": \"GallerySku\"\r\n },\r\n \"recommended\": {},\r\n \"hyperVGeneration\": \"V1\"\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"jmaesscc\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/images?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlYvaW1hZ2VzP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "210e3965-0922-4e54-8324-5a8e06e3a0b0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132558183756113295" + ], + "x-ms-request-id": [ + "70a1fafd-d7d4-41a8-b9db-bcfaa271fa06" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "db1dd5ca-5acc-42c1-8065-13c116650d10" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210208T185954Z:db1dd5ca-5acc-42c1-8065-13c116650d10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 08 Feb 2021 18:59:53 GMT" + ], + "Content-Length": [ + "545" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"identifier\": {\r\n \"uniqueId\": \"/SharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/Images/jmaesscc\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"GalleryPub\",\r\n \"offer\": \"GalleryOffer\",\r\n \"sku\": \"GallerySku\"\r\n },\r\n \"recommended\": {},\r\n \"hyperVGeneration\": \"V1\"\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"jmaesscc\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "97f78232-382b-46a7-8a72-964d692c4f3f" + } +} \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/SharedGalleryTests/SharedGallery_GetAndList_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/SharedGalleryTests/SharedGallery_GetAndList_Tests.json new file mode 100644 index 000000000000..b82ce1498fc4 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/SharedGalleryTests/SharedGallery_GetAndList_Tests.json @@ -0,0 +1,276 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "59b73000-4bc9-4b96-a329-37e9ecdd4e75" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132558183756113295" + ], + "x-ms-request-id": [ + "68af347c-916d-4699-80fd-0c2a96db2b9b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "5871fc9e-941d-4ad4-9b15-fe4261cd8473" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210208T185924Z:5871fc9e-941d-4ad4-9b15-fe4261cd8473" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 08 Feb 2021 18:59:24 GMT" + ], + "Content-Length": [ + "226" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"identifier\": {\r\n \"uniqueId\": \"/SharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV\"\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries?api-version=2020-09-30&sharedTo=tenant", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzP2FwaS12ZXJzaW9uPTIwMjAtMDktMzAmc2hhcmVkVG89dGVuYW50", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "13f66575-865d-4afd-8c8e-1adf65bca6e9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "74657d10-ae84-4ba1-9987-bf2190e52342_132538767315073200" + ], + "x-ms-request-id": [ + "b5a22e59-c374-4ffe-b43c-ea208df974cd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "5bd15b66-31bd-49a2-b893-65ccbaeb12e9" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210208T185925Z:5bd15b66-31bd-49a2-b893-65ccbaeb12e9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 08 Feb 2021 18:59:24 GMT" + ], + "Content-Length": [ + "279" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"identifier\": {\r\n \"uniqueId\": \"/SharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV\"\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries?api-version=2020-09-30&sharedTo=tenant", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzP2FwaS12ZXJzaW9uPTIwMjAtMDktMzAmc2hhcmVkVG89dGVuYW50", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2d84d49e-052a-4ac1-8173-7db6c2e856ca" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "74657d10-ae84-4ba1-9987-bf2190e52342_132538767315073200" + ], + "x-ms-request-id": [ + "680cdb73-1a2b-43f5-8cc2-7100fbb220b8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "8c19ce40-a399-48a0-98d5-eb5da41808d0" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210208T185925Z:8c19ce40-a399-48a0-98d5-eb5da41808d0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 08 Feb 2021 18:59:24 GMT" + ], + "Content-Length": [ + "279" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"identifier\": {\r\n \"uniqueId\": \"/SharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV\"\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3b41e838-2bbd-40b2-a802-3f125b1bca46" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "74657d10-ae84-4ba1-9987-bf2190e52342_132538767315073200" + ], + "x-ms-request-id": [ + "44ac57aa-4ff9-422f-91ae-f4809d03bdeb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "aadfa16b-9e8f-4759-8274-a333440de5fe" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210208T185925Z:aadfa16b-9e8f-4759-8274-a333440de5fe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 08 Feb 2021 18:59:24 GMT" + ], + "Content-Length": [ + "279" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"identifier\": {\r\n \"uniqueId\": \"/SharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV\"\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "97f78232-382b-46a7-8a72-964d692c4f3f" + } +} \ No newline at end of file From 051be5469e1ceece14c9bd386de7a54607ce05c2 Mon Sep 17 00:00:00 2001 From: Kang Sun Date: Thu, 11 Mar 2021 17:18:51 -0800 Subject: [PATCH 12/27] generate files again --- .../Generated/AvailabilitySetsOperations.cs | 14 +- .../CloudServiceRoleInstancesOperations.cs | 1855 ---------- ...erviceRoleInstancesOperationsExtensions.cs | 579 --- .../Generated/CloudServiceRolesOperations.cs | 624 ---- .../CloudServiceRolesOperationsExtensions.cs | 145 - .../src/Generated/CloudServicesOperations.cs | 3122 ----------------- .../CloudServicesOperationsExtensions.cs | 1047 ------ .../CloudServicesUpdateDomainOperations.cs | 839 ----- ...ervicesUpdateDomainOperationsExtensions.cs | 247 -- .../src/Generated/ComputeManagementClient.cs | 48 +- .../ContainerServicesOperationsExtensions.cs | 479 --- .../DedicatedHostGroupsOperations.cs | 12 +- .../src/Generated/DedicatedHostsOperations.cs | 10 +- .../ICloudServiceRoleInstancesOperations.cs | 362 -- .../Generated/ICloudServiceRolesOperations.cs | 102 - .../src/Generated/ICloudServicesOperations.cs | 638 ---- .../ICloudServicesUpdateDomainOperations.cs | 160 - .../src/Generated/IComputeManagementClient.cs | 40 +- .../Generated/IContainerServicesOperations.cs | 298 -- ...IVirtualMachineImagesEdgeZoneOperations.cs | 197 ++ .../IVirtualMachineScaleSetVMsOperations.cs | 12 +- .../IVirtualMachineScaleSetsOperations.cs | 71 +- .../Generated/IVirtualMachinesOperations.cs | 56 + .../src/Generated/ImagesOperations.cs | 12 +- .../src/Generated/LogAnalyticsOperations.cs | 4 +- .../Generated/Models/AvailablePatchSummary.cs | 13 +- .../src/Generated/Models/CloudService.cs | 106 - .../Models/CloudServiceExtensionProfile.cs | 56 - .../Models/CloudServiceExtensionProperties.cs | 179 - .../Models/CloudServiceInstanceView.cs | 67 - .../Models/CloudServiceNetworkProfile.cs | 61 - .../Generated/Models/CloudServiceOsProfile.cs | 55 - .../Models/CloudServiceProperties.cs | 157 - .../src/Generated/Models/CloudServiceRole.cs | 87 - .../Models/CloudServiceRoleProfile.cs | 53 - .../CloudServiceRoleProfileProperties.cs | 59 - .../Models/CloudServiceRoleProperties.cs | 50 - .../Generated/Models/CloudServiceRoleSku.cs | 78 - .../Generated/Models/CloudServiceUpdate.cs | 50 - .../CloudServiceVaultAndSecretReference.cs | 54 - .../Models/CloudServiceVaultCertificate.cs | 56 - .../Models/CloudServiceVaultSecretGroup.cs | 67 - .../src/Generated/Models/ContainerService.cs | 192 - .../ContainerServiceAgentPoolProfile.cs | 149 - .../Models/ContainerServiceCustomProfile.cs | 68 - .../ContainerServiceDiagnosticsProfile.cs | 69 - .../Models/ContainerServiceLinuxProfile.cs | 91 - .../Models/ContainerServiceMasterProfile.cs | 87 - .../ContainerServiceOrchestratorProfile.cs | 67 - .../ContainerServiceOrchestratorTypes.cs | 72 - ...ContainerServiceServicePrincipalProfile.cs | 82 - .../ContainerServiceSshConfiguration.cs | 81 - .../Models/ContainerServiceSshPublicKey.cs | 71 - .../Models/ContainerServiceVMDiagnostics.cs | 74 - .../Models/ContainerServiceVMSizeTypes.cs | 67 - .../Models/ContainerServiceWindowsProfile.cs | 95 - .../src/Generated/Models/DataDisk.cs | 36 +- ...pgradeMode.cs => DiskDetachOptionTypes.cs} | 8 +- .../src/Generated/Models/Extension.cs | 57 - .../Models/GalleryArtifactVersionSource.cs | 12 +- .../Models/GalleryDiskImageSource.cs | 57 - .../src/Generated/Models/GalleryImage.cs | 18 +- .../Generated/Models/GalleryImageUpdate.cs | 18 +- .../src/Generated/Models/HardwareProfile.cs | 108 +- .../src/Generated/Models/Image.cs | 11 +- .../src/Generated/Models/InstanceSku.cs | 57 - .../Models/InstanceViewStatusesSummary.cs | 53 - .../Models/LastPatchInstallationSummary.cs | 48 +- .../Generated/Models/LinuxConfiguration.cs | 12 +- .../src/Generated/Models/LinuxParameters.cs | 85 + .../Generated/Models/LinuxPatchSettings.cs | 66 + .../Generated/Models/LinuxVMGuestPatchMode.cs | 22 + .../LoadBalancerConfigurationProperties.cs | 52 - .../LoadBalancerFrontendIPConfiguration.cs | 54 - ...lancerFrontendIPConfigurationProperties.cs | 67 - .../src/Generated/Models/OrchestrationMode.cs | 22 + .../Generated/Models/PatchAssessmentState.cs | 6 +- .../Models/PatchInstallationDetail.cs | 104 + .../Models/PatchInstallationState.cs | 26 + .../Generated/Models/PatchOperationStatus.cs | 1 + .../src/Generated/Models/PatchSettings.cs | 27 +- .../Models/ResourceInstanceViewStatus.cs | 88 - .../src/Generated/Models/RoleInstance.cs | 94 - .../Models/RoleInstanceInstanceView.cs | 83 - .../Models/RoleInstanceNetworkProfile.cs | 56 - .../Models/RoleInstanceProperties.cs | 52 - .../src/Generated/Models/RoleInstances.cs | 70 - .../Generated/Models/RollingUpgradePolicy.cs | 25 +- .../src/Generated/Models/SecurityProfile.cs | 30 +- .../src/Generated/Models/SecurityTypes.cs | 54 + .../src/Generated/Models/SshPublicKey.cs | 4 +- .../src/Generated/Models/StatusCodeCount.cs | 57 - .../src/Generated/Models/UefiSettings.cs | 69 + .../src/Generated/Models/UpdateDomain.cs | 59 - .../Models/VMGuestPatchClassificationLinux.cs | 23 + .../VMGuestPatchClassificationWindows.cs | 28 + ...avior.cs => VMGuestPatchRebootBehavior.cs} | 5 +- .../Models/VMGuestPatchRebootSetting.cs | 23 + ...tStatus.cs => VMGuestPatchRebootStatus.cs} | 5 +- .../src/Generated/Models/VirtualMachine.cs | 42 +- .../VirtualMachineAssessPatchesResult.cs | 25 +- .../Generated/Models/VirtualMachineImage.cs | 12 +- ...ation.cs => VirtualMachineImageFeature.cs} | 25 +- .../Models/VirtualMachineImageResource.cs | 11 +- .../VirtualMachineInstallPatchesParameters.cs | 107 + .../VirtualMachineInstallPatchesResult.cs | 179 + .../Models/VirtualMachineInstanceView.cs | 7 +- .../Models/VirtualMachinePatchStatus.cs | 13 +- .../Models/VirtualMachineScaleSet.cs | 23 +- .../VirtualMachineSoftwarePatchProperties.cs | 24 +- .../Generated/Models/VirtualMachineUpdate.cs | 33 +- .../Generated/Models/WindowsConfiguration.cs | 7 +- .../src/Generated/Models/WindowsParameters.cs | 97 + ...atchMode.cs => WindowsVMGuestPatchMode.cs} | 4 +- .../src/Generated/Operations.cs | 2 +- .../ProximityPlacementGroupsOperations.cs | 12 +- .../SdkInfo_ComputeManagementClient.cs | 72 +- .../src/Generated/SshPublicKeysOperations.cs | 14 +- .../src/Generated/UsageOperations.cs | 2 +- ...VirtualMachineExtensionImagesOperations.cs | 6 +- .../VirtualMachineExtensionsOperations.cs | 10 +- ...VirtualMachineImagesEdgeZoneOperations.cs} | 789 ++--- ...chineImagesEdgeZoneOperationsExtensions.cs | 315 ++ .../VirtualMachineImagesOperations.cs | 10 +- .../VirtualMachineRunCommandsOperations.cs | 14 +- ...tualMachineScaleSetExtensionsOperations.cs | 10 +- ...achineScaleSetRollingUpgradesOperations.cs | 8 +- ...alMachineScaleSetVMExtensionsOperations.cs | 10 +- ...lMachineScaleSetVMRunCommandsOperations.cs | 10 +- .../VirtualMachineScaleSetVMsOperations.cs | 51 +- ...lMachineScaleSetVMsOperationsExtensions.cs | 32 +- .../VirtualMachineScaleSetsOperations.cs | 447 ++- ...ualMachineScaleSetsOperationsExtensions.cs | 132 +- .../VirtualMachineSizesOperations.cs | 2 +- .../Generated/VirtualMachinesOperations.cs | 305 +- .../VirtualMachinesOperationsExtensions.cs | 92 + 136 files changed, 3269 insertions(+), 15023 deletions(-) delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRoleInstancesOperations.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRoleInstancesOperationsExtensions.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRolesOperations.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRolesOperationsExtensions.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesOperations.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesOperationsExtensions.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesUpdateDomainOperations.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesUpdateDomainOperationsExtensions.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ContainerServicesOperationsExtensions.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServiceRoleInstancesOperations.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServiceRolesOperations.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServicesOperations.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServicesUpdateDomainOperations.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IContainerServicesOperations.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachineImagesEdgeZoneOperations.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudService.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceExtensionProfile.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceExtensionProperties.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceInstanceView.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceNetworkProfile.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceOsProfile.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceProperties.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRole.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleProfile.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleProfileProperties.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleProperties.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleSku.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceUpdate.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceVaultAndSecretReference.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceVaultCertificate.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceVaultSecretGroup.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerService.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceAgentPoolProfile.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceCustomProfile.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceDiagnosticsProfile.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceLinuxProfile.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceMasterProfile.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceOrchestratorProfile.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceOrchestratorTypes.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceServicePrincipalProfile.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceSshConfiguration.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceSshPublicKey.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceVMDiagnostics.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceVMSizeTypes.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceWindowsProfile.cs rename sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/{CloudServiceUpgradeMode.cs => DiskDetachOptionTypes.cs} (64%) delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/Extension.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryDiskImageSource.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/InstanceSku.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/InstanceViewStatusesSummary.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LinuxParameters.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LinuxPatchSettings.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LinuxVMGuestPatchMode.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerConfigurationProperties.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerFrontendIPConfiguration.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerFrontendIPConfigurationProperties.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/OrchestrationMode.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PatchInstallationDetail.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PatchInstallationState.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ResourceInstanceViewStatus.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstance.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstanceInstanceView.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstanceNetworkProfile.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstanceProperties.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstances.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SecurityTypes.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/StatusCodeCount.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/UefiSettings.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/UpdateDomain.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VMGuestPatchClassificationLinux.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VMGuestPatchClassificationWindows.cs rename sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/{SoftwareUpdateRebootBehavior.cs => VMGuestPatchRebootBehavior.cs} (80%) create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VMGuestPatchRebootSetting.cs rename sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/{RebootStatus.cs => VMGuestPatchRebootStatus.cs} (82%) rename sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/{LoadBalancerConfiguration.cs => VirtualMachineImageFeature.cs} (56%) create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineInstallPatchesParameters.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineInstallPatchesResult.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/WindowsParameters.cs rename sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/{InGuestPatchMode.cs => WindowsVMGuestPatchMode.cs} (86%) rename sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/{ContainerServicesOperations.cs => VirtualMachineImagesEdgeZoneOperations.cs} (59%) create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineImagesEdgeZoneOperationsExtensions.cs diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/AvailabilitySetsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/AvailabilitySetsOperations.cs index f2701a2ef069..a68b33a6ee12 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/AvailabilitySetsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/AvailabilitySetsOperations.cs @@ -105,7 +105,7 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -313,7 +313,7 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -511,7 +511,7 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -687,7 +687,7 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -871,7 +871,7 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1059,7 +1059,7 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1252,7 +1252,7 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRoleInstancesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRoleInstancesOperations.cs deleted file mode 100644 index f5b2de88542b..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRoleInstancesOperations.cs +++ /dev/null @@ -1,1855 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.IO; - using System.Linq; - using System.Net; - using System.Net.Http; - using System.Threading; - using System.Threading.Tasks; - - /// - /// CloudServiceRoleInstancesOperations operations. - /// - internal partial class CloudServiceRoleInstancesOperations : IServiceOperations, ICloudServiceRoleInstancesOperations - { - /// - /// Initializes a new instance of the CloudServiceRoleInstancesOperations class. - /// - /// - /// Reference to the service client. - /// - /// - /// Thrown when a required parameter is null - /// - internal CloudServiceRoleInstancesOperations(ComputeManagementClient client) - { - if (client == null) - { - throw new System.ArgumentNullException("client"); - } - Client = client; - } - - /// - /// Gets a reference to the ComputeManagementClient - /// - public ComputeManagementClient Client { get; private set; } - - /// - /// Deletes a role instance from a cloud service. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task DeleteWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Gets a role instance from a cloud service. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - /// - /// The expand expression to apply to the operation. Possible values include: - /// 'instanceView' - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task> GetWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, InstanceViewTypes? expand = default(InstanceViewTypes?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (roleInstanceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "roleInstanceName"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2020-10-01-preview"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("roleInstanceName", roleInstanceName); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("expand", expand); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); - } - // Construct URL - var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}").ToString(); - _url = _url.Replace("{roleInstanceName}", System.Uri.EscapeDataString(roleInstanceName)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); - } - if (expand != null) - { - _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(expand, Client.SerializationSettings).Trim('"')))); - } - 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; - } - - /// - /// Retrieves information about the run-time state of a role instance in a - /// cloud service. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - /// - /// 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> GetInstanceViewWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (roleInstanceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "roleInstanceName"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2020-10-01-preview"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("roleInstanceName", roleInstanceName); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetInstanceView", 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/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/instanceView").ToString(); - _url = _url.Replace("{roleInstanceName}", System.Uri.EscapeDataString(roleInstanceName)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Gets the list of all role instances in a cloud service. Use nextLink - /// property in the response to get the next page of role instances. Do this - /// till nextLink is null to fetch all the role instances. - /// - /// - /// - /// - /// - /// - /// The expand expression to apply to the operation. Possible values include: - /// 'instanceView' - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, InstanceViewTypes? expand = default(InstanceViewTypes?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2020-10-01-preview"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("expand", expand); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); - } - // Construct URL - var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); - } - if (expand != null) - { - _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(expand, Client.SerializationSettings).Trim('"')))); - } - 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; - } - - /// - /// The Reboot Role Instance asynchronous operation requests a reboot of a role - /// instance in the cloud service. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task RestartWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginRestartWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// The Reimage Role Instance asynchronous operation reinstalls the operating - /// system on instances of web roles or worker roles. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task ReimageWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginReimageWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// The Rebuild Role Instance asynchronous operation reinstalls the operating - /// system on instances of web roles or worker roles and initializes the - /// storage resources that are used by them. If you do not want to initialize - /// storage resources, you can use Reimage Role Instance. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task RebuildWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginRebuildWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Gets a remote desktop file for a role instance in a cloud service. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - /// - /// 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> GetRemoteDesktopFileWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (roleInstanceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "roleInstanceName"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2020-10-01-preview"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("roleInstanceName", roleInstanceName); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetRemoteDesktopFile", 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/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/remoteDesktopFile").ToString(); - _url = _url.Replace("{roleInstanceName}", System.Uri.EscapeDataString(roleInstanceName)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, 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) - { - _result.Body = await _httpResponse.Content.ReadAsStreamAsync().ConfigureAwait(false); - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Deletes a role instance from a cloud service. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task BeginDeleteWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (roleInstanceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "roleInstanceName"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2020-10-01-preview"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("roleInstanceName", roleInstanceName); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); - } - // Construct URL - var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}").ToString(); - _url = _url.Replace("{roleInstanceName}", System.Uri.EscapeDataString(roleInstanceName)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 202 && (int)_statusCode != 204) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// The Reboot Role Instance asynchronous operation requests a reboot of a role - /// instance in the cloud service. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task BeginRestartWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (roleInstanceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "roleInstanceName"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2020-10-01-preview"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("roleInstanceName", roleInstanceName); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginRestart", 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/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/restart").ToString(); - _url = _url.Replace("{roleInstanceName}", System.Uri.EscapeDataString(roleInstanceName)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 202) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// The Reimage Role Instance asynchronous operation reinstalls the operating - /// system on instances of web roles or worker roles. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task BeginReimageWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (roleInstanceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "roleInstanceName"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2020-10-01-preview"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("roleInstanceName", roleInstanceName); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginReimage", 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/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/reimage").ToString(); - _url = _url.Replace("{roleInstanceName}", System.Uri.EscapeDataString(roleInstanceName)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 202) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// The Rebuild Role Instance asynchronous operation reinstalls the operating - /// system on instances of web roles or worker roles and initializes the - /// storage resources that are used by them. If you do not want to initialize - /// storage resources, you can use Reimage Role Instance. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task BeginRebuildWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (roleInstanceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "roleInstanceName"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2020-10-01-preview"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("roleInstanceName", roleInstanceName); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginRebuild", 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/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/rebuild").ToString(); - _url = _url.Replace("{roleInstanceName}", System.Uri.EscapeDataString(roleInstanceName)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 202) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Gets the list of all role instances in a cloud service. Use nextLink - /// property in the response to get the next page of role instances. Do this - /// till nextLink is null to fetch all the role instances. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (nextPageLink == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("nextPageLink", nextPageLink); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); - } - // Construct URL - string _url = "{nextLink}"; - _url = _url.Replace("{nextLink}", nextPageLink); - List _queryParameters = new List(); - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse>(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRoleInstancesOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRoleInstancesOperationsExtensions.cs deleted file mode 100644 index b629a041cd9b..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRoleInstancesOperationsExtensions.cs +++ /dev/null @@ -1,579 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using System.IO; - using System.Threading; - using System.Threading.Tasks; - - /// - /// Extension methods for CloudServiceRoleInstancesOperations. - /// - public static partial class CloudServiceRoleInstancesOperationsExtensions - { - /// - /// Deletes a role instance from a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - public static void Delete(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName) - { - operations.DeleteAsync(roleInstanceName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); - } - - /// - /// Deletes a role instance from a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - /// - /// The cancellation token. - /// - public static async Task DeleteAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.DeleteWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Gets a role instance from a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - /// - /// The expand expression to apply to the operation. Possible values include: - /// 'instanceView' - /// - public static RoleInstance Get(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, InstanceViewTypes? expand = default(InstanceViewTypes?)) - { - return operations.GetAsync(roleInstanceName, resourceGroupName, cloudServiceName, expand).GetAwaiter().GetResult(); - } - - /// - /// Gets a role instance from a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - /// - /// The expand expression to apply to the operation. Possible values include: - /// 'instanceView' - /// - /// - /// The cancellation token. - /// - public static async Task GetAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, InstanceViewTypes? expand = default(InstanceViewTypes?), CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, expand, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Retrieves information about the run-time state of a role instance in a - /// cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - public static RoleInstanceInstanceView GetInstanceView(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName) - { - return operations.GetInstanceViewAsync(roleInstanceName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); - } - - /// - /// Retrieves information about the run-time state of a role instance in a - /// cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - /// - /// The cancellation token. - /// - public static async Task GetInstanceViewAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetInstanceViewWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Gets the list of all role instances in a cloud service. Use nextLink - /// property in the response to get the next page of role instances. Do this - /// till nextLink is null to fetch all the role instances. - /// - /// - /// The operations group for this extension method. - /// - /// - /// - /// - /// - /// - /// The expand expression to apply to the operation. Possible values include: - /// 'instanceView' - /// - public static IPage List(this ICloudServiceRoleInstancesOperations operations, string resourceGroupName, string cloudServiceName, InstanceViewTypes? expand = default(InstanceViewTypes?)) - { - return operations.ListAsync(resourceGroupName, cloudServiceName, expand).GetAwaiter().GetResult(); - } - - /// - /// Gets the list of all role instances in a cloud service. Use nextLink - /// property in the response to get the next page of role instances. Do this - /// till nextLink is null to fetch all the role instances. - /// - /// - /// The operations group for this extension method. - /// - /// - /// - /// - /// - /// - /// The expand expression to apply to the operation. Possible values include: - /// 'instanceView' - /// - /// - /// The cancellation token. - /// - public static async Task> ListAsync(this ICloudServiceRoleInstancesOperations operations, string resourceGroupName, string cloudServiceName, InstanceViewTypes? expand = default(InstanceViewTypes?), CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, cloudServiceName, expand, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// The Reboot Role Instance asynchronous operation requests a reboot of a role - /// instance in the cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - public static void Restart(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName) - { - operations.RestartAsync(roleInstanceName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); - } - - /// - /// The Reboot Role Instance asynchronous operation requests a reboot of a role - /// instance in the cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - /// - /// The cancellation token. - /// - public static async Task RestartAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.RestartWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// The Reimage Role Instance asynchronous operation reinstalls the operating - /// system on instances of web roles or worker roles. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - public static void Reimage(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName) - { - operations.ReimageAsync(roleInstanceName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); - } - - /// - /// The Reimage Role Instance asynchronous operation reinstalls the operating - /// system on instances of web roles or worker roles. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - /// - /// The cancellation token. - /// - public static async Task ReimageAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.ReimageWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// The Rebuild Role Instance asynchronous operation reinstalls the operating - /// system on instances of web roles or worker roles and initializes the - /// storage resources that are used by them. If you do not want to initialize - /// storage resources, you can use Reimage Role Instance. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - public static void Rebuild(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName) - { - operations.RebuildAsync(roleInstanceName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); - } - - /// - /// The Rebuild Role Instance asynchronous operation reinstalls the operating - /// system on instances of web roles or worker roles and initializes the - /// storage resources that are used by them. If you do not want to initialize - /// storage resources, you can use Reimage Role Instance. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - /// - /// The cancellation token. - /// - public static async Task RebuildAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.RebuildWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Gets a remote desktop file for a role instance in a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - public static Stream GetRemoteDesktopFile(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName) - { - return operations.GetRemoteDesktopFileAsync(roleInstanceName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); - } - - /// - /// Gets a remote desktop file for a role instance in a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - /// - /// The cancellation token. - /// - public static async Task GetRemoteDesktopFileAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - var _result = await operations.GetRemoteDesktopFileWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false); - _result.Request.Dispose(); - return _result.Body; - } - - /// - /// Deletes a role instance from a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - public static void BeginDelete(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName) - { - operations.BeginDeleteAsync(roleInstanceName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); - } - - /// - /// Deletes a role instance from a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - /// - /// The cancellation token. - /// - public static async Task BeginDeleteAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.BeginDeleteWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// The Reboot Role Instance asynchronous operation requests a reboot of a role - /// instance in the cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - public static void BeginRestart(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName) - { - operations.BeginRestartAsync(roleInstanceName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); - } - - /// - /// The Reboot Role Instance asynchronous operation requests a reboot of a role - /// instance in the cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - /// - /// The cancellation token. - /// - public static async Task BeginRestartAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.BeginRestartWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// The Reimage Role Instance asynchronous operation reinstalls the operating - /// system on instances of web roles or worker roles. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - public static void BeginReimage(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName) - { - operations.BeginReimageAsync(roleInstanceName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); - } - - /// - /// The Reimage Role Instance asynchronous operation reinstalls the operating - /// system on instances of web roles or worker roles. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - /// - /// The cancellation token. - /// - public static async Task BeginReimageAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.BeginReimageWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// The Rebuild Role Instance asynchronous operation reinstalls the operating - /// system on instances of web roles or worker roles and initializes the - /// storage resources that are used by them. If you do not want to initialize - /// storage resources, you can use Reimage Role Instance. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - public static void BeginRebuild(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName) - { - operations.BeginRebuildAsync(roleInstanceName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); - } - - /// - /// The Rebuild Role Instance asynchronous operation reinstalls the operating - /// system on instances of web roles or worker roles and initializes the - /// storage resources that are used by them. If you do not want to initialize - /// storage resources, you can use Reimage Role Instance. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - /// - /// The cancellation token. - /// - public static async Task BeginRebuildAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.BeginRebuildWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Gets the list of all role instances in a cloud service. Use nextLink - /// property in the response to get the next page of role instances. Do this - /// till nextLink is null to fetch all the role instances. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - public static IPage ListNext(this ICloudServiceRoleInstancesOperations operations, string nextPageLink) - { - return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); - } - - /// - /// Gets the list of all role instances in a cloud service. Use nextLink - /// property in the response to get the next page of role instances. Do this - /// till nextLink is null to fetch all the role instances. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The cancellation token. - /// - public static async Task> ListNextAsync(this ICloudServiceRoleInstancesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRolesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRolesOperations.cs deleted file mode 100644 index 4f89d31c6875..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRolesOperations.cs +++ /dev/null @@ -1,624 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - using System.Net; - using System.Net.Http; - using System.Threading; - using System.Threading.Tasks; - - /// - /// CloudServiceRolesOperations operations. - /// - internal partial class CloudServiceRolesOperations : IServiceOperations, ICloudServiceRolesOperations - { - /// - /// Initializes a new instance of the CloudServiceRolesOperations class. - /// - /// - /// Reference to the service client. - /// - /// - /// Thrown when a required parameter is null - /// - internal CloudServiceRolesOperations(ComputeManagementClient client) - { - if (client == null) - { - throw new System.ArgumentNullException("client"); - } - Client = client; - } - - /// - /// Gets a reference to the ComputeManagementClient - /// - public ComputeManagementClient Client { get; private set; } - - /// - /// Gets a role from a cloud service. - /// - /// - /// Name of the role. - /// - /// - /// - /// - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task> GetWithHttpMessagesAsync(string roleName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (roleName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "roleName"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2020-10-01-preview"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("roleName", roleName); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); - } - // Construct URL - var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roles/{roleName}").ToString(); - _url = _url.Replace("{roleName}", System.Uri.EscapeDataString(roleName)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Gets a list of all roles in a cloud service. Use nextLink property in the - /// response to get the next page of roles. Do this till nextLink is null to - /// fetch all the roles. - /// - /// - /// - /// - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2020-10-01-preview"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); - } - // Construct URL - var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roles").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse>(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Gets a list of all roles in a cloud service. Use nextLink property in the - /// response to get the next page of roles. Do this till nextLink is null to - /// fetch all the roles. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (nextPageLink == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("nextPageLink", nextPageLink); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); - } - // Construct URL - string _url = "{nextLink}"; - _url = _url.Replace("{nextLink}", nextPageLink); - List _queryParameters = new List(); - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse>(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRolesOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRolesOperationsExtensions.cs deleted file mode 100644 index 5e85be38ce4a..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRolesOperationsExtensions.cs +++ /dev/null @@ -1,145 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using System.Threading; - using System.Threading.Tasks; - - /// - /// Extension methods for CloudServiceRolesOperations. - /// - public static partial class CloudServiceRolesOperationsExtensions - { - /// - /// Gets a role from a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role. - /// - /// - /// - /// - /// - public static CloudServiceRole Get(this ICloudServiceRolesOperations operations, string roleName, string resourceGroupName, string cloudServiceName) - { - return operations.GetAsync(roleName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); - } - - /// - /// Gets a role from a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the role. - /// - /// - /// - /// - /// - /// - /// The cancellation token. - /// - public static async Task GetAsync(this ICloudServiceRolesOperations operations, string roleName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetWithHttpMessagesAsync(roleName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Gets a list of all roles in a cloud service. Use nextLink property in the - /// response to get the next page of roles. Do this till nextLink is null to - /// fetch all the roles. - /// - /// - /// The operations group for this extension method. - /// - /// - /// - /// - /// - public static IPage List(this ICloudServiceRolesOperations operations, string resourceGroupName, string cloudServiceName) - { - return operations.ListAsync(resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); - } - - /// - /// Gets a list of all roles in a cloud service. Use nextLink property in the - /// response to get the next page of roles. Do this till nextLink is null to - /// fetch all the roles. - /// - /// - /// The operations group for this extension method. - /// - /// - /// - /// - /// - /// - /// The cancellation token. - /// - public static async Task> ListAsync(this ICloudServiceRolesOperations operations, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Gets a list of all roles in a cloud service. Use nextLink property in the - /// response to get the next page of roles. Do this till nextLink is null to - /// fetch all the roles. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - public static IPage ListNext(this ICloudServiceRolesOperations operations, string nextPageLink) - { - return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); - } - - /// - /// Gets a list of all roles in a cloud service. Use nextLink property in the - /// response to get the next page of roles. Do this till nextLink is null to - /// fetch all the roles. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The cancellation token. - /// - public static async Task> ListNextAsync(this ICloudServiceRolesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesOperations.cs deleted file mode 100644 index cfad17514e22..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesOperations.cs +++ /dev/null @@ -1,3122 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - using System.Net; - using System.Net.Http; - using System.Threading; - using System.Threading.Tasks; - - /// - /// CloudServicesOperations operations. - /// - internal partial class CloudServicesOperations : IServiceOperations, ICloudServicesOperations - { - /// - /// Initializes a new instance of the CloudServicesOperations class. - /// - /// - /// Reference to the service client. - /// - /// - /// Thrown when a required parameter is null - /// - internal CloudServicesOperations(ComputeManagementClient client) - { - if (client == null) - { - throw new System.ArgumentNullException("client"); - } - Client = client; - } - - /// - /// Gets a reference to the ComputeManagementClient - /// - public ComputeManagementClient Client { get; private set; } - - /// - /// Create or update a cloud service. Please note some properties can be set - /// only during cloud service creation. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cloud service object. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, CloudService parameters = default(CloudService), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, cloudServiceName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Update a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Resource tags - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IDictionary tags = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, cloudServiceName, tags, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Deletes a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, cloudServiceName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Display information about a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2020-10-01-preview"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); - } - // Construct URL - var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Gets the status of a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// 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> GetInstanceViewWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2020-10-01-preview"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetInstanceView", 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/cloudServices/{cloudServiceName}/instanceView").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Gets a list of all cloud services in the subscription, regardless of the - /// associated resource group. Use nextLink property in the response to get the - /// next page of Cloud Services. Do this till nextLink is null to fetch all the - /// Cloud Services. - /// - /// - /// 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>> ListAllWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2020-10-01-preview"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListAll", tracingParameters); - } - // Construct URL - var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/cloudServices").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse>(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Gets a list of all cloud services under a resource group. Use nextLink - /// property in the response to get the next page of Cloud Services. Do this - /// till nextLink is null to fetch all the Cloud Services. - /// - /// - /// Name of the resource group. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2020-10-01-preview"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", 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/cloudServices").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse>(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Starts the cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task StartWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginStartWithHttpMessagesAsync(resourceGroupName, cloudServiceName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Power off the cloud service. Note that resources are still attached and you - /// are getting charged for the resources. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task PowerOffWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginPowerOffWithHttpMessagesAsync(resourceGroupName, cloudServiceName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Restarts one or more role instances in a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task RestartWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginRestartWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Reimage asynchronous operation reinstalls the operating system on instances - /// of web roles or worker roles. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task ReimageWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginReimageWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Rebuild Role Instances reinstalls the operating system on instances of web - /// roles or worker roles and initializes the storage resources that are used - /// by them. If you do not want to initialize storage resources, you can use - /// Reimage Role Instances. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task RebuildWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginRebuildWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Deletes role instances in a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task DeleteInstancesWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginDeleteInstancesWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Create or update a cloud service. Please note some properties can be set - /// only during cloud service creation. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cloud service object. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, CloudService parameters = default(CloudService), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (parameters != null) - { - parameters.Validate(); - } - string apiVersion = "2020-10-01-preview"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("parameters", parameters); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); - } - // Construct URL - var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 201) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - // Deserialize Response - if ((int)_statusCode == 201) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Update a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Resource tags - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IDictionary tags = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2020-10-01-preview"; - CloudServiceUpdate parameters = default(CloudServiceUpdate); - if (tags != null) - { - parameters = new CloudServiceUpdate(); - parameters.Tags = tags; - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("parameters", parameters); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", tracingParameters); - } - // Construct URL - var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PATCH"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Deletes a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2020-10-01-preview"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); - } - // Construct URL - var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 202 && (int)_statusCode != 204) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Starts the cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task BeginStartWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2020-10-01-preview"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginStart", 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/cloudServices/{cloudServiceName}/start").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 202) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Power off the cloud service. Note that resources are still attached and you - /// are getting charged for the resources. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task BeginPowerOffWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2020-10-01-preview"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginPowerOff", 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/cloudServices/{cloudServiceName}/poweroff").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 202) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Restarts one or more role instances in a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task BeginRestartWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (roleInstancesProperty == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "roleInstancesProperty"); - } - string apiVersion = "2020-10-01-preview"; - RoleInstances parameters = default(RoleInstances); - if (roleInstancesProperty != null) - { - parameters = new RoleInstances(); - parameters.RoleInstancesProperty = roleInstancesProperty; - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("parameters", parameters); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginRestart", 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/cloudServices/{cloudServiceName}/restart").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 202) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Reimage asynchronous operation reinstalls the operating system on instances - /// of web roles or worker roles. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task BeginReimageWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (roleInstancesProperty == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "roleInstancesProperty"); - } - string apiVersion = "2020-10-01-preview"; - RoleInstances parameters = default(RoleInstances); - if (roleInstancesProperty != null) - { - parameters = new RoleInstances(); - parameters.RoleInstancesProperty = roleInstancesProperty; - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("parameters", parameters); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginReimage", 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/cloudServices/{cloudServiceName}/reimage").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 202) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Rebuild Role Instances reinstalls the operating system on instances of web - /// roles or worker roles and initializes the storage resources that are used - /// by them. If you do not want to initialize storage resources, you can use - /// Reimage Role Instances. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task BeginRebuildWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (roleInstancesProperty == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "roleInstancesProperty"); - } - string apiVersion = "2020-10-01-preview"; - RoleInstances parameters = default(RoleInstances); - if (roleInstancesProperty != null) - { - parameters = new RoleInstances(); - parameters.RoleInstancesProperty = roleInstancesProperty; - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("parameters", parameters); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginRebuild", 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/cloudServices/{cloudServiceName}/rebuild").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 202) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Deletes role instances in a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task BeginDeleteInstancesWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (roleInstancesProperty == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "roleInstancesProperty"); - } - string apiVersion = "2020-10-01-preview"; - RoleInstances parameters = default(RoleInstances); - if (roleInstancesProperty != null) - { - parameters = new RoleInstances(); - parameters.RoleInstancesProperty = roleInstancesProperty; - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("parameters", parameters); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginDeleteInstances", 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/cloudServices/{cloudServiceName}/delete").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 202) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Gets a list of all cloud services in the subscription, regardless of the - /// associated resource group. Use nextLink property in the response to get the - /// next page of Cloud Services. Do this till nextLink is null to fetch all the - /// Cloud Services. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task>> ListAllNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (nextPageLink == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("nextPageLink", nextPageLink); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListAllNext", tracingParameters); - } - // Construct URL - string _url = "{nextLink}"; - _url = _url.Replace("{nextLink}", nextPageLink); - List _queryParameters = new List(); - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse>(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Gets a list of all cloud services under a resource group. Use nextLink - /// property in the response to get the next page of Cloud Services. Do this - /// till nextLink is null to fetch all the Cloud Services. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (nextPageLink == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("nextPageLink", nextPageLink); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); - } - // Construct URL - string _url = "{nextLink}"; - _url = _url.Replace("{nextLink}", nextPageLink); - List _queryParameters = new List(); - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse>(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesOperationsExtensions.cs deleted file mode 100644 index 84568a13d4c1..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesOperationsExtensions.cs +++ /dev/null @@ -1,1047 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using System.Collections; - using System.Collections.Generic; - using System.Threading; - using System.Threading.Tasks; - - /// - /// Extension methods for CloudServicesOperations. - /// - public static partial class CloudServicesOperationsExtensions - { - /// - /// Create or update a cloud service. Please note some properties can be set - /// only during cloud service creation. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cloud service object. - /// - public static CloudService CreateOrUpdate(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CloudService parameters = default(CloudService)) - { - return operations.CreateOrUpdateAsync(resourceGroupName, cloudServiceName, parameters).GetAwaiter().GetResult(); - } - - /// - /// Create or update a cloud service. Please note some properties can be set - /// only during cloud service creation. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cloud service object. - /// - /// - /// The cancellation token. - /// - public static async Task CreateOrUpdateAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CloudService parameters = default(CloudService), CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, cloudServiceName, parameters, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Update a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Resource tags - /// - public static CloudService Update(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IDictionary tags = default(IDictionary)) - { - return operations.UpdateAsync(resourceGroupName, cloudServiceName, tags).GetAwaiter().GetResult(); - } - - /// - /// Update a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Resource tags - /// - /// - /// The cancellation token. - /// - public static async Task UpdateAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IDictionary tags = default(IDictionary), CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, cloudServiceName, tags, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Deletes a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - public static void Delete(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName) - { - operations.DeleteAsync(resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); - } - - /// - /// Deletes a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task DeleteAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Display information about a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - public static CloudService Get(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName) - { - return operations.GetAsync(resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); - } - - /// - /// Display information about a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task GetAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Gets the status of a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - public static CloudServiceInstanceView GetInstanceView(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName) - { - return operations.GetInstanceViewAsync(resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); - } - - /// - /// Gets the status of a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task GetInstanceViewAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetInstanceViewWithHttpMessagesAsync(resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Gets a list of all cloud services in the subscription, regardless of the - /// associated resource group. Use nextLink property in the response to get the - /// next page of Cloud Services. Do this till nextLink is null to fetch all the - /// Cloud Services. - /// - /// - /// The operations group for this extension method. - /// - public static IPage ListAll(this ICloudServicesOperations operations) - { - return operations.ListAllAsync().GetAwaiter().GetResult(); - } - - /// - /// Gets a list of all cloud services in the subscription, regardless of the - /// associated resource group. Use nextLink property in the response to get the - /// next page of Cloud Services. Do this till nextLink is null to fetch all the - /// Cloud Services. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The cancellation token. - /// - public static async Task> ListAllAsync(this ICloudServicesOperations operations, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListAllWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Gets a list of all cloud services under a resource group. Use nextLink - /// property in the response to get the next page of Cloud Services. Do this - /// till nextLink is null to fetch all the Cloud Services. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - public static IPage List(this ICloudServicesOperations operations, string resourceGroupName) - { - return operations.ListAsync(resourceGroupName).GetAwaiter().GetResult(); - } - - /// - /// Gets a list of all cloud services under a resource group. Use nextLink - /// property in the response to get the next page of Cloud Services. Do this - /// till nextLink is null to fetch all the Cloud Services. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// The cancellation token. - /// - public static async Task> ListAsync(this ICloudServicesOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Starts the cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - public static void Start(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName) - { - operations.StartAsync(resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); - } - - /// - /// Starts the cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task StartAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.StartWithHttpMessagesAsync(resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Power off the cloud service. Note that resources are still attached and you - /// are getting charged for the resources. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - public static void PowerOff(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName) - { - operations.PowerOffAsync(resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); - } - - /// - /// Power off the cloud service. Note that resources are still attached and you - /// are getting charged for the resources. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task PowerOffAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.PowerOffWithHttpMessagesAsync(resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Restarts one or more role instances in a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - public static void Restart(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty) - { - operations.RestartAsync(resourceGroupName, cloudServiceName, roleInstancesProperty).GetAwaiter().GetResult(); - } - - /// - /// Restarts one or more role instances in a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task RestartAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.RestartWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Reimage asynchronous operation reinstalls the operating system on instances - /// of web roles or worker roles. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - public static void Reimage(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty) - { - operations.ReimageAsync(resourceGroupName, cloudServiceName, roleInstancesProperty).GetAwaiter().GetResult(); - } - - /// - /// Reimage asynchronous operation reinstalls the operating system on instances - /// of web roles or worker roles. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task ReimageAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.ReimageWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Rebuild Role Instances reinstalls the operating system on instances of web - /// roles or worker roles and initializes the storage resources that are used - /// by them. If you do not want to initialize storage resources, you can use - /// Reimage Role Instances. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - public static void Rebuild(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty) - { - operations.RebuildAsync(resourceGroupName, cloudServiceName, roleInstancesProperty).GetAwaiter().GetResult(); - } - - /// - /// Rebuild Role Instances reinstalls the operating system on instances of web - /// roles or worker roles and initializes the storage resources that are used - /// by them. If you do not want to initialize storage resources, you can use - /// Reimage Role Instances. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task RebuildAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.RebuildWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Deletes role instances in a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - public static void DeleteInstances(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty) - { - operations.DeleteInstancesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty).GetAwaiter().GetResult(); - } - - /// - /// Deletes role instances in a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task DeleteInstancesAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.DeleteInstancesWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Create or update a cloud service. Please note some properties can be set - /// only during cloud service creation. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cloud service object. - /// - public static CloudService BeginCreateOrUpdate(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CloudService parameters = default(CloudService)) - { - return operations.BeginCreateOrUpdateAsync(resourceGroupName, cloudServiceName, parameters).GetAwaiter().GetResult(); - } - - /// - /// Create or update a cloud service. Please note some properties can be set - /// only during cloud service creation. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cloud service object. - /// - /// - /// The cancellation token. - /// - public static async Task BeginCreateOrUpdateAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CloudService parameters = default(CloudService), CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, cloudServiceName, parameters, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Update a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Resource tags - /// - public static CloudService BeginUpdate(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IDictionary tags = default(IDictionary)) - { - return operations.BeginUpdateAsync(resourceGroupName, cloudServiceName, tags).GetAwaiter().GetResult(); - } - - /// - /// Update a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Resource tags - /// - /// - /// The cancellation token. - /// - public static async Task BeginUpdateAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IDictionary tags = default(IDictionary), CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.BeginUpdateWithHttpMessagesAsync(resourceGroupName, cloudServiceName, tags, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Deletes a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - public static void BeginDelete(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName) - { - operations.BeginDeleteAsync(resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); - } - - /// - /// Deletes a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task BeginDeleteAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Starts the cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - public static void BeginStart(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName) - { - operations.BeginStartAsync(resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); - } - - /// - /// Starts the cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task BeginStartAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.BeginStartWithHttpMessagesAsync(resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Power off the cloud service. Note that resources are still attached and you - /// are getting charged for the resources. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - public static void BeginPowerOff(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName) - { - operations.BeginPowerOffAsync(resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); - } - - /// - /// Power off the cloud service. Note that resources are still attached and you - /// are getting charged for the resources. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task BeginPowerOffAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.BeginPowerOffWithHttpMessagesAsync(resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Restarts one or more role instances in a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - public static void BeginRestart(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty) - { - operations.BeginRestartAsync(resourceGroupName, cloudServiceName, roleInstancesProperty).GetAwaiter().GetResult(); - } - - /// - /// Restarts one or more role instances in a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task BeginRestartAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.BeginRestartWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Reimage asynchronous operation reinstalls the operating system on instances - /// of web roles or worker roles. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - public static void BeginReimage(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty) - { - operations.BeginReimageAsync(resourceGroupName, cloudServiceName, roleInstancesProperty).GetAwaiter().GetResult(); - } - - /// - /// Reimage asynchronous operation reinstalls the operating system on instances - /// of web roles or worker roles. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task BeginReimageAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.BeginReimageWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Rebuild Role Instances reinstalls the operating system on instances of web - /// roles or worker roles and initializes the storage resources that are used - /// by them. If you do not want to initialize storage resources, you can use - /// Reimage Role Instances. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - public static void BeginRebuild(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty) - { - operations.BeginRebuildAsync(resourceGroupName, cloudServiceName, roleInstancesProperty).GetAwaiter().GetResult(); - } - - /// - /// Rebuild Role Instances reinstalls the operating system on instances of web - /// roles or worker roles and initializes the storage resources that are used - /// by them. If you do not want to initialize storage resources, you can use - /// Reimage Role Instances. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task BeginRebuildAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.BeginRebuildWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Deletes role instances in a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - public static void BeginDeleteInstances(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty) - { - operations.BeginDeleteInstancesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty).GetAwaiter().GetResult(); - } - - /// - /// Deletes role instances in a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will signify all - /// role instances of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task BeginDeleteInstancesAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.BeginDeleteInstancesWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Gets a list of all cloud services in the subscription, regardless of the - /// associated resource group. Use nextLink property in the response to get the - /// next page of Cloud Services. Do this till nextLink is null to fetch all the - /// Cloud Services. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - public static IPage ListAllNext(this ICloudServicesOperations operations, string nextPageLink) - { - return operations.ListAllNextAsync(nextPageLink).GetAwaiter().GetResult(); - } - - /// - /// Gets a list of all cloud services in the subscription, regardless of the - /// associated resource group. Use nextLink property in the response to get the - /// next page of Cloud Services. Do this till nextLink is null to fetch all the - /// Cloud Services. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The cancellation token. - /// - public static async Task> ListAllNextAsync(this ICloudServicesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListAllNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Gets a list of all cloud services under a resource group. Use nextLink - /// property in the response to get the next page of Cloud Services. Do this - /// till nextLink is null to fetch all the Cloud Services. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - public static IPage ListNext(this ICloudServicesOperations operations, string nextPageLink) - { - return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); - } - - /// - /// Gets a list of all cloud services under a resource group. Use nextLink - /// property in the response to get the next page of Cloud Services. Do this - /// till nextLink is null to fetch all the Cloud Services. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The cancellation token. - /// - public static async Task> ListNextAsync(this ICloudServicesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesUpdateDomainOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesUpdateDomainOperations.cs deleted file mode 100644 index be13c0980ab6..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesUpdateDomainOperations.cs +++ /dev/null @@ -1,839 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - using System.Net; - using System.Net.Http; - using System.Threading; - using System.Threading.Tasks; - - /// - /// CloudServicesUpdateDomainOperations operations. - /// - internal partial class CloudServicesUpdateDomainOperations : IServiceOperations, ICloudServicesUpdateDomainOperations - { - /// - /// Initializes a new instance of the CloudServicesUpdateDomainOperations class. - /// - /// - /// Reference to the service client. - /// - /// - /// Thrown when a required parameter is null - /// - internal CloudServicesUpdateDomainOperations(ComputeManagementClient client) - { - if (client == null) - { - throw new System.ArgumentNullException("client"); - } - Client = client; - } - - /// - /// Gets a reference to the ComputeManagementClient - /// - public ComputeManagementClient Client { get; private set; } - - /// - /// Updates the role instances in the specified update domain. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Specifies an integer value that identifies the update domain. Update - /// domains are identified with a zero-based index: the first update domain has - /// an ID of 0, the second has an ID of 1, and so on. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task WalkUpdateDomainWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, int updateDomain, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginWalkUpdateDomainWithHttpMessagesAsync(resourceGroupName, cloudServiceName, updateDomain, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Gets the specified update domain of a cloud service. Use nextLink property - /// in the response to get the next page of update domains. Do this till - /// nextLink is null to fetch all the update domains. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Specifies an integer value that identifies the update domain. Update - /// domains are identified with a zero-based index: the first update domain has - /// an ID of 0, the second has an ID of 1, and so on. - /// - /// - /// 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> GetUpdateDomainWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, int updateDomain, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2020-10-01-preview"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("updateDomain", updateDomain); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetUpdateDomain", 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/cloudServices/{cloudServiceName}/updateDomains/{updateDomain}").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _url = _url.Replace("{updateDomain}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(updateDomain, Client.SerializationSettings).Trim('"'))); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Gets a list of all update domains in a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// 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>> ListUpdateDomainsWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2020-10-01-preview"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListUpdateDomains", 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/cloudServices/{cloudServiceName}/updateDomains").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse>(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Updates the role instances in the specified update domain. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Specifies an integer value that identifies the update domain. Update - /// domains are identified with a zero-based index: the first update domain has - /// an ID of 0, the second has an ID of 1, and so on. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task BeginWalkUpdateDomainWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, int updateDomain, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (cloudServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2020-10-01-preview"; - UpdateDomain parameters = default(UpdateDomain); - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cloudServiceName", cloudServiceName); - tracingParameters.Add("updateDomain", updateDomain); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("parameters", parameters); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginWalkUpdateDomain", 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/cloudServices/{cloudServiceName}/updateDomains/{updateDomain}").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); - _url = _url.Replace("{updateDomain}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(updateDomain, Client.SerializationSettings).Trim('"'))); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 202) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Gets a list of all update domains in a cloud service. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task>> ListUpdateDomainsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (nextPageLink == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("nextPageLink", nextPageLink); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListUpdateDomainsNext", tracingParameters); - } - // Construct URL - string _url = "{nextLink}"; - _url = _url.Replace("{nextLink}", nextPageLink); - List _queryParameters = new List(); - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse>(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesUpdateDomainOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesUpdateDomainOperationsExtensions.cs deleted file mode 100644 index 9e3226415fe1..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesUpdateDomainOperationsExtensions.cs +++ /dev/null @@ -1,247 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using System.Threading; - using System.Threading.Tasks; - - /// - /// Extension methods for CloudServicesUpdateDomainOperations. - /// - public static partial class CloudServicesUpdateDomainOperationsExtensions - { - /// - /// Updates the role instances in the specified update domain. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Specifies an integer value that identifies the update domain. Update - /// domains are identified with a zero-based index: the first update domain has - /// an ID of 0, the second has an ID of 1, and so on. - /// - public static void WalkUpdateDomain(this ICloudServicesUpdateDomainOperations operations, string resourceGroupName, string cloudServiceName, int updateDomain) - { - operations.WalkUpdateDomainAsync(resourceGroupName, cloudServiceName, updateDomain).GetAwaiter().GetResult(); - } - - /// - /// Updates the role instances in the specified update domain. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Specifies an integer value that identifies the update domain. Update - /// domains are identified with a zero-based index: the first update domain has - /// an ID of 0, the second has an ID of 1, and so on. - /// - /// - /// The cancellation token. - /// - public static async Task WalkUpdateDomainAsync(this ICloudServicesUpdateDomainOperations operations, string resourceGroupName, string cloudServiceName, int updateDomain, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.WalkUpdateDomainWithHttpMessagesAsync(resourceGroupName, cloudServiceName, updateDomain, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Gets the specified update domain of a cloud service. Use nextLink property - /// in the response to get the next page of update domains. Do this till - /// nextLink is null to fetch all the update domains. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Specifies an integer value that identifies the update domain. Update - /// domains are identified with a zero-based index: the first update domain has - /// an ID of 0, the second has an ID of 1, and so on. - /// - public static UpdateDomain GetUpdateDomain(this ICloudServicesUpdateDomainOperations operations, string resourceGroupName, string cloudServiceName, int updateDomain) - { - return operations.GetUpdateDomainAsync(resourceGroupName, cloudServiceName, updateDomain).GetAwaiter().GetResult(); - } - - /// - /// Gets the specified update domain of a cloud service. Use nextLink property - /// in the response to get the next page of update domains. Do this till - /// nextLink is null to fetch all the update domains. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Specifies an integer value that identifies the update domain. Update - /// domains are identified with a zero-based index: the first update domain has - /// an ID of 0, the second has an ID of 1, and so on. - /// - /// - /// The cancellation token. - /// - public static async Task GetUpdateDomainAsync(this ICloudServicesUpdateDomainOperations operations, string resourceGroupName, string cloudServiceName, int updateDomain, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetUpdateDomainWithHttpMessagesAsync(resourceGroupName, cloudServiceName, updateDomain, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Gets a list of all update domains in a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - public static IPage ListUpdateDomains(this ICloudServicesUpdateDomainOperations operations, string resourceGroupName, string cloudServiceName) - { - return operations.ListUpdateDomainsAsync(resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); - } - - /// - /// Gets a list of all update domains in a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cancellation token. - /// - public static async Task> ListUpdateDomainsAsync(this ICloudServicesUpdateDomainOperations operations, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListUpdateDomainsWithHttpMessagesAsync(resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Updates the role instances in the specified update domain. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Specifies an integer value that identifies the update domain. Update - /// domains are identified with a zero-based index: the first update domain has - /// an ID of 0, the second has an ID of 1, and so on. - /// - public static void BeginWalkUpdateDomain(this ICloudServicesUpdateDomainOperations operations, string resourceGroupName, string cloudServiceName, int updateDomain) - { - operations.BeginWalkUpdateDomainAsync(resourceGroupName, cloudServiceName, updateDomain).GetAwaiter().GetResult(); - } - - /// - /// Updates the role instances in the specified update domain. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Specifies an integer value that identifies the update domain. Update - /// domains are identified with a zero-based index: the first update domain has - /// an ID of 0, the second has an ID of 1, and so on. - /// - /// - /// The cancellation token. - /// - public static async Task BeginWalkUpdateDomainAsync(this ICloudServicesUpdateDomainOperations operations, string resourceGroupName, string cloudServiceName, int updateDomain, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.BeginWalkUpdateDomainWithHttpMessagesAsync(resourceGroupName, cloudServiceName, updateDomain, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Gets a list of all update domains in a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - public static IPage ListUpdateDomainsNext(this ICloudServicesUpdateDomainOperations operations, string nextPageLink) - { - return operations.ListUpdateDomainsNextAsync(nextPageLink).GetAwaiter().GetResult(); - } - - /// - /// Gets a list of all update domains in a cloud service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The cancellation token. - /// - public static async Task> ListUpdateDomainsNextAsync(this ICloudServicesUpdateDomainOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListUpdateDomainsNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ComputeManagementClient.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ComputeManagementClient.cs index dd8d1f26d9aa..f62c8107416d 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ComputeManagementClient.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ComputeManagementClient.cs @@ -116,6 +116,11 @@ public partial class ComputeManagementClient : ServiceClient public virtual IVirtualMachineImagesOperations VirtualMachineImages { get; private set; } + /// + /// Gets the IVirtualMachineImagesEdgeZoneOperations. + /// + public virtual IVirtualMachineImagesEdgeZoneOperations VirtualMachineImagesEdgeZone { get; private set; } + /// /// Gets the IUsageOperations. /// @@ -126,6 +131,11 @@ public partial class ComputeManagementClient : ServiceClient public virtual IVirtualMachinesOperations VirtualMachines { get; private set; } + /// + /// Gets the IVirtualMachineScaleSetsOperations. + /// + public virtual IVirtualMachineScaleSetsOperations VirtualMachineScaleSets { get; private set; } + /// /// Gets the IVirtualMachineSizesOperations. /// @@ -136,11 +146,6 @@ public partial class ComputeManagementClient : ServiceClient public virtual IImagesOperations Images { get; private set; } - /// - /// Gets the IVirtualMachineScaleSetsOperations. - /// - public virtual IVirtualMachineScaleSetsOperations VirtualMachineScaleSets { get; private set; } - /// /// Gets the IVirtualMachineScaleSetExtensionsOperations. /// @@ -251,31 +256,6 @@ public partial class ComputeManagementClient : ServiceClient public virtual ISharedGalleryImageVersionsOperations SharedGalleryImageVersions { get; private set; } - /// - /// Gets the IContainerServicesOperations. - /// - public virtual IContainerServicesOperations ContainerServices { get; private set; } - - /// - /// Gets the ICloudServiceRoleInstancesOperations. - /// - public virtual ICloudServiceRoleInstancesOperations CloudServiceRoleInstances { get; private set; } - - /// - /// Gets the ICloudServiceRolesOperations. - /// - public virtual ICloudServiceRolesOperations CloudServiceRoles { get; private set; } - - /// - /// Gets the ICloudServicesOperations. - /// - public virtual ICloudServicesOperations CloudServices { get; private set; } - - /// - /// Gets the ICloudServicesUpdateDomainOperations. - /// - public virtual ICloudServicesUpdateDomainOperations CloudServicesUpdateDomain { get; private set; } - /// /// Initializes a new instance of the ComputeManagementClient class. /// @@ -526,11 +506,12 @@ private void Initialize() VirtualMachineExtensionImages = new VirtualMachineExtensionImagesOperations(this); VirtualMachineExtensions = new VirtualMachineExtensionsOperations(this); VirtualMachineImages = new VirtualMachineImagesOperations(this); + VirtualMachineImagesEdgeZone = new VirtualMachineImagesEdgeZoneOperations(this); Usage = new UsageOperations(this); VirtualMachines = new VirtualMachinesOperations(this); + VirtualMachineScaleSets = new VirtualMachineScaleSetsOperations(this); VirtualMachineSizes = new VirtualMachineSizesOperations(this); Images = new ImagesOperations(this); - VirtualMachineScaleSets = new VirtualMachineScaleSetsOperations(this); VirtualMachineScaleSetExtensions = new VirtualMachineScaleSetExtensionsOperations(this); VirtualMachineScaleSetRollingUpgrades = new VirtualMachineScaleSetRollingUpgradesOperations(this); VirtualMachineScaleSetVMExtensions = new VirtualMachineScaleSetVMExtensionsOperations(this); @@ -553,11 +534,6 @@ private void Initialize() SharedGalleries = new SharedGalleriesOperations(this); SharedGalleryImages = new SharedGalleryImagesOperations(this); SharedGalleryImageVersions = new SharedGalleryImageVersionsOperations(this); - ContainerServices = new ContainerServicesOperations(this); - CloudServiceRoleInstances = new CloudServiceRoleInstancesOperations(this); - CloudServiceRoles = new CloudServiceRolesOperations(this); - CloudServices = new CloudServicesOperations(this); - CloudServicesUpdateDomain = new CloudServicesUpdateDomainOperations(this); BaseUri = new System.Uri("https://management.azure.com"); AcceptLanguage = "en-US"; LongRunningOperationRetryTimeout = 30; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ContainerServicesOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ContainerServicesOperationsExtensions.cs deleted file mode 100644 index e245c862dd38..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ContainerServicesOperationsExtensions.cs +++ /dev/null @@ -1,479 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using System.Threading; - using System.Threading.Tasks; - - /// - /// Extension methods for ContainerServicesOperations. - /// - public static partial class ContainerServicesOperationsExtensions - { - /// - /// Gets a list of container services in the specified subscription. - /// - /// - /// Gets a list of container services in the specified subscription. The - /// operation returns properties of each container service including state, - /// orchestrator, number of masters and agents, and FQDNs of masters and - /// agents. - /// - /// - /// The operations group for this extension method. - /// - public static IPage List(this IContainerServicesOperations operations) - { - return operations.ListAsync().GetAwaiter().GetResult(); - } - - /// - /// Gets a list of container services in the specified subscription. - /// - /// - /// Gets a list of container services in the specified subscription. The - /// operation returns properties of each container service including state, - /// orchestrator, number of masters and agents, and FQDNs of masters and - /// agents. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The cancellation token. - /// - public static async Task> ListAsync(this IContainerServicesOperations operations, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Creates or updates a container service. - /// - /// - /// Creates or updates a container service with the specified configuration of - /// orchestrator, masters, and agents. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the container service in the specified subscription and - /// resource group. - /// - /// - /// Parameters supplied to the Create or Update a Container Service operation. - /// - public static ContainerService CreateOrUpdate(this IContainerServicesOperations operations, string resourceGroupName, string containerServiceName, ContainerService parameters) - { - return operations.CreateOrUpdateAsync(resourceGroupName, containerServiceName, parameters).GetAwaiter().GetResult(); - } - - /// - /// Creates or updates a container service. - /// - /// - /// Creates or updates a container service with the specified configuration of - /// orchestrator, masters, and agents. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the container service in the specified subscription and - /// resource group. - /// - /// - /// Parameters supplied to the Create or Update a Container Service operation. - /// - /// - /// The cancellation token. - /// - public static async Task CreateOrUpdateAsync(this IContainerServicesOperations operations, string resourceGroupName, string containerServiceName, ContainerService parameters, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, containerServiceName, parameters, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Gets the properties of the specified container service. - /// - /// - /// Gets the properties of the specified container service in the specified - /// subscription and resource group. The operation returns the properties - /// including state, orchestrator, number of masters and agents, and FQDNs of - /// masters and agents. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the container service in the specified subscription and - /// resource group. - /// - public static ContainerService Get(this IContainerServicesOperations operations, string resourceGroupName, string containerServiceName) - { - return operations.GetAsync(resourceGroupName, containerServiceName).GetAwaiter().GetResult(); - } - - /// - /// Gets the properties of the specified container service. - /// - /// - /// Gets the properties of the specified container service in the specified - /// subscription and resource group. The operation returns the properties - /// including state, orchestrator, number of masters and agents, and FQDNs of - /// masters and agents. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the container service in the specified subscription and - /// resource group. - /// - /// - /// The cancellation token. - /// - public static async Task GetAsync(this IContainerServicesOperations operations, string resourceGroupName, string containerServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, containerServiceName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Deletes the specified container service. - /// - /// - /// Deletes the specified container service in the specified subscription and - /// resource group. The operation does not delete other resources created as - /// part of creating a container service, including storage accounts, VMs, and - /// availability sets. All the other resources created with the container - /// service are part of the same resource group and can be deleted - /// individually. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the container service in the specified subscription and - /// resource group. - /// - public static void Delete(this IContainerServicesOperations operations, string resourceGroupName, string containerServiceName) - { - operations.DeleteAsync(resourceGroupName, containerServiceName).GetAwaiter().GetResult(); - } - - /// - /// Deletes the specified container service. - /// - /// - /// Deletes the specified container service in the specified subscription and - /// resource group. The operation does not delete other resources created as - /// part of creating a container service, including storage accounts, VMs, and - /// availability sets. All the other resources created with the container - /// service are part of the same resource group and can be deleted - /// individually. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the container service in the specified subscription and - /// resource group. - /// - /// - /// The cancellation token. - /// - public static async Task DeleteAsync(this IContainerServicesOperations operations, string resourceGroupName, string containerServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, containerServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Gets a list of container services in the specified resource group. - /// - /// - /// Gets a list of container services in the specified subscription and - /// resource group. The operation returns properties of each container service - /// including state, orchestrator, number of masters and agents, and FQDNs of - /// masters and agents. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - public static IPage ListByResourceGroup(this IContainerServicesOperations operations, string resourceGroupName) - { - return operations.ListByResourceGroupAsync(resourceGroupName).GetAwaiter().GetResult(); - } - - /// - /// Gets a list of container services in the specified resource group. - /// - /// - /// Gets a list of container services in the specified subscription and - /// resource group. The operation returns properties of each container service - /// including state, orchestrator, number of masters and agents, and FQDNs of - /// masters and agents. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The cancellation token. - /// - public static async Task> ListByResourceGroupAsync(this IContainerServicesOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Creates or updates a container service. - /// - /// - /// Creates or updates a container service with the specified configuration of - /// orchestrator, masters, and agents. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the container service in the specified subscription and - /// resource group. - /// - /// - /// Parameters supplied to the Create or Update a Container Service operation. - /// - public static ContainerService BeginCreateOrUpdate(this IContainerServicesOperations operations, string resourceGroupName, string containerServiceName, ContainerService parameters) - { - return operations.BeginCreateOrUpdateAsync(resourceGroupName, containerServiceName, parameters).GetAwaiter().GetResult(); - } - - /// - /// Creates or updates a container service. - /// - /// - /// Creates or updates a container service with the specified configuration of - /// orchestrator, masters, and agents. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the container service in the specified subscription and - /// resource group. - /// - /// - /// Parameters supplied to the Create or Update a Container Service operation. - /// - /// - /// The cancellation token. - /// - public static async Task BeginCreateOrUpdateAsync(this IContainerServicesOperations operations, string resourceGroupName, string containerServiceName, ContainerService parameters, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, containerServiceName, parameters, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Deletes the specified container service. - /// - /// - /// Deletes the specified container service in the specified subscription and - /// resource group. The operation does not delete other resources created as - /// part of creating a container service, including storage accounts, VMs, and - /// availability sets. All the other resources created with the container - /// service are part of the same resource group and can be deleted - /// individually. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the container service in the specified subscription and - /// resource group. - /// - public static void BeginDelete(this IContainerServicesOperations operations, string resourceGroupName, string containerServiceName) - { - operations.BeginDeleteAsync(resourceGroupName, containerServiceName).GetAwaiter().GetResult(); - } - - /// - /// Deletes the specified container service. - /// - /// - /// Deletes the specified container service in the specified subscription and - /// resource group. The operation does not delete other resources created as - /// part of creating a container service, including storage accounts, VMs, and - /// availability sets. All the other resources created with the container - /// service are part of the same resource group and can be deleted - /// individually. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the container service in the specified subscription and - /// resource group. - /// - /// - /// The cancellation token. - /// - public static async Task BeginDeleteAsync(this IContainerServicesOperations operations, string resourceGroupName, string containerServiceName, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, containerServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Gets a list of container services in the specified subscription. - /// - /// - /// Gets a list of container services in the specified subscription. The - /// operation returns properties of each container service including state, - /// orchestrator, number of masters and agents, and FQDNs of masters and - /// agents. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - public static IPage ListNext(this IContainerServicesOperations operations, string nextPageLink) - { - return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); - } - - /// - /// Gets a list of container services in the specified subscription. - /// - /// - /// Gets a list of container services in the specified subscription. The - /// operation returns properties of each container service including state, - /// orchestrator, number of masters and agents, and FQDNs of masters and - /// agents. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The cancellation token. - /// - public static async Task> ListNextAsync(this IContainerServicesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Gets a list of container services in the specified resource group. - /// - /// - /// Gets a list of container services in the specified subscription and - /// resource group. The operation returns properties of each container service - /// including state, orchestrator, number of masters and agents, and FQDNs of - /// masters and agents. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - public static IPage ListByResourceGroupNext(this IContainerServicesOperations operations, string nextPageLink) - { - return operations.ListByResourceGroupNextAsync(nextPageLink).GetAwaiter().GetResult(); - } - - /// - /// Gets a list of container services in the specified resource group. - /// - /// - /// Gets a list of container services in the specified subscription and - /// resource group. The operation returns properties of each container service - /// including state, orchestrator, number of masters and agents, and FQDNs of - /// masters and agents. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The cancellation token. - /// - public static async Task> ListByResourceGroupNextAsync(this IContainerServicesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListByResourceGroupNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DedicatedHostGroupsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DedicatedHostGroupsOperations.cs index e81752b46337..076bab87a29d 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DedicatedHostGroupsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DedicatedHostGroupsOperations.cs @@ -107,7 +107,7 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -333,7 +333,7 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -531,7 +531,7 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -712,7 +712,7 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -906,7 +906,7 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1086,7 +1086,7 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DedicatedHostsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DedicatedHostsOperations.cs index db530fa653c0..6bb551e9fc24 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DedicatedHostsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DedicatedHostsOperations.cs @@ -186,7 +186,7 @@ internal DedicatedHostsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -389,7 +389,7 @@ internal DedicatedHostsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -601,7 +601,7 @@ internal DedicatedHostsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -836,7 +836,7 @@ internal DedicatedHostsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1043,7 +1043,7 @@ internal DedicatedHostsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServiceRoleInstancesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServiceRoleInstancesOperations.cs deleted file mode 100644 index 5d97a04e5b07..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServiceRoleInstancesOperations.cs +++ /dev/null @@ -1,362 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using System.Collections; - using System.Collections.Generic; - using System.IO; - using System.Threading; - using System.Threading.Tasks; - - /// - /// CloudServiceRoleInstancesOperations operations. - /// - public partial interface ICloudServiceRoleInstancesOperations - { - /// - /// Deletes a role instance from a cloud service. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - Task DeleteWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets a role instance from a cloud service. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - /// - /// The expand expression to apply to the operation. Possible values - /// include: 'instanceView' - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task> GetWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, InstanceViewTypes? expand = default(InstanceViewTypes?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Retrieves information about the run-time state of a role instance - /// in a cloud service. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - /// - /// 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> GetInstanceViewWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets the list of all role instances in a cloud service. Use - /// nextLink property in the response to get the next page of role - /// instances. Do this till nextLink is null to fetch all the role - /// instances. - /// - /// - /// - /// - /// - /// - /// The expand expression to apply to the operation. Possible values - /// include: 'instanceView' - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task>> ListWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, InstanceViewTypes? expand = default(InstanceViewTypes?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// The Reboot Role Instance asynchronous operation requests a reboot - /// of a role instance in the cloud service. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - Task RestartWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// The Reimage Role Instance asynchronous operation reinstalls the - /// operating system on instances of web roles or worker roles. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - Task ReimageWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// The Rebuild Role Instance asynchronous operation reinstalls the - /// operating system on instances of web roles or worker roles and - /// initializes the storage resources that are used by them. If you do - /// not want to initialize storage resources, you can use Reimage Role - /// Instance. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - Task RebuildWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets a remote desktop file for a role instance in a cloud service. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - /// - /// 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> GetRemoteDesktopFileWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Deletes a role instance from a cloud service. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - Task BeginDeleteWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// The Reboot Role Instance asynchronous operation requests a reboot - /// of a role instance in the cloud service. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - Task BeginRestartWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// The Reimage Role Instance asynchronous operation reinstalls the - /// operating system on instances of web roles or worker roles. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - Task BeginReimageWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// The Rebuild Role Instance asynchronous operation reinstalls the - /// operating system on instances of web roles or worker roles and - /// initializes the storage resources that are used by them. If you do - /// not want to initialize storage resources, you can use Reimage Role - /// Instance. - /// - /// - /// Name of the role instance. - /// - /// - /// - /// - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - Task BeginRebuildWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets the list of all role instances in a cloud service. Use - /// nextLink property in the response to get the next page of role - /// instances. Do this till nextLink is null to fetch all the role - /// instances. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServiceRolesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServiceRolesOperations.cs deleted file mode 100644 index 16e8d96e5c5f..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServiceRolesOperations.cs +++ /dev/null @@ -1,102 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using System.Collections; - using System.Collections.Generic; - using System.Threading; - using System.Threading.Tasks; - - /// - /// CloudServiceRolesOperations operations. - /// - public partial interface ICloudServiceRolesOperations - { - /// - /// Gets a role from a cloud service. - /// - /// - /// Name of the role. - /// - /// - /// - /// - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task> GetWithHttpMessagesAsync(string roleName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets a list of all roles in a cloud service. Use nextLink property - /// in the response to get the next page of roles. Do this till - /// nextLink is null to fetch all the roles. - /// - /// - /// - /// - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task>> ListWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets a list of all roles in a cloud service. Use nextLink property - /// in the response to get the next page of roles. Do this till - /// nextLink is null to fetch all the roles. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServicesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServicesOperations.cs deleted file mode 100644 index 837bdd793337..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServicesOperations.cs +++ /dev/null @@ -1,638 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using System.Collections; - using System.Collections.Generic; - using System.Threading; - using System.Threading.Tasks; - - /// - /// CloudServicesOperations operations. - /// - public partial interface ICloudServicesOperations - { - /// - /// Create or update a cloud service. Please note some properties can - /// be set only during cloud service creation. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cloud service object. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, CloudService parameters = default(CloudService), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Update a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Resource tags - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IDictionary tags = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Deletes a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Display information about a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets the status of a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// 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> GetInstanceViewWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets a list of all cloud services in the subscription, regardless - /// of the associated resource group. Use nextLink property in the - /// response to get the next page of Cloud Services. Do this till - /// nextLink is null to fetch all the Cloud Services. - /// - /// - /// 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>> ListAllWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets a list of all cloud services under a resource group. Use - /// nextLink property in the response to get the next page of Cloud - /// Services. Do this till nextLink is null to fetch all the Cloud - /// Services. - /// - /// - /// Name of the resource group. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Starts the cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - Task StartWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Power off the cloud service. Note that resources are still attached - /// and you are getting charged for the resources. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - Task PowerOffWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Restarts one or more role instances in a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will - /// signify all role instances of the cloud service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - Task RestartWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Reimage asynchronous operation reinstalls the operating system on - /// instances of web roles or worker roles. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will - /// signify all role instances of the cloud service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - Task ReimageWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Rebuild Role Instances reinstalls the operating system on instances - /// of web roles or worker roles and initializes the storage resources - /// that are used by them. If you do not want to initialize storage - /// resources, you can use Reimage Role Instances. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will - /// signify all role instances of the cloud service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - Task RebuildWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Deletes role instances in a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will - /// signify all role instances of the cloud service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - Task DeleteInstancesWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Create or update a cloud service. Please note some properties can - /// be set only during cloud service creation. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The cloud service object. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, CloudService parameters = default(CloudService), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Update a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Resource tags - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IDictionary tags = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Deletes a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Starts the cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - Task BeginStartWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Power off the cloud service. Note that resources are still attached - /// and you are getting charged for the resources. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - Task BeginPowerOffWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Restarts one or more role instances in a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will - /// signify all role instances of the cloud service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - Task BeginRestartWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Reimage asynchronous operation reinstalls the operating system on - /// instances of web roles or worker roles. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will - /// signify all role instances of the cloud service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - Task BeginReimageWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Rebuild Role Instances reinstalls the operating system on instances - /// of web roles or worker roles and initializes the storage resources - /// that are used by them. If you do not want to initialize storage - /// resources, you can use Reimage Role Instances. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will - /// signify all role instances of the cloud service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - Task BeginRebuildWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Deletes role instances in a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// List of cloud service role instance names. Value of '*' will - /// signify all role instances of the cloud service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - Task BeginDeleteInstancesWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets a list of all cloud services in the subscription, regardless - /// of the associated resource group. Use nextLink property in the - /// response to get the next page of Cloud Services. Do this till - /// nextLink is null to fetch all the Cloud Services. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task>> ListAllNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets a list of all cloud services under a resource group. Use - /// nextLink property in the response to get the next page of Cloud - /// Services. Do this till nextLink is null to fetch all the Cloud - /// Services. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServicesUpdateDomainOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServicesUpdateDomainOperations.cs deleted file mode 100644 index cdac93b47a19..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServicesUpdateDomainOperations.cs +++ /dev/null @@ -1,160 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using System.Collections; - using System.Collections.Generic; - using System.Threading; - using System.Threading.Tasks; - - /// - /// CloudServicesUpdateDomainOperations operations. - /// - public partial interface ICloudServicesUpdateDomainOperations - { - /// - /// Updates the role instances in the specified update domain. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Specifies an integer value that identifies the update domain. - /// Update domains are identified with a zero-based index: the first - /// update domain has an ID of 0, the second has an ID of 1, and so on. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - Task WalkUpdateDomainWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, int updateDomain, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets the specified update domain of a cloud service. Use nextLink - /// property in the response to get the next page of update domains. Do - /// this till nextLink is null to fetch all the update domains. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Specifies an integer value that identifies the update domain. - /// Update domains are identified with a zero-based index: the first - /// update domain has an ID of 0, the second has an ID of 1, and so on. - /// - /// - /// 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> GetUpdateDomainWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, int updateDomain, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets a list of all update domains in a cloud service. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// 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>> ListUpdateDomainsWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Updates the role instances in the specified update domain. - /// - /// - /// Name of the resource group. - /// - /// - /// Name of the cloud service. - /// - /// - /// Specifies an integer value that identifies the update domain. - /// Update domains are identified with a zero-based index: the first - /// update domain has an ID of 0, the second has an ID of 1, and so on. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - Task BeginWalkUpdateDomainWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, int updateDomain, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets a list of all update domains in a cloud service. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task>> ListUpdateDomainsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IComputeManagementClient.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IComputeManagementClient.cs index de335b737a8a..ca07daa8f326 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IComputeManagementClient.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IComputeManagementClient.cs @@ -111,6 +111,11 @@ public partial interface IComputeManagementClient : System.IDisposable /// IVirtualMachineImagesOperations VirtualMachineImages { get; } + /// + /// Gets the IVirtualMachineImagesEdgeZoneOperations. + /// + IVirtualMachineImagesEdgeZoneOperations VirtualMachineImagesEdgeZone { get; } + /// /// Gets the IUsageOperations. /// @@ -121,6 +126,11 @@ public partial interface IComputeManagementClient : System.IDisposable /// IVirtualMachinesOperations VirtualMachines { get; } + /// + /// Gets the IVirtualMachineScaleSetsOperations. + /// + IVirtualMachineScaleSetsOperations VirtualMachineScaleSets { get; } + /// /// Gets the IVirtualMachineSizesOperations. /// @@ -131,11 +141,6 @@ public partial interface IComputeManagementClient : System.IDisposable /// IImagesOperations Images { get; } - /// - /// Gets the IVirtualMachineScaleSetsOperations. - /// - IVirtualMachineScaleSetsOperations VirtualMachineScaleSets { get; } - /// /// Gets the IVirtualMachineScaleSetExtensionsOperations. /// @@ -246,30 +251,5 @@ public partial interface IComputeManagementClient : System.IDisposable /// ISharedGalleryImageVersionsOperations SharedGalleryImageVersions { get; } - /// - /// Gets the IContainerServicesOperations. - /// - IContainerServicesOperations ContainerServices { get; } - - /// - /// Gets the ICloudServiceRoleInstancesOperations. - /// - ICloudServiceRoleInstancesOperations CloudServiceRoleInstances { get; } - - /// - /// Gets the ICloudServiceRolesOperations. - /// - ICloudServiceRolesOperations CloudServiceRoles { get; } - - /// - /// Gets the ICloudServicesOperations. - /// - ICloudServicesOperations CloudServices { get; } - - /// - /// Gets the ICloudServicesUpdateDomainOperations. - /// - ICloudServicesUpdateDomainOperations CloudServicesUpdateDomain { get; } - } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IContainerServicesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IContainerServicesOperations.cs deleted file mode 100644 index d8293bc2d92d..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IContainerServicesOperations.cs +++ /dev/null @@ -1,298 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using System.Collections; - using System.Collections.Generic; - using System.Threading; - using System.Threading.Tasks; - - /// - /// ContainerServicesOperations operations. - /// - public partial interface IContainerServicesOperations - { - /// - /// Gets a list of container services in the specified subscription. - /// - /// - /// Gets a list of container services in the specified subscription. - /// The operation returns properties of each container service - /// including state, orchestrator, number of masters and agents, and - /// FQDNs of masters and agents. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Creates or updates a container service. - /// - /// - /// Creates or updates a container service with the specified - /// configuration of orchestrator, masters, and agents. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the container service in the specified subscription and - /// resource group. - /// - /// - /// Parameters supplied to the Create or Update a Container Service - /// operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string containerServiceName, ContainerService parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets the properties of the specified container service. - /// - /// - /// Gets the properties of the specified container service in the - /// specified subscription and resource group. The operation returns - /// the properties including state, orchestrator, number of masters and - /// agents, and FQDNs of masters and agents. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the container service in the specified subscription and - /// resource group. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string containerServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Deletes the specified container service. - /// - /// - /// Deletes the specified container service in the specified - /// subscription and resource group. The operation does not delete - /// other resources created as part of creating a container service, - /// including storage accounts, VMs, and availability sets. All the - /// other resources created with the container service are part of the - /// same resource group and can be deleted individually. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the container service in the specified subscription and - /// resource group. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string containerServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets a list of container services in the specified resource group. - /// - /// - /// Gets a list of container services in the specified subscription and - /// resource group. The operation returns properties of each container - /// service including state, orchestrator, number of masters and - /// agents, and FQDNs of masters and agents. - /// - /// - /// The name of the resource group. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Creates or updates a container service. - /// - /// - /// Creates or updates a container service with the specified - /// configuration of orchestrator, masters, and agents. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the container service in the specified subscription and - /// resource group. - /// - /// - /// Parameters supplied to the Create or Update a Container Service - /// operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string containerServiceName, ContainerService parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Deletes the specified container service. - /// - /// - /// Deletes the specified container service in the specified - /// subscription and resource group. The operation does not delete - /// other resources created as part of creating a container service, - /// including storage accounts, VMs, and availability sets. All the - /// other resources created with the container service are part of the - /// same resource group and can be deleted individually. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the container service in the specified subscription and - /// resource group. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string containerServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets a list of container services in the specified subscription. - /// - /// - /// Gets a list of container services in the specified subscription. - /// The operation returns properties of each container service - /// including state, orchestrator, number of masters and agents, and - /// FQDNs of masters and agents. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets a list of container services in the specified resource group. - /// - /// - /// Gets a list of container services in the specified subscription and - /// resource group. The operation returns properties of each container - /// service including state, orchestrator, number of masters and - /// agents, and FQDNs of masters and agents. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachineImagesEdgeZoneOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachineImagesEdgeZoneOperations.cs new file mode 100644 index 000000000000..3beead36a4a6 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachineImagesEdgeZoneOperations.cs @@ -0,0 +1,197 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// VirtualMachineImagesEdgeZoneOperations operations. + /// + public partial interface IVirtualMachineImagesEdgeZoneOperations + { + /// + /// Gets a virtual machine image in an edge zone. + /// + /// + /// The name of a supported Azure region. + /// + /// + /// The name of the edge zone. + /// + /// + /// A valid image publisher. + /// + /// + /// A valid image publisher offer. + /// + /// + /// A valid image SKU. + /// + /// + /// A valid image SKU version. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string location, string edgeZone, string publisherName, string offer, string skus, string version, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a list of all virtual machine image versions for the specified + /// location, edge zone, publisher, offer, and SKU. + /// + /// + /// The name of a supported Azure region. + /// + /// + /// The name of the edge zone. + /// + /// + /// A valid image publisher. + /// + /// + /// A valid image publisher offer. + /// + /// + /// A valid image SKU. + /// + /// + /// The expand expression to apply on the operation. + /// + /// + /// An integer value specifying the number of images to return that + /// matches supplied values. + /// + /// + /// Specifies the order of the results returned. Formatted as an OData + /// query. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListWithHttpMessagesAsync(string location, string edgeZone, string publisherName, string offer, string skus, string expand = default(string), int? top = default(int?), string orderby = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a list of virtual machine image offers for the specified + /// location, edge zone and publisher. + /// + /// + /// The name of a supported Azure region. + /// + /// + /// The name of the edge zone. + /// + /// + /// A valid image publisher. + /// + /// + /// 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>> ListOffersWithHttpMessagesAsync(string location, string edgeZone, string publisherName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a list of virtual machine image publishers for the specified + /// Azure location and edge zone. + /// + /// + /// The name of a supported Azure region. + /// + /// + /// The name of the edge zone. + /// + /// + /// 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>> ListPublishersWithHttpMessagesAsync(string location, string edgeZone, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a list of virtual machine image SKUs for the specified + /// location, edge zone, publisher, and offer. + /// + /// + /// The name of a supported Azure region. + /// + /// + /// The name of the edge zone. + /// + /// + /// A valid image publisher. + /// + /// + /// A valid image publisher offer. + /// + /// + /// 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>> ListSkusWithHttpMessagesAsync(string location, string edgeZone, string publisherName, string offer, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachineScaleSetVMsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachineScaleSetVMsOperations.cs index 24a0c0a583d6..7d01ea2808ed 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachineScaleSetVMsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachineScaleSetVMsOperations.cs @@ -155,6 +155,10 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// The instance ID of the virtual machine. /// + /// + /// Optional parameter to force delete a virtual machine from a VM + /// scale set. (Feature in Preview) + /// /// /// The headers that will be added to request. /// @@ -167,7 +171,7 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// Thrown when a required parameter is null /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets a virtual machine from a VM scale set. /// @@ -617,6 +621,10 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// The instance ID of the virtual machine. /// + /// + /// Optional parameter to force delete a virtual machine from a VM + /// scale set. (Feature in Preview) + /// /// /// The headers that will be added to request. /// @@ -629,7 +637,7 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// Thrown when a required parameter is null /// - Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Power off (stop) a virtual machine in a VM scale set. Note that /// resources are still attached and you are getting charged for the diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachineScaleSetsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachineScaleSetsOperations.cs index 9ca46d37e2fc..6af7aab40f00 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachineScaleSetsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachineScaleSetsOperations.cs @@ -23,6 +23,30 @@ namespace Microsoft.Azure.Management.Compute /// public partial interface IVirtualMachineScaleSetsOperations { + /// + /// Gets all the VM scale sets under the specified subscription for the + /// specified location. + /// + /// + /// The location for which VM scale sets under the subscription are + /// queried. + /// + /// + /// 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>> ListByLocationWithHttpMessagesAsync(string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Create or update a VM scale set. /// @@ -88,6 +112,10 @@ public partial interface IVirtualMachineScaleSetsOperations /// /// The name of the VM scale set. /// + /// + /// Optional parameter to force delete a VM scale set. (Feature in + /// Preview) + /// /// /// The headers that will be added to request. /// @@ -100,7 +128,7 @@ public partial interface IVirtualMachineScaleSetsOperations /// /// Thrown when a required parameter is null /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Display information about a virtual machine scale set. /// @@ -168,6 +196,10 @@ public partial interface IVirtualMachineScaleSetsOperations /// /// The virtual machine scale set instance ids. /// + /// + /// Optional parameter to force delete virtual machines from the VM + /// scale set. (Feature in Preview) + /// /// /// The headers that will be added to request. /// @@ -180,7 +212,7 @@ public partial interface IVirtualMachineScaleSetsOperations /// /// Thrown when a required parameter is null /// - Task DeleteInstancesWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteInstancesWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets the status of a VM scale set instance. /// @@ -682,6 +714,10 @@ public partial interface IVirtualMachineScaleSetsOperations /// /// The name of the VM scale set. /// + /// + /// Optional parameter to force delete a VM scale set. (Feature in + /// Preview) + /// /// /// The headers that will be added to request. /// @@ -694,7 +730,7 @@ public partial interface IVirtualMachineScaleSetsOperations /// /// Thrown when a required parameter is null /// - Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deallocates specific virtual machines in a VM scale set. Shuts down /// the virtual machines and releases the compute resources. You are @@ -737,6 +773,10 @@ public partial interface IVirtualMachineScaleSetsOperations /// /// The virtual machine scale set instance ids. /// + /// + /// Optional parameter to force delete virtual machines from the VM + /// scale set. (Feature in Preview) + /// /// /// The headers that will be added to request. /// @@ -749,7 +789,7 @@ public partial interface IVirtualMachineScaleSetsOperations /// /// Thrown when a required parameter is null /// - Task BeginDeleteInstancesWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task BeginDeleteInstancesWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Power off (stop) one or more virtual machines in a VM scale set. /// Note that resources are still attached and you are getting charged @@ -1007,6 +1047,29 @@ public partial interface IVirtualMachineScaleSetsOperations /// Task BeginSetOrchestrationServiceStateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, OrchestrationServiceStateInput parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Gets all the VM scale sets under the specified subscription for the + /// specified location. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListByLocationNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Gets a list of all VM scale sets under a resource group. /// /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachinesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachinesOperations.cs index bf1285315cf8..818ce5adb86a 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachinesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachinesOperations.cs @@ -615,6 +615,34 @@ public partial interface IVirtualMachinesOperations /// Task> AssessPatchesWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Installs patches on the VM. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the virtual machine. + /// + /// + /// Input for InstallPatches as directly received by the API + /// + /// + /// 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> InstallPatchesWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineInstallPatchesParameters installPatchesInput, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Run command on the VM. /// /// @@ -996,6 +1024,34 @@ public partial interface IVirtualMachinesOperations /// Task> BeginAssessPatchesWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Installs patches on the VM. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the virtual machine. + /// + /// + /// Input for InstallPatches as directly received by the API + /// + /// + /// 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> BeginInstallPatchesWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineInstallPatchesParameters installPatchesInput, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Run command on the VM. /// /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ImagesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ImagesOperations.cs index 39a12de9721a..9ccac6de301c 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ImagesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ImagesOperations.cs @@ -169,7 +169,7 @@ internal ImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -361,7 +361,7 @@ internal ImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -541,7 +541,7 @@ internal ImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -742,7 +742,7 @@ internal ImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -968,7 +968,7 @@ internal ImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1184,7 +1184,7 @@ internal ImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/LogAnalyticsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/LogAnalyticsOperations.cs index b31614b702f2..90df713f2e74 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/LogAnalyticsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/LogAnalyticsOperations.cs @@ -152,7 +152,7 @@ internal LogAnalyticsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -363,7 +363,7 @@ internal LogAnalyticsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/AvailablePatchSummary.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/AvailablePatchSummary.cs index a3968ca58762..322c7909b592 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/AvailablePatchSummary.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/AvailablePatchSummary.cs @@ -32,9 +32,10 @@ public AvailablePatchSummary() /// /// The overall success or failure status of the /// operation. It remains "InProgress" until the operation completes. - /// At that point it will become "Failed", "Succeeded", or - /// "CompletedWithWarnings.". Possible values include: 'InProgress', - /// 'Failed', 'Succeeded', 'CompletedWithWarnings' + /// At that point it will become "Unknown", "Failed", "Succeeded", or + /// "CompletedWithWarnings.". Possible values include: 'Unknown', + /// 'InProgress', 'Failed', 'Succeeded', + /// 'CompletedWithWarnings' /// The activity ID of the operation /// that produced this result. It is used to correlate across CRP and /// extension logs. @@ -74,9 +75,9 @@ public AvailablePatchSummary() /// /// Gets the overall success or failure status of the operation. It /// remains "InProgress" until the operation completes. At that point - /// it will become "Failed", "Succeeded", or "CompletedWithWarnings.". - /// Possible values include: 'InProgress', 'Failed', 'Succeeded', - /// 'CompletedWithWarnings' + /// it will become "Unknown", "Failed", "Succeeded", or + /// "CompletedWithWarnings.". Possible values include: 'Unknown', + /// 'InProgress', 'Failed', 'Succeeded', 'CompletedWithWarnings' /// [JsonProperty(PropertyName = "status")] public string Status { get; private set; } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudService.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudService.cs deleted file mode 100644 index 2332c9c2f9f2..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudService.cs +++ /dev/null @@ -1,106 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Describes the cloud service. - /// - public partial class CloudService : IResource - { - /// - /// Initializes a new instance of the CloudService class. - /// - public CloudService() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the CloudService class. - /// - /// Resource location. - /// Resource Id. - /// Resource name. - /// Resource type. - /// Resource tags. - public CloudService(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), CloudServiceProperties properties = default(CloudServiceProperties)) - { - Id = id; - Name = name; - Type = type; - Location = location; - Tags = tags; - Properties = properties; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets resource Id. - /// - [JsonProperty(PropertyName = "id")] - public string Id { get; private set; } - - /// - /// Gets resource name. - /// - [JsonProperty(PropertyName = "name")] - public string Name { get; private set; } - - /// - /// Gets resource type. - /// - [JsonProperty(PropertyName = "type")] - public string Type { get; private set; } - - /// - /// Gets or sets resource location. - /// - [JsonProperty(PropertyName = "location")] - public string Location { get; set; } - - /// - /// Gets or sets resource tags. - /// - [JsonProperty(PropertyName = "tags")] - public IDictionary Tags { get; set; } - - /// - /// - [JsonProperty(PropertyName = "properties")] - public CloudServiceProperties Properties { get; set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (Location == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "Location"); - } - } - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceExtensionProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceExtensionProfile.cs deleted file mode 100644 index 4458559f7cbc..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceExtensionProfile.cs +++ /dev/null @@ -1,56 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Describes a cloud service extension profile. - /// - public partial class CloudServiceExtensionProfile - { - /// - /// Initializes a new instance of the CloudServiceExtensionProfile - /// class. - /// - public CloudServiceExtensionProfile() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the CloudServiceExtensionProfile - /// class. - /// - /// List of extensions for the cloud - /// service. - public CloudServiceExtensionProfile(IList extensions = default(IList)) - { - Extensions = extensions; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets list of extensions for the cloud service. - /// - [JsonProperty(PropertyName = "extensions")] - public IList Extensions { get; set; } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceExtensionProperties.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceExtensionProperties.cs deleted file mode 100644 index 5fbf4d36b05d..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceExtensionProperties.cs +++ /dev/null @@ -1,179 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Extension Properties. - /// - public partial class CloudServiceExtensionProperties - { - /// - /// Initializes a new instance of the CloudServiceExtensionProperties - /// class. - /// - public CloudServiceExtensionProperties() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the CloudServiceExtensionProperties - /// class. - /// - /// The name of the extension handler - /// publisher. - /// Specifies the type of the extension. - /// Specifies the version of the - /// extension. Specifies the version of the extension. If this element - /// is not specified or an asterisk (*) is used as the value, the - /// latest version of the extension is used. If the value is specified - /// with a major version number and an asterisk as the minor version - /// number (X.), the latest minor version of the specified major - /// version is selected. If a major version number and a minor version - /// number are specified (X.Y), the specific extension version is - /// selected. If a version is specified, an auto-upgrade is performed - /// on the role instance. - /// Explicitly specify whether - /// platform can automatically upgrade typeHandlerVersion to higher - /// minor versions when they become available. - /// Public settings for the extension. For JSON - /// extensions, this is the JSON settings for the extension. For XML - /// Extension (like RDP), this is the XML setting for the - /// extension. - /// Protected settings for the - /// extension which are encrypted before sent to the role - /// instance. - /// Tag to force apply the provided public - /// and protected settings. - /// Changing the tag value allows for re-running the extension without - /// changing any of the public or protected settings. - /// If forceUpdateTag is not changed, updates to public or protected - /// settings would still be applied by the handler. - /// If neither forceUpdateTag nor any of public or protected settings - /// change, extension would flow to the role instance with the same - /// sequence-number, and - /// it is up to handler implementation whether to re-run it or - /// not - /// The provisioning state, which only - /// appears in the response. - /// Optional list of roles to apply this - /// extension. If property is not specified or '*' is specified, - /// extension is applied to all roles in the cloud service. - public CloudServiceExtensionProperties(string publisher = default(string), string type = default(string), string typeHandlerVersion = default(string), bool? autoUpgradeMinorVersion = default(bool?), string settings = default(string), string protectedSettings = default(string), CloudServiceVaultAndSecretReference protectedSettingsFromKeyVault = default(CloudServiceVaultAndSecretReference), string forceUpdateTag = default(string), string provisioningState = default(string), IList rolesAppliedTo = default(IList)) - { - Publisher = publisher; - Type = type; - TypeHandlerVersion = typeHandlerVersion; - AutoUpgradeMinorVersion = autoUpgradeMinorVersion; - Settings = settings; - ProtectedSettings = protectedSettings; - ProtectedSettingsFromKeyVault = protectedSettingsFromKeyVault; - ForceUpdateTag = forceUpdateTag; - ProvisioningState = provisioningState; - RolesAppliedTo = rolesAppliedTo; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets the name of the extension handler publisher. - /// - [JsonProperty(PropertyName = "publisher")] - public string Publisher { get; set; } - - /// - /// Gets or sets specifies the type of the extension. - /// - [JsonProperty(PropertyName = "type")] - public string Type { get; set; } - - /// - /// Gets or sets specifies the version of the extension. Specifies the - /// version of the extension. If this element is not specified or an - /// asterisk (*) is used as the value, the latest version of the - /// extension is used. If the value is specified with a major version - /// number and an asterisk as the minor version number (X.), the latest - /// minor version of the specified major version is selected. If a - /// major version number and a minor version number are specified - /// (X.Y), the specific extension version is selected. If a version is - /// specified, an auto-upgrade is performed on the role instance. - /// - [JsonProperty(PropertyName = "typeHandlerVersion")] - public string TypeHandlerVersion { get; set; } - - /// - /// Gets or sets explicitly specify whether platform can automatically - /// upgrade typeHandlerVersion to higher minor versions when they - /// become available. - /// - [JsonProperty(PropertyName = "autoUpgradeMinorVersion")] - public bool? AutoUpgradeMinorVersion { get; set; } - - /// - /// Gets or sets public settings for the extension. For JSON - /// extensions, this is the JSON settings for the extension. For XML - /// Extension (like RDP), this is the XML setting for the extension. - /// - [JsonProperty(PropertyName = "settings")] - public string Settings { get; set; } - - /// - /// Gets or sets protected settings for the extension which are - /// encrypted before sent to the role instance. - /// - [JsonProperty(PropertyName = "protectedSettings")] - public string ProtectedSettings { get; set; } - - /// - /// - [JsonProperty(PropertyName = "protectedSettingsFromKeyVault")] - public CloudServiceVaultAndSecretReference ProtectedSettingsFromKeyVault { get; set; } - - /// - /// Gets or sets tag to force apply the provided public and protected - /// settings. - /// Changing the tag value allows for re-running the extension without - /// changing any of the public or protected settings. - /// If forceUpdateTag is not changed, updates to public or protected - /// settings would still be applied by the handler. - /// If neither forceUpdateTag nor any of public or protected settings - /// change, extension would flow to the role instance with the same - /// sequence-number, and - /// it is up to handler implementation whether to re-run it or not - /// - [JsonProperty(PropertyName = "forceUpdateTag")] - public string ForceUpdateTag { get; set; } - - /// - /// Gets the provisioning state, which only appears in the response. - /// - [JsonProperty(PropertyName = "provisioningState")] - public string ProvisioningState { get; private set; } - - /// - /// Gets or sets optional list of roles to apply this extension. If - /// property is not specified or '*' is specified, extension is applied - /// to all roles in the cloud service. - /// - [JsonProperty(PropertyName = "rolesAppliedTo")] - public IList RolesAppliedTo { get; set; } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceInstanceView.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceInstanceView.cs deleted file mode 100644 index 030b6de7ce0b..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceInstanceView.cs +++ /dev/null @@ -1,67 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// InstanceView of CloudService as a whole - /// - public partial class CloudServiceInstanceView - { - /// - /// Initializes a new instance of the CloudServiceInstanceView class. - /// - public CloudServiceInstanceView() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the CloudServiceInstanceView class. - /// - /// The version of the SDK that was used to - /// generate the package for the cloud service. - public CloudServiceInstanceView(InstanceViewStatusesSummary roleInstance = default(InstanceViewStatusesSummary), string sdkVersion = default(string), IList statuses = default(IList)) - { - RoleInstance = roleInstance; - SdkVersion = sdkVersion; - Statuses = statuses; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// - [JsonProperty(PropertyName = "roleInstance")] - public InstanceViewStatusesSummary RoleInstance { get; set; } - - /// - /// Gets the version of the SDK that was used to generate the package - /// for the cloud service. - /// - [JsonProperty(PropertyName = "sdkVersion")] - public string SdkVersion { get; private set; } - - /// - /// - [JsonProperty(PropertyName = "statuses")] - public IList Statuses { get; private set; } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceNetworkProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceNetworkProfile.cs deleted file mode 100644 index e3de856fe0bf..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceNetworkProfile.cs +++ /dev/null @@ -1,61 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Network Profile for the cloud service. - /// - public partial class CloudServiceNetworkProfile - { - /// - /// Initializes a new instance of the CloudServiceNetworkProfile class. - /// - public CloudServiceNetworkProfile() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the CloudServiceNetworkProfile class. - /// - /// The list of load balancer - /// configurations for the cloud service. - public CloudServiceNetworkProfile(IList loadBalancerConfigurations = default(IList), SubResource swappableCloudService = default(SubResource)) - { - LoadBalancerConfigurations = loadBalancerConfigurations; - SwappableCloudService = swappableCloudService; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets the list of load balancer configurations for the cloud - /// service. - /// - [JsonProperty(PropertyName = "loadBalancerConfigurations")] - public IList LoadBalancerConfigurations { get; set; } - - /// - /// - [JsonProperty(PropertyName = "swappableCloudService")] - public SubResource SwappableCloudService { get; set; } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceOsProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceOsProfile.cs deleted file mode 100644 index 012e60e27a47..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceOsProfile.cs +++ /dev/null @@ -1,55 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Describes the OS profile for the cloud service. - /// - public partial class CloudServiceOsProfile - { - /// - /// Initializes a new instance of the CloudServiceOsProfile class. - /// - public CloudServiceOsProfile() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the CloudServiceOsProfile class. - /// - /// Specifies set of certificates that should be - /// installed onto the role instances. - public CloudServiceOsProfile(IList secrets = default(IList)) - { - Secrets = secrets; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets specifies set of certificates that should be installed - /// onto the role instances. - /// - [JsonProperty(PropertyName = "secrets")] - public IList Secrets { get; set; } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceProperties.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceProperties.cs deleted file mode 100644 index b44b5b9753a0..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceProperties.cs +++ /dev/null @@ -1,157 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Newtonsoft.Json; - using System.Linq; - - /// - /// Cloud service properties - /// - public partial class CloudServiceProperties - { - /// - /// Initializes a new instance of the CloudServiceProperties class. - /// - public CloudServiceProperties() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the CloudServiceProperties class. - /// - /// Specifies a URL that refers to the - /// location of the service package in the Blob service. The service - /// package URL can be Shared Access Signature (SAS) URI from any - /// storage account. - /// This is a write-only property and is not returned in GET - /// calls. - /// Specifies the XML service configuration - /// (.cscfg) for the cloud service. - /// Specifies a URL that refers to the - /// location of the service configuration in the Blob service. The - /// service package URL can be Shared Access Signature (SAS) URI from - /// any storage account. - /// This is a write-only property and is not returned in GET - /// calls. - /// (Optional) Indicates whether to - /// start the cloud service immediately after it is created. The - /// default value is `true`. - /// If false, the service model is still deployed, but the code is not - /// run immediately. Instead, the service is PoweredOff until you call - /// Start, at which time the service will be started. A deployed - /// service still incurs charges, even if it is poweredoff. - /// Possible values include: 'Auto', - /// 'Manual', 'Simultaneous' - /// The provisioning state, which only - /// appears in the response. - /// The unique identifier for the cloud - /// service. - public CloudServiceProperties(string packageUrl = default(string), string configuration = default(string), string configurationUrl = default(string), bool? startCloudService = default(bool?), string upgradeMode = default(string), CloudServiceRoleProfile roleProfile = default(CloudServiceRoleProfile), CloudServiceOsProfile osProfile = default(CloudServiceOsProfile), CloudServiceNetworkProfile networkProfile = default(CloudServiceNetworkProfile), CloudServiceExtensionProfile extensionProfile = default(CloudServiceExtensionProfile), string provisioningState = default(string), string uniqueId = default(string)) - { - PackageUrl = packageUrl; - Configuration = configuration; - ConfigurationUrl = configurationUrl; - StartCloudService = startCloudService; - UpgradeMode = upgradeMode; - RoleProfile = roleProfile; - OsProfile = osProfile; - NetworkProfile = networkProfile; - ExtensionProfile = extensionProfile; - ProvisioningState = provisioningState; - UniqueId = uniqueId; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets specifies a URL that refers to the location of the - /// service package in the Blob service. The service package URL can be - /// Shared Access Signature (SAS) URI from any storage account. - /// This is a write-only property and is not returned in GET calls. - /// - [JsonProperty(PropertyName = "packageUrl")] - public string PackageUrl { get; set; } - - /// - /// Gets or sets specifies the XML service configuration (.cscfg) for - /// the cloud service. - /// - [JsonProperty(PropertyName = "configuration")] - public string Configuration { get; set; } - - /// - /// Gets or sets specifies a URL that refers to the location of the - /// service configuration in the Blob service. The service package URL - /// can be Shared Access Signature (SAS) URI from any storage account. - /// This is a write-only property and is not returned in GET calls. - /// - [JsonProperty(PropertyName = "configurationUrl")] - public string ConfigurationUrl { get; set; } - - /// - /// Gets or sets (Optional) Indicates whether to start the cloud - /// service immediately after it is created. The default value is - /// `true`. - /// If false, the service model is still deployed, but the code is not - /// run immediately. Instead, the service is PoweredOff until you call - /// Start, at which time the service will be started. A deployed - /// service still incurs charges, even if it is poweredoff. - /// - [JsonProperty(PropertyName = "startCloudService")] - public bool? StartCloudService { get; set; } - - /// - /// Gets or sets possible values include: 'Auto', 'Manual', - /// 'Simultaneous' - /// - [JsonProperty(PropertyName = "upgradeMode")] - public string UpgradeMode { get; set; } - - /// - /// - [JsonProperty(PropertyName = "roleProfile")] - public CloudServiceRoleProfile RoleProfile { get; set; } - - /// - /// - [JsonProperty(PropertyName = "osProfile")] - public CloudServiceOsProfile OsProfile { get; set; } - - /// - /// - [JsonProperty(PropertyName = "networkProfile")] - public CloudServiceNetworkProfile NetworkProfile { get; set; } - - /// - /// - [JsonProperty(PropertyName = "extensionProfile")] - public CloudServiceExtensionProfile ExtensionProfile { get; set; } - - /// - /// Gets the provisioning state, which only appears in the response. - /// - [JsonProperty(PropertyName = "provisioningState")] - public string ProvisioningState { get; private set; } - - /// - /// Gets the unique identifier for the cloud service. - /// - [JsonProperty(PropertyName = "uniqueId")] - public string UniqueId { get; private set; } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRole.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRole.cs deleted file mode 100644 index ed30d6cb8090..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRole.cs +++ /dev/null @@ -1,87 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Newtonsoft.Json; - using System.Linq; - - /// - /// Describes a role of the cloud service. - /// - public partial class CloudServiceRole - { - /// - /// Initializes a new instance of the CloudServiceRole class. - /// - public CloudServiceRole() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the CloudServiceRole class. - /// - /// Resource id - /// Resource name - /// Resource type - /// Resource location - public CloudServiceRole(string id = default(string), string name = default(string), string type = default(string), string location = default(string), CloudServiceRoleSku sku = default(CloudServiceRoleSku), CloudServiceRoleProperties properties = default(CloudServiceRoleProperties)) - { - Id = id; - Name = name; - Type = type; - Location = location; - Sku = sku; - Properties = properties; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets resource id - /// - [JsonProperty(PropertyName = "id")] - public string Id { get; private set; } - - /// - /// Gets resource name - /// - [JsonProperty(PropertyName = "name")] - public string Name { get; private set; } - - /// - /// Gets resource type - /// - [JsonProperty(PropertyName = "type")] - public string Type { get; private set; } - - /// - /// Gets resource location - /// - [JsonProperty(PropertyName = "location")] - public string Location { get; private set; } - - /// - /// - [JsonProperty(PropertyName = "sku")] - public CloudServiceRoleSku Sku { get; set; } - - /// - /// - [JsonProperty(PropertyName = "properties")] - public CloudServiceRoleProperties Properties { get; set; } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleProfile.cs deleted file mode 100644 index 6ec87974a474..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleProfile.cs +++ /dev/null @@ -1,53 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Describes the role profile for the cloud service. - /// - public partial class CloudServiceRoleProfile - { - /// - /// Initializes a new instance of the CloudServiceRoleProfile class. - /// - public CloudServiceRoleProfile() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the CloudServiceRoleProfile class. - /// - /// List of roles for the cloud service. - public CloudServiceRoleProfile(IList roles = default(IList)) - { - Roles = roles; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets list of roles for the cloud service. - /// - [JsonProperty(PropertyName = "roles")] - public IList Roles { get; set; } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleProfileProperties.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleProfileProperties.cs deleted file mode 100644 index 47db1e0408aa..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleProfileProperties.cs +++ /dev/null @@ -1,59 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Newtonsoft.Json; - using System.Linq; - - /// - /// Describes the role properties. - /// - public partial class CloudServiceRoleProfileProperties - { - /// - /// Initializes a new instance of the CloudServiceRoleProfileProperties - /// class. - /// - public CloudServiceRoleProfileProperties() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the CloudServiceRoleProfileProperties - /// class. - /// - /// Resource name. - public CloudServiceRoleProfileProperties(string name = default(string), CloudServiceRoleSku sku = default(CloudServiceRoleSku)) - { - Name = name; - Sku = sku; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets resource name. - /// - [JsonProperty(PropertyName = "name")] - public string Name { get; set; } - - /// - /// - [JsonProperty(PropertyName = "sku")] - public CloudServiceRoleSku Sku { get; set; } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleProperties.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleProperties.cs deleted file mode 100644 index 48d0c85661ff..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleProperties.cs +++ /dev/null @@ -1,50 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Newtonsoft.Json; - using System.Linq; - - public partial class CloudServiceRoleProperties - { - /// - /// Initializes a new instance of the CloudServiceRoleProperties class. - /// - public CloudServiceRoleProperties() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the CloudServiceRoleProperties class. - /// - /// Specifies the ID which uniquely identifies a - /// cloud service role. - public CloudServiceRoleProperties(string uniqueId = default(string)) - { - UniqueId = uniqueId; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets specifies the ID which uniquely identifies a cloud service - /// role. - /// - [JsonProperty(PropertyName = "uniqueId")] - public string UniqueId { get; private set; } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleSku.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleSku.cs deleted file mode 100644 index b0bbae8e08a5..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleSku.cs +++ /dev/null @@ -1,78 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Newtonsoft.Json; - using System.Linq; - - /// - /// Describes the cloud service role sku. - /// - public partial class CloudServiceRoleSku - { - /// - /// Initializes a new instance of the CloudServiceRoleSku class. - /// - public CloudServiceRoleSku() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the CloudServiceRoleSku class. - /// - /// The sku name. NOTE: If the new SKU is not - /// supported on the hardware the cloud service is currently on, you - /// need to delete and recreate the cloud service or move back to the - /// old sku. - /// Specifies the tier of the cloud service. - /// Possible Values are <br /><br /> **Standard** <br - /// /><br /> **Basic** - /// Specifies the number of role instances in - /// the cloud service. - public CloudServiceRoleSku(string name = default(string), string tier = default(string), long? capacity = default(long?)) - { - Name = name; - Tier = tier; - Capacity = capacity; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets the sku name. NOTE: If the new SKU is not supported on - /// the hardware the cloud service is currently on, you need to delete - /// and recreate the cloud service or move back to the old sku. - /// - [JsonProperty(PropertyName = "name")] - public string Name { get; set; } - - /// - /// Gets or sets specifies the tier of the cloud service. Possible - /// Values are &lt;br /&gt;&lt;br /&gt; **Standard** - /// &lt;br /&gt;&lt;br /&gt; **Basic** - /// - [JsonProperty(PropertyName = "tier")] - public string Tier { get; set; } - - /// - /// Gets or sets specifies the number of role instances in the cloud - /// service. - /// - [JsonProperty(PropertyName = "capacity")] - public long? Capacity { get; set; } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceUpdate.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceUpdate.cs deleted file mode 100644 index 6d1c6f76be04..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceUpdate.cs +++ /dev/null @@ -1,50 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - public partial class CloudServiceUpdate - { - /// - /// Initializes a new instance of the CloudServiceUpdate class. - /// - public CloudServiceUpdate() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the CloudServiceUpdate class. - /// - /// Resource tags - public CloudServiceUpdate(IDictionary tags = default(IDictionary)) - { - Tags = tags; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets resource tags - /// - [JsonProperty(PropertyName = "tags")] - public IDictionary Tags { get; set; } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceVaultAndSecretReference.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceVaultAndSecretReference.cs deleted file mode 100644 index 13461382f05c..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceVaultAndSecretReference.cs +++ /dev/null @@ -1,54 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Newtonsoft.Json; - using System.Linq; - - public partial class CloudServiceVaultAndSecretReference - { - /// - /// Initializes a new instance of the - /// CloudServiceVaultAndSecretReference class. - /// - public CloudServiceVaultAndSecretReference() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the - /// CloudServiceVaultAndSecretReference class. - /// - public CloudServiceVaultAndSecretReference(SubResource sourceVault = default(SubResource), string secretUrl = default(string)) - { - SourceVault = sourceVault; - SecretUrl = secretUrl; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// - [JsonProperty(PropertyName = "sourceVault")] - public SubResource SourceVault { get; set; } - - /// - /// - [JsonProperty(PropertyName = "secretUrl")] - public string SecretUrl { get; set; } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceVaultCertificate.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceVaultCertificate.cs deleted file mode 100644 index d5643600aa3c..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceVaultCertificate.cs +++ /dev/null @@ -1,56 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Newtonsoft.Json; - using System.Linq; - - /// - /// Describes a single certificate reference in a Key Vault, and where the - /// certificate should reside on the role instance. - /// - public partial class CloudServiceVaultCertificate - { - /// - /// Initializes a new instance of the CloudServiceVaultCertificate - /// class. - /// - public CloudServiceVaultCertificate() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the CloudServiceVaultCertificate - /// class. - /// - /// This is the URL of a certificate that - /// has been uploaded to Key Vault as a secret. - public CloudServiceVaultCertificate(string certificateUrl = default(string)) - { - CertificateUrl = certificateUrl; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets this is the URL of a certificate that has been - /// uploaded to Key Vault as a secret. - /// - [JsonProperty(PropertyName = "certificateUrl")] - public string CertificateUrl { get; set; } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceVaultSecretGroup.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceVaultSecretGroup.cs deleted file mode 100644 index 38b9d2224c25..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceVaultSecretGroup.cs +++ /dev/null @@ -1,67 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Describes a set of certificates which are all in the same Key Vault. - /// - public partial class CloudServiceVaultSecretGroup - { - /// - /// Initializes a new instance of the CloudServiceVaultSecretGroup - /// class. - /// - public CloudServiceVaultSecretGroup() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the CloudServiceVaultSecretGroup - /// class. - /// - /// The relative URL of the Key Vault - /// containing all of the certificates in VaultCertificates. - /// The list of key vault references in - /// SourceVault which contain certificates. - public CloudServiceVaultSecretGroup(SubResource sourceVault = default(SubResource), IList vaultCertificates = default(IList)) - { - SourceVault = sourceVault; - VaultCertificates = vaultCertificates; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets the relative URL of the Key Vault containing all of - /// the certificates in VaultCertificates. - /// - [JsonProperty(PropertyName = "sourceVault")] - public SubResource SourceVault { get; set; } - - /// - /// Gets or sets the list of key vault references in SourceVault which - /// contain certificates. - /// - [JsonProperty(PropertyName = "vaultCertificates")] - public IList VaultCertificates { get; set; } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerService.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerService.cs deleted file mode 100644 index e762dad4d1f7..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerService.cs +++ /dev/null @@ -1,192 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Container service. - /// - [Rest.Serialization.JsonTransformation] - public partial class ContainerService : Resource - { - /// - /// Initializes a new instance of the ContainerService class. - /// - public ContainerService() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the ContainerService class. - /// - /// Resource location - /// Properties of master agents. - /// Properties of the agent - /// pool. - /// Properties of Linux VMs. - /// Resource Id - /// Resource name - /// Resource type - /// Resource tags - /// the current deployment or - /// provisioning state, which only appears in the response. - /// Properties of the - /// orchestrator. - /// Properties for custom clusters. - /// Properties for cluster - /// service principals. - /// Properties of Windows VMs. - /// Properties of the diagnostic - /// agent. - public ContainerService(string location, ContainerServiceMasterProfile masterProfile, IList agentPoolProfiles, ContainerServiceLinuxProfile linuxProfile, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string provisioningState = default(string), ContainerServiceOrchestratorProfile orchestratorProfile = default(ContainerServiceOrchestratorProfile), ContainerServiceCustomProfile customProfile = default(ContainerServiceCustomProfile), ContainerServiceServicePrincipalProfile servicePrincipalProfile = default(ContainerServiceServicePrincipalProfile), ContainerServiceWindowsProfile windowsProfile = default(ContainerServiceWindowsProfile), ContainerServiceDiagnosticsProfile diagnosticsProfile = default(ContainerServiceDiagnosticsProfile)) - : base(location, id, name, type, tags) - { - ProvisioningState = provisioningState; - OrchestratorProfile = orchestratorProfile; - CustomProfile = customProfile; - ServicePrincipalProfile = servicePrincipalProfile; - MasterProfile = masterProfile; - AgentPoolProfiles = agentPoolProfiles; - WindowsProfile = windowsProfile; - LinuxProfile = linuxProfile; - DiagnosticsProfile = diagnosticsProfile; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets the current deployment or provisioning state, which only - /// appears in the response. - /// - [JsonProperty(PropertyName = "properties.provisioningState")] - public string ProvisioningState { get; private set; } - - /// - /// Gets or sets properties of the orchestrator. - /// - [JsonProperty(PropertyName = "properties.orchestratorProfile")] - public ContainerServiceOrchestratorProfile OrchestratorProfile { get; set; } - - /// - /// Gets or sets properties for custom clusters. - /// - [JsonProperty(PropertyName = "properties.customProfile")] - public ContainerServiceCustomProfile CustomProfile { get; set; } - - /// - /// Gets or sets properties for cluster service principals. - /// - [JsonProperty(PropertyName = "properties.servicePrincipalProfile")] - public ContainerServiceServicePrincipalProfile ServicePrincipalProfile { get; set; } - - /// - /// Gets or sets properties of master agents. - /// - [JsonProperty(PropertyName = "properties.masterProfile")] - public ContainerServiceMasterProfile MasterProfile { get; set; } - - /// - /// Gets or sets properties of the agent pool. - /// - [JsonProperty(PropertyName = "properties.agentPoolProfiles")] - public IList AgentPoolProfiles { get; set; } - - /// - /// Gets or sets properties of Windows VMs. - /// - [JsonProperty(PropertyName = "properties.windowsProfile")] - public ContainerServiceWindowsProfile WindowsProfile { get; set; } - - /// - /// Gets or sets properties of Linux VMs. - /// - [JsonProperty(PropertyName = "properties.linuxProfile")] - public ContainerServiceLinuxProfile LinuxProfile { get; set; } - - /// - /// Gets or sets properties of the diagnostic agent. - /// - [JsonProperty(PropertyName = "properties.diagnosticsProfile")] - public ContainerServiceDiagnosticsProfile DiagnosticsProfile { get; set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public override void Validate() - { - base.Validate(); - if (MasterProfile == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "MasterProfile"); - } - if (AgentPoolProfiles == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "AgentPoolProfiles"); - } - if (LinuxProfile == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "LinuxProfile"); - } - if (OrchestratorProfile != null) - { - OrchestratorProfile.Validate(); - } - if (CustomProfile != null) - { - CustomProfile.Validate(); - } - if (ServicePrincipalProfile != null) - { - ServicePrincipalProfile.Validate(); - } - if (MasterProfile != null) - { - MasterProfile.Validate(); - } - if (AgentPoolProfiles != null) - { - foreach (var element in AgentPoolProfiles) - { - if (element != null) - { - element.Validate(); - } - } - } - if (WindowsProfile != null) - { - WindowsProfile.Validate(); - } - if (LinuxProfile != null) - { - LinuxProfile.Validate(); - } - if (DiagnosticsProfile != null) - { - DiagnosticsProfile.Validate(); - } - } - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceAgentPoolProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceAgentPoolProfile.cs deleted file mode 100644 index df3842392e84..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceAgentPoolProfile.cs +++ /dev/null @@ -1,149 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Microsoft.Rest; - using Newtonsoft.Json; - using System.Linq; - - /// - /// Profile for the container service agent pool. - /// - public partial class ContainerServiceAgentPoolProfile - { - /// - /// Initializes a new instance of the ContainerServiceAgentPoolProfile - /// class. - /// - public ContainerServiceAgentPoolProfile() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the ContainerServiceAgentPoolProfile - /// class. - /// - /// Unique name of the agent pool profile in the - /// context of the subscription and resource group. - /// Number of agents (VMs) to host docker - /// containers. Allowed values must be in the range of 1 to 100 - /// (inclusive). The default value is 1. - /// Size of agent VMs. Possible values include: - /// 'Standard_A0', 'Standard_A1', 'Standard_A2', 'Standard_A3', - /// 'Standard_A4', 'Standard_A5', 'Standard_A6', 'Standard_A7', - /// 'Standard_A8', 'Standard_A9', 'Standard_A10', 'Standard_A11', - /// 'Standard_D1', 'Standard_D2', 'Standard_D3', 'Standard_D4', - /// 'Standard_D11', 'Standard_D12', 'Standard_D13', 'Standard_D14', - /// 'Standard_D1_v2', 'Standard_D2_v2', 'Standard_D3_v2', - /// 'Standard_D4_v2', 'Standard_D5_v2', 'Standard_D11_v2', - /// 'Standard_D12_v2', 'Standard_D13_v2', 'Standard_D14_v2', - /// 'Standard_G1', 'Standard_G2', 'Standard_G3', 'Standard_G4', - /// 'Standard_G5', 'Standard_DS1', 'Standard_DS2', 'Standard_DS3', - /// 'Standard_DS4', 'Standard_DS11', 'Standard_DS12', 'Standard_DS13', - /// 'Standard_DS14', 'Standard_GS1', 'Standard_GS2', 'Standard_GS3', - /// 'Standard_GS4', 'Standard_GS5' - /// DNS prefix to be used to create the FQDN - /// for the agent pool. - /// FQDN for the agent pool. - public ContainerServiceAgentPoolProfile(string name, int count, string vmSize, string dnsPrefix, string fqdn = default(string)) - { - Name = name; - Count = count; - VmSize = vmSize; - DnsPrefix = dnsPrefix; - Fqdn = fqdn; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets unique name of the agent pool profile in the context - /// of the subscription and resource group. - /// - [JsonProperty(PropertyName = "name")] - public string Name { get; set; } - - /// - /// Gets or sets number of agents (VMs) to host docker containers. - /// Allowed values must be in the range of 1 to 100 (inclusive). The - /// default value is 1. - /// - [JsonProperty(PropertyName = "count")] - public int Count { get; set; } - - /// - /// Gets or sets size of agent VMs. Possible values include: - /// 'Standard_A0', 'Standard_A1', 'Standard_A2', 'Standard_A3', - /// 'Standard_A4', 'Standard_A5', 'Standard_A6', 'Standard_A7', - /// 'Standard_A8', 'Standard_A9', 'Standard_A10', 'Standard_A11', - /// 'Standard_D1', 'Standard_D2', 'Standard_D3', 'Standard_D4', - /// 'Standard_D11', 'Standard_D12', 'Standard_D13', 'Standard_D14', - /// 'Standard_D1_v2', 'Standard_D2_v2', 'Standard_D3_v2', - /// 'Standard_D4_v2', 'Standard_D5_v2', 'Standard_D11_v2', - /// 'Standard_D12_v2', 'Standard_D13_v2', 'Standard_D14_v2', - /// 'Standard_G1', 'Standard_G2', 'Standard_G3', 'Standard_G4', - /// 'Standard_G5', 'Standard_DS1', 'Standard_DS2', 'Standard_DS3', - /// 'Standard_DS4', 'Standard_DS11', 'Standard_DS12', 'Standard_DS13', - /// 'Standard_DS14', 'Standard_GS1', 'Standard_GS2', 'Standard_GS3', - /// 'Standard_GS4', 'Standard_GS5' - /// - [JsonProperty(PropertyName = "vmSize")] - public string VmSize { get; set; } - - /// - /// Gets or sets DNS prefix to be used to create the FQDN for the agent - /// pool. - /// - [JsonProperty(PropertyName = "dnsPrefix")] - public string DnsPrefix { get; set; } - - /// - /// Gets FQDN for the agent pool. - /// - [JsonProperty(PropertyName = "fqdn")] - public string Fqdn { get; private set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (Name == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "Name"); - } - if (VmSize == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "VmSize"); - } - if (DnsPrefix == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "DnsPrefix"); - } - if (Count > 100) - { - throw new ValidationException(ValidationRules.InclusiveMaximum, "Count", 100); - } - if (Count < 1) - { - throw new ValidationException(ValidationRules.InclusiveMinimum, "Count", 1); - } - } - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceCustomProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceCustomProfile.cs deleted file mode 100644 index d732cb9bd5ec..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceCustomProfile.cs +++ /dev/null @@ -1,68 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Microsoft.Rest; - using Newtonsoft.Json; - using System.Linq; - - /// - /// Properties to configure a custom container service cluster. - /// - public partial class ContainerServiceCustomProfile - { - /// - /// Initializes a new instance of the ContainerServiceCustomProfile - /// class. - /// - public ContainerServiceCustomProfile() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the ContainerServiceCustomProfile - /// class. - /// - /// The name of the custom orchestrator to - /// use. - public ContainerServiceCustomProfile(string orchestrator) - { - Orchestrator = orchestrator; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets the name of the custom orchestrator to use. - /// - [JsonProperty(PropertyName = "orchestrator")] - public string Orchestrator { get; set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (Orchestrator == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "Orchestrator"); - } - } - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceDiagnosticsProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceDiagnosticsProfile.cs deleted file mode 100644 index 9df627f026d7..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceDiagnosticsProfile.cs +++ /dev/null @@ -1,69 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Microsoft.Rest; - using Newtonsoft.Json; - using System.Linq; - - public partial class ContainerServiceDiagnosticsProfile - { - /// - /// Initializes a new instance of the - /// ContainerServiceDiagnosticsProfile class. - /// - public ContainerServiceDiagnosticsProfile() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the - /// ContainerServiceDiagnosticsProfile class. - /// - /// Profile for the container service VM - /// diagnostic agent. - public ContainerServiceDiagnosticsProfile(ContainerServiceVMDiagnostics vmDiagnostics) - { - VmDiagnostics = vmDiagnostics; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets profile for the container service VM diagnostic agent. - /// - [JsonProperty(PropertyName = "vmDiagnostics")] - public ContainerServiceVMDiagnostics VmDiagnostics { get; set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (VmDiagnostics == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "VmDiagnostics"); - } - if (VmDiagnostics != null) - { - VmDiagnostics.Validate(); - } - } - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceLinuxProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceLinuxProfile.cs deleted file mode 100644 index 0ad1e8815b92..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceLinuxProfile.cs +++ /dev/null @@ -1,91 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Microsoft.Rest; - using Newtonsoft.Json; - using System.Linq; - - /// - /// Profile for Linux VMs in the container service cluster. - /// - public partial class ContainerServiceLinuxProfile - { - /// - /// Initializes a new instance of the ContainerServiceLinuxProfile - /// class. - /// - public ContainerServiceLinuxProfile() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the ContainerServiceLinuxProfile - /// class. - /// - /// The administrator username to use for - /// Linux VMs. - /// The ssh key configuration for Linux VMs. - public ContainerServiceLinuxProfile(string adminUsername, ContainerServiceSshConfiguration ssh) - { - AdminUsername = adminUsername; - Ssh = ssh; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets the administrator username to use for Linux VMs. - /// - [JsonProperty(PropertyName = "adminUsername")] - public string AdminUsername { get; set; } - - /// - /// Gets or sets the ssh key configuration for Linux VMs. - /// - [JsonProperty(PropertyName = "ssh")] - public ContainerServiceSshConfiguration Ssh { get; set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (AdminUsername == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "AdminUsername"); - } - if (Ssh == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "Ssh"); - } - if (AdminUsername != null) - { - if (!System.Text.RegularExpressions.Regex.IsMatch(AdminUsername, "^[a-z][a-z0-9_-]*$")) - { - throw new ValidationException(ValidationRules.Pattern, "AdminUsername", "^[a-z][a-z0-9_-]*$"); - } - } - if (Ssh != null) - { - Ssh.Validate(); - } - } - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceMasterProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceMasterProfile.cs deleted file mode 100644 index 0c9539edf034..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceMasterProfile.cs +++ /dev/null @@ -1,87 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Microsoft.Rest; - using Newtonsoft.Json; - using System.Linq; - - /// - /// Profile for the container service master. - /// - public partial class ContainerServiceMasterProfile - { - /// - /// Initializes a new instance of the ContainerServiceMasterProfile - /// class. - /// - public ContainerServiceMasterProfile() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the ContainerServiceMasterProfile - /// class. - /// - /// DNS prefix to be used to create the FQDN - /// for master. - /// Number of masters (VMs) in the container - /// service cluster. Allowed values are 1, 3, and 5. The default value - /// is 1. - /// FQDN for the master. - public ContainerServiceMasterProfile(string dnsPrefix, int? count = default(int?), string fqdn = default(string)) - { - Count = count; - DnsPrefix = dnsPrefix; - Fqdn = fqdn; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets number of masters (VMs) in the container service - /// cluster. Allowed values are 1, 3, and 5. The default value is 1. - /// - [JsonProperty(PropertyName = "count")] - public int? Count { get; set; } - - /// - /// Gets or sets DNS prefix to be used to create the FQDN for master. - /// - [JsonProperty(PropertyName = "dnsPrefix")] - public string DnsPrefix { get; set; } - - /// - /// Gets FQDN for the master. - /// - [JsonProperty(PropertyName = "fqdn")] - public string Fqdn { get; private set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (DnsPrefix == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "DnsPrefix"); - } - } - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceOrchestratorProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceOrchestratorProfile.cs deleted file mode 100644 index 169410d83efb..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceOrchestratorProfile.cs +++ /dev/null @@ -1,67 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Newtonsoft.Json; - using System.Linq; - - /// - /// Profile for the container service orchestrator. - /// - public partial class ContainerServiceOrchestratorProfile - { - /// - /// Initializes a new instance of the - /// ContainerServiceOrchestratorProfile class. - /// - public ContainerServiceOrchestratorProfile() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the - /// ContainerServiceOrchestratorProfile class. - /// - /// The orchestrator to use to manage - /// container service cluster resources. Valid values are Swarm, DCOS, - /// and Custom. Possible values include: 'Swarm', 'DCOS', 'Custom', - /// 'Kubernetes' - public ContainerServiceOrchestratorProfile(ContainerServiceOrchestratorTypes orchestratorType) - { - OrchestratorType = orchestratorType; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets the orchestrator to use to manage container service - /// cluster resources. Valid values are Swarm, DCOS, and Custom. - /// Possible values include: 'Swarm', 'DCOS', 'Custom', 'Kubernetes' - /// - [JsonProperty(PropertyName = "orchestratorType")] - public ContainerServiceOrchestratorTypes OrchestratorType { get; set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - } - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceOrchestratorTypes.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceOrchestratorTypes.cs deleted file mode 100644 index 390ea4b569c1..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceOrchestratorTypes.cs +++ /dev/null @@ -1,72 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Newtonsoft.Json; - using Newtonsoft.Json.Converters; - using System.Runtime; - using System.Runtime.Serialization; - - /// - /// Defines values for ContainerServiceOrchestratorTypes. - /// - [JsonConverter(typeof(StringEnumConverter))] - public enum ContainerServiceOrchestratorTypes - { - [EnumMember(Value = "Swarm")] - Swarm, - [EnumMember(Value = "DCOS")] - DCOS, - [EnumMember(Value = "Custom")] - Custom, - [EnumMember(Value = "Kubernetes")] - Kubernetes - } - internal static class ContainerServiceOrchestratorTypesEnumExtension - { - internal static string ToSerializedValue(this ContainerServiceOrchestratorTypes? value) - { - return value == null ? null : ((ContainerServiceOrchestratorTypes)value).ToSerializedValue(); - } - - internal static string ToSerializedValue(this ContainerServiceOrchestratorTypes value) - { - switch( value ) - { - case ContainerServiceOrchestratorTypes.Swarm: - return "Swarm"; - case ContainerServiceOrchestratorTypes.DCOS: - return "DCOS"; - case ContainerServiceOrchestratorTypes.Custom: - return "Custom"; - case ContainerServiceOrchestratorTypes.Kubernetes: - return "Kubernetes"; - } - return null; - } - - internal static ContainerServiceOrchestratorTypes? ParseContainerServiceOrchestratorTypes(this string value) - { - switch( value ) - { - case "Swarm": - return ContainerServiceOrchestratorTypes.Swarm; - case "DCOS": - return ContainerServiceOrchestratorTypes.DCOS; - case "Custom": - return ContainerServiceOrchestratorTypes.Custom; - case "Kubernetes": - return ContainerServiceOrchestratorTypes.Kubernetes; - } - return null; - } - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceServicePrincipalProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceServicePrincipalProfile.cs deleted file mode 100644 index f3388c2d3865..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceServicePrincipalProfile.cs +++ /dev/null @@ -1,82 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Microsoft.Rest; - using Newtonsoft.Json; - using System.Linq; - - /// - /// Information about a service principal identity for the cluster to use - /// for manipulating Azure APIs. - /// - public partial class ContainerServiceServicePrincipalProfile - { - /// - /// Initializes a new instance of the - /// ContainerServiceServicePrincipalProfile class. - /// - public ContainerServiceServicePrincipalProfile() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the - /// ContainerServiceServicePrincipalProfile class. - /// - /// The ID for the service principal. - /// The secret password associated with the - /// service principal. - public ContainerServiceServicePrincipalProfile(string clientId, string secret) - { - ClientId = clientId; - Secret = secret; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets the ID for the service principal. - /// - [JsonProperty(PropertyName = "clientId")] - public string ClientId { get; set; } - - /// - /// Gets or sets the secret password associated with the service - /// principal. - /// - [JsonProperty(PropertyName = "secret")] - public string Secret { get; set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (ClientId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "ClientId"); - } - if (Secret == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "Secret"); - } - } - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceSshConfiguration.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceSshConfiguration.cs deleted file mode 100644 index 5d3cf56fa1ee..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceSshConfiguration.cs +++ /dev/null @@ -1,81 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Microsoft.Rest; - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// SSH configuration for Linux-based VMs running on Azure. - /// - public partial class ContainerServiceSshConfiguration - { - /// - /// Initializes a new instance of the ContainerServiceSshConfiguration - /// class. - /// - public ContainerServiceSshConfiguration() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the ContainerServiceSshConfiguration - /// class. - /// - /// the list of SSH public keys used to - /// authenticate with Linux-based VMs. - public ContainerServiceSshConfiguration(IList publicKeys) - { - PublicKeys = publicKeys; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets the list of SSH public keys used to authenticate with - /// Linux-based VMs. - /// - [JsonProperty(PropertyName = "publicKeys")] - public IList PublicKeys { get; set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (PublicKeys == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "PublicKeys"); - } - if (PublicKeys != null) - { - foreach (var element in PublicKeys) - { - if (element != null) - { - element.Validate(); - } - } - } - } - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceSshPublicKey.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceSshPublicKey.cs deleted file mode 100644 index 36d950106abd..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceSshPublicKey.cs +++ /dev/null @@ -1,71 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Microsoft.Rest; - using Newtonsoft.Json; - using System.Linq; - - /// - /// Contains information about SSH certificate public key data. - /// - public partial class ContainerServiceSshPublicKey - { - /// - /// Initializes a new instance of the ContainerServiceSshPublicKey - /// class. - /// - public ContainerServiceSshPublicKey() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the ContainerServiceSshPublicKey - /// class. - /// - /// Certificate public key used to authenticate - /// with VMs through SSH. The certificate must be in PEM format with or - /// without headers. - public ContainerServiceSshPublicKey(string keyData) - { - KeyData = keyData; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets certificate public key used to authenticate with VMs - /// through SSH. The certificate must be in PEM format with or without - /// headers. - /// - [JsonProperty(PropertyName = "keyData")] - public string KeyData { get; set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (KeyData == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "KeyData"); - } - } - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceVMDiagnostics.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceVMDiagnostics.cs deleted file mode 100644 index 31cb6845c8c0..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceVMDiagnostics.cs +++ /dev/null @@ -1,74 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Newtonsoft.Json; - using System.Linq; - - /// - /// Profile for diagnostics on the container service VMs. - /// - public partial class ContainerServiceVMDiagnostics - { - /// - /// Initializes a new instance of the ContainerServiceVMDiagnostics - /// class. - /// - public ContainerServiceVMDiagnostics() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the ContainerServiceVMDiagnostics - /// class. - /// - /// Whether the VM diagnostic agent is - /// provisioned on the VM. - /// The URI of the storage account where - /// diagnostics are stored. - public ContainerServiceVMDiagnostics(bool enabled, string storageUri = default(string)) - { - Enabled = enabled; - StorageUri = storageUri; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets whether the VM diagnostic agent is provisioned on the - /// VM. - /// - [JsonProperty(PropertyName = "enabled")] - public bool Enabled { get; set; } - - /// - /// Gets the URI of the storage account where diagnostics are stored. - /// - [JsonProperty(PropertyName = "storageUri")] - public string StorageUri { get; private set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - //Nothing to validate - } - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceVMSizeTypes.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceVMSizeTypes.cs deleted file mode 100644 index d31363e9854b..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceVMSizeTypes.cs +++ /dev/null @@ -1,67 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - - /// - /// Defines values for ContainerServiceVMSizeTypes. - /// - public static class ContainerServiceVMSizeTypes - { - public const string StandardA0 = "Standard_A0"; - public const string StandardA1 = "Standard_A1"; - public const string StandardA2 = "Standard_A2"; - public const string StandardA3 = "Standard_A3"; - public const string StandardA4 = "Standard_A4"; - public const string StandardA5 = "Standard_A5"; - public const string StandardA6 = "Standard_A6"; - public const string StandardA7 = "Standard_A7"; - public const string StandardA8 = "Standard_A8"; - public const string StandardA9 = "Standard_A9"; - public const string StandardA10 = "Standard_A10"; - public const string StandardA11 = "Standard_A11"; - public const string StandardD1 = "Standard_D1"; - public const string StandardD2 = "Standard_D2"; - public const string StandardD3 = "Standard_D3"; - public const string StandardD4 = "Standard_D4"; - public const string StandardD11 = "Standard_D11"; - public const string StandardD12 = "Standard_D12"; - public const string StandardD13 = "Standard_D13"; - public const string StandardD14 = "Standard_D14"; - public const string StandardD1V2 = "Standard_D1_v2"; - public const string StandardD2V2 = "Standard_D2_v2"; - public const string StandardD3V2 = "Standard_D3_v2"; - public const string StandardD4V2 = "Standard_D4_v2"; - public const string StandardD5V2 = "Standard_D5_v2"; - public const string StandardD11V2 = "Standard_D11_v2"; - public const string StandardD12V2 = "Standard_D12_v2"; - public const string StandardD13V2 = "Standard_D13_v2"; - public const string StandardD14V2 = "Standard_D14_v2"; - public const string StandardG1 = "Standard_G1"; - public const string StandardG2 = "Standard_G2"; - public const string StandardG3 = "Standard_G3"; - public const string StandardG4 = "Standard_G4"; - public const string StandardG5 = "Standard_G5"; - public const string StandardDS1 = "Standard_DS1"; - public const string StandardDS2 = "Standard_DS2"; - public const string StandardDS3 = "Standard_DS3"; - public const string StandardDS4 = "Standard_DS4"; - public const string StandardDS11 = "Standard_DS11"; - public const string StandardDS12 = "Standard_DS12"; - public const string StandardDS13 = "Standard_DS13"; - public const string StandardDS14 = "Standard_DS14"; - public const string StandardGS1 = "Standard_GS1"; - public const string StandardGS2 = "Standard_GS2"; - public const string StandardGS3 = "Standard_GS3"; - public const string StandardGS4 = "Standard_GS4"; - public const string StandardGS5 = "Standard_GS5"; - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceWindowsProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceWindowsProfile.cs deleted file mode 100644 index 671adcedd214..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceWindowsProfile.cs +++ /dev/null @@ -1,95 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Microsoft.Rest; - using Newtonsoft.Json; - using System.Linq; - - /// - /// Profile for Windows VMs in the container service cluster. - /// - public partial class ContainerServiceWindowsProfile - { - /// - /// Initializes a new instance of the ContainerServiceWindowsProfile - /// class. - /// - public ContainerServiceWindowsProfile() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the ContainerServiceWindowsProfile - /// class. - /// - /// The administrator username to use for - /// Windows VMs. - /// The administrator password to use for - /// Windows VMs. - public ContainerServiceWindowsProfile(string adminUsername, string adminPassword) - { - AdminUsername = adminUsername; - AdminPassword = adminPassword; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets the administrator username to use for Windows VMs. - /// - [JsonProperty(PropertyName = "adminUsername")] - public string AdminUsername { get; set; } - - /// - /// Gets or sets the administrator password to use for Windows VMs. - /// - [JsonProperty(PropertyName = "adminPassword")] - public string AdminPassword { get; set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (AdminUsername == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "AdminUsername"); - } - if (AdminPassword == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "AdminPassword"); - } - if (AdminUsername != null) - { - if (!System.Text.RegularExpressions.Regex.IsMatch(AdminUsername, "^[a-zA-Z0-9]+([._]?[a-zA-Z0-9]+)*$")) - { - throw new ValidationException(ValidationRules.Pattern, "AdminUsername", "^[a-zA-Z0-9]+([._]?[a-zA-Z0-9]+)*$"); - } - } - if (AdminPassword != null) - { - if (!System.Text.RegularExpressions.Regex.IsMatch(AdminPassword, "^(?=.*[a-z])(?=.*[A-Z])(?=.*[!@#$%\\^&\\*\\(\\)])[a-zA-Z\\d!@#$%\\^&\\*\\(\\)]{12,123}$")) - { - throw new ValidationException(ValidationRules.Pattern, "AdminPassword", "^(?=.*[a-z])(?=.*[A-Z])(?=.*[!@#$%\\^&\\*\\(\\)])[a-zA-Z\\d!@#$%\\^&\\*\\(\\)]{12,123}$"); - } - } - } - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DataDisk.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DataDisk.cs index 39c430dc8860..e87c5a378f4d 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DataDisk.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DataDisk.cs @@ -75,7 +75,21 @@ public DataDisk() /// UltraSSD_LRS. Returned only for VirtualMachine ScaleSet VM disks. /// Can be updated only via updates to the VirtualMachine Scale /// Set. - public DataDisk(int lun, string createOption, string name = default(string), VirtualHardDisk vhd = default(VirtualHardDisk), VirtualHardDisk image = default(VirtualHardDisk), CachingTypes? caching = default(CachingTypes?), bool? writeAcceleratorEnabled = default(bool?), int? diskSizeGB = default(int?), ManagedDiskParameters managedDisk = default(ManagedDiskParameters), bool? toBeDetached = default(bool?), long? diskIOPSReadWrite = default(long?), long? diskMBpsReadWrite = default(long?)) + /// Specifies the detach behavior to be used + /// while detaching a disk or which is already in the process of + /// detachment from the virtual machine. Supported values: + /// **ForceDetach**. <br><br> detachOption: **ForceDetach** + /// is applicable only for managed data disks. If a previous detachment + /// attempt of the data disk did not complete due to an unexpected + /// failure from the virtual machine and the disk is still not released + /// then use force-detach as a last resort option to detach the disk + /// forcibly from the VM. All writes might not have been flushed when + /// using this detach behavior. <br><br> This feature is + /// still in preview mode and is not supported for + /// VirtualMachineScaleSet. To force-detach a data disk update + /// toBeDetached to 'true' along with setting detachOption: + /// 'ForceDetach'. Possible values include: 'ForceDetach' + public DataDisk(int lun, string createOption, string name = default(string), VirtualHardDisk vhd = default(VirtualHardDisk), VirtualHardDisk image = default(VirtualHardDisk), CachingTypes? caching = default(CachingTypes?), bool? writeAcceleratorEnabled = default(bool?), int? diskSizeGB = default(int?), ManagedDiskParameters managedDisk = default(ManagedDiskParameters), bool? toBeDetached = default(bool?), long? diskIOPSReadWrite = default(long?), long? diskMBpsReadWrite = default(long?), string detachOption = default(string)) { Lun = lun; Name = name; @@ -89,6 +103,7 @@ public DataDisk() ToBeDetached = toBeDetached; DiskIOPSReadWrite = diskIOPSReadWrite; DiskMBpsReadWrite = diskMBpsReadWrite; + DetachOption = detachOption; CustomInit(); } @@ -201,6 +216,25 @@ public DataDisk() [JsonProperty(PropertyName = "diskMBpsReadWrite")] public long? DiskMBpsReadWrite { get; private set; } + /// + /// Gets or sets specifies the detach behavior to be used while + /// detaching a disk or which is already in the process of detachment + /// from the virtual machine. Supported values: **ForceDetach**. + /// &lt;br&gt;&lt;br&gt; detachOption: **ForceDetach** + /// is applicable only for managed data disks. If a previous detachment + /// attempt of the data disk did not complete due to an unexpected + /// failure from the virtual machine and the disk is still not released + /// then use force-detach as a last resort option to detach the disk + /// forcibly from the VM. All writes might not have been flushed when + /// using this detach behavior. &lt;br&gt;&lt;br&gt; + /// This feature is still in preview mode and is not supported for + /// VirtualMachineScaleSet. To force-detach a data disk update + /// toBeDetached to 'true' along with setting detachOption: + /// 'ForceDetach'. Possible values include: 'ForceDetach' + /// + [JsonProperty(PropertyName = "detachOption")] + public string DetachOption { get; set; } + /// /// Validate the object. /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceUpgradeMode.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DiskDetachOptionTypes.cs similarity index 64% rename from sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceUpgradeMode.cs rename to sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DiskDetachOptionTypes.cs index 6d25f3f7cd7d..9244426d7ec0 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceUpgradeMode.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DiskDetachOptionTypes.cs @@ -12,12 +12,10 @@ namespace Microsoft.Azure.Management.Compute.Models { /// - /// Defines values for CloudServiceUpgradeMode. + /// Defines values for DiskDetachOptionTypes. /// - public static class CloudServiceUpgradeMode + public static class DiskDetachOptionTypes { - public const string Auto = "Auto"; - public const string Manual = "Manual"; - public const string Simultaneous = "Simultaneous"; + public const string ForceDetach = "ForceDetach"; } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/Extension.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/Extension.cs deleted file mode 100644 index 66db804aec3f..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/Extension.cs +++ /dev/null @@ -1,57 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Newtonsoft.Json; - using System.Linq; - - /// - /// Describes a cloud service Extension. - /// - public partial class Extension - { - /// - /// Initializes a new instance of the Extension class. - /// - public Extension() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the Extension class. - /// - /// The name of the extension. - public Extension(string name = default(string), CloudServiceExtensionProperties properties = default(CloudServiceExtensionProperties)) - { - Name = name; - Properties = properties; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets the name of the extension. - /// - [JsonProperty(PropertyName = "name")] - public string Name { get; set; } - - /// - /// - [JsonProperty(PropertyName = "properties")] - public CloudServiceExtensionProperties Properties { 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 baa59334f2ab..ebe95fdfc09b 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,9 +34,12 @@ public GalleryArtifactVersionSource() /// The id of the gallery artifact version source. Can /// specify a disk uri, snapshot uri, user image or storage account /// resource. - public GalleryArtifactVersionSource(string id = default(string)) + /// 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)) { Id = id; + Uri = uri; CustomInit(); } @@ -53,5 +56,12 @@ 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/GalleryDiskImageSource.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryDiskImageSource.cs deleted file mode 100644 index 70bab384c3c1..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryDiskImageSource.cs +++ /dev/null @@ -1,57 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Newtonsoft.Json; - using System.Linq; - - /// - /// The gallery disk image source. - /// - 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. - public GalleryDiskImageSource(string id = default(string), string uri = default(string)) - : base(id) - { - Uri = uri; - 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; } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImage.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImage.cs index 62dbb59864df..73b908e4e6db 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImage.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImage.cs @@ -59,13 +59,13 @@ public GalleryImage() /// The hypervisor generation of the /// Virtual Machine. Applicable to OS disks only. Possible values /// include: 'V1', 'V2' - /// A list of gallery image features. /// The end of life date of the gallery /// image definition. This property can be used for decommissioning /// purposes. This property is updatable. /// The current state of the gallery /// image definition. - public GalleryImage(string location, OperatingSystemTypes osType, OperatingSystemStateTypes osState, GalleryImageIdentifier identifier, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string description = default(string), string eula = default(string), string privacyStatementUri = default(string), string releaseNoteUri = default(string), string hyperVGeneration = default(string), IList features = default(IList), System.DateTime? endOfLifeDate = default(System.DateTime?), RecommendedMachineConfiguration recommended = default(RecommendedMachineConfiguration), Disallowed disallowed = default(Disallowed), ImagePurchasePlan purchasePlan = default(ImagePurchasePlan), string provisioningState = default(string)) + /// A list of gallery image features. + public GalleryImage(string location, OperatingSystemTypes osType, OperatingSystemStateTypes osState, GalleryImageIdentifier identifier, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string description = default(string), string eula = default(string), string privacyStatementUri = default(string), string releaseNoteUri = default(string), string hyperVGeneration = default(string), System.DateTime? endOfLifeDate = default(System.DateTime?), RecommendedMachineConfiguration recommended = default(RecommendedMachineConfiguration), Disallowed disallowed = default(Disallowed), ImagePurchasePlan purchasePlan = default(ImagePurchasePlan), string provisioningState = default(string), IList features = default(IList)) : base(location, id, name, type, tags) { Description = description; @@ -75,13 +75,13 @@ public GalleryImage() OsType = osType; OsState = osState; HyperVGeneration = hyperVGeneration; - Features = features; EndOfLifeDate = endOfLifeDate; Identifier = identifier; Recommended = recommended; Disallowed = disallowed; PurchasePlan = purchasePlan; ProvisioningState = provisioningState; + Features = features; CustomInit(); } @@ -142,12 +142,6 @@ public GalleryImage() [JsonProperty(PropertyName = "properties.hyperVGeneration")] public string HyperVGeneration { get; set; } - /// - /// Gets or sets a list of gallery image features. - /// - [JsonProperty(PropertyName = "properties.features")] - public IList Features { get; set; } - /// /// Gets or sets the end of life date of the gallery image definition. /// This property can be used for decommissioning purposes. This @@ -187,6 +181,12 @@ public GalleryImage() [JsonProperty(PropertyName = "properties.provisioningState")] public string ProvisioningState { get; private set; } + /// + /// Gets or sets a list of gallery image features. + /// + [JsonProperty(PropertyName = "properties.features")] + public IList Features { get; set; } + /// /// Validate the object. /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageUpdate.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageUpdate.cs index de806c8b415b..428379ec99f5 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageUpdate.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageUpdate.cs @@ -58,13 +58,13 @@ public GalleryImageUpdate() /// The hypervisor generation of the /// Virtual Machine. Applicable to OS disks only. Possible values /// include: 'V1', 'V2' - /// A list of gallery image features. /// The end of life date of the gallery /// image definition. This property can be used for decommissioning /// purposes. This property is updatable. /// The current state of the gallery /// image definition. - public GalleryImageUpdate(OperatingSystemTypes osType, OperatingSystemStateTypes osState, GalleryImageIdentifier identifier, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string description = default(string), string eula = default(string), string privacyStatementUri = default(string), string releaseNoteUri = default(string), string hyperVGeneration = default(string), IList features = default(IList), System.DateTime? endOfLifeDate = default(System.DateTime?), RecommendedMachineConfiguration recommended = default(RecommendedMachineConfiguration), Disallowed disallowed = default(Disallowed), ImagePurchasePlan purchasePlan = default(ImagePurchasePlan), string provisioningState = default(string)) + /// A list of gallery image features. + public GalleryImageUpdate(OperatingSystemTypes osType, OperatingSystemStateTypes osState, GalleryImageIdentifier identifier, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string description = default(string), string eula = default(string), string privacyStatementUri = default(string), string releaseNoteUri = default(string), string hyperVGeneration = default(string), System.DateTime? endOfLifeDate = default(System.DateTime?), RecommendedMachineConfiguration recommended = default(RecommendedMachineConfiguration), Disallowed disallowed = default(Disallowed), ImagePurchasePlan purchasePlan = default(ImagePurchasePlan), string provisioningState = default(string), IList features = default(IList)) : base(id, name, type, tags) { Description = description; @@ -74,13 +74,13 @@ public GalleryImageUpdate() OsType = osType; OsState = osState; HyperVGeneration = hyperVGeneration; - Features = features; EndOfLifeDate = endOfLifeDate; Identifier = identifier; Recommended = recommended; Disallowed = disallowed; PurchasePlan = purchasePlan; ProvisioningState = provisioningState; + Features = features; CustomInit(); } @@ -141,12 +141,6 @@ public GalleryImageUpdate() [JsonProperty(PropertyName = "properties.hyperVGeneration")] public string HyperVGeneration { get; set; } - /// - /// Gets or sets a list of gallery image features. - /// - [JsonProperty(PropertyName = "properties.features")] - public IList Features { get; set; } - /// /// Gets or sets the end of life date of the gallery image definition. /// This property can be used for decommissioning purposes. This @@ -186,6 +180,12 @@ public GalleryImageUpdate() [JsonProperty(PropertyName = "properties.provisioningState")] public string ProvisioningState { get; private set; } + /// + /// Gets or sets a list of gallery image features. + /// + [JsonProperty(PropertyName = "properties.features")] + public IList Features { get; set; } + /// /// Validate the object. /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/HardwareProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/HardwareProfile.cs index ec8e8c5cf92e..d82198706c79 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/HardwareProfile.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/HardwareProfile.cs @@ -29,36 +29,33 @@ public HardwareProfile() /// /// Initializes a new instance of the HardwareProfile class. /// - /// Specifies the size of the virtual machine. For - /// more information about virtual machine sizes, see [Sizes for - /// virtual - /// machines](https://docs.microsoft.com/en-us/azure/virtual-machines/sizes). - /// <br><br> The available VM sizes depend on region and - /// availability set. For a list of available sizes use these APIs: - /// <br><br> [List all available virtual machine sizes in - /// an availability + /// Specifies the size of the virtual machine. + /// <br><br> The enum data type is currently deprecated and + /// will be removed by December 23rd 2023. <br><br> + /// Recommended way to get the list of available sizes is using these + /// APIs: <br><br> [List all available virtual machine + /// sizes in an availability /// set](https://docs.microsoft.com/rest/api/compute/availabilitysets/listavailablesizes) /// <br><br> [List all available virtual machine sizes in a /// region]( /// https://docs.microsoft.com/en-us/rest/api/compute/resourceskus/list) /// <br><br> [List all available virtual machine sizes for /// resizing](https://docs.microsoft.com/rest/api/compute/virtualmachines/listavailablesizes). - /// <br><br> This list of sizes is no longer updated and - /// the **VirtualMachineSizeTypes** string constants will be removed - /// from the subsequent REST API specification. Use [List all available - /// virtual machine sizes in a region]( - /// https://docs.microsoft.com/en-us/rest/api/compute/resourceskus/list) - /// to get the latest sizes. Possible values include: 'Basic_A0', - /// 'Basic_A1', 'Basic_A2', 'Basic_A3', 'Basic_A4', 'Standard_A0', - /// 'Standard_A1', 'Standard_A2', 'Standard_A3', 'Standard_A4', - /// 'Standard_A5', 'Standard_A6', 'Standard_A7', 'Standard_A8', - /// 'Standard_A9', 'Standard_A10', 'Standard_A11', 'Standard_A1_v2', - /// 'Standard_A2_v2', 'Standard_A4_v2', 'Standard_A8_v2', - /// 'Standard_A2m_v2', 'Standard_A4m_v2', 'Standard_A8m_v2', - /// 'Standard_B1s', 'Standard_B1ms', 'Standard_B2s', 'Standard_B2ms', - /// 'Standard_B4ms', 'Standard_B8ms', 'Standard_D1', 'Standard_D2', - /// 'Standard_D3', 'Standard_D4', 'Standard_D11', 'Standard_D12', - /// 'Standard_D13', 'Standard_D14', 'Standard_D1_v2', 'Standard_D2_v2', + /// For more information about virtual machine sizes, see [Sizes for + /// virtual + /// machines](https://docs.microsoft.com/en-us/azure/virtual-machines/sizes). + /// <br><br> The available VM sizes depend on region and + /// availability set. Possible values include: 'Basic_A0', 'Basic_A1', + /// 'Basic_A2', 'Basic_A3', 'Basic_A4', 'Standard_A0', 'Standard_A1', + /// 'Standard_A2', 'Standard_A3', 'Standard_A4', 'Standard_A5', + /// 'Standard_A6', 'Standard_A7', 'Standard_A8', 'Standard_A9', + /// 'Standard_A10', 'Standard_A11', 'Standard_A1_v2', 'Standard_A2_v2', + /// 'Standard_A4_v2', 'Standard_A8_v2', 'Standard_A2m_v2', + /// 'Standard_A4m_v2', 'Standard_A8m_v2', 'Standard_B1s', + /// 'Standard_B1ms', 'Standard_B2s', 'Standard_B2ms', 'Standard_B4ms', + /// 'Standard_B8ms', 'Standard_D1', 'Standard_D2', 'Standard_D3', + /// 'Standard_D4', 'Standard_D11', 'Standard_D12', 'Standard_D13', + /// 'Standard_D14', 'Standard_D1_v2', 'Standard_D2_v2', /// 'Standard_D3_v2', 'Standard_D4_v2', 'Standard_D5_v2', /// 'Standard_D2_v3', 'Standard_D4_v3', 'Standard_D8_v3', /// 'Standard_D16_v3', 'Standard_D32_v3', 'Standard_D64_v3', @@ -110,13 +107,13 @@ public HardwareProfile() partial void CustomInit(); /// - /// Gets or sets specifies the size of the virtual machine. For more - /// information about virtual machine sizes, see [Sizes for virtual - /// machines](https://docs.microsoft.com/en-us/azure/virtual-machines/sizes). - /// &lt;br&gt;&lt;br&gt; The available VM sizes depend - /// on region and availability set. For a list of available sizes use - /// these APIs: &lt;br&gt;&lt;br&gt; [List all - /// available virtual machine sizes in an availability + /// Gets or sets specifies the size of the virtual machine. + /// &lt;br&gt;&lt;br&gt; The enum data type is + /// currently deprecated and will be removed by December 23rd 2023. + /// &lt;br&gt;&lt;br&gt; Recommended way to get the + /// list of available sizes is using these APIs: + /// &lt;br&gt;&lt;br&gt; [List all available virtual + /// machine sizes in an availability /// set](https://docs.microsoft.com/rest/api/compute/availabilitysets/listavailablesizes) /// &lt;br&gt;&lt;br&gt; [List all available virtual /// machine sizes in a region]( @@ -124,31 +121,30 @@ public HardwareProfile() /// &lt;br&gt;&lt;br&gt; [List all available virtual /// machine sizes for /// resizing](https://docs.microsoft.com/rest/api/compute/virtualmachines/listavailablesizes). - /// &lt;br&gt;&lt;br&gt; This list of sizes is no - /// longer updated and the **VirtualMachineSizeTypes** string constants - /// will be removed from the subsequent REST API specification. Use - /// [List all available virtual machine sizes in a region]( - /// https://docs.microsoft.com/en-us/rest/api/compute/resourceskus/list) - /// to get the latest sizes. Possible values include: 'Basic_A0', - /// 'Basic_A1', 'Basic_A2', 'Basic_A3', 'Basic_A4', 'Standard_A0', - /// 'Standard_A1', 'Standard_A2', 'Standard_A3', 'Standard_A4', - /// 'Standard_A5', 'Standard_A6', 'Standard_A7', 'Standard_A8', - /// 'Standard_A9', 'Standard_A10', 'Standard_A11', 'Standard_A1_v2', - /// 'Standard_A2_v2', 'Standard_A4_v2', 'Standard_A8_v2', - /// 'Standard_A2m_v2', 'Standard_A4m_v2', 'Standard_A8m_v2', - /// 'Standard_B1s', 'Standard_B1ms', 'Standard_B2s', 'Standard_B2ms', - /// 'Standard_B4ms', 'Standard_B8ms', 'Standard_D1', 'Standard_D2', - /// 'Standard_D3', 'Standard_D4', 'Standard_D11', 'Standard_D12', - /// 'Standard_D13', 'Standard_D14', 'Standard_D1_v2', 'Standard_D2_v2', - /// 'Standard_D3_v2', 'Standard_D4_v2', 'Standard_D5_v2', - /// 'Standard_D2_v3', 'Standard_D4_v3', 'Standard_D8_v3', - /// 'Standard_D16_v3', 'Standard_D32_v3', 'Standard_D64_v3', - /// 'Standard_D2s_v3', 'Standard_D4s_v3', 'Standard_D8s_v3', - /// 'Standard_D16s_v3', 'Standard_D32s_v3', 'Standard_D64s_v3', - /// 'Standard_D11_v2', 'Standard_D12_v2', 'Standard_D13_v2', - /// 'Standard_D14_v2', 'Standard_D15_v2', 'Standard_DS1', - /// 'Standard_DS2', 'Standard_DS3', 'Standard_DS4', 'Standard_DS11', - /// 'Standard_DS12', 'Standard_DS13', 'Standard_DS14', + /// For more information about virtual machine sizes, see [Sizes for + /// virtual + /// machines](https://docs.microsoft.com/en-us/azure/virtual-machines/sizes). + /// &lt;br&gt;&lt;br&gt; The available VM sizes depend + /// on region and availability set. Possible values include: + /// 'Basic_A0', 'Basic_A1', 'Basic_A2', 'Basic_A3', 'Basic_A4', + /// 'Standard_A0', 'Standard_A1', 'Standard_A2', 'Standard_A3', + /// 'Standard_A4', 'Standard_A5', 'Standard_A6', 'Standard_A7', + /// 'Standard_A8', 'Standard_A9', 'Standard_A10', 'Standard_A11', + /// 'Standard_A1_v2', 'Standard_A2_v2', 'Standard_A4_v2', + /// 'Standard_A8_v2', 'Standard_A2m_v2', 'Standard_A4m_v2', + /// 'Standard_A8m_v2', 'Standard_B1s', 'Standard_B1ms', 'Standard_B2s', + /// 'Standard_B2ms', 'Standard_B4ms', 'Standard_B8ms', 'Standard_D1', + /// 'Standard_D2', 'Standard_D3', 'Standard_D4', 'Standard_D11', + /// 'Standard_D12', 'Standard_D13', 'Standard_D14', 'Standard_D1_v2', + /// 'Standard_D2_v2', 'Standard_D3_v2', 'Standard_D4_v2', + /// 'Standard_D5_v2', 'Standard_D2_v3', 'Standard_D4_v3', + /// 'Standard_D8_v3', 'Standard_D16_v3', 'Standard_D32_v3', + /// 'Standard_D64_v3', 'Standard_D2s_v3', 'Standard_D4s_v3', + /// 'Standard_D8s_v3', 'Standard_D16s_v3', 'Standard_D32s_v3', + /// 'Standard_D64s_v3', 'Standard_D11_v2', 'Standard_D12_v2', + /// 'Standard_D13_v2', 'Standard_D14_v2', 'Standard_D15_v2', + /// 'Standard_DS1', 'Standard_DS2', 'Standard_DS3', 'Standard_DS4', + /// 'Standard_DS11', 'Standard_DS12', 'Standard_DS13', 'Standard_DS14', /// 'Standard_DS1_v2', 'Standard_DS2_v2', 'Standard_DS3_v2', /// 'Standard_DS4_v2', 'Standard_DS5_v2', 'Standard_DS11_v2', /// 'Standard_DS12_v2', 'Standard_DS13_v2', 'Standard_DS14_v2', diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/Image.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/Image.cs index 75c0fef474e3..4916d4ba3007 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/Image.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/Image.cs @@ -49,13 +49,16 @@ public Image() /// Gets the HyperVGenerationType of the /// VirtualMachine created from the image. Possible values include: /// 'V1', 'V2' - public Image(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), SubResource sourceVirtualMachine = default(SubResource), ImageStorageProfile storageProfile = default(ImageStorageProfile), string provisioningState = default(string), string hyperVGeneration = default(string)) + /// The extended location of the + /// Image. + public Image(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), SubResource sourceVirtualMachine = default(SubResource), ImageStorageProfile storageProfile = default(ImageStorageProfile), string provisioningState = default(string), string hyperVGeneration = default(string), ExtendedLocation extendedLocation = default(ExtendedLocation)) : base(location, id, name, type, tags) { SourceVirtualMachine = sourceVirtualMachine; StorageProfile = storageProfile; ProvisioningState = provisioningState; HyperVGeneration = hyperVGeneration; + ExtendedLocation = extendedLocation; CustomInit(); } @@ -91,6 +94,12 @@ public Image() [JsonProperty(PropertyName = "properties.hyperVGeneration")] public string HyperVGeneration { get; set; } + /// + /// Gets or sets the extended location of the Image. + /// + [JsonProperty(PropertyName = "extendedLocation")] + public ExtendedLocation ExtendedLocation { get; set; } + /// /// Validate the object. /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/InstanceSku.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/InstanceSku.cs deleted file mode 100644 index cc6d5e72fe8c..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/InstanceSku.cs +++ /dev/null @@ -1,57 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Newtonsoft.Json; - using System.Linq; - - public partial class InstanceSku - { - /// - /// Initializes a new instance of the InstanceSku class. - /// - public InstanceSku() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the InstanceSku class. - /// - /// The sku name. - /// The tier of the cloud service role - /// instance. - public InstanceSku(string name = default(string), string tier = default(string)) - { - Name = name; - Tier = tier; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets the sku name. - /// - [JsonProperty(PropertyName = "name")] - public string Name { get; private set; } - - /// - /// Gets the tier of the cloud service role instance. - /// - [JsonProperty(PropertyName = "tier")] - public string Tier { get; private set; } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/InstanceViewStatusesSummary.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/InstanceViewStatusesSummary.cs deleted file mode 100644 index 37cee73429f9..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/InstanceViewStatusesSummary.cs +++ /dev/null @@ -1,53 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Instance view statuses. - /// - public partial class InstanceViewStatusesSummary - { - /// - /// Initializes a new instance of the InstanceViewStatusesSummary - /// class. - /// - public InstanceViewStatusesSummary() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the InstanceViewStatusesSummary - /// class. - /// - public InstanceViewStatusesSummary(IList statusesSummary = default(IList)) - { - StatusesSummary = statusesSummary; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// - [JsonProperty(PropertyName = "statusesSummary")] - public IList StatusesSummary { get; private set; } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LastPatchInstallationSummary.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LastPatchInstallationSummary.cs index d1f509272630..3afaee59807a 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LastPatchInstallationSummary.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LastPatchInstallationSummary.cs @@ -33,24 +33,16 @@ public LastPatchInstallationSummary() /// /// The overall success or failure status of the /// operation. It remains "InProgress" until the operation completes. - /// At that point it will become "Failed", "Succeeded", or - /// "CompletedWithWarnings.". Possible values include: 'InProgress', - /// 'Failed', 'Succeeded', 'CompletedWithWarnings' + /// At that point it will become "Unknown", "Failed", "Succeeded", or + /// "CompletedWithWarnings.". Possible values include: 'Unknown', + /// 'InProgress', 'Failed', 'Succeeded', + /// 'CompletedWithWarnings' /// The activity ID of the /// operation that produced this result. It is used to correlate across /// CRP and extension logs. /// Describes whether the /// operation ran out of time before it completed all its intended /// actions - /// The reboot status of the machine after - /// the patch operation. It will be in "NotNeeded" status if reboot is - /// not needed after the patch operation. "Required" will be the status - /// once the patch is applied and machine is required to reboot. - /// "Started" will be the reboot status when the machine has started to - /// reboot. "Failed" will be the status if the machine is failed to - /// reboot. "Completed" will be the status once the machine is rebooted - /// successfully. Possible values include: 'NotNeeded', 'Required', - /// 'Started', 'Failed', 'Completed' /// The number of all available /// patches but not going to be installed because it didn't match a /// classification or inclusion list entry. @@ -68,17 +60,14 @@ public LastPatchInstallationSummary() /// began. /// The UTC timestamp when the operation /// began. - /// The person or system account that started - /// the operation /// The errors that were encountered during /// execution of the operation. The details array contains the list of /// them. - public LastPatchInstallationSummary(string status = default(string), string installationActivityId = default(string), bool? maintenanceWindowExceeded = default(bool?), string rebootStatus = default(string), int? notSelectedPatchCount = default(int?), int? excludedPatchCount = default(int?), int? pendingPatchCount = default(int?), int? installedPatchCount = default(int?), int? failedPatchCount = default(int?), System.DateTime? startTime = default(System.DateTime?), System.DateTime? lastModifiedTime = default(System.DateTime?), string startedBy = default(string), ApiError error = default(ApiError)) + public LastPatchInstallationSummary(string status = default(string), string installationActivityId = default(string), bool? maintenanceWindowExceeded = default(bool?), int? notSelectedPatchCount = default(int?), int? excludedPatchCount = default(int?), int? pendingPatchCount = default(int?), int? installedPatchCount = default(int?), int? failedPatchCount = default(int?), System.DateTime? startTime = default(System.DateTime?), System.DateTime? lastModifiedTime = default(System.DateTime?), ApiError error = default(ApiError)) { Status = status; InstallationActivityId = installationActivityId; MaintenanceWindowExceeded = maintenanceWindowExceeded; - RebootStatus = rebootStatus; NotSelectedPatchCount = notSelectedPatchCount; ExcludedPatchCount = excludedPatchCount; PendingPatchCount = pendingPatchCount; @@ -86,7 +75,6 @@ public LastPatchInstallationSummary() FailedPatchCount = failedPatchCount; StartTime = startTime; LastModifiedTime = lastModifiedTime; - StartedBy = startedBy; Error = error; CustomInit(); } @@ -99,9 +87,9 @@ public LastPatchInstallationSummary() /// /// Gets the overall success or failure status of the operation. It /// remains "InProgress" until the operation completes. At that point - /// it will become "Failed", "Succeeded", or "CompletedWithWarnings.". - /// Possible values include: 'InProgress', 'Failed', 'Succeeded', - /// 'CompletedWithWarnings' + /// it will become "Unknown", "Failed", "Succeeded", or + /// "CompletedWithWarnings.". Possible values include: 'Unknown', + /// 'InProgress', 'Failed', 'Succeeded', 'CompletedWithWarnings' /// [JsonProperty(PropertyName = "status")] public string Status { get; private set; } @@ -120,20 +108,6 @@ public LastPatchInstallationSummary() [JsonProperty(PropertyName = "maintenanceWindowExceeded")] public bool? MaintenanceWindowExceeded { get; private set; } - /// - /// Gets the reboot status of the machine after the patch operation. It - /// will be in "NotNeeded" status if reboot is not needed after the - /// patch operation. "Required" will be the status once the patch is - /// applied and machine is required to reboot. "Started" will be the - /// reboot status when the machine has started to reboot. "Failed" will - /// be the status if the machine is failed to reboot. "Completed" will - /// be the status once the machine is rebooted successfully. Possible - /// values include: 'NotNeeded', 'Required', 'Started', 'Failed', - /// 'Completed' - /// - [JsonProperty(PropertyName = "rebootStatus")] - public string RebootStatus { get; private set; } - /// /// Gets the number of all available patches but not going to be /// installed because it didn't match a classification or inclusion @@ -180,12 +154,6 @@ public LastPatchInstallationSummary() [JsonProperty(PropertyName = "lastModifiedTime")] public System.DateTime? LastModifiedTime { get; private set; } - /// - /// Gets the person or system account that started the operation - /// - [JsonProperty(PropertyName = "startedBy")] - public string StartedBy { get; private set; } - /// /// Gets the errors that were encountered during execution of the /// operation. The details array contains the list of them. diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LinuxConfiguration.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LinuxConfiguration.cs index 4594ed63cf39..a951eba569c5 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LinuxConfiguration.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LinuxConfiguration.cs @@ -45,11 +45,14 @@ public LinuxConfiguration() /// request body, default behavior is to set it to true. This will /// ensure that VM Agent is installed on the VM so that extensions can /// be added to the VM later. - public LinuxConfiguration(bool? disablePasswordAuthentication = default(bool?), SshConfiguration ssh = default(SshConfiguration), bool? provisionVMAgent = default(bool?)) + /// [Preview Feature] Specifies settings + /// related to VM Guest Patching on Linux. + public LinuxConfiguration(bool? disablePasswordAuthentication = default(bool?), SshConfiguration ssh = default(SshConfiguration), bool? provisionVMAgent = default(bool?), LinuxPatchSettings patchSettings = default(LinuxPatchSettings)) { DisablePasswordAuthentication = disablePasswordAuthentication; Ssh = ssh; ProvisionVMAgent = provisionVMAgent; + PatchSettings = patchSettings; CustomInit(); } @@ -82,5 +85,12 @@ public LinuxConfiguration() [JsonProperty(PropertyName = "provisionVMAgent")] public bool? ProvisionVMAgent { get; set; } + /// + /// Gets or sets [Preview Feature] Specifies settings related to VM + /// Guest Patching on Linux. + /// + [JsonProperty(PropertyName = "patchSettings")] + public LinuxPatchSettings PatchSettings { get; set; } + } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LinuxParameters.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LinuxParameters.cs new file mode 100644 index 000000000000..4deea634136d --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LinuxParameters.cs @@ -0,0 +1,85 @@ +// +// 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; + + /// + /// Input for InstallPatches on a Linux VM, as directly received by the API + /// + public partial class LinuxParameters + { + /// + /// Initializes a new instance of the LinuxParameters class. + /// + public LinuxParameters() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the LinuxParameters class. + /// + /// The update classifications + /// to select when installing patches for Linux. + /// packages to include in the + /// patch operation. Format: packageName_packageVersion + /// packages to exclude in the + /// patch operation. Format: packageName_packageVersion + /// This is used as a maintenance run + /// identifier for Auto VM Guest Patching in Linux. + public LinuxParameters(IList classificationsToInclude = default(IList), IList packageNameMasksToInclude = default(IList), IList packageNameMasksToExclude = default(IList), string maintenanceRunId = default(string)) + { + ClassificationsToInclude = classificationsToInclude; + PackageNameMasksToInclude = packageNameMasksToInclude; + PackageNameMasksToExclude = packageNameMasksToExclude; + MaintenanceRunId = maintenanceRunId; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the update classifications to select when installing + /// patches for Linux. + /// + [JsonProperty(PropertyName = "classificationsToInclude")] + public IList ClassificationsToInclude { get; set; } + + /// + /// Gets or sets packages to include in the patch operation. Format: + /// packageName_packageVersion + /// + [JsonProperty(PropertyName = "packageNameMasksToInclude")] + public IList PackageNameMasksToInclude { get; set; } + + /// + /// Gets or sets packages to exclude in the patch operation. Format: + /// packageName_packageVersion + /// + [JsonProperty(PropertyName = "packageNameMasksToExclude")] + public IList PackageNameMasksToExclude { get; set; } + + /// + /// Gets or sets this is used as a maintenance run identifier for Auto + /// VM Guest Patching in Linux. + /// + [JsonProperty(PropertyName = "maintenanceRunId")] + public string MaintenanceRunId { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LinuxPatchSettings.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LinuxPatchSettings.cs new file mode 100644 index 000000000000..b330cbd7884a --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LinuxPatchSettings.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 System.Linq; + + /// + /// Specifies settings related to VM Guest Patching on Linux. + /// + public partial class LinuxPatchSettings + { + /// + /// Initializes a new instance of the LinuxPatchSettings class. + /// + public LinuxPatchSettings() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the LinuxPatchSettings class. + /// + /// Specifies the mode of VM Guest Patching to + /// IaaS virtual machine.<br /><br /> Possible values + /// are:<br /><br /> **ImageDefault** - The virtual + /// machine's default patching configuration is used. <br + /// /><br /> **AutomaticByPlatform** - The virtual machine + /// will be automatically updated by the platform. The property + /// provisionVMAgent must be true. Possible values include: + /// 'ImageDefault', 'AutomaticByPlatform' + public LinuxPatchSettings(string patchMode = default(string)) + { + PatchMode = patchMode; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets specifies the mode of VM Guest Patching to IaaS + /// virtual machine.&lt;br /&gt;&lt;br /&gt; Possible + /// values are:&lt;br /&gt;&lt;br /&gt; + /// **ImageDefault** - The virtual machine's default patching + /// configuration is used. &lt;br /&gt;&lt;br /&gt; + /// **AutomaticByPlatform** - The virtual machine will be automatically + /// updated by the platform. The property provisionVMAgent must be + /// true. Possible values include: 'ImageDefault', + /// 'AutomaticByPlatform' + /// + [JsonProperty(PropertyName = "patchMode")] + public string PatchMode { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LinuxVMGuestPatchMode.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LinuxVMGuestPatchMode.cs new file mode 100644 index 000000000000..403817291610 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LinuxVMGuestPatchMode.cs @@ -0,0 +1,22 @@ +// +// 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 LinuxVMGuestPatchMode. + /// + public static class LinuxVMGuestPatchMode + { + public const string ImageDefault = "ImageDefault"; + public const string AutomaticByPlatform = "AutomaticByPlatform"; + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerConfigurationProperties.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerConfigurationProperties.cs deleted file mode 100644 index 4c91346aecc3..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerConfigurationProperties.cs +++ /dev/null @@ -1,52 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - public partial class LoadBalancerConfigurationProperties - { - /// - /// Initializes a new instance of the - /// LoadBalancerConfigurationProperties class. - /// - public LoadBalancerConfigurationProperties() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the - /// LoadBalancerConfigurationProperties class. - /// - /// List of IP - public LoadBalancerConfigurationProperties(IList frontendIPConfigurations = default(IList)) - { - FrontendIPConfigurations = frontendIPConfigurations; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets list of IP - /// - [JsonProperty(PropertyName = "frontendIPConfigurations")] - public IList FrontendIPConfigurations { get; set; } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerFrontendIPConfiguration.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerFrontendIPConfiguration.cs deleted file mode 100644 index ff6622e4be2a..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerFrontendIPConfiguration.cs +++ /dev/null @@ -1,54 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Newtonsoft.Json; - using System.Linq; - - public partial class LoadBalancerFrontendIPConfiguration - { - /// - /// Initializes a new instance of the - /// LoadBalancerFrontendIPConfiguration class. - /// - public LoadBalancerFrontendIPConfiguration() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the - /// LoadBalancerFrontendIPConfiguration class. - /// - public LoadBalancerFrontendIPConfiguration(string name = default(string), LoadBalancerFrontendIPConfigurationProperties properties = default(LoadBalancerFrontendIPConfigurationProperties)) - { - Name = name; - Properties = properties; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// - [JsonProperty(PropertyName = "name")] - public string Name { get; set; } - - /// - /// - [JsonProperty(PropertyName = "properties")] - public LoadBalancerFrontendIPConfigurationProperties Properties { get; set; } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerFrontendIPConfigurationProperties.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerFrontendIPConfigurationProperties.cs deleted file mode 100644 index 7187963be8cd..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerFrontendIPConfigurationProperties.cs +++ /dev/null @@ -1,67 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Newtonsoft.Json; - using System.Linq; - - /// - /// Describes a cloud service IP Configuration - /// - public partial class LoadBalancerFrontendIPConfigurationProperties - { - /// - /// Initializes a new instance of the - /// LoadBalancerFrontendIPConfigurationProperties class. - /// - public LoadBalancerFrontendIPConfigurationProperties() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the - /// LoadBalancerFrontendIPConfigurationProperties class. - /// - /// The private IP address referenced by - /// the cloud service. - public LoadBalancerFrontendIPConfigurationProperties(SubResource publicIPAddress = default(SubResource), SubResource subnet = default(SubResource), string privateIPAddress = default(string)) - { - PublicIPAddress = publicIPAddress; - Subnet = subnet; - PrivateIPAddress = privateIPAddress; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// - [JsonProperty(PropertyName = "publicIPAddress")] - public SubResource PublicIPAddress { get; set; } - - /// - /// - [JsonProperty(PropertyName = "subnet")] - public SubResource Subnet { get; set; } - - /// - /// Gets or sets the private IP address referenced by the cloud - /// service. - /// - [JsonProperty(PropertyName = "privateIPAddress")] - public string PrivateIPAddress { get; set; } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/OrchestrationMode.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/OrchestrationMode.cs new file mode 100644 index 000000000000..bf55423160dc --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/OrchestrationMode.cs @@ -0,0 +1,22 @@ +// +// 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 OrchestrationMode. + /// + public static class OrchestrationMode + { + public const string Uniform = "Uniform"; + public const string Flexible = "Flexible"; + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PatchAssessmentState.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PatchAssessmentState.cs index d39f3abf8514..e38d2040f788 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PatchAssessmentState.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PatchAssessmentState.cs @@ -16,11 +16,7 @@ namespace Microsoft.Azure.Management.Compute.Models /// public static class PatchAssessmentState { - public const string Installed = "Installed"; - public const string Failed = "Failed"; - public const string Excluded = "Excluded"; - public const string NotSelected = "NotSelected"; - public const string Pending = "Pending"; + public const string Unknown = "Unknown"; public const string Available = "Available"; } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PatchInstallationDetail.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PatchInstallationDetail.cs new file mode 100644 index 000000000000..6dc51bd5402f --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PatchInstallationDetail.cs @@ -0,0 +1,104 @@ +// +// 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; + + /// + /// Information about a specific patch that was encountered during an + /// installation action. + /// + public partial class PatchInstallationDetail + { + /// + /// Initializes a new instance of the PatchInstallationDetail class. + /// + public PatchInstallationDetail() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PatchInstallationDetail class. + /// + /// A unique identifier for the patch. + /// The friendly name of the patch. + /// The version string of the package. It may + /// conform to Semantic Versioning. Only applies to Linux. + /// The KBID of the patch. Only applies to Windows + /// patches. + /// The classification(s) of the patch as + /// provided by the patch publisher. + /// The state of the patch after the + /// installation operation completed. Possible values include: + /// 'Unknown', 'Installed', 'Failed', 'Excluded', 'NotSelected', + /// 'Pending' + public PatchInstallationDetail(string patchId = default(string), string name = default(string), string version = default(string), string kbId = default(string), IList classifications = default(IList), string installationState = default(string)) + { + PatchId = patchId; + Name = name; + Version = version; + KbId = kbId; + Classifications = classifications; + InstallationState = installationState; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets a unique identifier for the patch. + /// + [JsonProperty(PropertyName = "patchId")] + public string PatchId { get; private set; } + + /// + /// Gets the friendly name of the patch. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// + /// Gets the version string of the package. It may conform to Semantic + /// Versioning. Only applies to Linux. + /// + [JsonProperty(PropertyName = "version")] + public string Version { get; private set; } + + /// + /// Gets the KBID of the patch. Only applies to Windows patches. + /// + [JsonProperty(PropertyName = "kbId")] + public string KbId { get; private set; } + + /// + /// Gets the classification(s) of the patch as provided by the patch + /// publisher. + /// + [JsonProperty(PropertyName = "classifications")] + public IList Classifications { get; private set; } + + /// + /// Gets the state of the patch after the installation operation + /// completed. Possible values include: 'Unknown', 'Installed', + /// 'Failed', 'Excluded', 'NotSelected', 'Pending' + /// + [JsonProperty(PropertyName = "installationState")] + public string InstallationState { get; private set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PatchInstallationState.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PatchInstallationState.cs new file mode 100644 index 000000000000..6ca7103442ba --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PatchInstallationState.cs @@ -0,0 +1,26 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + + /// + /// Defines values for PatchInstallationState. + /// + public static class PatchInstallationState + { + public const string Unknown = "Unknown"; + public const string Installed = "Installed"; + public const string Failed = "Failed"; + public const string Excluded = "Excluded"; + public const string NotSelected = "NotSelected"; + public const string Pending = "Pending"; + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PatchOperationStatus.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PatchOperationStatus.cs index 36860e3d4230..0d9c96f755a1 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PatchOperationStatus.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PatchOperationStatus.cs @@ -16,6 +16,7 @@ namespace Microsoft.Azure.Management.Compute.Models /// public static class PatchOperationStatus { + public const string Unknown = "Unknown"; public const string InProgress = "InProgress"; public const string Failed = "Failed"; public const string Succeeded = "Succeeded"; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PatchSettings.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PatchSettings.cs index 730f6ca2e806..ce46bd86b2ba 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PatchSettings.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PatchSettings.cs @@ -13,6 +13,9 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using System.Linq; + /// + /// Specifies settings related to VM Guest Patching on Windows. + /// public partial class PatchSettings { /// @@ -26,7 +29,7 @@ public PatchSettings() /// /// Initializes a new instance of the PatchSettings class. /// - /// Specifies the mode of in-guest patching to + /// Specifies the mode of VM Guest Patching to /// IaaS virtual machine.<br /><br /> Possible values /// are:<br /><br /> **Manual** - You control the /// application of patches to a virtual machine. You do this by @@ -36,14 +39,19 @@ public PatchSettings() /// /><br /> **AutomaticByOS** - The virtual machine will /// automatically be updated by the OS. The property /// WindowsConfiguration.enableAutomaticUpdates must be true. <br - /// /><br /> ** AutomaticByPlatform** - the virtual machine + /// /><br /> **AutomaticByPlatform** - the virtual machine /// will automatically updated by the platform. The properties /// provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates /// must be true. Possible values include: 'Manual', 'AutomaticByOS', /// 'AutomaticByPlatform' - public PatchSettings(string patchMode = default(string)) + /// Enables customers to patch their + /// Azure VMs without requiring a reboot. For enableHotpatching, the + /// 'provisionVMAgent' must be set to true and 'patchMode' must be set + /// to 'AutomaticByPlatform'. + public PatchSettings(string patchMode = default(string), bool? enableHotpatching = default(bool?)) { PatchMode = patchMode; + EnableHotpatching = enableHotpatching; CustomInit(); } @@ -53,7 +61,7 @@ public PatchSettings() partial void CustomInit(); /// - /// Gets or sets specifies the mode of in-guest patching to IaaS + /// Gets or sets specifies the mode of VM Guest Patching to IaaS /// virtual machine.&lt;br /&gt;&lt;br /&gt; Possible /// values are:&lt;br /&gt;&lt;br /&gt; **Manual** - /// You control the application of patches to a virtual machine. You @@ -63,7 +71,7 @@ public PatchSettings() /// /&gt;&lt;br /&gt; **AutomaticByOS** - The virtual /// machine will automatically be updated by the OS. The property /// WindowsConfiguration.enableAutomaticUpdates must be true. - /// &lt;br /&gt;&lt;br /&gt; ** AutomaticByPlatform** - + /// &lt;br /&gt;&lt;br /&gt; **AutomaticByPlatform** - /// the virtual machine will automatically updated by the platform. The /// properties provisionVMAgent and /// WindowsConfiguration.enableAutomaticUpdates must be true. Possible @@ -72,5 +80,14 @@ public PatchSettings() [JsonProperty(PropertyName = "patchMode")] public string PatchMode { get; set; } + /// + /// Gets or sets enables customers to patch their Azure VMs without + /// requiring a reboot. For enableHotpatching, the 'provisionVMAgent' + /// must be set to true and 'patchMode' must be set to + /// 'AutomaticByPlatform'. + /// + [JsonProperty(PropertyName = "enableHotpatching")] + public bool? EnableHotpatching { get; set; } + } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ResourceInstanceViewStatus.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ResourceInstanceViewStatus.cs deleted file mode 100644 index fd6a5d166a6a..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ResourceInstanceViewStatus.cs +++ /dev/null @@ -1,88 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Newtonsoft.Json; - using System.Linq; - - /// - /// Instance view status. - /// - public partial class ResourceInstanceViewStatus - { - /// - /// Initializes a new instance of the ResourceInstanceViewStatus class. - /// - public ResourceInstanceViewStatus() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the ResourceInstanceViewStatus class. - /// - /// The status code. - /// The short localizable label for the - /// status. - /// The detailed status message, including for - /// alerts and error messages. - /// The time of the status. - /// The level code. Possible values include: - /// 'Info', 'Warning', 'Error' - public ResourceInstanceViewStatus(string code = default(string), string displayStatus = default(string), string message = default(string), System.DateTime? time = default(System.DateTime?), StatusLevelTypes? level = default(StatusLevelTypes?)) - { - Code = code; - DisplayStatus = displayStatus; - Message = message; - Time = time; - Level = level; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets the status code. - /// - [JsonProperty(PropertyName = "code")] - public string Code { get; private set; } - - /// - /// Gets the short localizable label for the status. - /// - [JsonProperty(PropertyName = "displayStatus")] - public string DisplayStatus { get; private set; } - - /// - /// Gets the detailed status message, including for alerts and error - /// messages. - /// - [JsonProperty(PropertyName = "message")] - public string Message { get; private set; } - - /// - /// Gets the time of the status. - /// - [JsonProperty(PropertyName = "time")] - public System.DateTime? Time { get; private set; } - - /// - /// Gets or sets the level code. Possible values include: 'Info', - /// 'Warning', 'Error' - /// - [JsonProperty(PropertyName = "level")] - public StatusLevelTypes? Level { get; set; } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstance.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstance.cs deleted file mode 100644 index 1dabc78b11da..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstance.cs +++ /dev/null @@ -1,94 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - public partial class RoleInstance - { - /// - /// Initializes a new instance of the RoleInstance class. - /// - public RoleInstance() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the RoleInstance class. - /// - /// Resource Id - /// Resource Name. - /// Resource Type. - /// Resource Location. - /// Resource tags. - public RoleInstance(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), InstanceSku sku = default(InstanceSku), RoleInstanceProperties properties = default(RoleInstanceProperties)) - { - Id = id; - Name = name; - Type = type; - Location = location; - Tags = tags; - Sku = sku; - Properties = properties; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets resource Id - /// - [JsonProperty(PropertyName = "id")] - public string Id { get; private set; } - - /// - /// Gets resource Name. - /// - [JsonProperty(PropertyName = "name")] - public string Name { get; private set; } - - /// - /// Gets resource Type. - /// - [JsonProperty(PropertyName = "type")] - public string Type { get; private set; } - - /// - /// Gets resource Location. - /// - [JsonProperty(PropertyName = "location")] - public string Location { get; private set; } - - /// - /// Gets resource tags. - /// - [JsonProperty(PropertyName = "tags")] - public IDictionary Tags { get; private set; } - - /// - /// - [JsonProperty(PropertyName = "sku")] - public InstanceSku Sku { get; set; } - - /// - /// - [JsonProperty(PropertyName = "properties")] - public RoleInstanceProperties Properties { get; set; } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstanceInstanceView.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstanceInstanceView.cs deleted file mode 100644 index 5897af48e493..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstanceInstanceView.cs +++ /dev/null @@ -1,83 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// The instance view of the role instance. - /// - public partial class RoleInstanceInstanceView - { - /// - /// Initializes a new instance of the RoleInstanceInstanceView class. - /// - public RoleInstanceInstanceView() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the RoleInstanceInstanceView class. - /// - /// The Update Domain. - /// The Fault Domain. - /// Specifies a unique identifier generated - /// internally for the cloud service associated with this role - /// instance. <br /><br /> NOTE: If you are using Azure - /// Diagnostics extension, this property can be used as 'DeploymentId' - /// for querying details. - public RoleInstanceInstanceView(int? platformUpdateDomain = default(int?), int? platformFaultDomain = default(int?), string privateId = default(string), IList statuses = default(IList)) - { - PlatformUpdateDomain = platformUpdateDomain; - PlatformFaultDomain = platformFaultDomain; - PrivateId = privateId; - Statuses = statuses; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets the Update Domain. - /// - [JsonProperty(PropertyName = "platformUpdateDomain")] - public int? PlatformUpdateDomain { get; private set; } - - /// - /// Gets the Fault Domain. - /// - [JsonProperty(PropertyName = "platformFaultDomain")] - public int? PlatformFaultDomain { get; private set; } - - /// - /// Gets specifies a unique identifier generated internally for the - /// cloud service associated with this role instance. &lt;br - /// /&gt;&lt;br /&gt; NOTE: If you are using Azure - /// Diagnostics extension, this property can be used as 'DeploymentId' - /// for querying details. - /// - [JsonProperty(PropertyName = "privateId")] - public string PrivateId { get; private set; } - - /// - /// - [JsonProperty(PropertyName = "statuses")] - public IList Statuses { get; private set; } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstanceNetworkProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstanceNetworkProfile.cs deleted file mode 100644 index 4a74b02f3610..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstanceNetworkProfile.cs +++ /dev/null @@ -1,56 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Describes the network profile for the role instance. - /// - public partial class RoleInstanceNetworkProfile - { - /// - /// Initializes a new instance of the RoleInstanceNetworkProfile class. - /// - public RoleInstanceNetworkProfile() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the RoleInstanceNetworkProfile class. - /// - /// Specifies the list of resource Ids - /// for the network interfaces associated with the role - /// instance. - public RoleInstanceNetworkProfile(IList networkInterfaces = default(IList)) - { - NetworkInterfaces = networkInterfaces; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets specifies the list of resource Ids for the network interfaces - /// associated with the role instance. - /// - [JsonProperty(PropertyName = "networkInterfaces")] - public IList NetworkInterfaces { get; private set; } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstanceProperties.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstanceProperties.cs deleted file mode 100644 index fb7bd0ef4526..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstanceProperties.cs +++ /dev/null @@ -1,52 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Newtonsoft.Json; - using System.Linq; - - public partial class RoleInstanceProperties - { - /// - /// Initializes a new instance of the RoleInstanceProperties class. - /// - public RoleInstanceProperties() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the RoleInstanceProperties class. - /// - public RoleInstanceProperties(RoleInstanceNetworkProfile networkProfile = default(RoleInstanceNetworkProfile), RoleInstanceInstanceView instanceView = default(RoleInstanceInstanceView)) - { - NetworkProfile = networkProfile; - InstanceView = instanceView; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// - [JsonProperty(PropertyName = "networkProfile")] - public RoleInstanceNetworkProfile NetworkProfile { get; set; } - - /// - /// - [JsonProperty(PropertyName = "instanceView")] - public RoleInstanceInstanceView InstanceView { get; set; } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstances.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstances.cs deleted file mode 100644 index ca428016fc69..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstances.cs +++ /dev/null @@ -1,70 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Microsoft.Rest; - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Specifies a list of role instances from the cloud service. - /// - public partial class RoleInstances - { - /// - /// Initializes a new instance of the RoleInstances class. - /// - public RoleInstances() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the RoleInstances class. - /// - /// List of cloud service role - /// instance names. Value of '*' will signify all role instances of the - /// cloud service. - public RoleInstances(IList roleInstancesProperty) - { - RoleInstancesProperty = roleInstancesProperty; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets list of cloud service role instance names. Value of - /// '*' will signify all role instances of the cloud service. - /// - [JsonProperty(PropertyName = "roleInstances")] - public IList RoleInstancesProperty { get; set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (RoleInstancesProperty == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "RoleInstancesProperty"); - } - } - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RollingUpgradePolicy.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RollingUpgradePolicy.cs index 2a43f60a0103..cf56aac6c64f 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RollingUpgradePolicy.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RollingUpgradePolicy.cs @@ -52,12 +52,20 @@ public RollingUpgradePolicy() /// completing the update for all virtual machines in one batch and /// starting the next batch. The time duration should be specified in /// ISO 8601 format. The default value is 0 seconds (PT0S). - public RollingUpgradePolicy(int? maxBatchInstancePercent = default(int?), int? maxUnhealthyInstancePercent = default(int?), int? maxUnhealthyUpgradedInstancePercent = default(int?), string pauseTimeBetweenBatches = default(string)) + /// Allow VMSS to ignore AZ + /// boundaries when constructing upgrade batches. Take into + /// consideration the Update Domain and maxBatchInstancePercent to + /// determine the batch size. + /// Upgrade all unhealthy + /// instances in a scale set before any healthy instances. + public RollingUpgradePolicy(int? maxBatchInstancePercent = default(int?), int? maxUnhealthyInstancePercent = default(int?), int? maxUnhealthyUpgradedInstancePercent = default(int?), string pauseTimeBetweenBatches = default(string), bool? enableCrossZoneUpgrade = default(bool?), bool? prioritizeUnhealthyInstances = default(bool?)) { MaxBatchInstancePercent = maxBatchInstancePercent; MaxUnhealthyInstancePercent = maxUnhealthyInstancePercent; MaxUnhealthyUpgradedInstancePercent = maxUnhealthyUpgradedInstancePercent; PauseTimeBetweenBatches = pauseTimeBetweenBatches; + EnableCrossZoneUpgrade = enableCrossZoneUpgrade; + PrioritizeUnhealthyInstances = prioritizeUnhealthyInstances; CustomInit(); } @@ -107,6 +115,21 @@ public RollingUpgradePolicy() [JsonProperty(PropertyName = "pauseTimeBetweenBatches")] public string PauseTimeBetweenBatches { get; set; } + /// + /// Gets or sets allow VMSS to ignore AZ boundaries when constructing + /// upgrade batches. Take into consideration the Update Domain and + /// maxBatchInstancePercent to determine the batch size. + /// + [JsonProperty(PropertyName = "enableCrossZoneUpgrade")] + public bool? EnableCrossZoneUpgrade { get; set; } + + /// + /// Gets or sets upgrade all unhealthy instances in a scale set before + /// any healthy instances. + /// + [JsonProperty(PropertyName = "prioritizeUnhealthyInstances")] + public bool? PrioritizeUnhealthyInstances { get; set; } + /// /// Validate the object. /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SecurityProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SecurityProfile.cs index 323d109564f2..0be80d5c515a 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SecurityProfile.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SecurityProfile.cs @@ -30,6 +30,9 @@ public SecurityProfile() /// /// Initializes a new instance of the SecurityProfile class. /// + /// Specifies the security settings like + /// secure boot and vTPM used while creating the virtual machine. + /// <br><br>Minimum api-version: 2020-12-01 /// This property can be used by user in /// the request to enable or disable the Host Encryption for the /// virtual machine or virtual machine scale set. This will enable the @@ -37,9 +40,16 @@ public SecurityProfile() /// itself. <br><br> Default: The Encryption at host will /// be disabled unless this property is set to true for the /// resource. - public SecurityProfile(bool? encryptionAtHost = default(bool?)) + /// Specifies the SecurityType of the + /// virtual machine. It is set as TrustedLaunch to enable UefiSettings. + /// <br><br> Default: UefiSettings will not be enabled + /// unless this property is set as TrustedLaunch. Possible values + /// include: 'TrustedLaunch' + public SecurityProfile(UefiSettings uefiSettings = default(UefiSettings), bool? encryptionAtHost = default(bool?), SecurityTypes? securityType = default(SecurityTypes?)) { + UefiSettings = uefiSettings; EncryptionAtHost = encryptionAtHost; + SecurityType = securityType; CustomInit(); } @@ -48,6 +58,14 @@ public SecurityProfile() /// partial void CustomInit(); + /// + /// Gets or sets specifies the security settings like secure boot and + /// vTPM used while creating the virtual machine. + /// &lt;br&gt;&lt;br&gt;Minimum api-version: 2020-12-01 + /// + [JsonProperty(PropertyName = "uefiSettings")] + public UefiSettings UefiSettings { get; set; } + /// /// Gets or sets this property can be used by user in the request to /// enable or disable the Host Encryption for the virtual machine or @@ -60,5 +78,15 @@ public SecurityProfile() [JsonProperty(PropertyName = "encryptionAtHost")] public bool? EncryptionAtHost { get; set; } + /// + /// Gets or sets specifies the SecurityType of the virtual machine. It + /// is set as TrustedLaunch to enable UefiSettings. + /// &lt;br&gt;&lt;br&gt; Default: UefiSettings will not + /// be enabled unless this property is set as TrustedLaunch. Possible + /// values include: 'TrustedLaunch' + /// + [JsonProperty(PropertyName = "securityType")] + public SecurityTypes? SecurityType { get; set; } + } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SecurityTypes.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SecurityTypes.cs new file mode 100644 index 000000000000..aad5bca9275b --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SecurityTypes.cs @@ -0,0 +1,54 @@ +// +// 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 SecurityTypes. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum SecurityTypes + { + [EnumMember(Value = "TrustedLaunch")] + TrustedLaunch + } + internal static class SecurityTypesEnumExtension + { + internal static string ToSerializedValue(this SecurityTypes? value) + { + return value == null ? null : ((SecurityTypes)value).ToSerializedValue(); + } + + internal static string ToSerializedValue(this SecurityTypes value) + { + switch( value ) + { + case SecurityTypes.TrustedLaunch: + return "TrustedLaunch"; + } + return null; + } + + internal static SecurityTypes? ParseSecurityTypes(this string value) + { + switch( value ) + { + case "TrustedLaunch": + return SecurityTypes.TrustedLaunch; + } + return null; + } + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SshPublicKey.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SshPublicKey.cs index c26ca0214e35..129f2e1d9d71 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SshPublicKey.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SshPublicKey.cs @@ -38,7 +38,7 @@ public SshPublicKey() /// authenticate with the VM through ssh. The key needs to be at least /// 2048-bit and in ssh-rsa format. <br><br> For creating /// ssh keys, see [Create SSH keys on Linux and Mac for Linux VMs in - /// Azure](https://docs.microsoft.com/azure/virtual-machines/virtual-machines-linux-mac-create-ssh-keys?toc=%2fazure%2fvirtual-machines%2flinux%2ftoc.json). + /// Azure](https://docs.microsoft.com/en-us/azure/virtual-machines/linux/mac-create-ssh-keys?toc=%2fazure%2fvirtual-machines%2flinux%2ftoc.json). public SshPublicKey(string path = default(string), string keyData = default(string)) { Path = path; @@ -64,7 +64,7 @@ public SshPublicKey() /// the VM through ssh. The key needs to be at least 2048-bit and in /// ssh-rsa format. &lt;br&gt;&lt;br&gt; For creating /// ssh keys, see [Create SSH keys on Linux and Mac for Linux VMs in - /// Azure](https://docs.microsoft.com/azure/virtual-machines/virtual-machines-linux-mac-create-ssh-keys?toc=%2fazure%2fvirtual-machines%2flinux%2ftoc.json). + /// Azure](https://docs.microsoft.com/en-us/azure/virtual-machines/linux/mac-create-ssh-keys?toc=%2fazure%2fvirtual-machines%2flinux%2ftoc.json). /// [JsonProperty(PropertyName = "keyData")] public string KeyData { get; set; } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/StatusCodeCount.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/StatusCodeCount.cs deleted file mode 100644 index 58d751d63e8e..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/StatusCodeCount.cs +++ /dev/null @@ -1,57 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Newtonsoft.Json; - using System.Linq; - - public partial class StatusCodeCount - { - /// - /// Initializes a new instance of the StatusCodeCount class. - /// - public StatusCodeCount() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the StatusCodeCount class. - /// - /// The instance view status code - /// Number of instances having this status - /// code - public StatusCodeCount(string code = default(string), int? count = default(int?)) - { - Code = code; - Count = count; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets the instance view status code - /// - [JsonProperty(PropertyName = "code")] - public string Code { get; private set; } - - /// - /// Gets number of instances having this status code - /// - [JsonProperty(PropertyName = "count")] - public int? Count { get; private set; } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/UefiSettings.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/UefiSettings.cs new file mode 100644 index 000000000000..09b95b6c3d09 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/UefiSettings.cs @@ -0,0 +1,69 @@ +// +// 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; + + /// + /// Specifies the security settings like secure boot and vTPM used while + /// creating the virtual machine. <br><br>Minimum api-version: + /// 2020-12-01 + /// + public partial class UefiSettings + { + /// + /// Initializes a new instance of the UefiSettings class. + /// + public UefiSettings() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the UefiSettings class. + /// + /// Specifies whether secure boot + /// should be enabled on the virtual machine. + /// <br><br>Minimum api-version: 2020-12-01 + /// Specifies whether vTPM should be enabled + /// on the virtual machine. <br><br>Minimum api-version: + /// 2020-12-01 + public UefiSettings(bool? secureBootEnabled = default(bool?), bool? vTpmEnabled = default(bool?)) + { + SecureBootEnabled = secureBootEnabled; + VTpmEnabled = vTpmEnabled; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets specifies whether secure boot should be enabled on the + /// virtual machine. &lt;br&gt;&lt;br&gt;Minimum + /// api-version: 2020-12-01 + /// + [JsonProperty(PropertyName = "secureBootEnabled")] + public bool? SecureBootEnabled { get; set; } + + /// + /// Gets or sets specifies whether vTPM should be enabled on the + /// virtual machine. &lt;br&gt;&lt;br&gt;Minimum + /// api-version: 2020-12-01 + /// + [JsonProperty(PropertyName = "vTpmEnabled")] + public bool? VTpmEnabled { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/UpdateDomain.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/UpdateDomain.cs deleted file mode 100644 index a70bab5d5e0d..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/UpdateDomain.cs +++ /dev/null @@ -1,59 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Newtonsoft.Json; - using System.Linq; - - /// - /// Defines an update domain for the cloud service. - /// - public partial class UpdateDomain - { - /// - /// Initializes a new instance of the UpdateDomain class. - /// - public UpdateDomain() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the UpdateDomain class. - /// - /// Resource Id - /// Resource Name - public UpdateDomain(string id = default(string), string name = default(string)) - { - Id = id; - Name = name; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets resource Id - /// - [JsonProperty(PropertyName = "id")] - public string Id { get; private set; } - - /// - /// Gets resource Name - /// - [JsonProperty(PropertyName = "name")] - public string Name { get; private set; } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VMGuestPatchClassificationLinux.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VMGuestPatchClassificationLinux.cs new file mode 100644 index 000000000000..0cc53c8e44fc --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VMGuestPatchClassificationLinux.cs @@ -0,0 +1,23 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + + /// + /// Defines values for VMGuestPatchClassificationLinux. + /// + public static class VMGuestPatchClassificationLinux + { + public const string Critical = "Critical"; + public const string Security = "Security"; + public const string Other = "Other"; + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VMGuestPatchClassificationWindows.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VMGuestPatchClassificationWindows.cs new file mode 100644 index 000000000000..e98f65e64153 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VMGuestPatchClassificationWindows.cs @@ -0,0 +1,28 @@ +// +// 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 VMGuestPatchClassificationWindows. + /// + public static class VMGuestPatchClassificationWindows + { + public const string Critical = "Critical"; + public const string Security = "Security"; + public const string UpdateRollUp = "UpdateRollUp"; + public const string FeaturePack = "FeaturePack"; + public const string ServicePack = "ServicePack"; + public const string Definition = "Definition"; + public const string Tools = "Tools"; + public const string Updates = "Updates"; + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SoftwareUpdateRebootBehavior.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VMGuestPatchRebootBehavior.cs similarity index 80% rename from sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SoftwareUpdateRebootBehavior.cs rename to sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VMGuestPatchRebootBehavior.cs index de78bf037aca..87a76dded6d9 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SoftwareUpdateRebootBehavior.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VMGuestPatchRebootBehavior.cs @@ -12,10 +12,11 @@ namespace Microsoft.Azure.Management.Compute.Models { /// - /// Defines values for SoftwareUpdateRebootBehavior. + /// Defines values for VMGuestPatchRebootBehavior. /// - public static class SoftwareUpdateRebootBehavior + public static class VMGuestPatchRebootBehavior { + public const string Unknown = "Unknown"; public const string NeverReboots = "NeverReboots"; public const string AlwaysRequiresReboot = "AlwaysRequiresReboot"; public const string CanRequestReboot = "CanRequestReboot"; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VMGuestPatchRebootSetting.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VMGuestPatchRebootSetting.cs new file mode 100644 index 000000000000..ebfef92400a4 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VMGuestPatchRebootSetting.cs @@ -0,0 +1,23 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + + /// + /// Defines values for VMGuestPatchRebootSetting. + /// + public static class VMGuestPatchRebootSetting + { + public const string IfRequired = "IfRequired"; + public const string Never = "Never"; + public const string Always = "Always"; + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RebootStatus.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VMGuestPatchRebootStatus.cs similarity index 82% rename from sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RebootStatus.cs rename to sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VMGuestPatchRebootStatus.cs index b04c6371134e..f9bf1a04138e 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RebootStatus.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VMGuestPatchRebootStatus.cs @@ -12,10 +12,11 @@ namespace Microsoft.Azure.Management.Compute.Models { /// - /// Defines values for RebootStatus. + /// Defines values for VMGuestPatchRebootStatus. /// - public static class RebootStatus + public static class VMGuestPatchRebootStatus { + public const string Unknown = "Unknown"; public const string NotNeeded = "NotNeeded"; public const string Required = "Required"; public const string Started = "Started"; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachine.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachine.cs index 53cc695fea8b..b2a2fe9d7b9c 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachine.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachine.cs @@ -139,12 +139,26 @@ public VirtualMachine() /// minutes and 120 minutes (inclusive) and should be specified in ISO /// 8601 format. The default value is 90 minutes (PT1H30M). /// <br><br> Minimum api-version: 2020-06-01 + /// Specifies the scale set logical + /// fault domain into which the Virtual Machine will be created. By + /// default, the Virtual Machine will by automatically assigned to a + /// fault domain that best maintains balance across available fault + /// domains.<br><li>This is applicable only if the + /// 'virtualMachineScaleSet' property of this Virtual Machine is + /// set.<li>The Virtual Machine Scale Set that is referenced, + /// must have 'platformFaultDomainCount' &gt; 1.<li>This + /// property cannot be updated once the Virtual Machine is + /// created.<li>Fault domain assignment can be viewed in the + /// Virtual Machine Instance View.<br><br>Minimum + /// api‐version: 2020‐12‐01 /// The virtual machine child extension /// resources. /// The identity of the virtual machine, if /// configured. /// The virtual machine zones. - public VirtualMachine(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), Plan plan = default(Plan), HardwareProfile hardwareProfile = default(HardwareProfile), StorageProfile storageProfile = default(StorageProfile), AdditionalCapabilities additionalCapabilities = default(AdditionalCapabilities), OSProfile osProfile = default(OSProfile), NetworkProfile networkProfile = default(NetworkProfile), SecurityProfile securityProfile = default(SecurityProfile), DiagnosticsProfile diagnosticsProfile = default(DiagnosticsProfile), SubResource availabilitySet = default(SubResource), SubResource virtualMachineScaleSet = default(SubResource), SubResource proximityPlacementGroup = default(SubResource), string priority = default(string), string evictionPolicy = default(string), BillingProfile billingProfile = default(BillingProfile), SubResource host = default(SubResource), SubResource hostGroup = default(SubResource), string provisioningState = default(string), VirtualMachineInstanceView instanceView = default(VirtualMachineInstanceView), string licenseType = default(string), string vmId = default(string), string extensionsTimeBudget = default(string), IList resources = default(IList), VirtualMachineIdentity identity = default(VirtualMachineIdentity), IList zones = default(IList)) + /// The extended location of the Virtual + /// Machine. + public VirtualMachine(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), Plan plan = default(Plan), HardwareProfile hardwareProfile = default(HardwareProfile), StorageProfile storageProfile = default(StorageProfile), AdditionalCapabilities additionalCapabilities = default(AdditionalCapabilities), OSProfile osProfile = default(OSProfile), NetworkProfile networkProfile = default(NetworkProfile), SecurityProfile securityProfile = default(SecurityProfile), DiagnosticsProfile diagnosticsProfile = default(DiagnosticsProfile), SubResource availabilitySet = default(SubResource), SubResource virtualMachineScaleSet = default(SubResource), SubResource proximityPlacementGroup = default(SubResource), string priority = default(string), string evictionPolicy = default(string), BillingProfile billingProfile = default(BillingProfile), SubResource host = default(SubResource), SubResource hostGroup = default(SubResource), string provisioningState = default(string), VirtualMachineInstanceView instanceView = default(VirtualMachineInstanceView), string licenseType = default(string), string vmId = default(string), string extensionsTimeBudget = default(string), int? platformFaultDomain = default(int?), IList resources = default(IList), VirtualMachineIdentity identity = default(VirtualMachineIdentity), IList zones = default(IList), ExtendedLocation extendedLocation = default(ExtendedLocation)) : base(location, id, name, type, tags) { Plan = plan; @@ -168,9 +182,11 @@ public VirtualMachine() LicenseType = licenseType; VmId = vmId; ExtensionsTimeBudget = extensionsTimeBudget; + PlatformFaultDomain = platformFaultDomain; Resources = resources; Identity = identity; Zones = zones; + ExtendedLocation = extendedLocation; CustomInit(); } @@ -388,6 +404,24 @@ public VirtualMachine() [JsonProperty(PropertyName = "properties.extensionsTimeBudget")] public string ExtensionsTimeBudget { get; set; } + /// + /// Gets or sets specifies the scale set logical fault domain into + /// which the Virtual Machine will be created. By default, the Virtual + /// Machine will by automatically assigned to a fault domain that best + /// maintains balance across available fault + /// domains.&lt;br&gt;&lt;li&gt;This is applicable only + /// if the 'virtualMachineScaleSet' property of this Virtual Machine is + /// set.&lt;li&gt;The Virtual Machine Scale Set that is + /// referenced, must have 'platformFaultDomainCount' &amp;gt; + /// 1.&lt;li&gt;This property cannot be updated once the + /// Virtual Machine is created.&lt;li&gt;Fault domain + /// assignment can be viewed in the Virtual Machine Instance + /// View.&lt;br&gt;&lt;br&gt;Minimum api‐version: + /// 2020‐12‐01 + /// + [JsonProperty(PropertyName = "properties.platformFaultDomain")] + public int? PlatformFaultDomain { get; set; } + /// /// Gets the virtual machine child extension resources. /// @@ -406,6 +440,12 @@ public VirtualMachine() [JsonProperty(PropertyName = "zones")] public IList Zones { get; set; } + /// + /// Gets or sets the extended location of the Virtual Machine. + /// + [JsonProperty(PropertyName = "extendedLocation")] + public ExtendedLocation ExtendedLocation { get; set; } + /// /// Validate the object. /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineAssessPatchesResult.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineAssessPatchesResult.cs index 3547230ce763..9bb2a7c3e50c 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineAssessPatchesResult.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineAssessPatchesResult.cs @@ -35,9 +35,10 @@ public VirtualMachineAssessPatchesResult() /// /// The overall success or failure status of the /// operation. It remains "InProgress" until the operation completes. - /// At that point it will become "Failed", "Succeeded", or - /// "CompletedWithWarnings.". Possible values include: 'InProgress', - /// 'Failed', 'Succeeded', 'CompletedWithWarnings' + /// At that point it will become "Unknown", "Failed", "Succeeded", or + /// "CompletedWithWarnings.". Possible values include: 'Unknown', + /// 'InProgress', 'Failed', 'Succeeded', + /// 'CompletedWithWarnings' /// The activity ID of the operation /// that produced this result. It is used to correlate across CRP and /// extension logs. @@ -51,12 +52,12 @@ public VirtualMachineAssessPatchesResult() /// excluding critical and security. /// The UTC timestamp when the operation /// began. - /// The list of patches that have been detected - /// as available for installation. + /// The list of patches that have been + /// detected as available for installation. /// The errors that were encountered during /// execution of the operation. The details array contains the list of /// them. - public VirtualMachineAssessPatchesResult(string status = default(string), string assessmentActivityId = default(string), bool? rebootPending = default(bool?), int? criticalAndSecurityPatchCount = default(int?), int? otherPatchCount = default(int?), System.DateTime? startDateTime = default(System.DateTime?), IList patches = default(IList), ApiError error = default(ApiError)) + public VirtualMachineAssessPatchesResult(string status = default(string), string assessmentActivityId = default(string), bool? rebootPending = default(bool?), int? criticalAndSecurityPatchCount = default(int?), int? otherPatchCount = default(int?), System.DateTime? startDateTime = default(System.DateTime?), IList availablePatches = default(IList), ApiError error = default(ApiError)) { Status = status; AssessmentActivityId = assessmentActivityId; @@ -64,7 +65,7 @@ public VirtualMachineAssessPatchesResult() CriticalAndSecurityPatchCount = criticalAndSecurityPatchCount; OtherPatchCount = otherPatchCount; StartDateTime = startDateTime; - Patches = patches; + AvailablePatches = availablePatches; Error = error; CustomInit(); } @@ -77,9 +78,9 @@ public VirtualMachineAssessPatchesResult() /// /// Gets the overall success or failure status of the operation. It /// remains "InProgress" until the operation completes. At that point - /// it will become "Failed", "Succeeded", or "CompletedWithWarnings.". - /// Possible values include: 'InProgress', 'Failed', 'Succeeded', - /// 'CompletedWithWarnings' + /// it will become "Unknown", "Failed", "Succeeded", or + /// "CompletedWithWarnings.". Possible values include: 'Unknown', + /// 'InProgress', 'Failed', 'Succeeded', 'CompletedWithWarnings' /// [JsonProperty(PropertyName = "status")] public string Status { get; private set; } @@ -123,8 +124,8 @@ public VirtualMachineAssessPatchesResult() /// Gets the list of patches that have been detected as available for /// installation. /// - [JsonProperty(PropertyName = "patches")] - public IList Patches { get; private set; } + [JsonProperty(PropertyName = "availablePatches")] + public IList AvailablePatches { get; private set; } /// /// Gets the errors that were encountered during execution of the diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineImage.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineImage.cs index 8a2b6409b7e4..a938c57910a2 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineImage.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineImage.cs @@ -42,12 +42,14 @@ public VirtualMachineImage() /// virtual machine. For more information about using tags, see [Using /// tags to organize your Azure /// resources](https://docs.microsoft.com/azure/azure-resource-manager/resource-group-using-tags.md). + /// The extended location of the Virtual + /// Machine. /// Possible values include: 'V1', /// 'V2' /// Specifies disallowed configuration for the /// VirtualMachine created from the image - public VirtualMachineImage(string name, string location, string id = default(string), IDictionary tags = default(IDictionary), PurchasePlan plan = default(PurchasePlan), OSDiskImage osDiskImage = default(OSDiskImage), IList dataDiskImages = default(IList), AutomaticOSUpgradeProperties automaticOSUpgradeProperties = default(AutomaticOSUpgradeProperties), string hyperVGeneration = default(string), DisallowedConfiguration disallowed = default(DisallowedConfiguration)) - : base(name, location, id, tags) + public VirtualMachineImage(string name, string location, string id = default(string), IDictionary tags = default(IDictionary), ExtendedLocation extendedLocation = default(ExtendedLocation), PurchasePlan plan = default(PurchasePlan), OSDiskImage osDiskImage = default(OSDiskImage), IList dataDiskImages = default(IList), AutomaticOSUpgradeProperties automaticOSUpgradeProperties = default(AutomaticOSUpgradeProperties), string hyperVGeneration = default(string), DisallowedConfiguration disallowed = default(DisallowedConfiguration), IList features = default(IList)) + : base(name, location, id, tags, extendedLocation) { Plan = plan; OsDiskImage = osDiskImage; @@ -55,6 +57,7 @@ public VirtualMachineImage() AutomaticOSUpgradeProperties = automaticOSUpgradeProperties; HyperVGeneration = hyperVGeneration; Disallowed = disallowed; + Features = features; CustomInit(); } @@ -96,6 +99,11 @@ public VirtualMachineImage() [JsonProperty(PropertyName = "properties.disallowed")] public DisallowedConfiguration Disallowed { get; set; } + /// + /// + [JsonProperty(PropertyName = "properties.features")] + public IList Features { get; set; } + /// /// Validate the object. /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerConfiguration.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineImageFeature.cs similarity index 56% rename from sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerConfiguration.cs rename to sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineImageFeature.cs index 1965c9fc649f..5b38dfe6711a 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerConfiguration.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineImageFeature.cs @@ -14,26 +14,28 @@ namespace Microsoft.Azure.Management.Compute.Models using System.Linq; /// - /// Describes the load balancer configuration. + /// Specifies additional capabilities supported by the image /// - public partial class LoadBalancerConfiguration + public partial class VirtualMachineImageFeature { /// - /// Initializes a new instance of the LoadBalancerConfiguration class. + /// Initializes a new instance of the VirtualMachineImageFeature class. /// - public LoadBalancerConfiguration() + public VirtualMachineImageFeature() { CustomInit(); } /// - /// Initializes a new instance of the LoadBalancerConfiguration class. + /// Initializes a new instance of the VirtualMachineImageFeature class. /// - /// Resource Name - public LoadBalancerConfiguration(string name = default(string), LoadBalancerConfigurationProperties properties = default(LoadBalancerConfigurationProperties)) + /// The name of the feature. + /// The corresponding value for the + /// feature. + public VirtualMachineImageFeature(string name = default(string), string value = default(string)) { Name = name; - Properties = properties; + Value = value; CustomInit(); } @@ -43,15 +45,16 @@ public LoadBalancerConfiguration() partial void CustomInit(); /// - /// Gets or sets resource Name + /// Gets or sets the name of the feature. /// [JsonProperty(PropertyName = "name")] public string Name { get; set; } /// + /// Gets or sets the corresponding value for the feature. /// - [JsonProperty(PropertyName = "properties")] - public LoadBalancerConfigurationProperties Properties { get; set; } + [JsonProperty(PropertyName = "value")] + public string Value { get; set; } } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineImageResource.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineImageResource.cs index 880249a5672c..f7adc3819051 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineImageResource.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineImageResource.cs @@ -42,12 +42,15 @@ public VirtualMachineImageResource() /// virtual machine. For more information about using tags, see [Using /// tags to organize your Azure /// resources](https://docs.microsoft.com/azure/azure-resource-manager/resource-group-using-tags.md). - public VirtualMachineImageResource(string name, string location, string id = default(string), IDictionary tags = default(IDictionary)) + /// The extended location of the Virtual + /// Machine. + public VirtualMachineImageResource(string name, string location, string id = default(string), IDictionary tags = default(IDictionary), ExtendedLocation extendedLocation = default(ExtendedLocation)) : base(id) { Name = name; Location = location; Tags = tags; + ExtendedLocation = extendedLocation; CustomInit(); } @@ -77,6 +80,12 @@ public VirtualMachineImageResource() [JsonProperty(PropertyName = "tags")] public IDictionary Tags { get; set; } + /// + /// Gets or sets the extended location of the Virtual Machine. + /// + [JsonProperty(PropertyName = "extendedLocation")] + public ExtendedLocation ExtendedLocation { get; set; } + /// /// Validate the object. /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineInstallPatchesParameters.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineInstallPatchesParameters.cs new file mode 100644 index 000000000000..e7170d046d5b --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineInstallPatchesParameters.cs @@ -0,0 +1,107 @@ +// +// 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; + + /// + /// Input for InstallPatches as directly received by the API + /// + public partial class VirtualMachineInstallPatchesParameters + { + /// + /// Initializes a new instance of the + /// VirtualMachineInstallPatchesParameters class. + /// + public VirtualMachineInstallPatchesParameters() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// VirtualMachineInstallPatchesParameters class. + /// + /// Specifies the maximum amount of time + /// that the operation will run. It must be an ISO 8601-compliant + /// duration string such as PT4H (4 hours) + /// Defines when it is acceptable to reboot + /// a VM during a software update operation. Possible values include: + /// 'IfRequired', 'Never', 'Always' + /// Input for InstallPatches on a + /// Windows VM, as directly received by the API + /// Input for InstallPatches on a Linux + /// VM, as directly received by the API + public VirtualMachineInstallPatchesParameters(string maximumDuration, string rebootSetting, WindowsParameters windowsParameters = default(WindowsParameters), LinuxParameters linuxParameters = default(LinuxParameters)) + { + MaximumDuration = maximumDuration; + RebootSetting = rebootSetting; + WindowsParameters = windowsParameters; + LinuxParameters = linuxParameters; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets specifies the maximum amount of time that the + /// operation will run. It must be an ISO 8601-compliant duration + /// string such as PT4H (4 hours) + /// + [JsonProperty(PropertyName = "maximumDuration")] + public string MaximumDuration { get; set; } + + /// + /// Gets or sets defines when it is acceptable to reboot a VM during a + /// software update operation. Possible values include: 'IfRequired', + /// 'Never', 'Always' + /// + [JsonProperty(PropertyName = "rebootSetting")] + public string RebootSetting { get; set; } + + /// + /// Gets or sets input for InstallPatches on a Windows VM, as directly + /// received by the API + /// + [JsonProperty(PropertyName = "windowsParameters")] + public WindowsParameters WindowsParameters { get; set; } + + /// + /// Gets or sets input for InstallPatches on a Linux VM, as directly + /// received by the API + /// + [JsonProperty(PropertyName = "linuxParameters")] + public LinuxParameters LinuxParameters { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (MaximumDuration == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "MaximumDuration"); + } + if (RebootSetting == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "RebootSetting"); + } + } + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineInstallPatchesResult.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineInstallPatchesResult.cs new file mode 100644 index 000000000000..53d2c65fe027 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineInstallPatchesResult.cs @@ -0,0 +1,179 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// The result summary of an installation operation. + /// + public partial class VirtualMachineInstallPatchesResult + { + /// + /// Initializes a new instance of the + /// VirtualMachineInstallPatchesResult class. + /// + public VirtualMachineInstallPatchesResult() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// VirtualMachineInstallPatchesResult class. + /// + /// The overall success or failure status of the + /// operation. It remains "InProgress" until the operation completes. + /// At that point it will become "Failed", "Succeeded", "Unknown" or + /// "CompletedWithWarnings.". Possible values include: 'Unknown', + /// 'InProgress', 'Failed', 'Succeeded', + /// 'CompletedWithWarnings' + /// The activity ID of the + /// operation that produced this result. It is used to correlate across + /// CRP and extension logs. + /// The reboot state of the VM following + /// completion of the operation. Possible values include: 'Unknown', + /// 'NotNeeded', 'Required', 'Started', 'Failed', 'Completed' + /// Whether the operation ran + /// out of time before it completed all its intended actions. + /// The number of patches that were + /// not installed due to the user blocking their installation. + /// The number of patches that were + /// detected as available for install, but did not meet the operation's + /// criteria. + /// The number of patches that were + /// identified as meeting the installation criteria, but were not able + /// to be installed. Typically this happens when + /// maintenanceWindowExceeded == true. + /// The number of patches + /// successfully installed. + /// The number of patches that could not + /// be installed due to some issue. See errors for details. + /// The patches that were installed during the + /// operation. + /// The UTC timestamp when the operation + /// began. + /// The errors that were encountered during + /// execution of the operation. The details array contains the list of + /// them. + public VirtualMachineInstallPatchesResult(string status = default(string), string installationActivityId = default(string), string rebootStatus = default(string), bool? maintenanceWindowExceeded = default(bool?), int? excludedPatchCount = default(int?), int? notSelectedPatchCount = default(int?), int? pendingPatchCount = default(int?), int? installedPatchCount = default(int?), int? failedPatchCount = default(int?), IList patches = default(IList), System.DateTime? startDateTime = default(System.DateTime?), ApiError error = default(ApiError)) + { + Status = status; + InstallationActivityId = installationActivityId; + RebootStatus = rebootStatus; + MaintenanceWindowExceeded = maintenanceWindowExceeded; + ExcludedPatchCount = excludedPatchCount; + NotSelectedPatchCount = notSelectedPatchCount; + PendingPatchCount = pendingPatchCount; + InstalledPatchCount = installedPatchCount; + FailedPatchCount = failedPatchCount; + Patches = patches; + StartDateTime = startDateTime; + Error = error; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the overall success or failure status of the operation. It + /// remains "InProgress" until the operation completes. At that point + /// it will become "Failed", "Succeeded", "Unknown" or + /// "CompletedWithWarnings.". Possible values include: 'Unknown', + /// 'InProgress', 'Failed', 'Succeeded', 'CompletedWithWarnings' + /// + [JsonProperty(PropertyName = "status")] + public string Status { get; private set; } + + /// + /// Gets the activity ID of the operation that produced this result. It + /// is used to correlate across CRP and extension logs. + /// + [JsonProperty(PropertyName = "installationActivityId")] + public string InstallationActivityId { get; private set; } + + /// + /// Gets the reboot state of the VM following completion of the + /// operation. Possible values include: 'Unknown', 'NotNeeded', + /// 'Required', 'Started', 'Failed', 'Completed' + /// + [JsonProperty(PropertyName = "rebootStatus")] + public string RebootStatus { get; private set; } + + /// + /// Gets whether the operation ran out of time before it completed all + /// its intended actions. + /// + [JsonProperty(PropertyName = "maintenanceWindowExceeded")] + public bool? MaintenanceWindowExceeded { get; private set; } + + /// + /// Gets the number of patches that were not installed due to the user + /// blocking their installation. + /// + [JsonProperty(PropertyName = "excludedPatchCount")] + public int? ExcludedPatchCount { get; private set; } + + /// + /// Gets the number of patches that were detected as available for + /// install, but did not meet the operation's criteria. + /// + [JsonProperty(PropertyName = "notSelectedPatchCount")] + public int? NotSelectedPatchCount { get; private set; } + + /// + /// Gets the number of patches that were identified as meeting the + /// installation criteria, but were not able to be installed. Typically + /// this happens when maintenanceWindowExceeded == true. + /// + [JsonProperty(PropertyName = "pendingPatchCount")] + public int? PendingPatchCount { get; private set; } + + /// + /// Gets the number of patches successfully installed. + /// + [JsonProperty(PropertyName = "installedPatchCount")] + public int? InstalledPatchCount { get; private set; } + + /// + /// Gets the number of patches that could not be installed due to some + /// issue. See errors for details. + /// + [JsonProperty(PropertyName = "failedPatchCount")] + public int? FailedPatchCount { get; private set; } + + /// + /// Gets the patches that were installed during the operation. + /// + [JsonProperty(PropertyName = "patches")] + public IList Patches { get; private set; } + + /// + /// Gets the UTC timestamp when the operation began. + /// + [JsonProperty(PropertyName = "startDateTime")] + public System.DateTime? StartDateTime { get; private set; } + + /// + /// Gets the errors that were encountered during execution of the + /// operation. The details array contains the list of them. + /// + [JsonProperty(PropertyName = "error")] + public ApiError Error { get; private set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineInstanceView.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineInstanceView.cs index d0140ccba255..133010dfe51a 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineInstanceView.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineInstanceView.cs @@ -64,8 +64,8 @@ public VirtualMachineInstanceView() /// that has automatic placement enabled. <br><br>Minimum /// api-version: 2020-06-01. /// The resource status information. - /// The status of virtual machine patch - /// operations. + /// [Preview Feature] The status of virtual + /// machine patch operations. public VirtualMachineInstanceView(int? platformUpdateDomain = default(int?), int? platformFaultDomain = default(int?), string computerName = default(string), string osName = default(string), string osVersion = default(string), string hyperVGeneration = default(string), string rdpThumbPrint = default(string), VirtualMachineAgentInstanceView vmAgent = default(VirtualMachineAgentInstanceView), MaintenanceRedeployStatus maintenanceRedeployStatus = default(MaintenanceRedeployStatus), IList disks = default(IList), IList extensions = default(IList), VirtualMachineHealthStatus vmHealth = default(VirtualMachineHealthStatus), BootDiagnosticsInstanceView bootDiagnostics = default(BootDiagnosticsInstanceView), string assignedHost = default(string), IList statuses = default(IList), VirtualMachinePatchStatus patchStatus = default(VirtualMachinePatchStatus)) { PlatformUpdateDomain = platformUpdateDomain; @@ -195,7 +195,8 @@ public VirtualMachineInstanceView() public IList Statuses { get; set; } /// - /// Gets or sets the status of virtual machine patch operations. + /// Gets or sets [Preview Feature] The status of virtual machine patch + /// operations. /// [JsonProperty(PropertyName = "patchStatus")] public VirtualMachinePatchStatus PatchStatus { get; set; } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachinePatchStatus.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachinePatchStatus.cs index bc09fb9fe98c..bd1b95c7f635 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachinePatchStatus.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachinePatchStatus.cs @@ -11,6 +11,8 @@ namespace Microsoft.Azure.Management.Compute.Models { using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -34,10 +36,13 @@ public VirtualMachinePatchStatus() /// The installation summary /// of the latest installation operation for the virtual /// machine. - public VirtualMachinePatchStatus(AvailablePatchSummary availablePatchSummary = default(AvailablePatchSummary), LastPatchInstallationSummary lastPatchInstallationSummary = default(LastPatchInstallationSummary)) + /// The enablement status of the + /// specified patchMode + public VirtualMachinePatchStatus(AvailablePatchSummary availablePatchSummary = default(AvailablePatchSummary), LastPatchInstallationSummary lastPatchInstallationSummary = default(LastPatchInstallationSummary), IList configurationStatuses = default(IList)) { AvailablePatchSummary = availablePatchSummary; LastPatchInstallationSummary = lastPatchInstallationSummary; + ConfigurationStatuses = configurationStatuses; CustomInit(); } @@ -60,5 +65,11 @@ public VirtualMachinePatchStatus() [JsonProperty(PropertyName = "lastPatchInstallationSummary")] public LastPatchInstallationSummary LastPatchInstallationSummary { get; set; } + /// + /// Gets the enablement status of the specified patchMode + /// + [JsonProperty(PropertyName = "configurationStatuses")] + public IList ConfigurationStatuses { get; private set; } + } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineScaleSet.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineScaleSet.cs index a6592646caf3..f2c95f765b74 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineScaleSet.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineScaleSet.cs @@ -88,12 +88,17 @@ public VirtualMachineScaleSet() /// Specifies the scale-in policy that /// decides which virtual machines are chosen for removal when a /// Virtual Machine Scale Set is scaled-in. + /// Specifies the orchestration mode + /// for the virtual machine scale set. Possible values include: + /// 'Uniform', 'Flexible' /// The identity of the virtual machine scale /// set, if configured. /// The virtual machine scale set zones. NOTE: /// Availability zones can only be set when you create the scale /// set - public VirtualMachineScaleSet(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), Sku sku = default(Sku), Plan plan = default(Plan), UpgradePolicy upgradePolicy = default(UpgradePolicy), AutomaticRepairsPolicy automaticRepairsPolicy = default(AutomaticRepairsPolicy), VirtualMachineScaleSetVMProfile virtualMachineProfile = default(VirtualMachineScaleSetVMProfile), string provisioningState = default(string), bool? overprovision = default(bool?), bool? doNotRunExtensionsOnOverprovisionedVMs = default(bool?), string uniqueId = default(string), bool? singlePlacementGroup = default(bool?), bool? zoneBalance = default(bool?), int? platformFaultDomainCount = default(int?), SubResource proximityPlacementGroup = default(SubResource), SubResource hostGroup = default(SubResource), AdditionalCapabilities additionalCapabilities = default(AdditionalCapabilities), ScaleInPolicy scaleInPolicy = default(ScaleInPolicy), VirtualMachineScaleSetIdentity identity = default(VirtualMachineScaleSetIdentity), IList zones = default(IList)) + /// The extended location of the Virtual + /// Machine Scale Set. + public VirtualMachineScaleSet(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), Sku sku = default(Sku), Plan plan = default(Plan), UpgradePolicy upgradePolicy = default(UpgradePolicy), AutomaticRepairsPolicy automaticRepairsPolicy = default(AutomaticRepairsPolicy), VirtualMachineScaleSetVMProfile virtualMachineProfile = default(VirtualMachineScaleSetVMProfile), string provisioningState = default(string), bool? overprovision = default(bool?), bool? doNotRunExtensionsOnOverprovisionedVMs = default(bool?), string uniqueId = default(string), bool? singlePlacementGroup = default(bool?), bool? zoneBalance = default(bool?), int? platformFaultDomainCount = default(int?), SubResource proximityPlacementGroup = default(SubResource), SubResource hostGroup = default(SubResource), AdditionalCapabilities additionalCapabilities = default(AdditionalCapabilities), ScaleInPolicy scaleInPolicy = default(ScaleInPolicy), string orchestrationMode = default(string), VirtualMachineScaleSetIdentity identity = default(VirtualMachineScaleSetIdentity), IList zones = default(IList), ExtendedLocation extendedLocation = default(ExtendedLocation)) : base(location, id, name, type, tags) { Sku = sku; @@ -112,8 +117,10 @@ public VirtualMachineScaleSet() HostGroup = hostGroup; AdditionalCapabilities = additionalCapabilities; ScaleInPolicy = scaleInPolicy; + OrchestrationMode = orchestrationMode; Identity = identity; Zones = zones; + ExtendedLocation = extendedLocation; CustomInit(); } @@ -245,6 +252,13 @@ public VirtualMachineScaleSet() [JsonProperty(PropertyName = "properties.scaleInPolicy")] public ScaleInPolicy ScaleInPolicy { get; set; } + /// + /// Gets or sets specifies the orchestration mode for the virtual + /// machine scale set. Possible values include: 'Uniform', 'Flexible' + /// + [JsonProperty(PropertyName = "properties.orchestrationMode")] + public string OrchestrationMode { get; set; } + /// /// Gets or sets the identity of the virtual machine scale set, if /// configured. @@ -259,6 +273,13 @@ public VirtualMachineScaleSet() [JsonProperty(PropertyName = "zones")] public IList Zones { get; set; } + /// + /// Gets or sets the extended location of the Virtual Machine Scale + /// Set. + /// + [JsonProperty(PropertyName = "extendedLocation")] + public ExtendedLocation ExtendedLocation { get; set; } + /// /// Validate the object. /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineSoftwarePatchProperties.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineSoftwarePatchProperties.cs index 274c3f085e3c..bc709ce1f948 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineSoftwarePatchProperties.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineSoftwarePatchProperties.cs @@ -37,12 +37,12 @@ public VirtualMachineSoftwarePatchProperties() /// The friendly name of the patch. /// The version number of the patch. This /// property applies only to Linux patches. - /// The KBID of the patch. Only applies to Windows + /// The KBID of the patch. Only applies to Windows /// patches. /// The classification(s) of the patch as /// provided by the patch publisher. /// Describes the reboot requirements of - /// the patch. Possible values include: 'NeverReboots', + /// the patch. Possible values include: 'Unknown', 'NeverReboots', /// 'AlwaysRequiresReboot', 'CanRequestReboot' /// The activity ID of the operation that /// produced this result. It is used to correlate across CRP and @@ -51,15 +51,14 @@ public VirtualMachineSoftwarePatchProperties() /// published this patch. /// The UTC timestamp of the last /// update to this patch record. - /// Describes the outcome of an install - /// operation for a given patch. Possible values include: 'Installed', - /// 'Failed', 'Excluded', 'NotSelected', 'Pending', 'Available' - public VirtualMachineSoftwarePatchProperties(string patchId = default(string), string name = default(string), string version = default(string), string kbid = default(string), IList classifications = default(IList), string rebootBehavior = default(string), string activityId = default(string), System.DateTime? publishedDate = default(System.DateTime?), System.DateTime? lastModifiedDateTime = default(System.DateTime?), string assessmentState = default(string)) + /// Describes the availability of a given + /// patch. Possible values include: 'Unknown', 'Available' + public VirtualMachineSoftwarePatchProperties(string patchId = default(string), string name = default(string), string version = default(string), string kbId = default(string), IList classifications = default(IList), string rebootBehavior = default(string), string activityId = default(string), System.DateTime? publishedDate = default(System.DateTime?), System.DateTime? lastModifiedDateTime = default(System.DateTime?), string assessmentState = default(string)) { PatchId = patchId; Name = name; Version = version; - Kbid = kbid; + KbId = kbId; Classifications = classifications; RebootBehavior = rebootBehavior; ActivityId = activityId; @@ -96,8 +95,8 @@ public VirtualMachineSoftwarePatchProperties() /// /// Gets the KBID of the patch. Only applies to Windows patches. /// - [JsonProperty(PropertyName = "kbid")] - public string Kbid { get; private set; } + [JsonProperty(PropertyName = "kbId")] + public string KbId { get; private set; } /// /// Gets the classification(s) of the patch as provided by the patch @@ -108,7 +107,7 @@ public VirtualMachineSoftwarePatchProperties() /// /// Gets describes the reboot requirements of the patch. Possible - /// values include: 'NeverReboots', 'AlwaysRequiresReboot', + /// values include: 'Unknown', 'NeverReboots', 'AlwaysRequiresReboot', /// 'CanRequestReboot' /// [JsonProperty(PropertyName = "rebootBehavior")] @@ -134,9 +133,8 @@ public VirtualMachineSoftwarePatchProperties() public System.DateTime? LastModifiedDateTime { get; private set; } /// - /// Gets describes the outcome of an install operation for a given - /// patch. Possible values include: 'Installed', 'Failed', 'Excluded', - /// 'NotSelected', 'Pending', 'Available' + /// Gets describes the availability of a given patch. Possible values + /// include: 'Unknown', 'Available' /// [JsonProperty(PropertyName = "assessmentState")] public string AssessmentState { get; private set; } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineUpdate.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineUpdate.cs index 5a4f79543b84..b91aa7a099bf 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineUpdate.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineUpdate.cs @@ -135,10 +135,22 @@ public VirtualMachineUpdate() /// minutes and 120 minutes (inclusive) and should be specified in ISO /// 8601 format. The default value is 90 minutes (PT1H30M). /// <br><br> Minimum api-version: 2020-06-01 + /// Specifies the scale set logical + /// fault domain into which the Virtual Machine will be created. By + /// default, the Virtual Machine will by automatically assigned to a + /// fault domain that best maintains balance across available fault + /// domains.<br><li>This is applicable only if the + /// 'virtualMachineScaleSet' property of this Virtual Machine is + /// set.<li>The Virtual Machine Scale Set that is referenced, + /// must have 'platformFaultDomainCount' &gt; 1.<li>This + /// property cannot be updated once the Virtual Machine is + /// created.<li>Fault domain assignment can be viewed in the + /// Virtual Machine Instance View.<br><br>Minimum + /// api‐version: 2020‐12‐01 /// The identity of the virtual machine, if /// configured. /// The virtual machine zones. - public VirtualMachineUpdate(IDictionary tags = default(IDictionary), Plan plan = default(Plan), HardwareProfile hardwareProfile = default(HardwareProfile), StorageProfile storageProfile = default(StorageProfile), AdditionalCapabilities additionalCapabilities = default(AdditionalCapabilities), OSProfile osProfile = default(OSProfile), NetworkProfile networkProfile = default(NetworkProfile), SecurityProfile securityProfile = default(SecurityProfile), DiagnosticsProfile diagnosticsProfile = default(DiagnosticsProfile), SubResource availabilitySet = default(SubResource), SubResource virtualMachineScaleSet = default(SubResource), SubResource proximityPlacementGroup = default(SubResource), string priority = default(string), string evictionPolicy = default(string), BillingProfile billingProfile = default(BillingProfile), SubResource host = default(SubResource), SubResource hostGroup = default(SubResource), string provisioningState = default(string), VirtualMachineInstanceView instanceView = default(VirtualMachineInstanceView), string licenseType = default(string), string vmId = default(string), string extensionsTimeBudget = default(string), VirtualMachineIdentity identity = default(VirtualMachineIdentity), IList zones = default(IList)) + public VirtualMachineUpdate(IDictionary tags = default(IDictionary), Plan plan = default(Plan), HardwareProfile hardwareProfile = default(HardwareProfile), StorageProfile storageProfile = default(StorageProfile), AdditionalCapabilities additionalCapabilities = default(AdditionalCapabilities), OSProfile osProfile = default(OSProfile), NetworkProfile networkProfile = default(NetworkProfile), SecurityProfile securityProfile = default(SecurityProfile), DiagnosticsProfile diagnosticsProfile = default(DiagnosticsProfile), SubResource availabilitySet = default(SubResource), SubResource virtualMachineScaleSet = default(SubResource), SubResource proximityPlacementGroup = default(SubResource), string priority = default(string), string evictionPolicy = default(string), BillingProfile billingProfile = default(BillingProfile), SubResource host = default(SubResource), SubResource hostGroup = default(SubResource), string provisioningState = default(string), VirtualMachineInstanceView instanceView = default(VirtualMachineInstanceView), string licenseType = default(string), string vmId = default(string), string extensionsTimeBudget = default(string), int? platformFaultDomain = default(int?), VirtualMachineIdentity identity = default(VirtualMachineIdentity), IList zones = default(IList)) : base(tags) { Plan = plan; @@ -162,6 +174,7 @@ public VirtualMachineUpdate() LicenseType = licenseType; VmId = vmId; ExtensionsTimeBudget = extensionsTimeBudget; + PlatformFaultDomain = platformFaultDomain; Identity = identity; Zones = zones; CustomInit(); @@ -381,6 +394,24 @@ public VirtualMachineUpdate() [JsonProperty(PropertyName = "properties.extensionsTimeBudget")] public string ExtensionsTimeBudget { get; set; } + /// + /// Gets or sets specifies the scale set logical fault domain into + /// which the Virtual Machine will be created. By default, the Virtual + /// Machine will by automatically assigned to a fault domain that best + /// maintains balance across available fault + /// domains.&lt;br&gt;&lt;li&gt;This is applicable only + /// if the 'virtualMachineScaleSet' property of this Virtual Machine is + /// set.&lt;li&gt;The Virtual Machine Scale Set that is + /// referenced, must have 'platformFaultDomainCount' &amp;gt; + /// 1.&lt;li&gt;This property cannot be updated once the + /// Virtual Machine is created.&lt;li&gt;Fault domain + /// assignment can be viewed in the Virtual Machine Instance + /// View.&lt;br&gt;&lt;br&gt;Minimum api‐version: + /// 2020‐12‐01 + /// + [JsonProperty(PropertyName = "properties.platformFaultDomain")] + public int? PlatformFaultDomain { get; set; } + /// /// Gets or sets the identity of the virtual machine, if configured. /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/WindowsConfiguration.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/WindowsConfiguration.cs index 615ddbafcfb6..809b8955c76a 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/WindowsConfiguration.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/WindowsConfiguration.cs @@ -51,8 +51,8 @@ public WindowsConfiguration() /// Specifies additional /// base-64 encoded XML formatted information that can be included in /// the Unattend.xml file, which is used by Windows Setup. - /// Specifies settings related to in-guest - /// patching (KBs). + /// [Preview Feature] Specifies settings + /// related to VM Guest Patching on Windows. /// Specifies the Windows Remote Management /// listeners. This enables remote Windows PowerShell. public WindowsConfiguration(bool? provisionVMAgent = default(bool?), bool? enableAutomaticUpdates = default(bool?), string timeZone = default(string), IList additionalUnattendContent = default(IList), PatchSettings patchSettings = default(PatchSettings), WinRMConfiguration winRM = default(WinRMConfiguration)) @@ -112,7 +112,8 @@ public WindowsConfiguration() public IList AdditionalUnattendContent { get; set; } /// - /// Gets or sets specifies settings related to in-guest patching (KBs). + /// Gets or sets [Preview Feature] Specifies settings related to VM + /// Guest Patching on Windows. /// [JsonProperty(PropertyName = "patchSettings")] public PatchSettings PatchSettings { get; set; } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/WindowsParameters.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/WindowsParameters.cs new file mode 100644 index 000000000000..230533edc19d --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/WindowsParameters.cs @@ -0,0 +1,97 @@ +// +// 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; + + /// + /// Input for InstallPatches on a Windows VM, as directly received by the + /// API + /// + public partial class WindowsParameters + { + /// + /// Initializes a new instance of the WindowsParameters class. + /// + public WindowsParameters() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the WindowsParameters class. + /// + /// The update classifications + /// to select when installing patches for Windows. + /// Kbs to include in the patch + /// operation + /// Kbs to exclude in the patch + /// operation + /// Filters out Kbs that don't + /// have an InstallationRebootBehavior of 'NeverReboots' when this is + /// set to true. + /// This is used to install patches + /// that were published on or before this given max published + /// date. + public WindowsParameters(IList classificationsToInclude = default(IList), IList kbNumbersToInclude = default(IList), IList kbNumbersToExclude = default(IList), bool? excludeKbsRequiringReboot = default(bool?), System.DateTime? maxPatchPublishDate = default(System.DateTime?)) + { + ClassificationsToInclude = classificationsToInclude; + KbNumbersToInclude = kbNumbersToInclude; + KbNumbersToExclude = kbNumbersToExclude; + ExcludeKbsRequiringReboot = excludeKbsRequiringReboot; + MaxPatchPublishDate = maxPatchPublishDate; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the update classifications to select when installing + /// patches for Windows. + /// + [JsonProperty(PropertyName = "classificationsToInclude")] + public IList ClassificationsToInclude { get; set; } + + /// + /// Gets or sets kbs to include in the patch operation + /// + [JsonProperty(PropertyName = "kbNumbersToInclude")] + public IList KbNumbersToInclude { get; set; } + + /// + /// Gets or sets kbs to exclude in the patch operation + /// + [JsonProperty(PropertyName = "kbNumbersToExclude")] + public IList KbNumbersToExclude { get; set; } + + /// + /// Gets or sets filters out Kbs that don't have an + /// InstallationRebootBehavior of 'NeverReboots' when this is set to + /// true. + /// + [JsonProperty(PropertyName = "excludeKbsRequiringReboot")] + public bool? ExcludeKbsRequiringReboot { get; set; } + + /// + /// Gets or sets this is used to install patches that were published on + /// or before this given max published date. + /// + [JsonProperty(PropertyName = "maxPatchPublishDate")] + public System.DateTime? MaxPatchPublishDate { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/InGuestPatchMode.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/WindowsVMGuestPatchMode.cs similarity index 86% rename from sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/InGuestPatchMode.cs rename to sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/WindowsVMGuestPatchMode.cs index 42af3578b153..e3c4970c7b0f 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/InGuestPatchMode.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/WindowsVMGuestPatchMode.cs @@ -12,9 +12,9 @@ namespace Microsoft.Azure.Management.Compute.Models { /// - /// Defines values for InGuestPatchMode. + /// Defines values for WindowsVMGuestPatchMode. /// - public static class InGuestPatchMode + public static class WindowsVMGuestPatchMode { public const string Manual = "Manual"; public const string AutomaticByOS = "AutomaticByOS"; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Operations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Operations.cs index 53367987b667..3e58df5747bc 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Operations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Operations.cs @@ -70,7 +70,7 @@ internal Operations(ComputeManagementClient client) /// public async Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ProximityPlacementGroupsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ProximityPlacementGroupsOperations.cs index 6372cbdc612a..5026ed7ba823 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ProximityPlacementGroupsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ProximityPlacementGroupsOperations.cs @@ -105,7 +105,7 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -327,7 +327,7 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; ProximityPlacementGroupUpdate parameters = new ProximityPlacementGroupUpdate(); if (tags != null) { @@ -530,7 +530,7 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -710,7 +710,7 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -895,7 +895,7 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1078,7 +1078,7 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SdkInfo_ComputeManagementClient.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SdkInfo_ComputeManagementClient.cs index 6678215733f6..0549a1c958e6 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SdkInfo_ComputeManagementClient.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SdkInfo_ComputeManagementClient.cs @@ -19,55 +19,45 @@ public static IEnumerable> ApiInfo_ComputeManageme { return new Tuple[] { - new Tuple("Compute", "AvailabilitySets", "2020-06-01"), - new Tuple("Compute", "CloudServiceRoleInstances", "2020-10-01-preview"), - new Tuple("Compute", "CloudServiceRoles", "2020-10-01-preview"), - new Tuple("Compute", "CloudServices", "2020-10-01-preview"), - new Tuple("Compute", "CloudServicesUpdateDomain", "2020-10-01-preview"), - new Tuple("Compute", "DedicatedHostGroups", "2020-06-01"), - new Tuple("Compute", "DedicatedHosts", "2020-06-01"), + new Tuple("Compute", "AvailabilitySets", "2020-12-01"), + new Tuple("Compute", "DedicatedHostGroups", "2020-12-01"), + new Tuple("Compute", "DedicatedHosts", "2020-12-01"), new Tuple("Compute", "DiskAccesses", "2020-09-30"), new Tuple("Compute", "DiskEncryptionSets", "2020-09-30"), new Tuple("Compute", "DiskRestorePoint", "2020-09-30"), new Tuple("Compute", "Disks", "2020-09-30"), - new Tuple("Compute", "Galleries", "2019-12-01"), - new Tuple("Compute", "GalleryApplicationVersions", "2019-12-01"), - new Tuple("Compute", "GalleryApplications", "2019-12-01"), - new Tuple("Compute", "GalleryImageVersions", "2019-12-01"), - new Tuple("Compute", "GalleryImages", "2019-12-01"), - new Tuple("Compute", "Images", "2020-06-01"), - new Tuple("Compute", "LogAnalytics", "2020-06-01"), - new Tuple("Compute", "Operations", "2020-06-01"), - new Tuple("Compute", "ProximityPlacementGroups", "2020-06-01"), + new Tuple("Compute", "Galleries", "2020-09-30"), + new Tuple("Compute", "GalleryApplicationVersions", "2020-09-30"), + new Tuple("Compute", "GalleryApplications", "2020-09-30"), + new Tuple("Compute", "GalleryImageVersions", "2020-09-30"), + new Tuple("Compute", "GalleryImages", "2020-09-30"), + new Tuple("Compute", "GallerySharingProfile", "2020-09-30"), + new Tuple("Compute", "Images", "2020-12-01"), + new Tuple("Compute", "LogAnalytics", "2020-12-01"), + new Tuple("Compute", "Operations", "2020-12-01"), + new Tuple("Compute", "ProximityPlacementGroups", "2020-12-01"), new Tuple("Compute", "ResourceSkus", "2019-04-01"), + new Tuple("Compute", "SharedGalleries", "2020-09-30"), + new Tuple("Compute", "SharedGalleryImageVersions", "2020-09-30"), + new Tuple("Compute", "SharedGalleryImages", "2020-09-30"), new Tuple("Compute", "Snapshots", "2020-09-30"), - new Tuple("Compute", "SshPublicKeys", "2020-06-01"), - new Tuple("Compute", "Usage", "2020-06-01"), - new Tuple("Compute", "VirtualMachineExtensionImages", "2020-06-01"), - new Tuple("Compute", "VirtualMachineExtensions", "2020-06-01"), - new Tuple("Compute", "VirtualMachineImages", "2020-06-01"), - new Tuple("Compute", "VirtualMachineRunCommands", "2020-06-01"), - new Tuple("Compute", "VirtualMachineScaleSetExtensions", "2020-06-01"), - new Tuple("Compute", "VirtualMachineScaleSetRollingUpgrades", "2020-06-01"), - new Tuple("Compute", "VirtualMachineScaleSetVMExtensions", "2020-06-01"), - new Tuple("Compute", "VirtualMachineScaleSetVMRunCommands", "2020-06-01"), - new Tuple("Compute", "VirtualMachineScaleSetVMs", "2020-06-01"), - new Tuple("Compute", "VirtualMachineScaleSets", "2020-06-01"), - new Tuple("Compute", "VirtualMachineSizes", "2020-06-01"), - new Tuple("Compute", "VirtualMachines", "2020-06-01"), - new Tuple("ContainerService", "ContainerServices", "2017-01-31"), + new Tuple("Compute", "SshPublicKeys", "2020-12-01"), + new Tuple("Compute", "Usage", "2020-12-01"), + new Tuple("Compute", "VirtualMachineExtensionImages", "2020-12-01"), + new Tuple("Compute", "VirtualMachineExtensions", "2020-12-01"), + new Tuple("Compute", "VirtualMachineImages", "2020-12-01"), + new Tuple("Compute", "VirtualMachineImagesEdgeZone", "2020-12-01"), + new Tuple("Compute", "VirtualMachineRunCommands", "2020-12-01"), + new Tuple("Compute", "VirtualMachineScaleSetExtensions", "2020-12-01"), + new Tuple("Compute", "VirtualMachineScaleSetRollingUpgrades", "2020-12-01"), + new Tuple("Compute", "VirtualMachineScaleSetVMExtensions", "2020-12-01"), + new Tuple("Compute", "VirtualMachineScaleSetVMRunCommands", "2020-12-01"), + new Tuple("Compute", "VirtualMachineScaleSetVMs", "2020-12-01"), + new Tuple("Compute", "VirtualMachineScaleSets", "2020-12-01"), + new Tuple("Compute", "VirtualMachineSizes", "2020-12-01"), + new Tuple("Compute", "VirtualMachines", "2020-12-01"), }.AsEnumerable(); } } - // BEGIN: Code Generation Metadata Section - public static readonly String AutoRestVersion = "v2"; - public static readonly String AutoRestBootStrapperVersion = "autorest@2.0.4413"; - public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/compute/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=C:\\azure-sdk-for-net\\sdk"; - public static readonly String GithubForkName = "Azure"; - public static readonly String GithubBranchName = "master"; - public static readonly String GithubCommidId = "a35bddecf81df1a1a3030dbaee0b73c777aeb0db"; - public static readonly String CodeGenerationErrors = ""; - public static readonly String GithubRepoName = "azure-rest-api-specs"; - // END: Code Generation Metadata Section } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SshPublicKeysOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SshPublicKeysOperations.cs index bfb79ef0f201..9897a18878eb 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SshPublicKeysOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SshPublicKeysOperations.cs @@ -81,7 +81,7 @@ internal SshPublicKeysOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -265,7 +265,7 @@ internal SshPublicKeysOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -468,7 +468,7 @@ internal SshPublicKeysOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -694,7 +694,7 @@ internal SshPublicKeysOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -892,7 +892,7 @@ internal SshPublicKeysOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1068,7 +1068,7 @@ internal SshPublicKeysOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1265,7 +1265,7 @@ internal SshPublicKeysOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/UsageOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/UsageOperations.cs index 03b03c068a01..e0c198b712e8 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/UsageOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/UsageOperations.cs @@ -96,7 +96,7 @@ internal UsageOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineExtensionImagesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineExtensionImagesOperations.cs index 61a6ba57f579..214564a54e88 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineExtensionImagesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineExtensionImagesOperations.cs @@ -106,7 +106,7 @@ internal VirtualMachineExtensionImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -303,7 +303,7 @@ internal VirtualMachineExtensionImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -505,7 +505,7 @@ internal VirtualMachineExtensionImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineExtensionsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineExtensionsOperations.cs index 0d80e4c732e6..8e20e220f535 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineExtensionsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineExtensionsOperations.cs @@ -186,7 +186,7 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -390,7 +390,7 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -608,7 +608,7 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -843,7 +843,7 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1050,7 +1050,7 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ContainerServicesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineImagesEdgeZoneOperations.cs similarity index 59% rename from sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ContainerServicesOperations.cs rename to sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineImagesEdgeZoneOperations.cs index 2a997351885a..b4f675fffcaf 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ContainerServicesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineImagesEdgeZoneOperations.cs @@ -23,12 +23,12 @@ namespace Microsoft.Azure.Management.Compute using System.Threading.Tasks; /// - /// ContainerServicesOperations operations. + /// VirtualMachineImagesEdgeZoneOperations operations. /// - internal partial class ContainerServicesOperations : IServiceOperations, IContainerServicesOperations + internal partial class VirtualMachineImagesEdgeZoneOperations : IServiceOperations, IVirtualMachineImagesEdgeZoneOperations { /// - /// Initializes a new instance of the ContainerServicesOperations class. + /// Initializes a new instance of the VirtualMachineImagesEdgeZoneOperations class. /// /// /// Reference to the service client. @@ -36,7 +36,7 @@ internal partial class ContainerServicesOperations : IServiceOperations /// Thrown when a required parameter is null /// - internal ContainerServicesOperations(ComputeManagementClient client) + internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) { if (client == null) { @@ -51,14 +51,26 @@ internal ContainerServicesOperations(ComputeManagementClient client) public ComputeManagementClient Client { get; private set; } /// - /// Gets a list of container services in the specified subscription. + /// Gets a virtual machine image in an edge zone. /// - /// - /// Gets a list of container services in the specified subscription. The - /// operation returns properties of each container service including state, - /// orchestrator, number of masters and agents, and FQDNs of masters and - /// agents. - /// + /// + /// The name of a supported Azure region. + /// + /// + /// The name of the edge zone. + /// + /// + /// A valid image publisher. + /// + /// + /// A valid image publisher offer. + /// + /// + /// A valid image SKU. + /// + /// + /// A valid image SKU version. + /// /// /// Headers that will be added to request. /// @@ -80,13 +92,37 @@ internal ContainerServicesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string location, string edgeZone, string publisherName, string offer, string skus, string version, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { + if (location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "location"); + } + if (edgeZone == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "edgeZone"); + } + if (publisherName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "publisherName"); + } + if (offer == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "offer"); + } + if (skus == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "skus"); + } + if (version == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "version"); + } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2017-01-31"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -94,13 +130,25 @@ internal ContainerServicesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("location", location); + tracingParameters.Add("edgeZone", edgeZone); + tracingParameters.Add("publisherName", publisherName); + tracingParameters.Add("offer", offer); + tracingParameters.Add("skus", skus); + tracingParameters.Add("version", version); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.ContainerService/containerServices").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/edgeZones/{edgeZone}/publishers/{publisherName}/artifacttypes/vmimage/offers/{offer}/skus/{skus}/versions/{version}").ToString(); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); + _url = _url.Replace("{edgeZone}", System.Uri.EscapeDataString(edgeZone)); + _url = _url.Replace("{publisherName}", System.Uri.EscapeDataString(publisherName)); + _url = _url.Replace("{offer}", System.Uri.EscapeDataString(offer)); + _url = _url.Replace("{skus}", System.Uri.EscapeDataString(skus)); + _url = _url.Replace("{version}", System.Uri.EscapeDataString(version)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) @@ -200,7 +248,7 @@ internal ContainerServicesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -213,7 +261,7 @@ internal ContainerServicesOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -233,50 +281,33 @@ internal ContainerServicesOperations(ComputeManagementClient client) } /// - /// Creates or updates a container service. + /// Gets a list of all virtual machine image versions for the specified + /// location, edge zone, publisher, offer, and SKU. /// - /// - /// Creates or updates a container service with the specified configuration of - /// orchestrator, masters, and agents. - /// - /// - /// The name of the resource group. + /// + /// The name of a supported Azure region. /// - /// - /// The name of the container service in the specified subscription and - /// resource group. + /// + /// The name of the edge zone. /// - /// - /// Parameters supplied to the Create or Update a Container Service operation. + /// + /// A valid image publisher. /// - /// - /// The headers that will be added to request. + /// + /// A valid image publisher offer. /// - /// - /// The cancellation token. + /// + /// A valid image SKU. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string containerServiceName, ContainerService parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, containerServiceName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Gets the properties of the specified container service. - /// - /// - /// Gets the properties of the specified container service in the specified - /// subscription and resource group. The operation returns the properties - /// including state, orchestrator, number of masters and agents, and FQDNs of - /// masters and agents. - /// - /// - /// The name of the resource group. + /// + /// The expand expression to apply on the operation. + /// + /// + /// An integer value specifying the number of images to return that matches + /// supplied values. /// - /// - /// The name of the container service in the specified subscription and - /// resource group. + /// + /// Specifies the order of the results returned. Formatted as an OData query. /// /// /// Headers that will be added to request. @@ -299,21 +330,33 @@ internal ContainerServicesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string containerServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(string location, string edgeZone, string publisherName, string offer, string skus, string expand = default(string), int? top = default(int?), string orderby = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) + if (location == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "location"); } - if (containerServiceName == null) + if (edgeZone == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "containerServiceName"); + throw new ValidationException(ValidationRules.CannotBeNull, "edgeZone"); + } + if (publisherName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "publisherName"); + } + if (offer == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "offer"); + } + if (skus == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "skus"); } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2017-01-31"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -321,19 +364,40 @@ internal ContainerServicesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("containerServiceName", containerServiceName); + tracingParameters.Add("location", location); + tracingParameters.Add("edgeZone", edgeZone); + tracingParameters.Add("publisherName", publisherName); + tracingParameters.Add("offer", offer); + tracingParameters.Add("skus", skus); + tracingParameters.Add("expand", expand); + tracingParameters.Add("top", top); + tracingParameters.Add("orderby", orderby); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/containerServices/{containerServiceName}").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{containerServiceName}", System.Uri.EscapeDataString(containerServiceName)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/edgeZones/{edgeZone}/publishers/{publisherName}/artifacttypes/vmimage/offers/{offer}/skus/{skus}/versions").ToString(); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); + _url = _url.Replace("{edgeZone}", System.Uri.EscapeDataString(edgeZone)); + _url = _url.Replace("{publisherName}", System.Uri.EscapeDataString(publisherName)); + _url = _url.Replace("{offer}", System.Uri.EscapeDataString(offer)); + _url = _url.Replace("{skus}", System.Uri.EscapeDataString(skus)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); + if (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); + } + if (top != null) + { + _queryParameters.Add(string.Format("$top={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(top, Client.SerializationSettings).Trim('"')))); + } + if (orderby != null) + { + _queryParameters.Add(string.Format("$orderby={0}", System.Uri.EscapeDataString(orderby))); + } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -431,7 +495,7 @@ internal ContainerServicesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -444,7 +508,7 @@ internal ContainerServicesOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -464,47 +528,17 @@ internal ContainerServicesOperations(ComputeManagementClient client) } /// - /// Deletes the specified container service. + /// Gets a list of virtual machine image offers for the specified location, + /// edge zone and publisher. /// - /// - /// Deletes the specified container service in the specified subscription and - /// resource group. The operation does not delete other resources created as - /// part of creating a container service, including storage accounts, VMs, and - /// availability sets. All the other resources created with the container - /// service are part of the same resource group and can be deleted - /// individually. - /// - /// - /// The name of the resource group. + /// + /// The name of a supported Azure region. /// - /// - /// The name of the container service in the specified subscription and - /// resource group. + /// + /// The name of the edge zone. /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string containerServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, containerServiceName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Gets a list of container services in the specified resource group. - /// - /// - /// Gets a list of container services in the specified subscription and - /// resource group. The operation returns properties of each container service - /// including state, orchestrator, number of masters and agents, and FQDNs of - /// masters and agents. - /// - /// - /// The name of the resource group. + /// + /// A valid image publisher. /// /// /// Headers that will be added to request. @@ -527,17 +561,25 @@ internal ContainerServicesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListOffersWithHttpMessagesAsync(string location, string edgeZone, string publisherName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) + if (location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "location"); + } + if (edgeZone == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "edgeZone"); + } + if (publisherName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "publisherName"); } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2017-01-31"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -545,15 +587,19 @@ internal ContainerServicesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("location", location); + tracingParameters.Add("edgeZone", edgeZone); + tracingParameters.Add("publisherName", publisherName); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListOffers", 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.ContainerService/containerServices").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/edgeZones/{edgeZone}/publishers/{publisherName}/artifacttypes/vmimage/offers").ToString(); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); + _url = _url.Replace("{edgeZone}", System.Uri.EscapeDataString(edgeZone)); + _url = _url.Replace("{publisherName}", System.Uri.EscapeDataString(publisherName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) @@ -653,7 +699,7 @@ internal ContainerServicesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -666,7 +712,7 @@ internal ContainerServicesOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -686,21 +732,14 @@ internal ContainerServicesOperations(ComputeManagementClient client) } /// - /// Creates or updates a container service. + /// Gets a list of virtual machine image publishers for the specified Azure + /// location and edge zone. /// - /// - /// Creates or updates a container service with the specified configuration of - /// orchestrator, masters, and agents. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the container service in the specified subscription and - /// resource group. + /// + /// The name of a supported Azure region. /// - /// - /// Parameters supplied to the Create or Update a Container Service operation. + /// + /// The name of the edge zone. /// /// /// Headers that will be added to request. @@ -723,29 +762,21 @@ internal ContainerServicesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string containerServiceName, ContainerService parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListPublishersWithHttpMessagesAsync(string location, string edgeZone, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) + if (location == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "location"); } - if (containerServiceName == null) + if (edgeZone == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "containerServiceName"); - } - if (parameters == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); - } - if (parameters != null) - { - parameters.Validate(); + throw new ValidationException(ValidationRules.CannotBeNull, "edgeZone"); } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2017-01-31"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -753,18 +784,17 @@ internal ContainerServicesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("containerServiceName", containerServiceName); - tracingParameters.Add("parameters", parameters); + tracingParameters.Add("location", location); + tracingParameters.Add("edgeZone", edgeZone); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListPublishers", 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.ContainerService/containerServices/{containerServiceName}").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{containerServiceName}", System.Uri.EscapeDataString(containerServiceName)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/edgeZones/{edgeZone}/publishers").ToString(); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); + _url = _url.Replace("{edgeZone}", System.Uri.EscapeDataString(edgeZone)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) @@ -778,7 +808,7 @@ internal ContainerServicesOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -809,12 +839,6 @@ internal ContainerServicesOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Client.Credentials != null) { @@ -835,7 +859,7 @@ internal ContainerServicesOperations(ComputeManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 201 && (int)_statusCode != 202) + if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -870,7 +894,7 @@ internal ContainerServicesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -883,43 +907,7 @@ internal ContainerServicesOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - // Deserialize Response - if ((int)_statusCode == 201) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - // Deserialize Response - if ((int)_statusCode == 202) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -939,198 +927,20 @@ internal ContainerServicesOperations(ComputeManagementClient client) } /// - /// Deletes the specified container service. + /// Gets a list of virtual machine image SKUs for the specified location, edge + /// zone, publisher, and offer. /// - /// - /// Deletes the specified container service in the specified subscription and - /// resource group. The operation does not delete other resources created as - /// part of creating a container service, including storage accounts, VMs, and - /// availability sets. All the other resources created with the container - /// service are part of the same resource group and can be deleted - /// individually. - /// - /// - /// The name of the resource group. + /// + /// The name of a supported Azure region. /// - /// - /// The name of the container service in the specified subscription and - /// resource group. + /// + /// The name of the edge zone. /// - /// - /// Headers that will be added to request. + /// + /// A valid image publisher. /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string containerServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (containerServiceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "containerServiceName"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2017-01-31"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("containerServiceName", containerServiceName); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); - } - // Construct URL - var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/containerServices/{containerServiceName}").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{containerServiceName}", System.Uri.EscapeDataString(containerServiceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 202 && (int)_statusCode != 204) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Gets a list of container services in the specified subscription. - /// - /// - /// Gets a list of container services in the specified subscription. The - /// operation returns properties of each container service including state, - /// orchestrator, number of masters and agents, and FQDNs of masters and - /// agents. - /// - /// - /// The NextLink from the previous successful call to List operation. + /// + /// A valid image publisher offer. /// /// /// Headers that will be added to request. @@ -1153,191 +963,29 @@ internal ContainerServicesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListSkusWithHttpMessagesAsync(string location, string edgeZone, string publisherName, string offer, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (nextPageLink == null) + if (location == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "location"); } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) + if (edgeZone == null) { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("nextPageLink", nextPageLink); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + throw new ValidationException(ValidationRules.CannotBeNull, "edgeZone"); } - // Construct URL - string _url = "{nextLink}"; - _url = _url.Replace("{nextLink}", nextPageLink); - List _queryParameters = new List(); - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) + if (publisherName == null) { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + throw new ValidationException(ValidationRules.CannotBeNull, "publisherName"); } - - - if (customHeaders != null) + if (offer == 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); + throw new ValidationException(ValidationRules.CannotBeNull, "offer"); } - 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; - } - - /// - /// Gets a list of container services in the specified resource group. - /// - /// - /// Gets a list of container services in the specified subscription and - /// resource group. The operation returns properties of each container service - /// including state, orchestrator, number of masters and agents, and FQDNs of - /// masters and agents. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (nextPageLink == null) + if (Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1345,14 +993,27 @@ internal ContainerServicesOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("location", location); + tracingParameters.Add("edgeZone", edgeZone); + tracingParameters.Add("publisherName", publisherName); + tracingParameters.Add("offer", offer); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroupNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListSkus", tracingParameters); } // Construct URL - string _url = "{nextLink}"; - _url = _url.Replace("{nextLink}", nextPageLink); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/edgeZones/{edgeZone}/publishers/{publisherName}/artifacttypes/vmimage/offers/{offer}/skus").ToString(); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); + _url = _url.Replace("{edgeZone}", System.Uri.EscapeDataString(edgeZone)); + _url = _url.Replace("{publisherName}", System.Uri.EscapeDataString(publisherName)); + _url = _url.Replace("{offer}", System.Uri.EscapeDataString(offer)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -1446,7 +1107,7 @@ internal ContainerServicesOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1459,7 +1120,7 @@ internal ContainerServicesOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineImagesEdgeZoneOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineImagesEdgeZoneOperationsExtensions.cs new file mode 100644 index 000000000000..b7c0df8deb58 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineImagesEdgeZoneOperationsExtensions.cs @@ -0,0 +1,315 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for VirtualMachineImagesEdgeZoneOperations. + /// + public static partial class VirtualMachineImagesEdgeZoneOperationsExtensions + { + /// + /// Gets a virtual machine image in an edge zone. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of a supported Azure region. + /// + /// + /// The name of the edge zone. + /// + /// + /// A valid image publisher. + /// + /// + /// A valid image publisher offer. + /// + /// + /// A valid image SKU. + /// + /// + /// A valid image SKU version. + /// + public static VirtualMachineImage Get(this IVirtualMachineImagesEdgeZoneOperations operations, string location, string edgeZone, string publisherName, string offer, string skus, string version) + { + return operations.GetAsync(location, edgeZone, publisherName, offer, skus, version).GetAwaiter().GetResult(); + } + + /// + /// Gets a virtual machine image in an edge zone. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of a supported Azure region. + /// + /// + /// The name of the edge zone. + /// + /// + /// A valid image publisher. + /// + /// + /// A valid image publisher offer. + /// + /// + /// A valid image SKU. + /// + /// + /// A valid image SKU version. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IVirtualMachineImagesEdgeZoneOperations operations, string location, string edgeZone, string publisherName, string offer, string skus, string version, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(location, edgeZone, publisherName, offer, skus, version, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a list of all virtual machine image versions for the specified + /// location, edge zone, publisher, offer, and SKU. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of a supported Azure region. + /// + /// + /// The name of the edge zone. + /// + /// + /// A valid image publisher. + /// + /// + /// A valid image publisher offer. + /// + /// + /// A valid image SKU. + /// + /// + /// The expand expression to apply on the operation. + /// + /// + /// An integer value specifying the number of images to return that matches + /// supplied values. + /// + /// + /// Specifies the order of the results returned. Formatted as an OData query. + /// + public static IList List(this IVirtualMachineImagesEdgeZoneOperations operations, string location, string edgeZone, string publisherName, string offer, string skus, string expand = default(string), int? top = default(int?), string orderby = default(string)) + { + return operations.ListAsync(location, edgeZone, publisherName, offer, skus, expand, top, orderby).GetAwaiter().GetResult(); + } + + /// + /// Gets a list of all virtual machine image versions for the specified + /// location, edge zone, publisher, offer, and SKU. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of a supported Azure region. + /// + /// + /// The name of the edge zone. + /// + /// + /// A valid image publisher. + /// + /// + /// A valid image publisher offer. + /// + /// + /// A valid image SKU. + /// + /// + /// The expand expression to apply on the operation. + /// + /// + /// An integer value specifying the number of images to return that matches + /// supplied values. + /// + /// + /// Specifies the order of the results returned. Formatted as an OData query. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this IVirtualMachineImagesEdgeZoneOperations operations, string location, string edgeZone, string publisherName, string offer, string skus, string expand = default(string), int? top = default(int?), string orderby = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(location, edgeZone, publisherName, offer, skus, expand, top, orderby, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a list of virtual machine image offers for the specified location, + /// edge zone and publisher. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of a supported Azure region. + /// + /// + /// The name of the edge zone. + /// + /// + /// A valid image publisher. + /// + public static IList ListOffers(this IVirtualMachineImagesEdgeZoneOperations operations, string location, string edgeZone, string publisherName) + { + return operations.ListOffersAsync(location, edgeZone, publisherName).GetAwaiter().GetResult(); + } + + /// + /// Gets a list of virtual machine image offers for the specified location, + /// edge zone and publisher. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of a supported Azure region. + /// + /// + /// The name of the edge zone. + /// + /// + /// A valid image publisher. + /// + /// + /// The cancellation token. + /// + public static async Task> ListOffersAsync(this IVirtualMachineImagesEdgeZoneOperations operations, string location, string edgeZone, string publisherName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListOffersWithHttpMessagesAsync(location, edgeZone, publisherName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a list of virtual machine image publishers for the specified Azure + /// location and edge zone. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of a supported Azure region. + /// + /// + /// The name of the edge zone. + /// + public static IList ListPublishers(this IVirtualMachineImagesEdgeZoneOperations operations, string location, string edgeZone) + { + return operations.ListPublishersAsync(location, edgeZone).GetAwaiter().GetResult(); + } + + /// + /// Gets a list of virtual machine image publishers for the specified Azure + /// location and edge zone. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of a supported Azure region. + /// + /// + /// The name of the edge zone. + /// + /// + /// The cancellation token. + /// + public static async Task> ListPublishersAsync(this IVirtualMachineImagesEdgeZoneOperations operations, string location, string edgeZone, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListPublishersWithHttpMessagesAsync(location, edgeZone, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a list of virtual machine image SKUs for the specified location, edge + /// zone, publisher, and offer. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of a supported Azure region. + /// + /// + /// The name of the edge zone. + /// + /// + /// A valid image publisher. + /// + /// + /// A valid image publisher offer. + /// + public static IList ListSkus(this IVirtualMachineImagesEdgeZoneOperations operations, string location, string edgeZone, string publisherName, string offer) + { + return operations.ListSkusAsync(location, edgeZone, publisherName, offer).GetAwaiter().GetResult(); + } + + /// + /// Gets a list of virtual machine image SKUs for the specified location, edge + /// zone, publisher, and offer. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of a supported Azure region. + /// + /// + /// The name of the edge zone. + /// + /// + /// A valid image publisher. + /// + /// + /// A valid image publisher offer. + /// + /// + /// The cancellation token. + /// + public static async Task> ListSkusAsync(this IVirtualMachineImagesEdgeZoneOperations operations, string location, string edgeZone, string publisherName, string offer, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListSkusWithHttpMessagesAsync(location, edgeZone, publisherName, offer, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineImagesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineImagesOperations.cs index 3310becdc2ae..c5580e85ffac 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineImagesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineImagesOperations.cs @@ -115,7 +115,7 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -337,7 +337,7 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -551,7 +551,7 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -739,7 +739,7 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -939,7 +939,7 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineRunCommandsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineRunCommandsOperations.cs index faf49cb6233f..92eefae7737c 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineRunCommandsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineRunCommandsOperations.cs @@ -94,7 +94,7 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -293,7 +293,7 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -579,7 +579,7 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -783,7 +783,7 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1001,7 +1001,7 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1236,7 +1236,7 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1443,7 +1443,7 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetExtensionsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetExtensionsOperations.cs index a84c409c1393..597afb7122f8 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetExtensionsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetExtensionsOperations.cs @@ -186,7 +186,7 @@ internal VirtualMachineScaleSetExtensionsOperations(ComputeManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -387,7 +387,7 @@ internal VirtualMachineScaleSetExtensionsOperations(ComputeManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -596,7 +596,7 @@ internal VirtualMachineScaleSetExtensionsOperations(ComputeManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -831,7 +831,7 @@ internal VirtualMachineScaleSetExtensionsOperations(ComputeManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1056,7 +1056,7 @@ internal VirtualMachineScaleSetExtensionsOperations(ComputeManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetRollingUpgradesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetRollingUpgradesOperations.cs index 4259bf51041b..6ad75c560b4c 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetRollingUpgradesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetRollingUpgradesOperations.cs @@ -164,7 +164,7 @@ internal VirtualMachineScaleSetRollingUpgradesOperations(ComputeManagementClient { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -355,7 +355,7 @@ internal VirtualMachineScaleSetRollingUpgradesOperations(ComputeManagementClient { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -530,7 +530,7 @@ internal VirtualMachineScaleSetRollingUpgradesOperations(ComputeManagementClient { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -705,7 +705,7 @@ internal VirtualMachineScaleSetRollingUpgradesOperations(ComputeManagementClient { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMExtensionsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMExtensionsOperations.cs index 0447703927e2..c9e8eba48742 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMExtensionsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMExtensionsOperations.cs @@ -201,7 +201,7 @@ internal VirtualMachineScaleSetVMExtensionsOperations(ComputeManagementClient cl { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -415,7 +415,7 @@ internal VirtualMachineScaleSetVMExtensionsOperations(ComputeManagementClient cl { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -637,7 +637,7 @@ internal VirtualMachineScaleSetVMExtensionsOperations(ComputeManagementClient cl { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -881,7 +881,7 @@ internal VirtualMachineScaleSetVMExtensionsOperations(ComputeManagementClient cl { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1097,7 +1097,7 @@ internal VirtualMachineScaleSetVMExtensionsOperations(ComputeManagementClient cl { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMRunCommandsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMRunCommandsOperations.cs index ad9e63511683..fa0fd3d5f855 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMRunCommandsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMRunCommandsOperations.cs @@ -201,7 +201,7 @@ internal VirtualMachineScaleSetVMRunCommandsOperations(ComputeManagementClient c { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -415,7 +415,7 @@ internal VirtualMachineScaleSetVMRunCommandsOperations(ComputeManagementClient c { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -641,7 +641,7 @@ internal VirtualMachineScaleSetVMRunCommandsOperations(ComputeManagementClient c { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -885,7 +885,7 @@ internal VirtualMachineScaleSetVMRunCommandsOperations(ComputeManagementClient c { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1101,7 +1101,7 @@ internal VirtualMachineScaleSetVMRunCommandsOperations(ComputeManagementClient c { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMsOperations.cs index 7a513780a284..496e00e7def5 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMsOperations.cs @@ -177,16 +177,20 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// /// The instance ID of the virtual machine. /// + /// + /// Optional parameter to force delete a virtual machine from a VM scale set. + /// (Feature in Preview) + /// /// /// The headers that will be added to request. /// /// /// The cancellation token. /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request - AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, forceDeletion, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } @@ -245,7 +249,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -453,7 +457,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -656,7 +660,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -985,7 +989,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1216,7 +1220,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1432,7 +1436,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; VirtualMachineScaleSetVMReimageParameters vmScaleSetVMReimageInput = default(VirtualMachineScaleSetVMReimageParameters); if (tempDisk != null) { @@ -1628,7 +1632,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1813,7 +1817,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2010,7 +2014,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2199,6 +2203,10 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// /// The instance ID of the virtual machine. /// + /// + /// Optional parameter to force delete a virtual machine from a VM scale set. + /// (Feature in Preview) + /// /// /// Headers that will be added to request. /// @@ -2217,7 +2225,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -2235,7 +2243,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2246,6 +2254,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); tracingParameters.Add("instanceId", instanceId); + tracingParameters.Add("forceDeletion", forceDeletion); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); @@ -2258,6 +2267,10 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) _url = _url.Replace("{instanceId}", System.Uri.EscapeDataString(instanceId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); + if (forceDeletion != null) + { + _queryParameters.Add(string.Format("forceDeletion={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(forceDeletion, Client.SerializationSettings).Trim('"')))); + } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -2424,7 +2437,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2611,7 +2624,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2793,7 +2806,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2976,7 +2989,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -3158,7 +3171,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -3354,7 +3367,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMsOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMsOperationsExtensions.cs index 41dc7e73a605..888c670a294f 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMsOperationsExtensions.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMsOperationsExtensions.cs @@ -240,9 +240,13 @@ public static VirtualMachineScaleSetVM Update(this IVirtualMachineScaleSetVMsOpe /// /// The instance ID of the virtual machine. /// - public static void Delete(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId) + /// + /// Optional parameter to force delete a virtual machine from a VM scale set. + /// (Feature in Preview) + /// + public static void Delete(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, bool? forceDeletion = default(bool?)) { - operations.DeleteAsync(resourceGroupName, vmScaleSetName, instanceId).GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, vmScaleSetName, instanceId, forceDeletion).GetAwaiter().GetResult(); } /// @@ -260,12 +264,16 @@ public static void Delete(this IVirtualMachineScaleSetVMsOperations operations, /// /// The instance ID of the virtual machine. /// + /// + /// Optional parameter to force delete a virtual machine from a VM scale set. + /// (Feature in Preview) + /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, bool? forceDeletion = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, forceDeletion, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -1026,9 +1034,13 @@ public static VirtualMachineScaleSetVM BeginUpdate(this IVirtualMachineScaleSetV /// /// The instance ID of the virtual machine. /// - public static void BeginDelete(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId) + /// + /// Optional parameter to force delete a virtual machine from a VM scale set. + /// (Feature in Preview) + /// + public static void BeginDelete(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, bool? forceDeletion = default(bool?)) { - operations.BeginDeleteAsync(resourceGroupName, vmScaleSetName, instanceId).GetAwaiter().GetResult(); + operations.BeginDeleteAsync(resourceGroupName, vmScaleSetName, instanceId, forceDeletion).GetAwaiter().GetResult(); } /// @@ -1046,12 +1058,16 @@ public static void BeginDelete(this IVirtualMachineScaleSetVMsOperations operati /// /// The instance ID of the virtual machine. /// + /// + /// Optional parameter to force delete a virtual machine from a VM scale set. + /// (Feature in Preview) + /// /// /// The cancellation token. /// - public static async Task BeginDeleteAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginDeleteAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, bool? forceDeletion = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, forceDeletion, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetsOperations.cs index f1a9b826a5f7..b0287372faf8 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetsOperations.cs @@ -50,6 +50,199 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// public ComputeManagementClient Client { get; private set; } + /// + /// Gets all the VM scale sets under the specified subscription for the + /// specified location. + /// + /// + /// The location for which VM scale sets under the subscription are queried. + /// + /// + /// 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>> ListByLocationWithHttpMessagesAsync(string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "location"); + } + if (location != null) + { + if (!System.Text.RegularExpressions.Regex.IsMatch(location, "^[-\\w\\._]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "location", "^[-\\w\\._]+$"); + } + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2020-12-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("location", location); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByLocation", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/virtualMachineScaleSets").ToString(); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + /// /// Create or update a VM scale set. /// @@ -109,16 +302,19 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// The name of the VM scale set. /// + /// + /// Optional parameter to force delete a VM scale set. (Feature in Preview) + /// /// /// The headers that will be added to request. /// /// /// The cancellation token. /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request - AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, forceDeletion, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } @@ -166,7 +362,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -357,16 +553,20 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// The virtual machine scale set instance ids. /// + /// + /// Optional parameter to force delete virtual machines from the VM scale set. + /// (Feature in Preview) + /// /// /// The headers that will be added to request. /// /// /// The cancellation token. /// - public async Task DeleteInstancesWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task DeleteInstancesWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request - AzureOperationResponse _response = await BeginDeleteInstancesWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginDeleteInstancesWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, forceDeletion, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } @@ -414,7 +614,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -601,7 +801,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -782,7 +982,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -973,7 +1173,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1167,7 +1367,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1592,7 +1792,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1792,7 +1992,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; VMScaleSetConvertToSinglePlacementGroupInput parameters = new VMScaleSetConvertToSinglePlacementGroupInput(); if (activePlacementGroupId != null) { @@ -2016,7 +2216,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2242,7 +2442,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2408,6 +2608,9 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// The name of the VM scale set. /// + /// + /// Optional parameter to force delete a VM scale set. (Feature in Preview) + /// /// /// Headers that will be added to request. /// @@ -2426,7 +2629,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -2440,7 +2643,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2450,6 +2653,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); + tracingParameters.Add("forceDeletion", forceDeletion); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); @@ -2461,6 +2665,10 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) _url = _url.Replace("{vmScaleSetName}", System.Uri.EscapeDataString(vmScaleSetName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); + if (forceDeletion != null) + { + _queryParameters.Add(string.Format("forceDeletion={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(forceDeletion, Client.SerializationSettings).Trim('"')))); + } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -2620,7 +2828,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; VirtualMachineScaleSetVMInstanceIDs vmInstanceIDs = default(VirtualMachineScaleSetVMInstanceIDs); if (instanceIds != null) { @@ -2777,6 +2985,10 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// The virtual machine scale set instance ids. /// + /// + /// Optional parameter to force delete virtual machines from the VM scale set. + /// (Feature in Preview) + /// /// /// Headers that will be added to request. /// @@ -2795,7 +3007,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginDeleteInstancesWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginDeleteInstancesWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -2813,7 +3025,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "instanceIds"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; VirtualMachineScaleSetVMInstanceRequiredIDs vmInstanceIDs = new VirtualMachineScaleSetVMInstanceRequiredIDs(); if (instanceIds != null) { @@ -2828,6 +3040,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); + tracingParameters.Add("forceDeletion", forceDeletion); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("vmInstanceIDs", vmInstanceIDs); tracingParameters.Add("cancellationToken", cancellationToken); @@ -2840,6 +3053,10 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) _url = _url.Replace("{vmScaleSetName}", System.Uri.EscapeDataString(vmScaleSetName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); + if (forceDeletion != null) + { + _queryParameters.Add(string.Format("forceDeletion={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(forceDeletion, Client.SerializationSettings).Trim('"')))); + } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -3010,7 +3227,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; VirtualMachineScaleSetVMInstanceIDs vmInstanceIDs = default(VirtualMachineScaleSetVMInstanceIDs); if (instanceIds != null) { @@ -3206,7 +3423,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; VirtualMachineScaleSetVMInstanceIDs vmInstanceIDs = default(VirtualMachineScaleSetVMInstanceIDs); if (instanceIds != null) { @@ -3397,7 +3614,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; VirtualMachineScaleSetVMInstanceIDs vmInstanceIDs = default(VirtualMachineScaleSetVMInstanceIDs); if (instanceIds != null) { @@ -3589,7 +3806,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; VirtualMachineScaleSetVMInstanceIDs vmInstanceIDs = default(VirtualMachineScaleSetVMInstanceIDs); if (instanceIds != null) { @@ -3783,7 +4000,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; VirtualMachineScaleSetVMInstanceIDs vmInstanceIDs = default(VirtualMachineScaleSetVMInstanceIDs); if (instanceIds != null) { @@ -3977,7 +4194,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "instanceIds"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; VirtualMachineScaleSetVMInstanceRequiredIDs vmInstanceIDs = new VirtualMachineScaleSetVMInstanceRequiredIDs(); if (instanceIds != null) { @@ -4167,7 +4384,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -4353,7 +4570,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; VirtualMachineScaleSetVMInstanceIDs vmInstanceIDs = default(VirtualMachineScaleSetVMInstanceIDs); if (instanceIds != null) { @@ -4550,7 +4767,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -4689,6 +4906,180 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) return _result; } + /// + /// Gets all the VM scale sets under the specified subscription for the + /// specified location. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListByLocationNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByLocationNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + /// /// Gets a list of all VM scale sets under a resource group. /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetsOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetsOperationsExtensions.cs index d4f6d015812f..ae311ab9e0c5 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetsOperationsExtensions.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetsOperationsExtensions.cs @@ -23,6 +23,42 @@ namespace Microsoft.Azure.Management.Compute /// public static partial class VirtualMachineScaleSetsOperationsExtensions { + /// + /// Gets all the VM scale sets under the specified subscription for the + /// specified location. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The location for which VM scale sets under the subscription are queried. + /// + public static IPage ListByLocation(this IVirtualMachineScaleSetsOperations operations, string location) + { + return operations.ListByLocationAsync(location).GetAwaiter().GetResult(); + } + + /// + /// Gets all the VM scale sets under the specified subscription for the + /// specified location. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The location for which VM scale sets under the subscription are queried. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByLocationAsync(this IVirtualMachineScaleSetsOperations operations, string location, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByLocationWithHttpMessagesAsync(location, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// Create or update a VM scale set. /// @@ -127,9 +163,12 @@ public static VirtualMachineScaleSet Update(this IVirtualMachineScaleSetsOperati /// /// The name of the VM scale set. /// - public static void Delete(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName) + /// + /// Optional parameter to force delete a VM scale set. (Feature in Preview) + /// + public static void Delete(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, bool? forceDeletion = default(bool?)) { - operations.DeleteAsync(resourceGroupName, vmScaleSetName).GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, vmScaleSetName, forceDeletion).GetAwaiter().GetResult(); } /// @@ -144,12 +183,15 @@ public static void Delete(this IVirtualMachineScaleSetsOperations operations, st /// /// The name of the VM scale set. /// + /// + /// Optional parameter to force delete a VM scale set. (Feature in Preview) + /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, bool? forceDeletion = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, forceDeletion, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -258,9 +300,13 @@ public static VirtualMachineScaleSet Get(this IVirtualMachineScaleSetsOperations /// /// The virtual machine scale set instance ids. /// - public static void DeleteInstances(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds) + /// + /// Optional parameter to force delete virtual machines from the VM scale set. + /// (Feature in Preview) + /// + public static void DeleteInstances(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds, bool? forceDeletion = default(bool?)) { - operations.DeleteInstancesAsync(resourceGroupName, vmScaleSetName, instanceIds).GetAwaiter().GetResult(); + operations.DeleteInstancesAsync(resourceGroupName, vmScaleSetName, instanceIds, forceDeletion).GetAwaiter().GetResult(); } /// @@ -278,12 +324,16 @@ public static void DeleteInstances(this IVirtualMachineScaleSetsOperations opera /// /// The virtual machine scale set instance ids. /// + /// + /// Optional parameter to force delete virtual machines from the VM scale set. + /// (Feature in Preview) + /// /// /// The cancellation token. /// - public static async Task DeleteInstancesAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteInstancesAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds, bool? forceDeletion = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteInstancesWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.DeleteInstancesWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, forceDeletion, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -1120,9 +1170,12 @@ public static VirtualMachineScaleSet BeginUpdate(this IVirtualMachineScaleSetsOp /// /// The name of the VM scale set. /// - public static void BeginDelete(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName) + /// + /// Optional parameter to force delete a VM scale set. (Feature in Preview) + /// + public static void BeginDelete(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, bool? forceDeletion = default(bool?)) { - operations.BeginDeleteAsync(resourceGroupName, vmScaleSetName).GetAwaiter().GetResult(); + operations.BeginDeleteAsync(resourceGroupName, vmScaleSetName, forceDeletion).GetAwaiter().GetResult(); } /// @@ -1137,12 +1190,15 @@ public static void BeginDelete(this IVirtualMachineScaleSetsOperations operation /// /// The name of the VM scale set. /// + /// + /// Optional parameter to force delete a VM scale set. (Feature in Preview) + /// /// /// The cancellation token. /// - public static async Task BeginDeleteAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginDeleteAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, bool? forceDeletion = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, forceDeletion, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -1211,9 +1267,13 @@ public static void BeginDelete(this IVirtualMachineScaleSetsOperations operation /// /// The virtual machine scale set instance ids. /// - public static void BeginDeleteInstances(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds) + /// + /// Optional parameter to force delete virtual machines from the VM scale set. + /// (Feature in Preview) + /// + public static void BeginDeleteInstances(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds, bool? forceDeletion = default(bool?)) { - operations.BeginDeleteInstancesAsync(resourceGroupName, vmScaleSetName, instanceIds).GetAwaiter().GetResult(); + operations.BeginDeleteInstancesAsync(resourceGroupName, vmScaleSetName, instanceIds, forceDeletion).GetAwaiter().GetResult(); } /// @@ -1231,12 +1291,16 @@ public static void BeginDeleteInstances(this IVirtualMachineScaleSetsOperations /// /// The virtual machine scale set instance ids. /// + /// + /// Optional parameter to force delete virtual machines from the VM scale set. + /// (Feature in Preview) + /// /// /// The cancellation token. /// - public static async Task BeginDeleteInstancesAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginDeleteInstancesAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds, bool? forceDeletion = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.BeginDeleteInstancesWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.BeginDeleteInstancesWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, forceDeletion, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -1680,6 +1744,42 @@ public static void BeginSetOrchestrationServiceState(this IVirtualMachineScaleSe (await operations.BeginSetOrchestrationServiceStateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); } + /// + /// Gets all the VM scale sets under the specified subscription for the + /// specified location. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListByLocationNext(this IVirtualMachineScaleSetsOperations operations, string nextPageLink) + { + return operations.ListByLocationNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets all the VM scale sets under the specified subscription for the + /// specified location. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByLocationNextAsync(this IVirtualMachineScaleSetsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByLocationNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// Gets a list of all VM scale sets under a resource group. /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineSizesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineSizesOperations.cs index 92ec0f79c93e..11ae9680fcb1 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineSizesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineSizesOperations.cs @@ -95,7 +95,7 @@ internal VirtualMachineSizesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperations.cs index 6c241ff79b1e..e722b9908b88 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperations.cs @@ -95,7 +95,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -394,7 +394,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -593,7 +593,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -836,7 +836,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1006,7 +1006,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1189,7 +1189,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1385,7 +1385,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1731,7 +1731,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1949,7 +1949,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2103,6 +2103,31 @@ internal VirtualMachinesOperations(ComputeManagementClient client) return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } + /// + /// Installs patches on the VM. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the virtual machine. + /// + /// + /// Input for InstallPatches as directly received by the API + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> InstallPatchesWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineInstallPatchesParameters installPatchesInput, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginInstallPatchesWithHttpMessagesAsync(resourceGroupName, vmName, installPatchesInput, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + /// /// Run command on the VM. /// @@ -2184,7 +2209,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2397,7 +2422,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2623,7 +2648,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2713,7 +2738,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 201) + if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -2773,24 +2798,6 @@ internal VirtualMachinesOperations(ComputeManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } - // Deserialize Response - if ((int)_statusCode == 201) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -2842,7 +2849,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -3021,7 +3028,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -3195,7 +3202,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -3375,7 +3382,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -3553,7 +3560,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -3726,7 +3733,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -3899,7 +3906,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -4073,7 +4080,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -4252,7 +4259,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; VirtualMachineReimageParameters parameters = default(VirtualMachineReimageParameters); if (tempDisk != null) { @@ -4438,7 +4445,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -4614,7 +4621,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -4764,6 +4771,218 @@ internal VirtualMachinesOperations(ComputeManagementClient client) return _result; } + /// + /// Installs patches on the VM. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the virtual machine. + /// + /// + /// Input for InstallPatches as directly received by the API + /// + /// + /// 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> BeginInstallPatchesWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineInstallPatchesParameters installPatchesInput, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (vmName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); + } + if (installPatchesInput == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "installPatchesInput"); + } + if (installPatchesInput != null) + { + installPatchesInput.Validate(); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2020-12-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("vmName", vmName); + tracingParameters.Add("installPatchesInput", installPatchesInput); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginInstallPatches", 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/virtualMachines/{vmName}/installPatches").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{vmName}", System.Uri.EscapeDataString(vmName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(installPatchesInput != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(installPatchesInput, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + 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; + } + /// /// Run command on the VM. /// @@ -4819,7 +5038,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-06-01"; + string apiVersion = "2020-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperationsExtensions.cs index ff38e874b981..1c7bc104a93c 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperationsExtensions.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperationsExtensions.cs @@ -993,6 +993,52 @@ public static VirtualMachineAssessPatchesResult AssessPatches(this IVirtualMachi } } + /// + /// Installs patches on the VM. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the virtual machine. + /// + /// + /// Input for InstallPatches as directly received by the API + /// + public static VirtualMachineInstallPatchesResult InstallPatches(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, VirtualMachineInstallPatchesParameters installPatchesInput) + { + return operations.InstallPatchesAsync(resourceGroupName, vmName, installPatchesInput).GetAwaiter().GetResult(); + } + + /// + /// Installs patches on the VM. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the virtual machine. + /// + /// + /// Input for InstallPatches as directly received by the API + /// + /// + /// The cancellation token. + /// + public static async Task InstallPatchesAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, VirtualMachineInstallPatchesParameters installPatchesInput, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.InstallPatchesWithHttpMessagesAsync(resourceGroupName, vmName, installPatchesInput, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// Run command on the VM. /// @@ -1629,6 +1675,52 @@ public static VirtualMachineAssessPatchesResult BeginAssessPatches(this IVirtual } } + /// + /// Installs patches on the VM. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the virtual machine. + /// + /// + /// Input for InstallPatches as directly received by the API + /// + public static VirtualMachineInstallPatchesResult BeginInstallPatches(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, VirtualMachineInstallPatchesParameters installPatchesInput) + { + return operations.BeginInstallPatchesAsync(resourceGroupName, vmName, installPatchesInput).GetAwaiter().GetResult(); + } + + /// + /// Installs patches on the VM. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the virtual machine. + /// + /// + /// Input for InstallPatches as directly received by the API + /// + /// + /// The cancellation token. + /// + public static async Task BeginInstallPatchesAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, VirtualMachineInstallPatchesParameters installPatchesInput, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginInstallPatchesWithHttpMessagesAsync(resourceGroupName, vmName, installPatchesInput, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// Run command on the VM. /// From 891906e58e7fd974b0488ba43c52ddd8164ec898 Mon Sep 17 00:00:00 2001 From: Kang Sun Date: Thu, 11 Mar 2021 17:20:25 -0800 Subject: [PATCH 13/27] Revert "generate files again" This reverts commit 051be5469e1ceece14c9bd386de7a54607ce05c2. --- .../Generated/AvailabilitySetsOperations.cs | 14 +- .../CloudServiceRoleInstancesOperations.cs | 1855 ++++++++++ ...erviceRoleInstancesOperationsExtensions.cs | 579 +++ .../Generated/CloudServiceRolesOperations.cs | 624 ++++ .../CloudServiceRolesOperationsExtensions.cs | 145 + .../src/Generated/CloudServicesOperations.cs | 3122 +++++++++++++++++ .../CloudServicesOperationsExtensions.cs | 1047 ++++++ .../CloudServicesUpdateDomainOperations.cs | 839 +++++ ...ervicesUpdateDomainOperationsExtensions.cs | 247 ++ .../src/Generated/ComputeManagementClient.cs | 48 +- ...ions.cs => ContainerServicesOperations.cs} | 789 +++-- .../ContainerServicesOperationsExtensions.cs | 479 +++ .../DedicatedHostGroupsOperations.cs | 12 +- .../src/Generated/DedicatedHostsOperations.cs | 10 +- .../ICloudServiceRoleInstancesOperations.cs | 362 ++ .../Generated/ICloudServiceRolesOperations.cs | 102 + .../src/Generated/ICloudServicesOperations.cs | 638 ++++ .../ICloudServicesUpdateDomainOperations.cs | 160 + .../src/Generated/IComputeManagementClient.cs | 40 +- .../Generated/IContainerServicesOperations.cs | 298 ++ ...IVirtualMachineImagesEdgeZoneOperations.cs | 197 -- .../IVirtualMachineScaleSetVMsOperations.cs | 12 +- .../IVirtualMachineScaleSetsOperations.cs | 71 +- .../Generated/IVirtualMachinesOperations.cs | 56 - .../src/Generated/ImagesOperations.cs | 12 +- .../src/Generated/LogAnalyticsOperations.cs | 4 +- .../Generated/Models/AvailablePatchSummary.cs | 13 +- .../src/Generated/Models/CloudService.cs | 106 + .../Models/CloudServiceExtensionProfile.cs | 56 + .../Models/CloudServiceExtensionProperties.cs | 179 + .../Models/CloudServiceInstanceView.cs | 67 + .../Models/CloudServiceNetworkProfile.cs | 61 + .../Generated/Models/CloudServiceOsProfile.cs | 55 + .../Models/CloudServiceProperties.cs | 157 + .../src/Generated/Models/CloudServiceRole.cs | 87 + .../Models/CloudServiceRoleProfile.cs | 53 + ...s => CloudServiceRoleProfileProperties.cs} | 27 +- .../Models/CloudServiceRoleProperties.cs | 50 + .../Generated/Models/CloudServiceRoleSku.cs | 78 + .../Generated/Models/CloudServiceUpdate.cs | 50 + ...atchMode.cs => CloudServiceUpgradeMode.cs} | 9 +- .../CloudServiceVaultAndSecretReference.cs | 54 + .../Models/CloudServiceVaultCertificate.cs | 56 + .../Models/CloudServiceVaultSecretGroup.cs | 67 + .../src/Generated/Models/ContainerService.cs | 192 + .../ContainerServiceAgentPoolProfile.cs | 149 + .../Models/ContainerServiceCustomProfile.cs | 68 + .../ContainerServiceDiagnosticsProfile.cs | 69 + .../Models/ContainerServiceLinuxProfile.cs | 91 + .../Models/ContainerServiceMasterProfile.cs | 87 + .../ContainerServiceOrchestratorProfile.cs | 67 + .../ContainerServiceOrchestratorTypes.cs | 72 + ...ContainerServiceServicePrincipalProfile.cs | 82 + .../ContainerServiceSshConfiguration.cs | 81 + .../Models/ContainerServiceSshPublicKey.cs | 71 + .../Models/ContainerServiceVMDiagnostics.cs | 74 + .../Models/ContainerServiceVMSizeTypes.cs | 67 + .../Models/ContainerServiceWindowsProfile.cs | 95 + .../src/Generated/Models/DataDisk.cs | 36 +- .../Generated/Models/DiskDetachOptionTypes.cs | 21 - .../src/Generated/Models/Extension.cs | 57 + .../Models/GalleryArtifactVersionSource.cs | 12 +- .../Models/GalleryDiskImageSource.cs | 57 + .../src/Generated/Models/GalleryImage.cs | 18 +- .../Generated/Models/GalleryImageUpdate.cs | 18 +- .../src/Generated/Models/HardwareProfile.cs | 108 +- .../src/Generated/Models/Image.cs | 11 +- ...MGuestPatchMode.cs => InGuestPatchMode.cs} | 4 +- .../src/Generated/Models/InstanceSku.cs | 57 + .../Models/InstanceViewStatusesSummary.cs | 53 + .../Models/LastPatchInstallationSummary.cs | 48 +- .../Generated/Models/LinuxConfiguration.cs | 12 +- .../src/Generated/Models/LinuxParameters.cs | 85 - .../Generated/Models/LinuxPatchSettings.cs | 66 - .../Models/LoadBalancerConfiguration.cs | 57 + .../LoadBalancerConfigurationProperties.cs | 52 + .../LoadBalancerFrontendIPConfiguration.cs | 54 + ...lancerFrontendIPConfigurationProperties.cs | 67 + .../src/Generated/Models/OrchestrationMode.cs | 22 - .../Generated/Models/PatchAssessmentState.cs | 6 +- .../Models/PatchInstallationDetail.cs | 104 - .../Models/PatchInstallationState.cs | 26 - .../Generated/Models/PatchOperationStatus.cs | 1 - .../src/Generated/Models/PatchSettings.cs | 27 +- ...stPatchRebootStatus.cs => RebootStatus.cs} | 5 +- .../Models/ResourceInstanceViewStatus.cs | 88 + .../src/Generated/Models/RoleInstance.cs | 94 + .../Models/RoleInstanceInstanceView.cs | 83 + .../Models/RoleInstanceNetworkProfile.cs | 56 + .../Models/RoleInstanceProperties.cs | 52 + .../src/Generated/Models/RoleInstances.cs | 70 + .../Generated/Models/RollingUpgradePolicy.cs | 25 +- .../src/Generated/Models/SecurityProfile.cs | 30 +- .../src/Generated/Models/SecurityTypes.cs | 54 - ...ior.cs => SoftwareUpdateRebootBehavior.cs} | 5 +- .../src/Generated/Models/SshPublicKey.cs | 4 +- .../src/Generated/Models/StatusCodeCount.cs | 57 + .../src/Generated/Models/UefiSettings.cs | 69 - .../src/Generated/Models/UpdateDomain.cs | 59 + .../Models/VMGuestPatchClassificationLinux.cs | 23 - .../VMGuestPatchClassificationWindows.cs | 28 - .../Models/VMGuestPatchRebootSetting.cs | 23 - .../src/Generated/Models/VirtualMachine.cs | 42 +- .../VirtualMachineAssessPatchesResult.cs | 25 +- .../Generated/Models/VirtualMachineImage.cs | 12 +- .../Models/VirtualMachineImageResource.cs | 11 +- .../VirtualMachineInstallPatchesParameters.cs | 107 - .../VirtualMachineInstallPatchesResult.cs | 179 - .../Models/VirtualMachineInstanceView.cs | 7 +- .../Models/VirtualMachinePatchStatus.cs | 13 +- .../Models/VirtualMachineScaleSet.cs | 23 +- .../VirtualMachineSoftwarePatchProperties.cs | 24 +- .../Generated/Models/VirtualMachineUpdate.cs | 33 +- .../Generated/Models/WindowsConfiguration.cs | 7 +- .../src/Generated/Models/WindowsParameters.cs | 97 - .../src/Generated/Operations.cs | 2 +- .../ProximityPlacementGroupsOperations.cs | 12 +- .../SdkInfo_ComputeManagementClient.cs | 72 +- .../src/Generated/SshPublicKeysOperations.cs | 14 +- .../src/Generated/UsageOperations.cs | 2 +- ...VirtualMachineExtensionImagesOperations.cs | 6 +- .../VirtualMachineExtensionsOperations.cs | 10 +- ...chineImagesEdgeZoneOperationsExtensions.cs | 315 -- .../VirtualMachineImagesOperations.cs | 10 +- .../VirtualMachineRunCommandsOperations.cs | 14 +- ...tualMachineScaleSetExtensionsOperations.cs | 10 +- ...achineScaleSetRollingUpgradesOperations.cs | 8 +- ...alMachineScaleSetVMExtensionsOperations.cs | 10 +- ...lMachineScaleSetVMRunCommandsOperations.cs | 10 +- .../VirtualMachineScaleSetVMsOperations.cs | 51 +- ...lMachineScaleSetVMsOperationsExtensions.cs | 32 +- .../VirtualMachineScaleSetsOperations.cs | 447 +-- ...ualMachineScaleSetsOperationsExtensions.cs | 132 +- .../VirtualMachineSizesOperations.cs | 2 +- .../Generated/VirtualMachinesOperations.cs | 305 +- .../VirtualMachinesOperationsExtensions.cs | 92 - 136 files changed, 15023 insertions(+), 3269 deletions(-) create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRoleInstancesOperations.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRoleInstancesOperationsExtensions.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRolesOperations.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRolesOperationsExtensions.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesOperations.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesOperationsExtensions.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesUpdateDomainOperations.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesUpdateDomainOperationsExtensions.cs rename sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/{VirtualMachineImagesEdgeZoneOperations.cs => ContainerServicesOperations.cs} (59%) create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ContainerServicesOperationsExtensions.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServiceRoleInstancesOperations.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServiceRolesOperations.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServicesOperations.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServicesUpdateDomainOperations.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IContainerServicesOperations.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachineImagesEdgeZoneOperations.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudService.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceExtensionProfile.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceExtensionProperties.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceInstanceView.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceNetworkProfile.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceOsProfile.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceProperties.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRole.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleProfile.cs rename sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/{VirtualMachineImageFeature.cs => CloudServiceRoleProfileProperties.cs} (56%) create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleProperties.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleSku.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceUpdate.cs rename sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/{LinuxVMGuestPatchMode.cs => CloudServiceUpgradeMode.cs} (64%) create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceVaultAndSecretReference.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceVaultCertificate.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceVaultSecretGroup.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerService.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceAgentPoolProfile.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceCustomProfile.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceDiagnosticsProfile.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceLinuxProfile.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceMasterProfile.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceOrchestratorProfile.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceOrchestratorTypes.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceServicePrincipalProfile.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceSshConfiguration.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceSshPublicKey.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceVMDiagnostics.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceVMSizeTypes.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceWindowsProfile.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DiskDetachOptionTypes.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/Extension.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryDiskImageSource.cs rename sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/{WindowsVMGuestPatchMode.cs => InGuestPatchMode.cs} (86%) create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/InstanceSku.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/InstanceViewStatusesSummary.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LinuxParameters.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LinuxPatchSettings.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerConfiguration.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerConfigurationProperties.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerFrontendIPConfiguration.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerFrontendIPConfigurationProperties.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/OrchestrationMode.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PatchInstallationDetail.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PatchInstallationState.cs rename sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/{VMGuestPatchRebootStatus.cs => RebootStatus.cs} (82%) create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ResourceInstanceViewStatus.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstance.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstanceInstanceView.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstanceNetworkProfile.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstanceProperties.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstances.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SecurityTypes.cs rename sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/{VMGuestPatchRebootBehavior.cs => SoftwareUpdateRebootBehavior.cs} (80%) create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/StatusCodeCount.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/UefiSettings.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/UpdateDomain.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VMGuestPatchClassificationLinux.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VMGuestPatchClassificationWindows.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VMGuestPatchRebootSetting.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineInstallPatchesParameters.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineInstallPatchesResult.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/WindowsParameters.cs delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineImagesEdgeZoneOperationsExtensions.cs diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/AvailabilitySetsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/AvailabilitySetsOperations.cs index a68b33a6ee12..f2701a2ef069 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/AvailabilitySetsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/AvailabilitySetsOperations.cs @@ -105,7 +105,7 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -313,7 +313,7 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -511,7 +511,7 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -687,7 +687,7 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -871,7 +871,7 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1059,7 +1059,7 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1252,7 +1252,7 @@ internal AvailabilitySetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRoleInstancesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRoleInstancesOperations.cs new file mode 100644 index 000000000000..f5b2de88542b --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRoleInstancesOperations.cs @@ -0,0 +1,1855 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.IO; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// CloudServiceRoleInstancesOperations operations. + /// + internal partial class CloudServiceRoleInstancesOperations : IServiceOperations, ICloudServiceRoleInstancesOperations + { + /// + /// Initializes a new instance of the CloudServiceRoleInstancesOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal CloudServiceRoleInstancesOperations(ComputeManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the ComputeManagementClient + /// + public ComputeManagementClient Client { get; private set; } + + /// + /// Deletes a role instance from a cloud service. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets a role instance from a cloud service. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The expand expression to apply to the operation. Possible values include: + /// 'instanceView' + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, InstanceViewTypes? expand = default(InstanceViewTypes?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (roleInstanceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "roleInstanceName"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2020-10-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("roleInstanceName", roleInstanceName); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("expand", expand); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}").ToString(); + _url = _url.Replace("{roleInstanceName}", System.Uri.EscapeDataString(roleInstanceName)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(expand, Client.SerializationSettings).Trim('"')))); + } + 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; + } + + /// + /// Retrieves information about the run-time state of a role instance in a + /// cloud service. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// 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> GetInstanceViewWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (roleInstanceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "roleInstanceName"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2020-10-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("roleInstanceName", roleInstanceName); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetInstanceView", 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/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/instanceView").ToString(); + _url = _url.Replace("{roleInstanceName}", System.Uri.EscapeDataString(roleInstanceName)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets the list of all role instances in a cloud service. Use nextLink + /// property in the response to get the next page of role instances. Do this + /// till nextLink is null to fetch all the role instances. + /// + /// + /// + /// + /// + /// + /// The expand expression to apply to the operation. Possible values include: + /// 'instanceView' + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, InstanceViewTypes? expand = default(InstanceViewTypes?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2020-10-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("expand", expand); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(expand, Client.SerializationSettings).Trim('"')))); + } + 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; + } + + /// + /// The Reboot Role Instance asynchronous operation requests a reboot of a role + /// instance in the cloud service. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task RestartWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginRestartWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// The Reimage Role Instance asynchronous operation reinstalls the operating + /// system on instances of web roles or worker roles. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task ReimageWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginReimageWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// The Rebuild Role Instance asynchronous operation reinstalls the operating + /// system on instances of web roles or worker roles and initializes the + /// storage resources that are used by them. If you do not want to initialize + /// storage resources, you can use Reimage Role Instance. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task RebuildWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginRebuildWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets a remote desktop file for a role instance in a cloud service. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// 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> GetRemoteDesktopFileWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (roleInstanceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "roleInstanceName"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2020-10-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("roleInstanceName", roleInstanceName); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetRemoteDesktopFile", 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/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/remoteDesktopFile").ToString(); + _url = _url.Replace("{roleInstanceName}", System.Uri.EscapeDataString(roleInstanceName)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, 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) + { + _result.Body = await _httpResponse.Content.ReadAsStreamAsync().ConfigureAwait(false); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Deletes a role instance from a cloud service. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task BeginDeleteWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (roleInstanceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "roleInstanceName"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2020-10-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("roleInstanceName", roleInstanceName); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}").ToString(); + _url = _url.Replace("{roleInstanceName}", System.Uri.EscapeDataString(roleInstanceName)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202 && (int)_statusCode != 204) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// The Reboot Role Instance asynchronous operation requests a reboot of a role + /// instance in the cloud service. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task BeginRestartWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (roleInstanceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "roleInstanceName"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2020-10-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("roleInstanceName", roleInstanceName); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginRestart", 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/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/restart").ToString(); + _url = _url.Replace("{roleInstanceName}", System.Uri.EscapeDataString(roleInstanceName)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// The Reimage Role Instance asynchronous operation reinstalls the operating + /// system on instances of web roles or worker roles. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task BeginReimageWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (roleInstanceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "roleInstanceName"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2020-10-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("roleInstanceName", roleInstanceName); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginReimage", 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/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/reimage").ToString(); + _url = _url.Replace("{roleInstanceName}", System.Uri.EscapeDataString(roleInstanceName)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// The Rebuild Role Instance asynchronous operation reinstalls the operating + /// system on instances of web roles or worker roles and initializes the + /// storage resources that are used by them. If you do not want to initialize + /// storage resources, you can use Reimage Role Instance. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task BeginRebuildWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (roleInstanceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "roleInstanceName"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2020-10-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("roleInstanceName", roleInstanceName); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginRebuild", 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/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/rebuild").ToString(); + _url = _url.Replace("{roleInstanceName}", System.Uri.EscapeDataString(roleInstanceName)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets the list of all role instances in a cloud service. Use nextLink + /// property in the response to get the next page of role instances. Do this + /// till nextLink is null to fetch all the role instances. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRoleInstancesOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRoleInstancesOperationsExtensions.cs new file mode 100644 index 000000000000..b629a041cd9b --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRoleInstancesOperationsExtensions.cs @@ -0,0 +1,579 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.IO; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for CloudServiceRoleInstancesOperations. + /// + public static partial class CloudServiceRoleInstancesOperationsExtensions + { + /// + /// Deletes a role instance from a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + public static void Delete(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName) + { + operations.DeleteAsync(roleInstanceName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); + } + + /// + /// Deletes a role instance from a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.DeleteWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Gets a role instance from a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The expand expression to apply to the operation. Possible values include: + /// 'instanceView' + /// + public static RoleInstance Get(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, InstanceViewTypes? expand = default(InstanceViewTypes?)) + { + return operations.GetAsync(roleInstanceName, resourceGroupName, cloudServiceName, expand).GetAwaiter().GetResult(); + } + + /// + /// Gets a role instance from a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The expand expression to apply to the operation. Possible values include: + /// 'instanceView' + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, InstanceViewTypes? expand = default(InstanceViewTypes?), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, expand, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Retrieves information about the run-time state of a role instance in a + /// cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + public static RoleInstanceInstanceView GetInstanceView(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName) + { + return operations.GetInstanceViewAsync(roleInstanceName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); + } + + /// + /// Retrieves information about the run-time state of a role instance in a + /// cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The cancellation token. + /// + public static async Task GetInstanceViewAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetInstanceViewWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets the list of all role instances in a cloud service. Use nextLink + /// property in the response to get the next page of role instances. Do this + /// till nextLink is null to fetch all the role instances. + /// + /// + /// The operations group for this extension method. + /// + /// + /// + /// + /// + /// + /// The expand expression to apply to the operation. Possible values include: + /// 'instanceView' + /// + public static IPage List(this ICloudServiceRoleInstancesOperations operations, string resourceGroupName, string cloudServiceName, InstanceViewTypes? expand = default(InstanceViewTypes?)) + { + return operations.ListAsync(resourceGroupName, cloudServiceName, expand).GetAwaiter().GetResult(); + } + + /// + /// Gets the list of all role instances in a cloud service. Use nextLink + /// property in the response to get the next page of role instances. Do this + /// till nextLink is null to fetch all the role instances. + /// + /// + /// The operations group for this extension method. + /// + /// + /// + /// + /// + /// + /// The expand expression to apply to the operation. Possible values include: + /// 'instanceView' + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this ICloudServiceRoleInstancesOperations operations, string resourceGroupName, string cloudServiceName, InstanceViewTypes? expand = default(InstanceViewTypes?), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, cloudServiceName, expand, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// The Reboot Role Instance asynchronous operation requests a reboot of a role + /// instance in the cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + public static void Restart(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName) + { + operations.RestartAsync(roleInstanceName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); + } + + /// + /// The Reboot Role Instance asynchronous operation requests a reboot of a role + /// instance in the cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The cancellation token. + /// + public static async Task RestartAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.RestartWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// The Reimage Role Instance asynchronous operation reinstalls the operating + /// system on instances of web roles or worker roles. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + public static void Reimage(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName) + { + operations.ReimageAsync(roleInstanceName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); + } + + /// + /// The Reimage Role Instance asynchronous operation reinstalls the operating + /// system on instances of web roles or worker roles. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The cancellation token. + /// + public static async Task ReimageAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.ReimageWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// The Rebuild Role Instance asynchronous operation reinstalls the operating + /// system on instances of web roles or worker roles and initializes the + /// storage resources that are used by them. If you do not want to initialize + /// storage resources, you can use Reimage Role Instance. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + public static void Rebuild(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName) + { + operations.RebuildAsync(roleInstanceName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); + } + + /// + /// The Rebuild Role Instance asynchronous operation reinstalls the operating + /// system on instances of web roles or worker roles and initializes the + /// storage resources that are used by them. If you do not want to initialize + /// storage resources, you can use Reimage Role Instance. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The cancellation token. + /// + public static async Task RebuildAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.RebuildWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Gets a remote desktop file for a role instance in a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + public static Stream GetRemoteDesktopFile(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName) + { + return operations.GetRemoteDesktopFileAsync(roleInstanceName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); + } + + /// + /// Gets a remote desktop file for a role instance in a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The cancellation token. + /// + public static async Task GetRemoteDesktopFileAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + var _result = await operations.GetRemoteDesktopFileWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false); + _result.Request.Dispose(); + return _result.Body; + } + + /// + /// Deletes a role instance from a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + public static void BeginDelete(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName) + { + operations.BeginDeleteAsync(roleInstanceName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); + } + + /// + /// Deletes a role instance from a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The cancellation token. + /// + public static async Task BeginDeleteAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginDeleteWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// The Reboot Role Instance asynchronous operation requests a reboot of a role + /// instance in the cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + public static void BeginRestart(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName) + { + operations.BeginRestartAsync(roleInstanceName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); + } + + /// + /// The Reboot Role Instance asynchronous operation requests a reboot of a role + /// instance in the cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The cancellation token. + /// + public static async Task BeginRestartAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginRestartWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// The Reimage Role Instance asynchronous operation reinstalls the operating + /// system on instances of web roles or worker roles. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + public static void BeginReimage(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName) + { + operations.BeginReimageAsync(roleInstanceName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); + } + + /// + /// The Reimage Role Instance asynchronous operation reinstalls the operating + /// system on instances of web roles or worker roles. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The cancellation token. + /// + public static async Task BeginReimageAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginReimageWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// The Rebuild Role Instance asynchronous operation reinstalls the operating + /// system on instances of web roles or worker roles and initializes the + /// storage resources that are used by them. If you do not want to initialize + /// storage resources, you can use Reimage Role Instance. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + public static void BeginRebuild(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName) + { + operations.BeginRebuildAsync(roleInstanceName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); + } + + /// + /// The Rebuild Role Instance asynchronous operation reinstalls the operating + /// system on instances of web roles or worker roles and initializes the + /// storage resources that are used by them. If you do not want to initialize + /// storage resources, you can use Reimage Role Instance. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The cancellation token. + /// + public static async Task BeginRebuildAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginRebuildWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Gets the list of all role instances in a cloud service. Use nextLink + /// property in the response to get the next page of role instances. Do this + /// till nextLink is null to fetch all the role instances. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this ICloudServiceRoleInstancesOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets the list of all role instances in a cloud service. Use nextLink + /// property in the response to get the next page of role instances. Do this + /// till nextLink is null to fetch all the role instances. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListNextAsync(this ICloudServiceRoleInstancesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRolesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRolesOperations.cs new file mode 100644 index 000000000000..4f89d31c6875 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRolesOperations.cs @@ -0,0 +1,624 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// CloudServiceRolesOperations operations. + /// + internal partial class CloudServiceRolesOperations : IServiceOperations, ICloudServiceRolesOperations + { + /// + /// Initializes a new instance of the CloudServiceRolesOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal CloudServiceRolesOperations(ComputeManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the ComputeManagementClient + /// + public ComputeManagementClient Client { get; private set; } + + /// + /// Gets a role from a cloud service. + /// + /// + /// Name of the role. + /// + /// + /// + /// + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string roleName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (roleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "roleName"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2020-10-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("roleName", roleName); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roles/{roleName}").ToString(); + _url = _url.Replace("{roleName}", System.Uri.EscapeDataString(roleName)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets a list of all roles in a cloud service. Use nextLink property in the + /// response to get the next page of roles. Do this till nextLink is null to + /// fetch all the roles. + /// + /// + /// + /// + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2020-10-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roles").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets a list of all roles in a cloud service. Use nextLink property in the + /// response to get the next page of roles. Do this till nextLink is null to + /// fetch all the roles. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRolesOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRolesOperationsExtensions.cs new file mode 100644 index 000000000000..5e85be38ce4a --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRolesOperationsExtensions.cs @@ -0,0 +1,145 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for CloudServiceRolesOperations. + /// + public static partial class CloudServiceRolesOperationsExtensions + { + /// + /// Gets a role from a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role. + /// + /// + /// + /// + /// + public static CloudServiceRole Get(this ICloudServiceRolesOperations operations, string roleName, string resourceGroupName, string cloudServiceName) + { + return operations.GetAsync(roleName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); + } + + /// + /// Gets a role from a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role. + /// + /// + /// + /// + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this ICloudServiceRolesOperations operations, string roleName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(roleName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a list of all roles in a cloud service. Use nextLink property in the + /// response to get the next page of roles. Do this till nextLink is null to + /// fetch all the roles. + /// + /// + /// The operations group for this extension method. + /// + /// + /// + /// + /// + public static IPage List(this ICloudServiceRolesOperations operations, string resourceGroupName, string cloudServiceName) + { + return operations.ListAsync(resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); + } + + /// + /// Gets a list of all roles in a cloud service. Use nextLink property in the + /// response to get the next page of roles. Do this till nextLink is null to + /// fetch all the roles. + /// + /// + /// The operations group for this extension method. + /// + /// + /// + /// + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this ICloudServiceRolesOperations operations, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a list of all roles in a cloud service. Use nextLink property in the + /// response to get the next page of roles. Do this till nextLink is null to + /// fetch all the roles. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this ICloudServiceRolesOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets a list of all roles in a cloud service. Use nextLink property in the + /// response to get the next page of roles. Do this till nextLink is null to + /// fetch all the roles. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListNextAsync(this ICloudServiceRolesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesOperations.cs new file mode 100644 index 000000000000..cfad17514e22 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesOperations.cs @@ -0,0 +1,3122 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// CloudServicesOperations operations. + /// + internal partial class CloudServicesOperations : IServiceOperations, ICloudServicesOperations + { + /// + /// Initializes a new instance of the CloudServicesOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal CloudServicesOperations(ComputeManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the ComputeManagementClient + /// + public ComputeManagementClient Client { get; private set; } + + /// + /// Create or update a cloud service. Please note some properties can be set + /// only during cloud service creation. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The cloud service object. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, CloudService parameters = default(CloudService), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, cloudServiceName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Update a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Resource tags + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IDictionary tags = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, cloudServiceName, tags, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Deletes a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, cloudServiceName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Display information about a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2020-10-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets the status of a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// 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> GetInstanceViewWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2020-10-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetInstanceView", 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/cloudServices/{cloudServiceName}/instanceView").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets a list of all cloud services in the subscription, regardless of the + /// associated resource group. Use nextLink property in the response to get the + /// next page of Cloud Services. Do this till nextLink is null to fetch all the + /// Cloud Services. + /// + /// + /// 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>> ListAllWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2020-10-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListAll", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/cloudServices").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets a list of all cloud services under a resource group. Use nextLink + /// property in the response to get the next page of Cloud Services. Do this + /// till nextLink is null to fetch all the Cloud Services. + /// + /// + /// Name of the resource group. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2020-10-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "List", 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/cloudServices").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Starts the cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task StartWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginStartWithHttpMessagesAsync(resourceGroupName, cloudServiceName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Power off the cloud service. Note that resources are still attached and you + /// are getting charged for the resources. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task PowerOffWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginPowerOffWithHttpMessagesAsync(resourceGroupName, cloudServiceName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Restarts one or more role instances in a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task RestartWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginRestartWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Reimage asynchronous operation reinstalls the operating system on instances + /// of web roles or worker roles. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task ReimageWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginReimageWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Rebuild Role Instances reinstalls the operating system on instances of web + /// roles or worker roles and initializes the storage resources that are used + /// by them. If you do not want to initialize storage resources, you can use + /// Reimage Role Instances. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task RebuildWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginRebuildWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Deletes role instances in a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteInstancesWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteInstancesWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Create or update a cloud service. Please note some properties can be set + /// only during cloud service creation. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The cloud service object. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, CloudService parameters = default(CloudService), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (parameters != null) + { + parameters.Validate(); + } + string apiVersion = "2020-10-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 201) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Update a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Resource tags + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IDictionary tags = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2020-10-01-preview"; + CloudServiceUpdate parameters = default(CloudServiceUpdate); + if (tags != null) + { + parameters = new CloudServiceUpdate(); + parameters.Tags = tags; + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PATCH"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Deletes a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2020-10-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202 && (int)_statusCode != 204) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Starts the cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task BeginStartWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2020-10-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginStart", 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/cloudServices/{cloudServiceName}/start").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Power off the cloud service. Note that resources are still attached and you + /// are getting charged for the resources. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task BeginPowerOffWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2020-10-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginPowerOff", 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/cloudServices/{cloudServiceName}/poweroff").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Restarts one or more role instances in a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task BeginRestartWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (roleInstancesProperty == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "roleInstancesProperty"); + } + string apiVersion = "2020-10-01-preview"; + RoleInstances parameters = default(RoleInstances); + if (roleInstancesProperty != null) + { + parameters = new RoleInstances(); + parameters.RoleInstancesProperty = roleInstancesProperty; + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginRestart", 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/cloudServices/{cloudServiceName}/restart").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Reimage asynchronous operation reinstalls the operating system on instances + /// of web roles or worker roles. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task BeginReimageWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (roleInstancesProperty == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "roleInstancesProperty"); + } + string apiVersion = "2020-10-01-preview"; + RoleInstances parameters = default(RoleInstances); + if (roleInstancesProperty != null) + { + parameters = new RoleInstances(); + parameters.RoleInstancesProperty = roleInstancesProperty; + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginReimage", 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/cloudServices/{cloudServiceName}/reimage").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Rebuild Role Instances reinstalls the operating system on instances of web + /// roles or worker roles and initializes the storage resources that are used + /// by them. If you do not want to initialize storage resources, you can use + /// Reimage Role Instances. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task BeginRebuildWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (roleInstancesProperty == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "roleInstancesProperty"); + } + string apiVersion = "2020-10-01-preview"; + RoleInstances parameters = default(RoleInstances); + if (roleInstancesProperty != null) + { + parameters = new RoleInstances(); + parameters.RoleInstancesProperty = roleInstancesProperty; + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginRebuild", 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/cloudServices/{cloudServiceName}/rebuild").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Deletes role instances in a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task BeginDeleteInstancesWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (roleInstancesProperty == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "roleInstancesProperty"); + } + string apiVersion = "2020-10-01-preview"; + RoleInstances parameters = default(RoleInstances); + if (roleInstancesProperty != null) + { + parameters = new RoleInstances(); + parameters.RoleInstancesProperty = roleInstancesProperty; + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginDeleteInstances", 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/cloudServices/{cloudServiceName}/delete").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets a list of all cloud services in the subscription, regardless of the + /// associated resource group. Use nextLink property in the response to get the + /// next page of Cloud Services. Do this till nextLink is null to fetch all the + /// Cloud Services. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListAllNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListAllNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets a list of all cloud services under a resource group. Use nextLink + /// property in the response to get the next page of Cloud Services. Do this + /// till nextLink is null to fetch all the Cloud Services. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesOperationsExtensions.cs new file mode 100644 index 000000000000..84568a13d4c1 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesOperationsExtensions.cs @@ -0,0 +1,1047 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for CloudServicesOperations. + /// + public static partial class CloudServicesOperationsExtensions + { + /// + /// Create or update a cloud service. Please note some properties can be set + /// only during cloud service creation. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The cloud service object. + /// + public static CloudService CreateOrUpdate(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CloudService parameters = default(CloudService)) + { + return operations.CreateOrUpdateAsync(resourceGroupName, cloudServiceName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Create or update a cloud service. Please note some properties can be set + /// only during cloud service creation. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The cloud service object. + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CloudService parameters = default(CloudService), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, cloudServiceName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Update a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Resource tags + /// + public static CloudService Update(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IDictionary tags = default(IDictionary)) + { + return operations.UpdateAsync(resourceGroupName, cloudServiceName, tags).GetAwaiter().GetResult(); + } + + /// + /// Update a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Resource tags + /// + /// + /// The cancellation token. + /// + public static async Task UpdateAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IDictionary tags = default(IDictionary), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, cloudServiceName, tags, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + public static void Delete(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName) + { + operations.DeleteAsync(resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); + } + + /// + /// Deletes a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Display information about a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + public static CloudService Get(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName) + { + return operations.GetAsync(resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); + } + + /// + /// Display information about a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets the status of a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + public static CloudServiceInstanceView GetInstanceView(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName) + { + return operations.GetInstanceViewAsync(resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); + } + + /// + /// Gets the status of a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The cancellation token. + /// + public static async Task GetInstanceViewAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetInstanceViewWithHttpMessagesAsync(resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a list of all cloud services in the subscription, regardless of the + /// associated resource group. Use nextLink property in the response to get the + /// next page of Cloud Services. Do this till nextLink is null to fetch all the + /// Cloud Services. + /// + /// + /// The operations group for this extension method. + /// + public static IPage ListAll(this ICloudServicesOperations operations) + { + return operations.ListAllAsync().GetAwaiter().GetResult(); + } + + /// + /// Gets a list of all cloud services in the subscription, regardless of the + /// associated resource group. Use nextLink property in the response to get the + /// next page of Cloud Services. Do this till nextLink is null to fetch all the + /// Cloud Services. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAllAsync(this ICloudServicesOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListAllWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a list of all cloud services under a resource group. Use nextLink + /// property in the response to get the next page of Cloud Services. Do this + /// till nextLink is null to fetch all the Cloud Services. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + public static IPage List(this ICloudServicesOperations operations, string resourceGroupName) + { + return operations.ListAsync(resourceGroupName).GetAwaiter().GetResult(); + } + + /// + /// Gets a list of all cloud services under a resource group. Use nextLink + /// property in the response to get the next page of Cloud Services. Do this + /// till nextLink is null to fetch all the Cloud Services. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this ICloudServicesOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Starts the cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + public static void Start(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName) + { + operations.StartAsync(resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); + } + + /// + /// Starts the cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The cancellation token. + /// + public static async Task StartAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.StartWithHttpMessagesAsync(resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Power off the cloud service. Note that resources are still attached and you + /// are getting charged for the resources. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + public static void PowerOff(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName) + { + operations.PowerOffAsync(resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); + } + + /// + /// Power off the cloud service. Note that resources are still attached and you + /// are getting charged for the resources. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The cancellation token. + /// + public static async Task PowerOffAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.PowerOffWithHttpMessagesAsync(resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Restarts one or more role instances in a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + public static void Restart(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty) + { + operations.RestartAsync(resourceGroupName, cloudServiceName, roleInstancesProperty).GetAwaiter().GetResult(); + } + + /// + /// Restarts one or more role instances in a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + /// + /// The cancellation token. + /// + public static async Task RestartAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.RestartWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Reimage asynchronous operation reinstalls the operating system on instances + /// of web roles or worker roles. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + public static void Reimage(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty) + { + operations.ReimageAsync(resourceGroupName, cloudServiceName, roleInstancesProperty).GetAwaiter().GetResult(); + } + + /// + /// Reimage asynchronous operation reinstalls the operating system on instances + /// of web roles or worker roles. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + /// + /// The cancellation token. + /// + public static async Task ReimageAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.ReimageWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Rebuild Role Instances reinstalls the operating system on instances of web + /// roles or worker roles and initializes the storage resources that are used + /// by them. If you do not want to initialize storage resources, you can use + /// Reimage Role Instances. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + public static void Rebuild(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty) + { + operations.RebuildAsync(resourceGroupName, cloudServiceName, roleInstancesProperty).GetAwaiter().GetResult(); + } + + /// + /// Rebuild Role Instances reinstalls the operating system on instances of web + /// roles or worker roles and initializes the storage resources that are used + /// by them. If you do not want to initialize storage resources, you can use + /// Reimage Role Instances. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + /// + /// The cancellation token. + /// + public static async Task RebuildAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.RebuildWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Deletes role instances in a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + public static void DeleteInstances(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty) + { + operations.DeleteInstancesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty).GetAwaiter().GetResult(); + } + + /// + /// Deletes role instances in a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteInstancesAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.DeleteInstancesWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Create or update a cloud service. Please note some properties can be set + /// only during cloud service creation. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The cloud service object. + /// + public static CloudService BeginCreateOrUpdate(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CloudService parameters = default(CloudService)) + { + return operations.BeginCreateOrUpdateAsync(resourceGroupName, cloudServiceName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Create or update a cloud service. Please note some properties can be set + /// only during cloud service creation. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The cloud service object. + /// + /// + /// The cancellation token. + /// + public static async Task BeginCreateOrUpdateAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CloudService parameters = default(CloudService), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, cloudServiceName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Update a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Resource tags + /// + public static CloudService BeginUpdate(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IDictionary tags = default(IDictionary)) + { + return operations.BeginUpdateAsync(resourceGroupName, cloudServiceName, tags).GetAwaiter().GetResult(); + } + + /// + /// Update a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Resource tags + /// + /// + /// The cancellation token. + /// + public static async Task BeginUpdateAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IDictionary tags = default(IDictionary), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginUpdateWithHttpMessagesAsync(resourceGroupName, cloudServiceName, tags, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + public static void BeginDelete(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName) + { + operations.BeginDeleteAsync(resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); + } + + /// + /// Deletes a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The cancellation token. + /// + public static async Task BeginDeleteAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Starts the cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + public static void BeginStart(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName) + { + operations.BeginStartAsync(resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); + } + + /// + /// Starts the cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The cancellation token. + /// + public static async Task BeginStartAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginStartWithHttpMessagesAsync(resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Power off the cloud service. Note that resources are still attached and you + /// are getting charged for the resources. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + public static void BeginPowerOff(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName) + { + operations.BeginPowerOffAsync(resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); + } + + /// + /// Power off the cloud service. Note that resources are still attached and you + /// are getting charged for the resources. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The cancellation token. + /// + public static async Task BeginPowerOffAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginPowerOffWithHttpMessagesAsync(resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Restarts one or more role instances in a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + public static void BeginRestart(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty) + { + operations.BeginRestartAsync(resourceGroupName, cloudServiceName, roleInstancesProperty).GetAwaiter().GetResult(); + } + + /// + /// Restarts one or more role instances in a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + /// + /// The cancellation token. + /// + public static async Task BeginRestartAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginRestartWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Reimage asynchronous operation reinstalls the operating system on instances + /// of web roles or worker roles. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + public static void BeginReimage(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty) + { + operations.BeginReimageAsync(resourceGroupName, cloudServiceName, roleInstancesProperty).GetAwaiter().GetResult(); + } + + /// + /// Reimage asynchronous operation reinstalls the operating system on instances + /// of web roles or worker roles. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + /// + /// The cancellation token. + /// + public static async Task BeginReimageAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginReimageWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Rebuild Role Instances reinstalls the operating system on instances of web + /// roles or worker roles and initializes the storage resources that are used + /// by them. If you do not want to initialize storage resources, you can use + /// Reimage Role Instances. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + public static void BeginRebuild(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty) + { + operations.BeginRebuildAsync(resourceGroupName, cloudServiceName, roleInstancesProperty).GetAwaiter().GetResult(); + } + + /// + /// Rebuild Role Instances reinstalls the operating system on instances of web + /// roles or worker roles and initializes the storage resources that are used + /// by them. If you do not want to initialize storage resources, you can use + /// Reimage Role Instances. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + /// + /// The cancellation token. + /// + public static async Task BeginRebuildAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginRebuildWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Deletes role instances in a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + public static void BeginDeleteInstances(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty) + { + operations.BeginDeleteInstancesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty).GetAwaiter().GetResult(); + } + + /// + /// Deletes role instances in a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + /// + /// The cancellation token. + /// + public static async Task BeginDeleteInstancesAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginDeleteInstancesWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Gets a list of all cloud services in the subscription, regardless of the + /// associated resource group. Use nextLink property in the response to get the + /// next page of Cloud Services. Do this till nextLink is null to fetch all the + /// Cloud Services. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListAllNext(this ICloudServicesOperations operations, string nextPageLink) + { + return operations.ListAllNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets a list of all cloud services in the subscription, regardless of the + /// associated resource group. Use nextLink property in the response to get the + /// next page of Cloud Services. Do this till nextLink is null to fetch all the + /// Cloud Services. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAllNextAsync(this ICloudServicesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListAllNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a list of all cloud services under a resource group. Use nextLink + /// property in the response to get the next page of Cloud Services. Do this + /// till nextLink is null to fetch all the Cloud Services. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this ICloudServicesOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets a list of all cloud services under a resource group. Use nextLink + /// property in the response to get the next page of Cloud Services. Do this + /// till nextLink is null to fetch all the Cloud Services. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListNextAsync(this ICloudServicesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesUpdateDomainOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesUpdateDomainOperations.cs new file mode 100644 index 000000000000..be13c0980ab6 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesUpdateDomainOperations.cs @@ -0,0 +1,839 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// CloudServicesUpdateDomainOperations operations. + /// + internal partial class CloudServicesUpdateDomainOperations : IServiceOperations, ICloudServicesUpdateDomainOperations + { + /// + /// Initializes a new instance of the CloudServicesUpdateDomainOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal CloudServicesUpdateDomainOperations(ComputeManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the ComputeManagementClient + /// + public ComputeManagementClient Client { get; private set; } + + /// + /// Updates the role instances in the specified update domain. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Specifies an integer value that identifies the update domain. Update + /// domains are identified with a zero-based index: the first update domain has + /// an ID of 0, the second has an ID of 1, and so on. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task WalkUpdateDomainWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, int updateDomain, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginWalkUpdateDomainWithHttpMessagesAsync(resourceGroupName, cloudServiceName, updateDomain, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets the specified update domain of a cloud service. Use nextLink property + /// in the response to get the next page of update domains. Do this till + /// nextLink is null to fetch all the update domains. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Specifies an integer value that identifies the update domain. Update + /// domains are identified with a zero-based index: the first update domain has + /// an ID of 0, the second has an ID of 1, and so on. + /// + /// + /// 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> GetUpdateDomainWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, int updateDomain, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2020-10-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("updateDomain", updateDomain); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetUpdateDomain", 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/cloudServices/{cloudServiceName}/updateDomains/{updateDomain}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{updateDomain}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(updateDomain, Client.SerializationSettings).Trim('"'))); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets a list of all update domains in a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// 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>> ListUpdateDomainsWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2020-10-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListUpdateDomains", 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/cloudServices/{cloudServiceName}/updateDomains").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Updates the role instances in the specified update domain. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Specifies an integer value that identifies the update domain. Update + /// domains are identified with a zero-based index: the first update domain has + /// an ID of 0, the second has an ID of 1, and so on. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task BeginWalkUpdateDomainWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, int updateDomain, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2020-10-01-preview"; + UpdateDomain parameters = default(UpdateDomain); + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("updateDomain", updateDomain); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginWalkUpdateDomain", 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/cloudServices/{cloudServiceName}/updateDomains/{updateDomain}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{updateDomain}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(updateDomain, Client.SerializationSettings).Trim('"'))); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets a list of all update domains in a cloud service. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListUpdateDomainsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListUpdateDomainsNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesUpdateDomainOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesUpdateDomainOperationsExtensions.cs new file mode 100644 index 000000000000..9e3226415fe1 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesUpdateDomainOperationsExtensions.cs @@ -0,0 +1,247 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for CloudServicesUpdateDomainOperations. + /// + public static partial class CloudServicesUpdateDomainOperationsExtensions + { + /// + /// Updates the role instances in the specified update domain. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Specifies an integer value that identifies the update domain. Update + /// domains are identified with a zero-based index: the first update domain has + /// an ID of 0, the second has an ID of 1, and so on. + /// + public static void WalkUpdateDomain(this ICloudServicesUpdateDomainOperations operations, string resourceGroupName, string cloudServiceName, int updateDomain) + { + operations.WalkUpdateDomainAsync(resourceGroupName, cloudServiceName, updateDomain).GetAwaiter().GetResult(); + } + + /// + /// Updates the role instances in the specified update domain. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Specifies an integer value that identifies the update domain. Update + /// domains are identified with a zero-based index: the first update domain has + /// an ID of 0, the second has an ID of 1, and so on. + /// + /// + /// The cancellation token. + /// + public static async Task WalkUpdateDomainAsync(this ICloudServicesUpdateDomainOperations operations, string resourceGroupName, string cloudServiceName, int updateDomain, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.WalkUpdateDomainWithHttpMessagesAsync(resourceGroupName, cloudServiceName, updateDomain, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Gets the specified update domain of a cloud service. Use nextLink property + /// in the response to get the next page of update domains. Do this till + /// nextLink is null to fetch all the update domains. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Specifies an integer value that identifies the update domain. Update + /// domains are identified with a zero-based index: the first update domain has + /// an ID of 0, the second has an ID of 1, and so on. + /// + public static UpdateDomain GetUpdateDomain(this ICloudServicesUpdateDomainOperations operations, string resourceGroupName, string cloudServiceName, int updateDomain) + { + return operations.GetUpdateDomainAsync(resourceGroupName, cloudServiceName, updateDomain).GetAwaiter().GetResult(); + } + + /// + /// Gets the specified update domain of a cloud service. Use nextLink property + /// in the response to get the next page of update domains. Do this till + /// nextLink is null to fetch all the update domains. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Specifies an integer value that identifies the update domain. Update + /// domains are identified with a zero-based index: the first update domain has + /// an ID of 0, the second has an ID of 1, and so on. + /// + /// + /// The cancellation token. + /// + public static async Task GetUpdateDomainAsync(this ICloudServicesUpdateDomainOperations operations, string resourceGroupName, string cloudServiceName, int updateDomain, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetUpdateDomainWithHttpMessagesAsync(resourceGroupName, cloudServiceName, updateDomain, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a list of all update domains in a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + public static IPage ListUpdateDomains(this ICloudServicesUpdateDomainOperations operations, string resourceGroupName, string cloudServiceName) + { + return operations.ListUpdateDomainsAsync(resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); + } + + /// + /// Gets a list of all update domains in a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The cancellation token. + /// + public static async Task> ListUpdateDomainsAsync(this ICloudServicesUpdateDomainOperations operations, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListUpdateDomainsWithHttpMessagesAsync(resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Updates the role instances in the specified update domain. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Specifies an integer value that identifies the update domain. Update + /// domains are identified with a zero-based index: the first update domain has + /// an ID of 0, the second has an ID of 1, and so on. + /// + public static void BeginWalkUpdateDomain(this ICloudServicesUpdateDomainOperations operations, string resourceGroupName, string cloudServiceName, int updateDomain) + { + operations.BeginWalkUpdateDomainAsync(resourceGroupName, cloudServiceName, updateDomain).GetAwaiter().GetResult(); + } + + /// + /// Updates the role instances in the specified update domain. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Specifies an integer value that identifies the update domain. Update + /// domains are identified with a zero-based index: the first update domain has + /// an ID of 0, the second has an ID of 1, and so on. + /// + /// + /// The cancellation token. + /// + public static async Task BeginWalkUpdateDomainAsync(this ICloudServicesUpdateDomainOperations operations, string resourceGroupName, string cloudServiceName, int updateDomain, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginWalkUpdateDomainWithHttpMessagesAsync(resourceGroupName, cloudServiceName, updateDomain, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Gets a list of all update domains in a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListUpdateDomainsNext(this ICloudServicesUpdateDomainOperations operations, string nextPageLink) + { + return operations.ListUpdateDomainsNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets a list of all update domains in a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListUpdateDomainsNextAsync(this ICloudServicesUpdateDomainOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListUpdateDomainsNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ComputeManagementClient.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ComputeManagementClient.cs index f62c8107416d..dd8d1f26d9aa 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ComputeManagementClient.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ComputeManagementClient.cs @@ -116,11 +116,6 @@ public partial class ComputeManagementClient : ServiceClient public virtual IVirtualMachineImagesOperations VirtualMachineImages { get; private set; } - /// - /// Gets the IVirtualMachineImagesEdgeZoneOperations. - /// - public virtual IVirtualMachineImagesEdgeZoneOperations VirtualMachineImagesEdgeZone { get; private set; } - /// /// Gets the IUsageOperations. /// @@ -131,11 +126,6 @@ public partial class ComputeManagementClient : ServiceClient public virtual IVirtualMachinesOperations VirtualMachines { get; private set; } - /// - /// Gets the IVirtualMachineScaleSetsOperations. - /// - public virtual IVirtualMachineScaleSetsOperations VirtualMachineScaleSets { get; private set; } - /// /// Gets the IVirtualMachineSizesOperations. /// @@ -146,6 +136,11 @@ public partial class ComputeManagementClient : ServiceClient public virtual IImagesOperations Images { get; private set; } + /// + /// Gets the IVirtualMachineScaleSetsOperations. + /// + public virtual IVirtualMachineScaleSetsOperations VirtualMachineScaleSets { get; private set; } + /// /// Gets the IVirtualMachineScaleSetExtensionsOperations. /// @@ -256,6 +251,31 @@ public partial class ComputeManagementClient : ServiceClient public virtual ISharedGalleryImageVersionsOperations SharedGalleryImageVersions { get; private set; } + /// + /// Gets the IContainerServicesOperations. + /// + public virtual IContainerServicesOperations ContainerServices { get; private set; } + + /// + /// Gets the ICloudServiceRoleInstancesOperations. + /// + public virtual ICloudServiceRoleInstancesOperations CloudServiceRoleInstances { get; private set; } + + /// + /// Gets the ICloudServiceRolesOperations. + /// + public virtual ICloudServiceRolesOperations CloudServiceRoles { get; private set; } + + /// + /// Gets the ICloudServicesOperations. + /// + public virtual ICloudServicesOperations CloudServices { get; private set; } + + /// + /// Gets the ICloudServicesUpdateDomainOperations. + /// + public virtual ICloudServicesUpdateDomainOperations CloudServicesUpdateDomain { get; private set; } + /// /// Initializes a new instance of the ComputeManagementClient class. /// @@ -506,12 +526,11 @@ private void Initialize() VirtualMachineExtensionImages = new VirtualMachineExtensionImagesOperations(this); VirtualMachineExtensions = new VirtualMachineExtensionsOperations(this); VirtualMachineImages = new VirtualMachineImagesOperations(this); - VirtualMachineImagesEdgeZone = new VirtualMachineImagesEdgeZoneOperations(this); Usage = new UsageOperations(this); VirtualMachines = new VirtualMachinesOperations(this); - VirtualMachineScaleSets = new VirtualMachineScaleSetsOperations(this); VirtualMachineSizes = new VirtualMachineSizesOperations(this); Images = new ImagesOperations(this); + VirtualMachineScaleSets = new VirtualMachineScaleSetsOperations(this); VirtualMachineScaleSetExtensions = new VirtualMachineScaleSetExtensionsOperations(this); VirtualMachineScaleSetRollingUpgrades = new VirtualMachineScaleSetRollingUpgradesOperations(this); VirtualMachineScaleSetVMExtensions = new VirtualMachineScaleSetVMExtensionsOperations(this); @@ -534,6 +553,11 @@ private void Initialize() SharedGalleries = new SharedGalleriesOperations(this); SharedGalleryImages = new SharedGalleryImagesOperations(this); SharedGalleryImageVersions = new SharedGalleryImageVersionsOperations(this); + ContainerServices = new ContainerServicesOperations(this); + CloudServiceRoleInstances = new CloudServiceRoleInstancesOperations(this); + CloudServiceRoles = new CloudServiceRolesOperations(this); + CloudServices = new CloudServicesOperations(this); + CloudServicesUpdateDomain = new CloudServicesUpdateDomainOperations(this); BaseUri = new System.Uri("https://management.azure.com"); AcceptLanguage = "en-US"; LongRunningOperationRetryTimeout = 30; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineImagesEdgeZoneOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ContainerServicesOperations.cs similarity index 59% rename from sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineImagesEdgeZoneOperations.cs rename to sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ContainerServicesOperations.cs index b4f675fffcaf..2a997351885a 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineImagesEdgeZoneOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ContainerServicesOperations.cs @@ -23,12 +23,12 @@ namespace Microsoft.Azure.Management.Compute using System.Threading.Tasks; /// - /// VirtualMachineImagesEdgeZoneOperations operations. + /// ContainerServicesOperations operations. /// - internal partial class VirtualMachineImagesEdgeZoneOperations : IServiceOperations, IVirtualMachineImagesEdgeZoneOperations + internal partial class ContainerServicesOperations : IServiceOperations, IContainerServicesOperations { /// - /// Initializes a new instance of the VirtualMachineImagesEdgeZoneOperations class. + /// Initializes a new instance of the ContainerServicesOperations class. /// /// /// Reference to the service client. @@ -36,7 +36,7 @@ internal partial class VirtualMachineImagesEdgeZoneOperations : IServiceOperatio /// /// Thrown when a required parameter is null /// - internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) + internal ContainerServicesOperations(ComputeManagementClient client) { if (client == null) { @@ -51,26 +51,14 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) public ComputeManagementClient Client { get; private set; } /// - /// Gets a virtual machine image in an edge zone. + /// Gets a list of container services in the specified subscription. /// - /// - /// The name of a supported Azure region. - /// - /// - /// The name of the edge zone. - /// - /// - /// A valid image publisher. - /// - /// - /// A valid image publisher offer. - /// - /// - /// A valid image SKU. - /// - /// - /// A valid image SKU version. - /// + /// + /// Gets a list of container services in the specified subscription. The + /// operation returns properties of each container service including state, + /// orchestrator, number of masters and agents, and FQDNs of masters and + /// agents. + /// /// /// Headers that will be added to request. /// @@ -92,37 +80,13 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string location, string edgeZone, string publisherName, string offer, string skus, string version, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (location == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "location"); - } - if (edgeZone == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "edgeZone"); - } - if (publisherName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "publisherName"); - } - if (offer == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "offer"); - } - if (skus == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "skus"); - } - if (version == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "version"); - } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2017-01-31"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -130,25 +94,13 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("location", location); - tracingParameters.Add("edgeZone", edgeZone); - tracingParameters.Add("publisherName", publisherName); - tracingParameters.Add("offer", offer); - tracingParameters.Add("skus", skus); - tracingParameters.Add("version", version); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/edgeZones/{edgeZone}/publishers/{publisherName}/artifacttypes/vmimage/offers/{offer}/skus/{skus}/versions/{version}").ToString(); - _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); - _url = _url.Replace("{edgeZone}", System.Uri.EscapeDataString(edgeZone)); - _url = _url.Replace("{publisherName}", System.Uri.EscapeDataString(publisherName)); - _url = _url.Replace("{offer}", System.Uri.EscapeDataString(offer)); - _url = _url.Replace("{skus}", System.Uri.EscapeDataString(skus)); - _url = _url.Replace("{version}", System.Uri.EscapeDataString(version)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.ContainerService/containerServices").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) @@ -248,7 +200,7 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -261,7 +213,7 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -281,33 +233,50 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) } /// - /// Gets a list of all virtual machine image versions for the specified - /// location, edge zone, publisher, offer, and SKU. + /// Creates or updates a container service. /// - /// - /// The name of a supported Azure region. + /// + /// Creates or updates a container service with the specified configuration of + /// orchestrator, masters, and agents. + /// + /// + /// The name of the resource group. /// - /// - /// The name of the edge zone. + /// + /// The name of the container service in the specified subscription and + /// resource group. /// - /// - /// A valid image publisher. + /// + /// Parameters supplied to the Create or Update a Container Service operation. /// - /// - /// A valid image publisher offer. - /// - /// - /// A valid image SKU. + /// + /// The headers that will be added to request. /// - /// - /// The expand expression to apply on the operation. + /// + /// The cancellation token. /// - /// - /// An integer value specifying the number of images to return that matches - /// supplied values. + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string containerServiceName, ContainerService parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, containerServiceName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets the properties of the specified container service. + /// + /// + /// Gets the properties of the specified container service in the specified + /// subscription and resource group. The operation returns the properties + /// including state, orchestrator, number of masters and agents, and FQDNs of + /// masters and agents. + /// + /// + /// The name of the resource group. /// - /// - /// Specifies the order of the results returned. Formatted as an OData query. + /// + /// The name of the container service in the specified subscription and + /// resource group. /// /// /// Headers that will be added to request. @@ -330,33 +299,21 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(string location, string edgeZone, string publisherName, string offer, string skus, string expand = default(string), int? top = default(int?), string orderby = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string containerServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (location == null) + if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "location"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (edgeZone == null) + if (containerServiceName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "edgeZone"); - } - if (publisherName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "publisherName"); - } - if (offer == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "offer"); - } - if (skus == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "skus"); + throw new ValidationException(ValidationRules.CannotBeNull, "containerServiceName"); } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2017-01-31"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -364,40 +321,19 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("location", location); - tracingParameters.Add("edgeZone", edgeZone); - tracingParameters.Add("publisherName", publisherName); - tracingParameters.Add("offer", offer); - tracingParameters.Add("skus", skus); - tracingParameters.Add("expand", expand); - tracingParameters.Add("top", top); - tracingParameters.Add("orderby", orderby); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("containerServiceName", containerServiceName); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/edgeZones/{edgeZone}/publishers/{publisherName}/artifacttypes/vmimage/offers/{offer}/skus/{skus}/versions").ToString(); - _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); - _url = _url.Replace("{edgeZone}", System.Uri.EscapeDataString(edgeZone)); - _url = _url.Replace("{publisherName}", System.Uri.EscapeDataString(publisherName)); - _url = _url.Replace("{offer}", System.Uri.EscapeDataString(offer)); - _url = _url.Replace("{skus}", System.Uri.EscapeDataString(skus)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/containerServices/{containerServiceName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{containerServiceName}", System.Uri.EscapeDataString(containerServiceName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (expand != null) - { - _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(expand))); - } - if (top != null) - { - _queryParameters.Add(string.Format("$top={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(top, Client.SerializationSettings).Trim('"')))); - } - if (orderby != null) - { - _queryParameters.Add(string.Format("$orderby={0}", System.Uri.EscapeDataString(orderby))); - } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -495,7 +431,7 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -508,7 +444,7 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -528,17 +464,47 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) } /// - /// Gets a list of virtual machine image offers for the specified location, - /// edge zone and publisher. + /// Deletes the specified container service. /// - /// - /// The name of a supported Azure region. + /// + /// Deletes the specified container service in the specified subscription and + /// resource group. The operation does not delete other resources created as + /// part of creating a container service, including storage accounts, VMs, and + /// availability sets. All the other resources created with the container + /// service are part of the same resource group and can be deleted + /// individually. + /// + /// + /// The name of the resource group. /// - /// - /// The name of the edge zone. + /// + /// The name of the container service in the specified subscription and + /// resource group. /// - /// - /// A valid image publisher. + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string containerServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, containerServiceName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets a list of container services in the specified resource group. + /// + /// + /// Gets a list of container services in the specified subscription and + /// resource group. The operation returns properties of each container service + /// including state, orchestrator, number of masters and agents, and FQDNs of + /// masters and agents. + /// + /// + /// The name of the resource group. /// /// /// Headers that will be added to request. @@ -561,25 +527,17 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListOffersWithHttpMessagesAsync(string location, string edgeZone, string publisherName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (location == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "location"); - } - if (edgeZone == null) + if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "edgeZone"); - } - if (publisherName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "publisherName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2017-01-31"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -587,19 +545,15 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("location", location); - tracingParameters.Add("edgeZone", edgeZone); - tracingParameters.Add("publisherName", publisherName); + tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListOffers", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/edgeZones/{edgeZone}/publishers/{publisherName}/artifacttypes/vmimage/offers").ToString(); - _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); - _url = _url.Replace("{edgeZone}", System.Uri.EscapeDataString(edgeZone)); - _url = _url.Replace("{publisherName}", System.Uri.EscapeDataString(publisherName)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/containerServices").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) @@ -699,7 +653,7 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -712,7 +666,7 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -732,14 +686,21 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) } /// - /// Gets a list of virtual machine image publishers for the specified Azure - /// location and edge zone. + /// Creates or updates a container service. /// - /// - /// The name of a supported Azure region. + /// + /// Creates or updates a container service with the specified configuration of + /// orchestrator, masters, and agents. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the container service in the specified subscription and + /// resource group. /// - /// - /// The name of the edge zone. + /// + /// Parameters supplied to the Create or Update a Container Service operation. /// /// /// Headers that will be added to request. @@ -762,21 +723,29 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListPublishersWithHttpMessagesAsync(string location, string edgeZone, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string containerServiceName, ContainerService parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (location == null) + if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "location"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (edgeZone == null) + if (containerServiceName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "edgeZone"); + throw new ValidationException(ValidationRules.CannotBeNull, "containerServiceName"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2017-01-31"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -784,17 +753,18 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("location", location); - tracingParameters.Add("edgeZone", edgeZone); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("containerServiceName", containerServiceName); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListPublishers", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/edgeZones/{edgeZone}/publishers").ToString(); - _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); - _url = _url.Replace("{edgeZone}", System.Uri.EscapeDataString(edgeZone)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/containerServices/{containerServiceName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{containerServiceName}", System.Uri.EscapeDataString(containerServiceName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) @@ -808,7 +778,7 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -839,6 +809,12 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { @@ -859,7 +835,7 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 201 && (int)_statusCode != 202) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -894,7 +870,7 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -907,7 +883,43 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + // Deserialize Response + if ((int)_statusCode == 202) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -927,20 +939,22 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) } /// - /// Gets a list of virtual machine image SKUs for the specified location, edge - /// zone, publisher, and offer. + /// Deletes the specified container service. /// - /// - /// The name of a supported Azure region. - /// - /// - /// The name of the edge zone. + /// + /// Deletes the specified container service in the specified subscription and + /// resource group. The operation does not delete other resources created as + /// part of creating a container service, including storage accounts, VMs, and + /// availability sets. All the other resources created with the container + /// service are part of the same resource group and can be deleted + /// individually. + /// + /// + /// The name of the resource group. /// - /// - /// A valid image publisher. - /// - /// - /// A valid image publisher offer. + /// + /// The name of the container service in the specified subscription and + /// resource group. /// /// /// Headers that will be added to request. @@ -951,9 +965,6 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// @@ -963,29 +974,21 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListSkusWithHttpMessagesAsync(string location, string edgeZone, string publisherName, string offer, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string containerServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (location == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "location"); - } - if (edgeZone == null) + if (resourceGroupName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "edgeZone"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (publisherName == null) + if (containerServiceName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "publisherName"); - } - if (offer == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "offer"); + throw new ValidationException(ValidationRules.CannotBeNull, "containerServiceName"); } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2017-01-31"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -993,21 +996,17 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("location", location); - tracingParameters.Add("edgeZone", edgeZone); - tracingParameters.Add("publisherName", publisherName); - tracingParameters.Add("offer", offer); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("containerServiceName", containerServiceName); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListSkus", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/edgeZones/{edgeZone}/publishers/{publisherName}/artifacttypes/vmimage/offers/{offer}/skus").ToString(); - _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); - _url = _url.Replace("{edgeZone}", System.Uri.EscapeDataString(edgeZone)); - _url = _url.Replace("{publisherName}", System.Uri.EscapeDataString(publisherName)); - _url = _url.Replace("{offer}", System.Uri.EscapeDataString(offer)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/containerServices/{containerServiceName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{containerServiceName}", System.Uri.EscapeDataString(containerServiceName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) @@ -1021,6 +1020,346 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 202 && (int)_statusCode != 204) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets a list of container services in the specified subscription. + /// + /// + /// Gets a list of container services in the specified subscription. The + /// operation returns properties of each container service including state, + /// orchestrator, number of masters and agents, and FQDNs of masters and + /// agents. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets a list of container services in the specified resource group. + /// + /// + /// Gets a list of container services in the specified subscription and + /// resource group. The operation returns properties of each container service + /// including state, orchestrator, number of masters and agents, and FQDNs of + /// masters and agents. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroupNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers @@ -1107,7 +1446,7 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1120,7 +1459,7 @@ internal VirtualMachineImagesEdgeZoneOperations(ComputeManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ContainerServicesOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ContainerServicesOperationsExtensions.cs new file mode 100644 index 000000000000..e245c862dd38 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ContainerServicesOperationsExtensions.cs @@ -0,0 +1,479 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for ContainerServicesOperations. + /// + public static partial class ContainerServicesOperationsExtensions + { + /// + /// Gets a list of container services in the specified subscription. + /// + /// + /// Gets a list of container services in the specified subscription. The + /// operation returns properties of each container service including state, + /// orchestrator, number of masters and agents, and FQDNs of masters and + /// agents. + /// + /// + /// The operations group for this extension method. + /// + public static IPage List(this IContainerServicesOperations operations) + { + return operations.ListAsync().GetAwaiter().GetResult(); + } + + /// + /// Gets a list of container services in the specified subscription. + /// + /// + /// Gets a list of container services in the specified subscription. The + /// operation returns properties of each container service including state, + /// orchestrator, number of masters and agents, and FQDNs of masters and + /// agents. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this IContainerServicesOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Creates or updates a container service. + /// + /// + /// Creates or updates a container service with the specified configuration of + /// orchestrator, masters, and agents. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the container service in the specified subscription and + /// resource group. + /// + /// + /// Parameters supplied to the Create or Update a Container Service operation. + /// + public static ContainerService CreateOrUpdate(this IContainerServicesOperations operations, string resourceGroupName, string containerServiceName, ContainerService parameters) + { + return operations.CreateOrUpdateAsync(resourceGroupName, containerServiceName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Creates or updates a container service. + /// + /// + /// Creates or updates a container service with the specified configuration of + /// orchestrator, masters, and agents. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the container service in the specified subscription and + /// resource group. + /// + /// + /// Parameters supplied to the Create or Update a Container Service operation. + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateAsync(this IContainerServicesOperations operations, string resourceGroupName, string containerServiceName, ContainerService parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, containerServiceName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets the properties of the specified container service. + /// + /// + /// Gets the properties of the specified container service in the specified + /// subscription and resource group. The operation returns the properties + /// including state, orchestrator, number of masters and agents, and FQDNs of + /// masters and agents. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the container service in the specified subscription and + /// resource group. + /// + public static ContainerService Get(this IContainerServicesOperations operations, string resourceGroupName, string containerServiceName) + { + return operations.GetAsync(resourceGroupName, containerServiceName).GetAwaiter().GetResult(); + } + + /// + /// Gets the properties of the specified container service. + /// + /// + /// Gets the properties of the specified container service in the specified + /// subscription and resource group. The operation returns the properties + /// including state, orchestrator, number of masters and agents, and FQDNs of + /// masters and agents. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the container service in the specified subscription and + /// resource group. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IContainerServicesOperations operations, string resourceGroupName, string containerServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, containerServiceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes the specified container service. + /// + /// + /// Deletes the specified container service in the specified subscription and + /// resource group. The operation does not delete other resources created as + /// part of creating a container service, including storage accounts, VMs, and + /// availability sets. All the other resources created with the container + /// service are part of the same resource group and can be deleted + /// individually. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the container service in the specified subscription and + /// resource group. + /// + public static void Delete(this IContainerServicesOperations operations, string resourceGroupName, string containerServiceName) + { + operations.DeleteAsync(resourceGroupName, containerServiceName).GetAwaiter().GetResult(); + } + + /// + /// Deletes the specified container service. + /// + /// + /// Deletes the specified container service in the specified subscription and + /// resource group. The operation does not delete other resources created as + /// part of creating a container service, including storage accounts, VMs, and + /// availability sets. All the other resources created with the container + /// service are part of the same resource group and can be deleted + /// individually. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the container service in the specified subscription and + /// resource group. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this IContainerServicesOperations operations, string resourceGroupName, string containerServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, containerServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Gets a list of container services in the specified resource group. + /// + /// + /// Gets a list of container services in the specified subscription and + /// resource group. The operation returns properties of each container service + /// including state, orchestrator, number of masters and agents, and FQDNs of + /// masters and agents. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + public static IPage ListByResourceGroup(this IContainerServicesOperations operations, string resourceGroupName) + { + return operations.ListByResourceGroupAsync(resourceGroupName).GetAwaiter().GetResult(); + } + + /// + /// Gets a list of container services in the specified resource group. + /// + /// + /// Gets a list of container services in the specified subscription and + /// resource group. The operation returns properties of each container service + /// including state, orchestrator, number of masters and agents, and FQDNs of + /// masters and agents. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByResourceGroupAsync(this IContainerServicesOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Creates or updates a container service. + /// + /// + /// Creates or updates a container service with the specified configuration of + /// orchestrator, masters, and agents. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the container service in the specified subscription and + /// resource group. + /// + /// + /// Parameters supplied to the Create or Update a Container Service operation. + /// + public static ContainerService BeginCreateOrUpdate(this IContainerServicesOperations operations, string resourceGroupName, string containerServiceName, ContainerService parameters) + { + return operations.BeginCreateOrUpdateAsync(resourceGroupName, containerServiceName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Creates or updates a container service. + /// + /// + /// Creates or updates a container service with the specified configuration of + /// orchestrator, masters, and agents. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the container service in the specified subscription and + /// resource group. + /// + /// + /// Parameters supplied to the Create or Update a Container Service operation. + /// + /// + /// The cancellation token. + /// + public static async Task BeginCreateOrUpdateAsync(this IContainerServicesOperations operations, string resourceGroupName, string containerServiceName, ContainerService parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, containerServiceName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes the specified container service. + /// + /// + /// Deletes the specified container service in the specified subscription and + /// resource group. The operation does not delete other resources created as + /// part of creating a container service, including storage accounts, VMs, and + /// availability sets. All the other resources created with the container + /// service are part of the same resource group and can be deleted + /// individually. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the container service in the specified subscription and + /// resource group. + /// + public static void BeginDelete(this IContainerServicesOperations operations, string resourceGroupName, string containerServiceName) + { + operations.BeginDeleteAsync(resourceGroupName, containerServiceName).GetAwaiter().GetResult(); + } + + /// + /// Deletes the specified container service. + /// + /// + /// Deletes the specified container service in the specified subscription and + /// resource group. The operation does not delete other resources created as + /// part of creating a container service, including storage accounts, VMs, and + /// availability sets. All the other resources created with the container + /// service are part of the same resource group and can be deleted + /// individually. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the container service in the specified subscription and + /// resource group. + /// + /// + /// The cancellation token. + /// + public static async Task BeginDeleteAsync(this IContainerServicesOperations operations, string resourceGroupName, string containerServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, containerServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Gets a list of container services in the specified subscription. + /// + /// + /// Gets a list of container services in the specified subscription. The + /// operation returns properties of each container service including state, + /// orchestrator, number of masters and agents, and FQDNs of masters and + /// agents. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this IContainerServicesOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets a list of container services in the specified subscription. + /// + /// + /// Gets a list of container services in the specified subscription. The + /// operation returns properties of each container service including state, + /// orchestrator, number of masters and agents, and FQDNs of masters and + /// agents. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListNextAsync(this IContainerServicesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a list of container services in the specified resource group. + /// + /// + /// Gets a list of container services in the specified subscription and + /// resource group. The operation returns properties of each container service + /// including state, orchestrator, number of masters and agents, and FQDNs of + /// masters and agents. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListByResourceGroupNext(this IContainerServicesOperations operations, string nextPageLink) + { + return operations.ListByResourceGroupNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets a list of container services in the specified resource group. + /// + /// + /// Gets a list of container services in the specified subscription and + /// resource group. The operation returns properties of each container service + /// including state, orchestrator, number of masters and agents, and FQDNs of + /// masters and agents. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByResourceGroupNextAsync(this IContainerServicesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByResourceGroupNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DedicatedHostGroupsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DedicatedHostGroupsOperations.cs index 076bab87a29d..e81752b46337 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DedicatedHostGroupsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DedicatedHostGroupsOperations.cs @@ -107,7 +107,7 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -333,7 +333,7 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -531,7 +531,7 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -712,7 +712,7 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -906,7 +906,7 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1086,7 +1086,7 @@ internal DedicatedHostGroupsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DedicatedHostsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DedicatedHostsOperations.cs index 6bb551e9fc24..db530fa653c0 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DedicatedHostsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/DedicatedHostsOperations.cs @@ -186,7 +186,7 @@ internal DedicatedHostsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -389,7 +389,7 @@ internal DedicatedHostsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -601,7 +601,7 @@ internal DedicatedHostsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -836,7 +836,7 @@ internal DedicatedHostsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1043,7 +1043,7 @@ internal DedicatedHostsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServiceRoleInstancesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServiceRoleInstancesOperations.cs new file mode 100644 index 000000000000..5d97a04e5b07 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServiceRoleInstancesOperations.cs @@ -0,0 +1,362 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.IO; + using System.Threading; + using System.Threading.Tasks; + + /// + /// CloudServiceRoleInstancesOperations operations. + /// + public partial interface ICloudServiceRoleInstancesOperations + { + /// + /// Deletes a role instance from a cloud service. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task DeleteWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a role instance from a cloud service. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The expand expression to apply to the operation. Possible values + /// include: 'instanceView' + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, InstanceViewTypes? expand = default(InstanceViewTypes?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Retrieves information about the run-time state of a role instance + /// in a cloud service. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// 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> GetInstanceViewWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the list of all role instances in a cloud service. Use + /// nextLink property in the response to get the next page of role + /// instances. Do this till nextLink is null to fetch all the role + /// instances. + /// + /// + /// + /// + /// + /// + /// The expand expression to apply to the operation. Possible values + /// include: 'instanceView' + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, InstanceViewTypes? expand = default(InstanceViewTypes?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// The Reboot Role Instance asynchronous operation requests a reboot + /// of a role instance in the cloud service. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task RestartWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// The Reimage Role Instance asynchronous operation reinstalls the + /// operating system on instances of web roles or worker roles. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task ReimageWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// The Rebuild Role Instance asynchronous operation reinstalls the + /// operating system on instances of web roles or worker roles and + /// initializes the storage resources that are used by them. If you do + /// not want to initialize storage resources, you can use Reimage Role + /// Instance. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task RebuildWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a remote desktop file for a role instance in a cloud service. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// 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> GetRemoteDesktopFileWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes a role instance from a cloud service. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task BeginDeleteWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// The Reboot Role Instance asynchronous operation requests a reboot + /// of a role instance in the cloud service. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task BeginRestartWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// The Reimage Role Instance asynchronous operation reinstalls the + /// operating system on instances of web roles or worker roles. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task BeginReimageWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// The Rebuild Role Instance asynchronous operation reinstalls the + /// operating system on instances of web roles or worker roles and + /// initializes the storage resources that are used by them. If you do + /// not want to initialize storage resources, you can use Reimage Role + /// Instance. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task BeginRebuildWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the list of all role instances in a cloud service. Use + /// nextLink property in the response to get the next page of role + /// instances. Do this till nextLink is null to fetch all the role + /// instances. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServiceRolesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServiceRolesOperations.cs new file mode 100644 index 000000000000..16e8d96e5c5f --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServiceRolesOperations.cs @@ -0,0 +1,102 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// CloudServiceRolesOperations operations. + /// + public partial interface ICloudServiceRolesOperations + { + /// + /// Gets a role from a cloud service. + /// + /// + /// Name of the role. + /// + /// + /// + /// + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string roleName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a list of all roles in a cloud service. Use nextLink property + /// in the response to get the next page of roles. Do this till + /// nextLink is null to fetch all the roles. + /// + /// + /// + /// + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a list of all roles in a cloud service. Use nextLink property + /// in the response to get the next page of roles. Do this till + /// nextLink is null to fetch all the roles. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServicesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServicesOperations.cs new file mode 100644 index 000000000000..837bdd793337 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServicesOperations.cs @@ -0,0 +1,638 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// CloudServicesOperations operations. + /// + public partial interface ICloudServicesOperations + { + /// + /// Create or update a cloud service. Please note some properties can + /// be set only during cloud service creation. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The cloud service object. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, CloudService parameters = default(CloudService), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Update a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Resource tags + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IDictionary tags = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Display information about a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the status of a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// 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> GetInstanceViewWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a list of all cloud services in the subscription, regardless + /// of the associated resource group. Use nextLink property in the + /// response to get the next page of Cloud Services. Do this till + /// nextLink is null to fetch all the Cloud Services. + /// + /// + /// 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>> ListAllWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a list of all cloud services under a resource group. Use + /// nextLink property in the response to get the next page of Cloud + /// Services. Do this till nextLink is null to fetch all the Cloud + /// Services. + /// + /// + /// Name of the resource group. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Starts the cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task StartWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Power off the cloud service. Note that resources are still attached + /// and you are getting charged for the resources. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task PowerOffWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Restarts one or more role instances in a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will + /// signify all role instances of the cloud service. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task RestartWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Reimage asynchronous operation reinstalls the operating system on + /// instances of web roles or worker roles. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will + /// signify all role instances of the cloud service. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task ReimageWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Rebuild Role Instances reinstalls the operating system on instances + /// of web roles or worker roles and initializes the storage resources + /// that are used by them. If you do not want to initialize storage + /// resources, you can use Reimage Role Instances. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will + /// signify all role instances of the cloud service. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task RebuildWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes role instances in a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will + /// signify all role instances of the cloud service. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task DeleteInstancesWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Create or update a cloud service. Please note some properties can + /// be set only during cloud service creation. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The cloud service object. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, CloudService parameters = default(CloudService), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Update a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Resource tags + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IDictionary tags = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Starts the cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task BeginStartWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Power off the cloud service. Note that resources are still attached + /// and you are getting charged for the resources. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task BeginPowerOffWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Restarts one or more role instances in a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will + /// signify all role instances of the cloud service. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task BeginRestartWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Reimage asynchronous operation reinstalls the operating system on + /// instances of web roles or worker roles. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will + /// signify all role instances of the cloud service. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task BeginReimageWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Rebuild Role Instances reinstalls the operating system on instances + /// of web roles or worker roles and initializes the storage resources + /// that are used by them. If you do not want to initialize storage + /// resources, you can use Reimage Role Instances. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will + /// signify all role instances of the cloud service. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task BeginRebuildWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes role instances in a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will + /// signify all role instances of the cloud service. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task BeginDeleteInstancesWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a list of all cloud services in the subscription, regardless + /// of the associated resource group. Use nextLink property in the + /// response to get the next page of Cloud Services. Do this till + /// nextLink is null to fetch all the Cloud Services. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListAllNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a list of all cloud services under a resource group. Use + /// nextLink property in the response to get the next page of Cloud + /// Services. Do this till nextLink is null to fetch all the Cloud + /// Services. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServicesUpdateDomainOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServicesUpdateDomainOperations.cs new file mode 100644 index 000000000000..cdac93b47a19 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServicesUpdateDomainOperations.cs @@ -0,0 +1,160 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// CloudServicesUpdateDomainOperations operations. + /// + public partial interface ICloudServicesUpdateDomainOperations + { + /// + /// Updates the role instances in the specified update domain. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Specifies an integer value that identifies the update domain. + /// Update domains are identified with a zero-based index: the first + /// update domain has an ID of 0, the second has an ID of 1, and so on. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task WalkUpdateDomainWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, int updateDomain, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the specified update domain of a cloud service. Use nextLink + /// property in the response to get the next page of update domains. Do + /// this till nextLink is null to fetch all the update domains. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Specifies an integer value that identifies the update domain. + /// Update domains are identified with a zero-based index: the first + /// update domain has an ID of 0, the second has an ID of 1, and so on. + /// + /// + /// 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> GetUpdateDomainWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, int updateDomain, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a list of all update domains in a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// 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>> ListUpdateDomainsWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the role instances in the specified update domain. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Specifies an integer value that identifies the update domain. + /// Update domains are identified with a zero-based index: the first + /// update domain has an ID of 0, the second has an ID of 1, and so on. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task BeginWalkUpdateDomainWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, int updateDomain, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a list of all update domains in a cloud service. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListUpdateDomainsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IComputeManagementClient.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IComputeManagementClient.cs index ca07daa8f326..de335b737a8a 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IComputeManagementClient.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IComputeManagementClient.cs @@ -111,11 +111,6 @@ public partial interface IComputeManagementClient : System.IDisposable /// IVirtualMachineImagesOperations VirtualMachineImages { get; } - /// - /// Gets the IVirtualMachineImagesEdgeZoneOperations. - /// - IVirtualMachineImagesEdgeZoneOperations VirtualMachineImagesEdgeZone { get; } - /// /// Gets the IUsageOperations. /// @@ -126,11 +121,6 @@ public partial interface IComputeManagementClient : System.IDisposable /// IVirtualMachinesOperations VirtualMachines { get; } - /// - /// Gets the IVirtualMachineScaleSetsOperations. - /// - IVirtualMachineScaleSetsOperations VirtualMachineScaleSets { get; } - /// /// Gets the IVirtualMachineSizesOperations. /// @@ -141,6 +131,11 @@ public partial interface IComputeManagementClient : System.IDisposable /// IImagesOperations Images { get; } + /// + /// Gets the IVirtualMachineScaleSetsOperations. + /// + IVirtualMachineScaleSetsOperations VirtualMachineScaleSets { get; } + /// /// Gets the IVirtualMachineScaleSetExtensionsOperations. /// @@ -251,5 +246,30 @@ public partial interface IComputeManagementClient : System.IDisposable /// ISharedGalleryImageVersionsOperations SharedGalleryImageVersions { get; } + /// + /// Gets the IContainerServicesOperations. + /// + IContainerServicesOperations ContainerServices { get; } + + /// + /// Gets the ICloudServiceRoleInstancesOperations. + /// + ICloudServiceRoleInstancesOperations CloudServiceRoleInstances { get; } + + /// + /// Gets the ICloudServiceRolesOperations. + /// + ICloudServiceRolesOperations CloudServiceRoles { get; } + + /// + /// Gets the ICloudServicesOperations. + /// + ICloudServicesOperations CloudServices { get; } + + /// + /// Gets the ICloudServicesUpdateDomainOperations. + /// + ICloudServicesUpdateDomainOperations CloudServicesUpdateDomain { get; } + } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IContainerServicesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IContainerServicesOperations.cs new file mode 100644 index 000000000000..d8293bc2d92d --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IContainerServicesOperations.cs @@ -0,0 +1,298 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// ContainerServicesOperations operations. + /// + public partial interface IContainerServicesOperations + { + /// + /// Gets a list of container services in the specified subscription. + /// + /// + /// Gets a list of container services in the specified subscription. + /// The operation returns properties of each container service + /// including state, orchestrator, number of masters and agents, and + /// FQDNs of masters and agents. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Creates or updates a container service. + /// + /// + /// Creates or updates a container service with the specified + /// configuration of orchestrator, masters, and agents. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the container service in the specified subscription and + /// resource group. + /// + /// + /// Parameters supplied to the Create or Update a Container Service + /// operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string containerServiceName, ContainerService parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the properties of the specified container service. + /// + /// + /// Gets the properties of the specified container service in the + /// specified subscription and resource group. The operation returns + /// the properties including state, orchestrator, number of masters and + /// agents, and FQDNs of masters and agents. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the container service in the specified subscription and + /// resource group. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string resourceGroupName, string containerServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes the specified container service. + /// + /// + /// Deletes the specified container service in the specified + /// subscription and resource group. The operation does not delete + /// other resources created as part of creating a container service, + /// including storage accounts, VMs, and availability sets. All the + /// other resources created with the container service are part of the + /// same resource group and can be deleted individually. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the container service in the specified subscription and + /// resource group. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string containerServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a list of container services in the specified resource group. + /// + /// + /// Gets a list of container services in the specified subscription and + /// resource group. The operation returns properties of each container + /// service including state, orchestrator, number of masters and + /// agents, and FQDNs of masters and agents. + /// + /// + /// The name of the resource group. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Creates or updates a container service. + /// + /// + /// Creates or updates a container service with the specified + /// configuration of orchestrator, masters, and agents. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the container service in the specified subscription and + /// resource group. + /// + /// + /// Parameters supplied to the Create or Update a Container Service + /// operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string containerServiceName, ContainerService parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes the specified container service. + /// + /// + /// Deletes the specified container service in the specified + /// subscription and resource group. The operation does not delete + /// other resources created as part of creating a container service, + /// including storage accounts, VMs, and availability sets. All the + /// other resources created with the container service are part of the + /// same resource group and can be deleted individually. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the container service in the specified subscription and + /// resource group. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string containerServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a list of container services in the specified subscription. + /// + /// + /// Gets a list of container services in the specified subscription. + /// The operation returns properties of each container service + /// including state, orchestrator, number of masters and agents, and + /// FQDNs of masters and agents. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a list of container services in the specified resource group. + /// + /// + /// Gets a list of container services in the specified subscription and + /// resource group. The operation returns properties of each container + /// service including state, orchestrator, number of masters and + /// agents, and FQDNs of masters and agents. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachineImagesEdgeZoneOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachineImagesEdgeZoneOperations.cs deleted file mode 100644 index 3beead36a4a6..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachineImagesEdgeZoneOperations.cs +++ /dev/null @@ -1,197 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using System.Collections; - using System.Collections.Generic; - using System.Threading; - using System.Threading.Tasks; - - /// - /// VirtualMachineImagesEdgeZoneOperations operations. - /// - public partial interface IVirtualMachineImagesEdgeZoneOperations - { - /// - /// Gets a virtual machine image in an edge zone. - /// - /// - /// The name of a supported Azure region. - /// - /// - /// The name of the edge zone. - /// - /// - /// A valid image publisher. - /// - /// - /// A valid image publisher offer. - /// - /// - /// A valid image SKU. - /// - /// - /// A valid image SKU version. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task> GetWithHttpMessagesAsync(string location, string edgeZone, string publisherName, string offer, string skus, string version, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets a list of all virtual machine image versions for the specified - /// location, edge zone, publisher, offer, and SKU. - /// - /// - /// The name of a supported Azure region. - /// - /// - /// The name of the edge zone. - /// - /// - /// A valid image publisher. - /// - /// - /// A valid image publisher offer. - /// - /// - /// A valid image SKU. - /// - /// - /// The expand expression to apply on the operation. - /// - /// - /// An integer value specifying the number of images to return that - /// matches supplied values. - /// - /// - /// Specifies the order of the results returned. Formatted as an OData - /// query. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task>> ListWithHttpMessagesAsync(string location, string edgeZone, string publisherName, string offer, string skus, string expand = default(string), int? top = default(int?), string orderby = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets a list of virtual machine image offers for the specified - /// location, edge zone and publisher. - /// - /// - /// The name of a supported Azure region. - /// - /// - /// The name of the edge zone. - /// - /// - /// A valid image publisher. - /// - /// - /// 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>> ListOffersWithHttpMessagesAsync(string location, string edgeZone, string publisherName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets a list of virtual machine image publishers for the specified - /// Azure location and edge zone. - /// - /// - /// The name of a supported Azure region. - /// - /// - /// The name of the edge zone. - /// - /// - /// 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>> ListPublishersWithHttpMessagesAsync(string location, string edgeZone, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets a list of virtual machine image SKUs for the specified - /// location, edge zone, publisher, and offer. - /// - /// - /// The name of a supported Azure region. - /// - /// - /// The name of the edge zone. - /// - /// - /// A valid image publisher. - /// - /// - /// A valid image publisher offer. - /// - /// - /// 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>> ListSkusWithHttpMessagesAsync(string location, string edgeZone, string publisherName, string offer, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachineScaleSetVMsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachineScaleSetVMsOperations.cs index 7d01ea2808ed..24a0c0a583d6 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachineScaleSetVMsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachineScaleSetVMsOperations.cs @@ -155,10 +155,6 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// The instance ID of the virtual machine. /// - /// - /// Optional parameter to force delete a virtual machine from a VM - /// scale set. (Feature in Preview) - /// /// /// The headers that will be added to request. /// @@ -171,7 +167,7 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// Thrown when a required parameter is null /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets a virtual machine from a VM scale set. /// @@ -621,10 +617,6 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// The instance ID of the virtual machine. /// - /// - /// Optional parameter to force delete a virtual machine from a VM - /// scale set. (Feature in Preview) - /// /// /// The headers that will be added to request. /// @@ -637,7 +629,7 @@ public partial interface IVirtualMachineScaleSetVMsOperations /// /// Thrown when a required parameter is null /// - Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Power off (stop) a virtual machine in a VM scale set. Note that /// resources are still attached and you are getting charged for the diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachineScaleSetsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachineScaleSetsOperations.cs index 6af7aab40f00..9ca46d37e2fc 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachineScaleSetsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachineScaleSetsOperations.cs @@ -23,30 +23,6 @@ namespace Microsoft.Azure.Management.Compute /// public partial interface IVirtualMachineScaleSetsOperations { - /// - /// Gets all the VM scale sets under the specified subscription for the - /// specified location. - /// - /// - /// The location for which VM scale sets under the subscription are - /// queried. - /// - /// - /// 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>> ListByLocationWithHttpMessagesAsync(string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Create or update a VM scale set. /// @@ -112,10 +88,6 @@ public partial interface IVirtualMachineScaleSetsOperations /// /// The name of the VM scale set. /// - /// - /// Optional parameter to force delete a VM scale set. (Feature in - /// Preview) - /// /// /// The headers that will be added to request. /// @@ -128,7 +100,7 @@ public partial interface IVirtualMachineScaleSetsOperations /// /// Thrown when a required parameter is null /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Display information about a virtual machine scale set. /// @@ -196,10 +168,6 @@ public partial interface IVirtualMachineScaleSetsOperations /// /// The virtual machine scale set instance ids. /// - /// - /// Optional parameter to force delete virtual machines from the VM - /// scale set. (Feature in Preview) - /// /// /// The headers that will be added to request. /// @@ -212,7 +180,7 @@ public partial interface IVirtualMachineScaleSetsOperations /// /// Thrown when a required parameter is null /// - Task DeleteInstancesWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteInstancesWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets the status of a VM scale set instance. /// @@ -714,10 +682,6 @@ public partial interface IVirtualMachineScaleSetsOperations /// /// The name of the VM scale set. /// - /// - /// Optional parameter to force delete a VM scale set. (Feature in - /// Preview) - /// /// /// The headers that will be added to request. /// @@ -730,7 +694,7 @@ public partial interface IVirtualMachineScaleSetsOperations /// /// Thrown when a required parameter is null /// - Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deallocates specific virtual machines in a VM scale set. Shuts down /// the virtual machines and releases the compute resources. You are @@ -773,10 +737,6 @@ public partial interface IVirtualMachineScaleSetsOperations /// /// The virtual machine scale set instance ids. /// - /// - /// Optional parameter to force delete virtual machines from the VM - /// scale set. (Feature in Preview) - /// /// /// The headers that will be added to request. /// @@ -789,7 +749,7 @@ public partial interface IVirtualMachineScaleSetsOperations /// /// Thrown when a required parameter is null /// - Task BeginDeleteInstancesWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task BeginDeleteInstancesWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Power off (stop) one or more virtual machines in a VM scale set. /// Note that resources are still attached and you are getting charged @@ -1047,29 +1007,6 @@ public partial interface IVirtualMachineScaleSetsOperations /// Task BeginSetOrchestrationServiceStateWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, OrchestrationServiceStateInput parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets all the VM scale sets under the specified subscription for the - /// specified location. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task>> ListByLocationNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// /// Gets a list of all VM scale sets under a resource group. /// /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachinesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachinesOperations.cs index 818ce5adb86a..bf1285315cf8 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachinesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IVirtualMachinesOperations.cs @@ -615,34 +615,6 @@ public partial interface IVirtualMachinesOperations /// Task> AssessPatchesWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Installs patches on the VM. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - /// - /// Input for InstallPatches as directly received by the API - /// - /// - /// 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> InstallPatchesWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineInstallPatchesParameters installPatchesInput, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// /// Run command on the VM. /// /// @@ -1024,34 +996,6 @@ public partial interface IVirtualMachinesOperations /// Task> BeginAssessPatchesWithHttpMessagesAsync(string resourceGroupName, string vmName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Installs patches on the VM. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - /// - /// Input for InstallPatches as directly received by the API - /// - /// - /// 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> BeginInstallPatchesWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineInstallPatchesParameters installPatchesInput, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// /// Run command on the VM. /// /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ImagesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ImagesOperations.cs index 9ccac6de301c..39a12de9721a 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ImagesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ImagesOperations.cs @@ -169,7 +169,7 @@ internal ImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -361,7 +361,7 @@ internal ImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -541,7 +541,7 @@ internal ImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -742,7 +742,7 @@ internal ImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -968,7 +968,7 @@ internal ImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1184,7 +1184,7 @@ internal ImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/LogAnalyticsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/LogAnalyticsOperations.cs index 90df713f2e74..b31614b702f2 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/LogAnalyticsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/LogAnalyticsOperations.cs @@ -152,7 +152,7 @@ internal LogAnalyticsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -363,7 +363,7 @@ internal LogAnalyticsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/AvailablePatchSummary.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/AvailablePatchSummary.cs index 322c7909b592..a3968ca58762 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/AvailablePatchSummary.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/AvailablePatchSummary.cs @@ -32,10 +32,9 @@ public AvailablePatchSummary() /// /// The overall success or failure status of the /// operation. It remains "InProgress" until the operation completes. - /// At that point it will become "Unknown", "Failed", "Succeeded", or - /// "CompletedWithWarnings.". Possible values include: 'Unknown', - /// 'InProgress', 'Failed', 'Succeeded', - /// 'CompletedWithWarnings' + /// At that point it will become "Failed", "Succeeded", or + /// "CompletedWithWarnings.". Possible values include: 'InProgress', + /// 'Failed', 'Succeeded', 'CompletedWithWarnings' /// The activity ID of the operation /// that produced this result. It is used to correlate across CRP and /// extension logs. @@ -75,9 +74,9 @@ public AvailablePatchSummary() /// /// Gets the overall success or failure status of the operation. It /// remains "InProgress" until the operation completes. At that point - /// it will become "Unknown", "Failed", "Succeeded", or - /// "CompletedWithWarnings.". Possible values include: 'Unknown', - /// 'InProgress', 'Failed', 'Succeeded', 'CompletedWithWarnings' + /// it will become "Failed", "Succeeded", or "CompletedWithWarnings.". + /// Possible values include: 'InProgress', 'Failed', 'Succeeded', + /// 'CompletedWithWarnings' /// [JsonProperty(PropertyName = "status")] public string Status { get; private set; } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudService.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudService.cs new file mode 100644 index 000000000000..2332c9c2f9f2 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudService.cs @@ -0,0 +1,106 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Describes the cloud service. + /// + public partial class CloudService : IResource + { + /// + /// Initializes a new instance of the CloudService class. + /// + public CloudService() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CloudService class. + /// + /// Resource location. + /// Resource Id. + /// Resource name. + /// Resource type. + /// Resource tags. + public CloudService(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), CloudServiceProperties properties = default(CloudServiceProperties)) + { + Id = id; + Name = name; + Type = type; + Location = location; + Tags = tags; + Properties = properties; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets resource Id. + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; private set; } + + /// + /// Gets resource name. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// + /// Gets resource type. + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; private set; } + + /// + /// Gets or sets resource location. + /// + [JsonProperty(PropertyName = "location")] + public string Location { get; set; } + + /// + /// Gets or sets resource tags. + /// + [JsonProperty(PropertyName = "tags")] + public IDictionary Tags { get; set; } + + /// + /// + [JsonProperty(PropertyName = "properties")] + public CloudServiceProperties Properties { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Location"); + } + } + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceExtensionProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceExtensionProfile.cs new file mode 100644 index 000000000000..4458559f7cbc --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceExtensionProfile.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.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Describes a cloud service extension profile. + /// + public partial class CloudServiceExtensionProfile + { + /// + /// Initializes a new instance of the CloudServiceExtensionProfile + /// class. + /// + public CloudServiceExtensionProfile() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CloudServiceExtensionProfile + /// class. + /// + /// List of extensions for the cloud + /// service. + public CloudServiceExtensionProfile(IList extensions = default(IList)) + { + Extensions = extensions; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets list of extensions for the cloud service. + /// + [JsonProperty(PropertyName = "extensions")] + public IList Extensions { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceExtensionProperties.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceExtensionProperties.cs new file mode 100644 index 000000000000..5fbf4d36b05d --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceExtensionProperties.cs @@ -0,0 +1,179 @@ +// +// 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; + + /// + /// Extension Properties. + /// + public partial class CloudServiceExtensionProperties + { + /// + /// Initializes a new instance of the CloudServiceExtensionProperties + /// class. + /// + public CloudServiceExtensionProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CloudServiceExtensionProperties + /// class. + /// + /// The name of the extension handler + /// publisher. + /// Specifies the type of the extension. + /// Specifies the version of the + /// extension. Specifies the version of the extension. If this element + /// is not specified or an asterisk (*) is used as the value, the + /// latest version of the extension is used. If the value is specified + /// with a major version number and an asterisk as the minor version + /// number (X.), the latest minor version of the specified major + /// version is selected. If a major version number and a minor version + /// number are specified (X.Y), the specific extension version is + /// selected. If a version is specified, an auto-upgrade is performed + /// on the role instance. + /// Explicitly specify whether + /// platform can automatically upgrade typeHandlerVersion to higher + /// minor versions when they become available. + /// Public settings for the extension. For JSON + /// extensions, this is the JSON settings for the extension. For XML + /// Extension (like RDP), this is the XML setting for the + /// extension. + /// Protected settings for the + /// extension which are encrypted before sent to the role + /// instance. + /// Tag to force apply the provided public + /// and protected settings. + /// Changing the tag value allows for re-running the extension without + /// changing any of the public or protected settings. + /// If forceUpdateTag is not changed, updates to public or protected + /// settings would still be applied by the handler. + /// If neither forceUpdateTag nor any of public or protected settings + /// change, extension would flow to the role instance with the same + /// sequence-number, and + /// it is up to handler implementation whether to re-run it or + /// not + /// The provisioning state, which only + /// appears in the response. + /// Optional list of roles to apply this + /// extension. If property is not specified or '*' is specified, + /// extension is applied to all roles in the cloud service. + public CloudServiceExtensionProperties(string publisher = default(string), string type = default(string), string typeHandlerVersion = default(string), bool? autoUpgradeMinorVersion = default(bool?), string settings = default(string), string protectedSettings = default(string), CloudServiceVaultAndSecretReference protectedSettingsFromKeyVault = default(CloudServiceVaultAndSecretReference), string forceUpdateTag = default(string), string provisioningState = default(string), IList rolesAppliedTo = default(IList)) + { + Publisher = publisher; + Type = type; + TypeHandlerVersion = typeHandlerVersion; + AutoUpgradeMinorVersion = autoUpgradeMinorVersion; + Settings = settings; + ProtectedSettings = protectedSettings; + ProtectedSettingsFromKeyVault = protectedSettingsFromKeyVault; + ForceUpdateTag = forceUpdateTag; + ProvisioningState = provisioningState; + RolesAppliedTo = rolesAppliedTo; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the name of the extension handler publisher. + /// + [JsonProperty(PropertyName = "publisher")] + public string Publisher { get; set; } + + /// + /// Gets or sets specifies the type of the extension. + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; set; } + + /// + /// Gets or sets specifies the version of the extension. Specifies the + /// version of the extension. If this element is not specified or an + /// asterisk (*) is used as the value, the latest version of the + /// extension is used. If the value is specified with a major version + /// number and an asterisk as the minor version number (X.), the latest + /// minor version of the specified major version is selected. If a + /// major version number and a minor version number are specified + /// (X.Y), the specific extension version is selected. If a version is + /// specified, an auto-upgrade is performed on the role instance. + /// + [JsonProperty(PropertyName = "typeHandlerVersion")] + public string TypeHandlerVersion { get; set; } + + /// + /// Gets or sets explicitly specify whether platform can automatically + /// upgrade typeHandlerVersion to higher minor versions when they + /// become available. + /// + [JsonProperty(PropertyName = "autoUpgradeMinorVersion")] + public bool? AutoUpgradeMinorVersion { get; set; } + + /// + /// Gets or sets public settings for the extension. For JSON + /// extensions, this is the JSON settings for the extension. For XML + /// Extension (like RDP), this is the XML setting for the extension. + /// + [JsonProperty(PropertyName = "settings")] + public string Settings { get; set; } + + /// + /// Gets or sets protected settings for the extension which are + /// encrypted before sent to the role instance. + /// + [JsonProperty(PropertyName = "protectedSettings")] + public string ProtectedSettings { get; set; } + + /// + /// + [JsonProperty(PropertyName = "protectedSettingsFromKeyVault")] + public CloudServiceVaultAndSecretReference ProtectedSettingsFromKeyVault { get; set; } + + /// + /// Gets or sets tag to force apply the provided public and protected + /// settings. + /// Changing the tag value allows for re-running the extension without + /// changing any of the public or protected settings. + /// If forceUpdateTag is not changed, updates to public or protected + /// settings would still be applied by the handler. + /// If neither forceUpdateTag nor any of public or protected settings + /// change, extension would flow to the role instance with the same + /// sequence-number, and + /// it is up to handler implementation whether to re-run it or not + /// + [JsonProperty(PropertyName = "forceUpdateTag")] + public string ForceUpdateTag { get; set; } + + /// + /// Gets the provisioning state, which only appears in the response. + /// + [JsonProperty(PropertyName = "provisioningState")] + public string ProvisioningState { get; private set; } + + /// + /// Gets or sets optional list of roles to apply this extension. If + /// property is not specified or '*' is specified, extension is applied + /// to all roles in the cloud service. + /// + [JsonProperty(PropertyName = "rolesAppliedTo")] + public IList RolesAppliedTo { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceInstanceView.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceInstanceView.cs new file mode 100644 index 000000000000..030b6de7ce0b --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceInstanceView.cs @@ -0,0 +1,67 @@ +// +// 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; + + /// + /// InstanceView of CloudService as a whole + /// + public partial class CloudServiceInstanceView + { + /// + /// Initializes a new instance of the CloudServiceInstanceView class. + /// + public CloudServiceInstanceView() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CloudServiceInstanceView class. + /// + /// The version of the SDK that was used to + /// generate the package for the cloud service. + public CloudServiceInstanceView(InstanceViewStatusesSummary roleInstance = default(InstanceViewStatusesSummary), string sdkVersion = default(string), IList statuses = default(IList)) + { + RoleInstance = roleInstance; + SdkVersion = sdkVersion; + Statuses = statuses; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// + [JsonProperty(PropertyName = "roleInstance")] + public InstanceViewStatusesSummary RoleInstance { get; set; } + + /// + /// Gets the version of the SDK that was used to generate the package + /// for the cloud service. + /// + [JsonProperty(PropertyName = "sdkVersion")] + public string SdkVersion { get; private set; } + + /// + /// + [JsonProperty(PropertyName = "statuses")] + public IList Statuses { get; private set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceNetworkProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceNetworkProfile.cs new file mode 100644 index 000000000000..e3de856fe0bf --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceNetworkProfile.cs @@ -0,0 +1,61 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Network Profile for the cloud service. + /// + public partial class CloudServiceNetworkProfile + { + /// + /// Initializes a new instance of the CloudServiceNetworkProfile class. + /// + public CloudServiceNetworkProfile() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CloudServiceNetworkProfile class. + /// + /// The list of load balancer + /// configurations for the cloud service. + public CloudServiceNetworkProfile(IList loadBalancerConfigurations = default(IList), SubResource swappableCloudService = default(SubResource)) + { + LoadBalancerConfigurations = loadBalancerConfigurations; + SwappableCloudService = swappableCloudService; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the list of load balancer configurations for the cloud + /// service. + /// + [JsonProperty(PropertyName = "loadBalancerConfigurations")] + public IList LoadBalancerConfigurations { get; set; } + + /// + /// + [JsonProperty(PropertyName = "swappableCloudService")] + public SubResource SwappableCloudService { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceOsProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceOsProfile.cs new file mode 100644 index 000000000000..012e60e27a47 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceOsProfile.cs @@ -0,0 +1,55 @@ +// +// 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; + + /// + /// Describes the OS profile for the cloud service. + /// + public partial class CloudServiceOsProfile + { + /// + /// Initializes a new instance of the CloudServiceOsProfile class. + /// + public CloudServiceOsProfile() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CloudServiceOsProfile class. + /// + /// Specifies set of certificates that should be + /// installed onto the role instances. + public CloudServiceOsProfile(IList secrets = default(IList)) + { + Secrets = secrets; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets specifies set of certificates that should be installed + /// onto the role instances. + /// + [JsonProperty(PropertyName = "secrets")] + public IList Secrets { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceProperties.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceProperties.cs new file mode 100644 index 000000000000..b44b5b9753a0 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceProperties.cs @@ -0,0 +1,157 @@ +// +// 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; + + /// + /// Cloud service properties + /// + public partial class CloudServiceProperties + { + /// + /// Initializes a new instance of the CloudServiceProperties class. + /// + public CloudServiceProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CloudServiceProperties class. + /// + /// Specifies a URL that refers to the + /// location of the service package in the Blob service. The service + /// package URL can be Shared Access Signature (SAS) URI from any + /// storage account. + /// This is a write-only property and is not returned in GET + /// calls. + /// Specifies the XML service configuration + /// (.cscfg) for the cloud service. + /// Specifies a URL that refers to the + /// location of the service configuration in the Blob service. The + /// service package URL can be Shared Access Signature (SAS) URI from + /// any storage account. + /// This is a write-only property and is not returned in GET + /// calls. + /// (Optional) Indicates whether to + /// start the cloud service immediately after it is created. The + /// default value is `true`. + /// If false, the service model is still deployed, but the code is not + /// run immediately. Instead, the service is PoweredOff until you call + /// Start, at which time the service will be started. A deployed + /// service still incurs charges, even if it is poweredoff. + /// Possible values include: 'Auto', + /// 'Manual', 'Simultaneous' + /// The provisioning state, which only + /// appears in the response. + /// The unique identifier for the cloud + /// service. + public CloudServiceProperties(string packageUrl = default(string), string configuration = default(string), string configurationUrl = default(string), bool? startCloudService = default(bool?), string upgradeMode = default(string), CloudServiceRoleProfile roleProfile = default(CloudServiceRoleProfile), CloudServiceOsProfile osProfile = default(CloudServiceOsProfile), CloudServiceNetworkProfile networkProfile = default(CloudServiceNetworkProfile), CloudServiceExtensionProfile extensionProfile = default(CloudServiceExtensionProfile), string provisioningState = default(string), string uniqueId = default(string)) + { + PackageUrl = packageUrl; + Configuration = configuration; + ConfigurationUrl = configurationUrl; + StartCloudService = startCloudService; + UpgradeMode = upgradeMode; + RoleProfile = roleProfile; + OsProfile = osProfile; + NetworkProfile = networkProfile; + ExtensionProfile = extensionProfile; + ProvisioningState = provisioningState; + UniqueId = uniqueId; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets specifies a URL that refers to the location of the + /// service package in the Blob service. The service package URL can be + /// Shared Access Signature (SAS) URI from any storage account. + /// This is a write-only property and is not returned in GET calls. + /// + [JsonProperty(PropertyName = "packageUrl")] + public string PackageUrl { get; set; } + + /// + /// Gets or sets specifies the XML service configuration (.cscfg) for + /// the cloud service. + /// + [JsonProperty(PropertyName = "configuration")] + public string Configuration { get; set; } + + /// + /// Gets or sets specifies a URL that refers to the location of the + /// service configuration in the Blob service. The service package URL + /// can be Shared Access Signature (SAS) URI from any storage account. + /// This is a write-only property and is not returned in GET calls. + /// + [JsonProperty(PropertyName = "configurationUrl")] + public string ConfigurationUrl { get; set; } + + /// + /// Gets or sets (Optional) Indicates whether to start the cloud + /// service immediately after it is created. The default value is + /// `true`. + /// If false, the service model is still deployed, but the code is not + /// run immediately. Instead, the service is PoweredOff until you call + /// Start, at which time the service will be started. A deployed + /// service still incurs charges, even if it is poweredoff. + /// + [JsonProperty(PropertyName = "startCloudService")] + public bool? StartCloudService { get; set; } + + /// + /// Gets or sets possible values include: 'Auto', 'Manual', + /// 'Simultaneous' + /// + [JsonProperty(PropertyName = "upgradeMode")] + public string UpgradeMode { get; set; } + + /// + /// + [JsonProperty(PropertyName = "roleProfile")] + public CloudServiceRoleProfile RoleProfile { get; set; } + + /// + /// + [JsonProperty(PropertyName = "osProfile")] + public CloudServiceOsProfile OsProfile { get; set; } + + /// + /// + [JsonProperty(PropertyName = "networkProfile")] + public CloudServiceNetworkProfile NetworkProfile { get; set; } + + /// + /// + [JsonProperty(PropertyName = "extensionProfile")] + public CloudServiceExtensionProfile ExtensionProfile { get; set; } + + /// + /// Gets the provisioning state, which only appears in the response. + /// + [JsonProperty(PropertyName = "provisioningState")] + public string ProvisioningState { get; private set; } + + /// + /// Gets the unique identifier for the cloud service. + /// + [JsonProperty(PropertyName = "uniqueId")] + public string UniqueId { get; private set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRole.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRole.cs new file mode 100644 index 000000000000..ed30d6cb8090 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRole.cs @@ -0,0 +1,87 @@ +// +// 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; + + /// + /// Describes a role of the cloud service. + /// + public partial class CloudServiceRole + { + /// + /// Initializes a new instance of the CloudServiceRole class. + /// + public CloudServiceRole() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CloudServiceRole class. + /// + /// Resource id + /// Resource name + /// Resource type + /// Resource location + public CloudServiceRole(string id = default(string), string name = default(string), string type = default(string), string location = default(string), CloudServiceRoleSku sku = default(CloudServiceRoleSku), CloudServiceRoleProperties properties = default(CloudServiceRoleProperties)) + { + Id = id; + Name = name; + Type = type; + Location = location; + Sku = sku; + Properties = properties; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets resource id + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; private set; } + + /// + /// Gets resource name + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// + /// Gets resource type + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; private set; } + + /// + /// Gets resource location + /// + [JsonProperty(PropertyName = "location")] + public string Location { get; private set; } + + /// + /// + [JsonProperty(PropertyName = "sku")] + public CloudServiceRoleSku Sku { get; set; } + + /// + /// + [JsonProperty(PropertyName = "properties")] + public CloudServiceRoleProperties Properties { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleProfile.cs new file mode 100644 index 000000000000..6ec87974a474 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleProfile.cs @@ -0,0 +1,53 @@ +// +// 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; + + /// + /// Describes the role profile for the cloud service. + /// + public partial class CloudServiceRoleProfile + { + /// + /// Initializes a new instance of the CloudServiceRoleProfile class. + /// + public CloudServiceRoleProfile() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CloudServiceRoleProfile class. + /// + /// List of roles for the cloud service. + public CloudServiceRoleProfile(IList roles = default(IList)) + { + Roles = roles; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets list of roles for the cloud service. + /// + [JsonProperty(PropertyName = "roles")] + public IList Roles { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineImageFeature.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleProfileProperties.cs similarity index 56% rename from sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineImageFeature.cs rename to sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleProfileProperties.cs index 5b38dfe6711a..47db1e0408aa 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineImageFeature.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleProfileProperties.cs @@ -14,28 +14,28 @@ namespace Microsoft.Azure.Management.Compute.Models using System.Linq; /// - /// Specifies additional capabilities supported by the image + /// Describes the role properties. /// - public partial class VirtualMachineImageFeature + public partial class CloudServiceRoleProfileProperties { /// - /// Initializes a new instance of the VirtualMachineImageFeature class. + /// Initializes a new instance of the CloudServiceRoleProfileProperties + /// class. /// - public VirtualMachineImageFeature() + public CloudServiceRoleProfileProperties() { CustomInit(); } /// - /// Initializes a new instance of the VirtualMachineImageFeature class. + /// Initializes a new instance of the CloudServiceRoleProfileProperties + /// class. /// - /// The name of the feature. - /// The corresponding value for the - /// feature. - public VirtualMachineImageFeature(string name = default(string), string value = default(string)) + /// Resource name. + public CloudServiceRoleProfileProperties(string name = default(string), CloudServiceRoleSku sku = default(CloudServiceRoleSku)) { Name = name; - Value = value; + Sku = sku; CustomInit(); } @@ -45,16 +45,15 @@ public VirtualMachineImageFeature() partial void CustomInit(); /// - /// Gets or sets the name of the feature. + /// Gets or sets resource name. /// [JsonProperty(PropertyName = "name")] public string Name { get; set; } /// - /// Gets or sets the corresponding value for the feature. /// - [JsonProperty(PropertyName = "value")] - public string Value { get; set; } + [JsonProperty(PropertyName = "sku")] + public CloudServiceRoleSku Sku { get; set; } } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleProperties.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleProperties.cs new file mode 100644 index 000000000000..48d0c85661ff --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleProperties.cs @@ -0,0 +1,50 @@ +// +// 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; + + public partial class CloudServiceRoleProperties + { + /// + /// Initializes a new instance of the CloudServiceRoleProperties class. + /// + public CloudServiceRoleProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CloudServiceRoleProperties class. + /// + /// Specifies the ID which uniquely identifies a + /// cloud service role. + public CloudServiceRoleProperties(string uniqueId = default(string)) + { + UniqueId = uniqueId; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets specifies the ID which uniquely identifies a cloud service + /// role. + /// + [JsonProperty(PropertyName = "uniqueId")] + public string UniqueId { get; private set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleSku.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleSku.cs new file mode 100644 index 000000000000..b0bbae8e08a5 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleSku.cs @@ -0,0 +1,78 @@ +// +// 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; + + /// + /// Describes the cloud service role sku. + /// + public partial class CloudServiceRoleSku + { + /// + /// Initializes a new instance of the CloudServiceRoleSku class. + /// + public CloudServiceRoleSku() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CloudServiceRoleSku class. + /// + /// The sku name. NOTE: If the new SKU is not + /// supported on the hardware the cloud service is currently on, you + /// need to delete and recreate the cloud service or move back to the + /// old sku. + /// Specifies the tier of the cloud service. + /// Possible Values are <br /><br /> **Standard** <br + /// /><br /> **Basic** + /// Specifies the number of role instances in + /// the cloud service. + public CloudServiceRoleSku(string name = default(string), string tier = default(string), long? capacity = default(long?)) + { + Name = name; + Tier = tier; + Capacity = capacity; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the sku name. NOTE: If the new SKU is not supported on + /// the hardware the cloud service is currently on, you need to delete + /// and recreate the cloud service or move back to the old sku. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets specifies the tier of the cloud service. Possible + /// Values are &lt;br /&gt;&lt;br /&gt; **Standard** + /// &lt;br /&gt;&lt;br /&gt; **Basic** + /// + [JsonProperty(PropertyName = "tier")] + public string Tier { get; set; } + + /// + /// Gets or sets specifies the number of role instances in the cloud + /// service. + /// + [JsonProperty(PropertyName = "capacity")] + public long? Capacity { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceUpdate.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceUpdate.cs new file mode 100644 index 000000000000..6d1c6f76be04 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceUpdate.cs @@ -0,0 +1,50 @@ +// +// 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; + + public partial class CloudServiceUpdate + { + /// + /// Initializes a new instance of the CloudServiceUpdate class. + /// + public CloudServiceUpdate() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CloudServiceUpdate class. + /// + /// Resource tags + public CloudServiceUpdate(IDictionary tags = default(IDictionary)) + { + Tags = tags; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets resource tags + /// + [JsonProperty(PropertyName = "tags")] + public IDictionary Tags { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LinuxVMGuestPatchMode.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceUpgradeMode.cs similarity index 64% rename from sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LinuxVMGuestPatchMode.cs rename to sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceUpgradeMode.cs index 403817291610..6d25f3f7cd7d 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LinuxVMGuestPatchMode.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceUpgradeMode.cs @@ -12,11 +12,12 @@ namespace Microsoft.Azure.Management.Compute.Models { /// - /// Defines values for LinuxVMGuestPatchMode. + /// Defines values for CloudServiceUpgradeMode. /// - public static class LinuxVMGuestPatchMode + public static class CloudServiceUpgradeMode { - public const string ImageDefault = "ImageDefault"; - public const string AutomaticByPlatform = "AutomaticByPlatform"; + public const string Auto = "Auto"; + public const string Manual = "Manual"; + public const string Simultaneous = "Simultaneous"; } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceVaultAndSecretReference.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceVaultAndSecretReference.cs new file mode 100644 index 000000000000..13461382f05c --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceVaultAndSecretReference.cs @@ -0,0 +1,54 @@ +// +// 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; + + public partial class CloudServiceVaultAndSecretReference + { + /// + /// Initializes a new instance of the + /// CloudServiceVaultAndSecretReference class. + /// + public CloudServiceVaultAndSecretReference() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// CloudServiceVaultAndSecretReference class. + /// + public CloudServiceVaultAndSecretReference(SubResource sourceVault = default(SubResource), string secretUrl = default(string)) + { + SourceVault = sourceVault; + SecretUrl = secretUrl; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// + [JsonProperty(PropertyName = "sourceVault")] + public SubResource SourceVault { get; set; } + + /// + /// + [JsonProperty(PropertyName = "secretUrl")] + public string SecretUrl { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceVaultCertificate.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceVaultCertificate.cs new file mode 100644 index 000000000000..d5643600aa3c --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceVaultCertificate.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; + + /// + /// Describes a single certificate reference in a Key Vault, and where the + /// certificate should reside on the role instance. + /// + public partial class CloudServiceVaultCertificate + { + /// + /// Initializes a new instance of the CloudServiceVaultCertificate + /// class. + /// + public CloudServiceVaultCertificate() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CloudServiceVaultCertificate + /// class. + /// + /// This is the URL of a certificate that + /// has been uploaded to Key Vault as a secret. + public CloudServiceVaultCertificate(string certificateUrl = default(string)) + { + CertificateUrl = certificateUrl; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets this is the URL of a certificate that has been + /// uploaded to Key Vault as a secret. + /// + [JsonProperty(PropertyName = "certificateUrl")] + public string CertificateUrl { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceVaultSecretGroup.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceVaultSecretGroup.cs new file mode 100644 index 000000000000..38b9d2224c25 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceVaultSecretGroup.cs @@ -0,0 +1,67 @@ +// +// 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; + + /// + /// Describes a set of certificates which are all in the same Key Vault. + /// + public partial class CloudServiceVaultSecretGroup + { + /// + /// Initializes a new instance of the CloudServiceVaultSecretGroup + /// class. + /// + public CloudServiceVaultSecretGroup() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CloudServiceVaultSecretGroup + /// class. + /// + /// The relative URL of the Key Vault + /// containing all of the certificates in VaultCertificates. + /// The list of key vault references in + /// SourceVault which contain certificates. + public CloudServiceVaultSecretGroup(SubResource sourceVault = default(SubResource), IList vaultCertificates = default(IList)) + { + SourceVault = sourceVault; + VaultCertificates = vaultCertificates; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the relative URL of the Key Vault containing all of + /// the certificates in VaultCertificates. + /// + [JsonProperty(PropertyName = "sourceVault")] + public SubResource SourceVault { get; set; } + + /// + /// Gets or sets the list of key vault references in SourceVault which + /// contain certificates. + /// + [JsonProperty(PropertyName = "vaultCertificates")] + public IList VaultCertificates { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerService.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerService.cs new file mode 100644 index 000000000000..e762dad4d1f7 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerService.cs @@ -0,0 +1,192 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Container service. + /// + [Rest.Serialization.JsonTransformation] + public partial class ContainerService : Resource + { + /// + /// Initializes a new instance of the ContainerService class. + /// + public ContainerService() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ContainerService class. + /// + /// Resource location + /// Properties of master agents. + /// Properties of the agent + /// pool. + /// Properties of Linux VMs. + /// Resource Id + /// Resource name + /// Resource type + /// Resource tags + /// the current deployment or + /// provisioning state, which only appears in the response. + /// Properties of the + /// orchestrator. + /// Properties for custom clusters. + /// Properties for cluster + /// service principals. + /// Properties of Windows VMs. + /// Properties of the diagnostic + /// agent. + public ContainerService(string location, ContainerServiceMasterProfile masterProfile, IList agentPoolProfiles, ContainerServiceLinuxProfile linuxProfile, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string provisioningState = default(string), ContainerServiceOrchestratorProfile orchestratorProfile = default(ContainerServiceOrchestratorProfile), ContainerServiceCustomProfile customProfile = default(ContainerServiceCustomProfile), ContainerServiceServicePrincipalProfile servicePrincipalProfile = default(ContainerServiceServicePrincipalProfile), ContainerServiceWindowsProfile windowsProfile = default(ContainerServiceWindowsProfile), ContainerServiceDiagnosticsProfile diagnosticsProfile = default(ContainerServiceDiagnosticsProfile)) + : base(location, id, name, type, tags) + { + ProvisioningState = provisioningState; + OrchestratorProfile = orchestratorProfile; + CustomProfile = customProfile; + ServicePrincipalProfile = servicePrincipalProfile; + MasterProfile = masterProfile; + AgentPoolProfiles = agentPoolProfiles; + WindowsProfile = windowsProfile; + LinuxProfile = linuxProfile; + DiagnosticsProfile = diagnosticsProfile; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the current deployment or provisioning state, which only + /// appears in the response. + /// + [JsonProperty(PropertyName = "properties.provisioningState")] + public string ProvisioningState { get; private set; } + + /// + /// Gets or sets properties of the orchestrator. + /// + [JsonProperty(PropertyName = "properties.orchestratorProfile")] + public ContainerServiceOrchestratorProfile OrchestratorProfile { get; set; } + + /// + /// Gets or sets properties for custom clusters. + /// + [JsonProperty(PropertyName = "properties.customProfile")] + public ContainerServiceCustomProfile CustomProfile { get; set; } + + /// + /// Gets or sets properties for cluster service principals. + /// + [JsonProperty(PropertyName = "properties.servicePrincipalProfile")] + public ContainerServiceServicePrincipalProfile ServicePrincipalProfile { get; set; } + + /// + /// Gets or sets properties of master agents. + /// + [JsonProperty(PropertyName = "properties.masterProfile")] + public ContainerServiceMasterProfile MasterProfile { get; set; } + + /// + /// Gets or sets properties of the agent pool. + /// + [JsonProperty(PropertyName = "properties.agentPoolProfiles")] + public IList AgentPoolProfiles { get; set; } + + /// + /// Gets or sets properties of Windows VMs. + /// + [JsonProperty(PropertyName = "properties.windowsProfile")] + public ContainerServiceWindowsProfile WindowsProfile { get; set; } + + /// + /// Gets or sets properties of Linux VMs. + /// + [JsonProperty(PropertyName = "properties.linuxProfile")] + public ContainerServiceLinuxProfile LinuxProfile { get; set; } + + /// + /// Gets or sets properties of the diagnostic agent. + /// + [JsonProperty(PropertyName = "properties.diagnosticsProfile")] + public ContainerServiceDiagnosticsProfile DiagnosticsProfile { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + if (MasterProfile == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "MasterProfile"); + } + if (AgentPoolProfiles == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "AgentPoolProfiles"); + } + if (LinuxProfile == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "LinuxProfile"); + } + if (OrchestratorProfile != null) + { + OrchestratorProfile.Validate(); + } + if (CustomProfile != null) + { + CustomProfile.Validate(); + } + if (ServicePrincipalProfile != null) + { + ServicePrincipalProfile.Validate(); + } + if (MasterProfile != null) + { + MasterProfile.Validate(); + } + if (AgentPoolProfiles != null) + { + foreach (var element in AgentPoolProfiles) + { + if (element != null) + { + element.Validate(); + } + } + } + if (WindowsProfile != null) + { + WindowsProfile.Validate(); + } + if (LinuxProfile != null) + { + LinuxProfile.Validate(); + } + if (DiagnosticsProfile != null) + { + DiagnosticsProfile.Validate(); + } + } + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceAgentPoolProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceAgentPoolProfile.cs new file mode 100644 index 000000000000..df3842392e84 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceAgentPoolProfile.cs @@ -0,0 +1,149 @@ +// +// 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; + + /// + /// Profile for the container service agent pool. + /// + public partial class ContainerServiceAgentPoolProfile + { + /// + /// Initializes a new instance of the ContainerServiceAgentPoolProfile + /// class. + /// + public ContainerServiceAgentPoolProfile() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ContainerServiceAgentPoolProfile + /// class. + /// + /// Unique name of the agent pool profile in the + /// context of the subscription and resource group. + /// Number of agents (VMs) to host docker + /// containers. Allowed values must be in the range of 1 to 100 + /// (inclusive). The default value is 1. + /// Size of agent VMs. Possible values include: + /// 'Standard_A0', 'Standard_A1', 'Standard_A2', 'Standard_A3', + /// 'Standard_A4', 'Standard_A5', 'Standard_A6', 'Standard_A7', + /// 'Standard_A8', 'Standard_A9', 'Standard_A10', 'Standard_A11', + /// 'Standard_D1', 'Standard_D2', 'Standard_D3', 'Standard_D4', + /// 'Standard_D11', 'Standard_D12', 'Standard_D13', 'Standard_D14', + /// 'Standard_D1_v2', 'Standard_D2_v2', 'Standard_D3_v2', + /// 'Standard_D4_v2', 'Standard_D5_v2', 'Standard_D11_v2', + /// 'Standard_D12_v2', 'Standard_D13_v2', 'Standard_D14_v2', + /// 'Standard_G1', 'Standard_G2', 'Standard_G3', 'Standard_G4', + /// 'Standard_G5', 'Standard_DS1', 'Standard_DS2', 'Standard_DS3', + /// 'Standard_DS4', 'Standard_DS11', 'Standard_DS12', 'Standard_DS13', + /// 'Standard_DS14', 'Standard_GS1', 'Standard_GS2', 'Standard_GS3', + /// 'Standard_GS4', 'Standard_GS5' + /// DNS prefix to be used to create the FQDN + /// for the agent pool. + /// FQDN for the agent pool. + public ContainerServiceAgentPoolProfile(string name, int count, string vmSize, string dnsPrefix, string fqdn = default(string)) + { + Name = name; + Count = count; + VmSize = vmSize; + DnsPrefix = dnsPrefix; + Fqdn = fqdn; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets unique name of the agent pool profile in the context + /// of the subscription and resource group. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets number of agents (VMs) to host docker containers. + /// Allowed values must be in the range of 1 to 100 (inclusive). The + /// default value is 1. + /// + [JsonProperty(PropertyName = "count")] + public int Count { get; set; } + + /// + /// Gets or sets size of agent VMs. Possible values include: + /// 'Standard_A0', 'Standard_A1', 'Standard_A2', 'Standard_A3', + /// 'Standard_A4', 'Standard_A5', 'Standard_A6', 'Standard_A7', + /// 'Standard_A8', 'Standard_A9', 'Standard_A10', 'Standard_A11', + /// 'Standard_D1', 'Standard_D2', 'Standard_D3', 'Standard_D4', + /// 'Standard_D11', 'Standard_D12', 'Standard_D13', 'Standard_D14', + /// 'Standard_D1_v2', 'Standard_D2_v2', 'Standard_D3_v2', + /// 'Standard_D4_v2', 'Standard_D5_v2', 'Standard_D11_v2', + /// 'Standard_D12_v2', 'Standard_D13_v2', 'Standard_D14_v2', + /// 'Standard_G1', 'Standard_G2', 'Standard_G3', 'Standard_G4', + /// 'Standard_G5', 'Standard_DS1', 'Standard_DS2', 'Standard_DS3', + /// 'Standard_DS4', 'Standard_DS11', 'Standard_DS12', 'Standard_DS13', + /// 'Standard_DS14', 'Standard_GS1', 'Standard_GS2', 'Standard_GS3', + /// 'Standard_GS4', 'Standard_GS5' + /// + [JsonProperty(PropertyName = "vmSize")] + public string VmSize { get; set; } + + /// + /// Gets or sets DNS prefix to be used to create the FQDN for the agent + /// pool. + /// + [JsonProperty(PropertyName = "dnsPrefix")] + public string DnsPrefix { get; set; } + + /// + /// Gets FQDN for the agent pool. + /// + [JsonProperty(PropertyName = "fqdn")] + public string Fqdn { get; private set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Name"); + } + if (VmSize == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "VmSize"); + } + if (DnsPrefix == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "DnsPrefix"); + } + if (Count > 100) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "Count", 100); + } + if (Count < 1) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "Count", 1); + } + } + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceCustomProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceCustomProfile.cs new file mode 100644 index 000000000000..d732cb9bd5ec --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceCustomProfile.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 Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Properties to configure a custom container service cluster. + /// + public partial class ContainerServiceCustomProfile + { + /// + /// Initializes a new instance of the ContainerServiceCustomProfile + /// class. + /// + public ContainerServiceCustomProfile() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ContainerServiceCustomProfile + /// class. + /// + /// The name of the custom orchestrator to + /// use. + public ContainerServiceCustomProfile(string orchestrator) + { + Orchestrator = orchestrator; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the name of the custom orchestrator to use. + /// + [JsonProperty(PropertyName = "orchestrator")] + public string Orchestrator { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Orchestrator == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Orchestrator"); + } + } + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceDiagnosticsProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceDiagnosticsProfile.cs new file mode 100644 index 000000000000..9df627f026d7 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceDiagnosticsProfile.cs @@ -0,0 +1,69 @@ +// +// 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; + + public partial class ContainerServiceDiagnosticsProfile + { + /// + /// Initializes a new instance of the + /// ContainerServiceDiagnosticsProfile class. + /// + public ContainerServiceDiagnosticsProfile() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// ContainerServiceDiagnosticsProfile class. + /// + /// Profile for the container service VM + /// diagnostic agent. + public ContainerServiceDiagnosticsProfile(ContainerServiceVMDiagnostics vmDiagnostics) + { + VmDiagnostics = vmDiagnostics; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets profile for the container service VM diagnostic agent. + /// + [JsonProperty(PropertyName = "vmDiagnostics")] + public ContainerServiceVMDiagnostics VmDiagnostics { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (VmDiagnostics == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "VmDiagnostics"); + } + if (VmDiagnostics != null) + { + VmDiagnostics.Validate(); + } + } + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceLinuxProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceLinuxProfile.cs new file mode 100644 index 000000000000..0ad1e8815b92 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceLinuxProfile.cs @@ -0,0 +1,91 @@ +// +// 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; + + /// + /// Profile for Linux VMs in the container service cluster. + /// + public partial class ContainerServiceLinuxProfile + { + /// + /// Initializes a new instance of the ContainerServiceLinuxProfile + /// class. + /// + public ContainerServiceLinuxProfile() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ContainerServiceLinuxProfile + /// class. + /// + /// The administrator username to use for + /// Linux VMs. + /// The ssh key configuration for Linux VMs. + public ContainerServiceLinuxProfile(string adminUsername, ContainerServiceSshConfiguration ssh) + { + AdminUsername = adminUsername; + Ssh = ssh; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the administrator username to use for Linux VMs. + /// + [JsonProperty(PropertyName = "adminUsername")] + public string AdminUsername { get; set; } + + /// + /// Gets or sets the ssh key configuration for Linux VMs. + /// + [JsonProperty(PropertyName = "ssh")] + public ContainerServiceSshConfiguration Ssh { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (AdminUsername == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "AdminUsername"); + } + if (Ssh == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Ssh"); + } + if (AdminUsername != null) + { + if (!System.Text.RegularExpressions.Regex.IsMatch(AdminUsername, "^[a-z][a-z0-9_-]*$")) + { + throw new ValidationException(ValidationRules.Pattern, "AdminUsername", "^[a-z][a-z0-9_-]*$"); + } + } + if (Ssh != null) + { + Ssh.Validate(); + } + } + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceMasterProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceMasterProfile.cs new file mode 100644 index 000000000000..0c9539edf034 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceMasterProfile.cs @@ -0,0 +1,87 @@ +// +// 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; + + /// + /// Profile for the container service master. + /// + public partial class ContainerServiceMasterProfile + { + /// + /// Initializes a new instance of the ContainerServiceMasterProfile + /// class. + /// + public ContainerServiceMasterProfile() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ContainerServiceMasterProfile + /// class. + /// + /// DNS prefix to be used to create the FQDN + /// for master. + /// Number of masters (VMs) in the container + /// service cluster. Allowed values are 1, 3, and 5. The default value + /// is 1. + /// FQDN for the master. + public ContainerServiceMasterProfile(string dnsPrefix, int? count = default(int?), string fqdn = default(string)) + { + Count = count; + DnsPrefix = dnsPrefix; + Fqdn = fqdn; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets number of masters (VMs) in the container service + /// cluster. Allowed values are 1, 3, and 5. The default value is 1. + /// + [JsonProperty(PropertyName = "count")] + public int? Count { get; set; } + + /// + /// Gets or sets DNS prefix to be used to create the FQDN for master. + /// + [JsonProperty(PropertyName = "dnsPrefix")] + public string DnsPrefix { get; set; } + + /// + /// Gets FQDN for the master. + /// + [JsonProperty(PropertyName = "fqdn")] + public string Fqdn { get; private set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (DnsPrefix == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "DnsPrefix"); + } + } + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceOrchestratorProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceOrchestratorProfile.cs new file mode 100644 index 000000000000..169410d83efb --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceOrchestratorProfile.cs @@ -0,0 +1,67 @@ +// +// 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; + + /// + /// Profile for the container service orchestrator. + /// + public partial class ContainerServiceOrchestratorProfile + { + /// + /// Initializes a new instance of the + /// ContainerServiceOrchestratorProfile class. + /// + public ContainerServiceOrchestratorProfile() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// ContainerServiceOrchestratorProfile class. + /// + /// The orchestrator to use to manage + /// container service cluster resources. Valid values are Swarm, DCOS, + /// and Custom. Possible values include: 'Swarm', 'DCOS', 'Custom', + /// 'Kubernetes' + public ContainerServiceOrchestratorProfile(ContainerServiceOrchestratorTypes orchestratorType) + { + OrchestratorType = orchestratorType; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the orchestrator to use to manage container service + /// cluster resources. Valid values are Swarm, DCOS, and Custom. + /// Possible values include: 'Swarm', 'DCOS', 'Custom', 'Kubernetes' + /// + [JsonProperty(PropertyName = "orchestratorType")] + public ContainerServiceOrchestratorTypes OrchestratorType { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + } + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceOrchestratorTypes.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceOrchestratorTypes.cs new file mode 100644 index 000000000000..390ea4b569c1 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceOrchestratorTypes.cs @@ -0,0 +1,72 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for ContainerServiceOrchestratorTypes. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum ContainerServiceOrchestratorTypes + { + [EnumMember(Value = "Swarm")] + Swarm, + [EnumMember(Value = "DCOS")] + DCOS, + [EnumMember(Value = "Custom")] + Custom, + [EnumMember(Value = "Kubernetes")] + Kubernetes + } + internal static class ContainerServiceOrchestratorTypesEnumExtension + { + internal static string ToSerializedValue(this ContainerServiceOrchestratorTypes? value) + { + return value == null ? null : ((ContainerServiceOrchestratorTypes)value).ToSerializedValue(); + } + + internal static string ToSerializedValue(this ContainerServiceOrchestratorTypes value) + { + switch( value ) + { + case ContainerServiceOrchestratorTypes.Swarm: + return "Swarm"; + case ContainerServiceOrchestratorTypes.DCOS: + return "DCOS"; + case ContainerServiceOrchestratorTypes.Custom: + return "Custom"; + case ContainerServiceOrchestratorTypes.Kubernetes: + return "Kubernetes"; + } + return null; + } + + internal static ContainerServiceOrchestratorTypes? ParseContainerServiceOrchestratorTypes(this string value) + { + switch( value ) + { + case "Swarm": + return ContainerServiceOrchestratorTypes.Swarm; + case "DCOS": + return ContainerServiceOrchestratorTypes.DCOS; + case "Custom": + return ContainerServiceOrchestratorTypes.Custom; + case "Kubernetes": + return ContainerServiceOrchestratorTypes.Kubernetes; + } + return null; + } + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceServicePrincipalProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceServicePrincipalProfile.cs new file mode 100644 index 000000000000..f3388c2d3865 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceServicePrincipalProfile.cs @@ -0,0 +1,82 @@ +// +// 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; + + /// + /// Information about a service principal identity for the cluster to use + /// for manipulating Azure APIs. + /// + public partial class ContainerServiceServicePrincipalProfile + { + /// + /// Initializes a new instance of the + /// ContainerServiceServicePrincipalProfile class. + /// + public ContainerServiceServicePrincipalProfile() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// ContainerServiceServicePrincipalProfile class. + /// + /// The ID for the service principal. + /// The secret password associated with the + /// service principal. + public ContainerServiceServicePrincipalProfile(string clientId, string secret) + { + ClientId = clientId; + Secret = secret; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the ID for the service principal. + /// + [JsonProperty(PropertyName = "clientId")] + public string ClientId { get; set; } + + /// + /// Gets or sets the secret password associated with the service + /// principal. + /// + [JsonProperty(PropertyName = "secret")] + public string Secret { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (ClientId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ClientId"); + } + if (Secret == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Secret"); + } + } + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceSshConfiguration.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceSshConfiguration.cs new file mode 100644 index 000000000000..5d3cf56fa1ee --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceSshConfiguration.cs @@ -0,0 +1,81 @@ +// +// 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; + + /// + /// SSH configuration for Linux-based VMs running on Azure. + /// + public partial class ContainerServiceSshConfiguration + { + /// + /// Initializes a new instance of the ContainerServiceSshConfiguration + /// class. + /// + public ContainerServiceSshConfiguration() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ContainerServiceSshConfiguration + /// class. + /// + /// the list of SSH public keys used to + /// authenticate with Linux-based VMs. + public ContainerServiceSshConfiguration(IList publicKeys) + { + PublicKeys = publicKeys; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the list of SSH public keys used to authenticate with + /// Linux-based VMs. + /// + [JsonProperty(PropertyName = "publicKeys")] + public IList PublicKeys { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (PublicKeys == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "PublicKeys"); + } + if (PublicKeys != null) + { + foreach (var element in PublicKeys) + { + if (element != null) + { + element.Validate(); + } + } + } + } + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceSshPublicKey.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceSshPublicKey.cs new file mode 100644 index 000000000000..36d950106abd --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceSshPublicKey.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 Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Contains information about SSH certificate public key data. + /// + public partial class ContainerServiceSshPublicKey + { + /// + /// Initializes a new instance of the ContainerServiceSshPublicKey + /// class. + /// + public ContainerServiceSshPublicKey() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ContainerServiceSshPublicKey + /// class. + /// + /// Certificate public key used to authenticate + /// with VMs through SSH. The certificate must be in PEM format with or + /// without headers. + public ContainerServiceSshPublicKey(string keyData) + { + KeyData = keyData; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets certificate public key used to authenticate with VMs + /// through SSH. The certificate must be in PEM format with or without + /// headers. + /// + [JsonProperty(PropertyName = "keyData")] + public string KeyData { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (KeyData == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "KeyData"); + } + } + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceVMDiagnostics.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceVMDiagnostics.cs new file mode 100644 index 000000000000..31cb6845c8c0 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceVMDiagnostics.cs @@ -0,0 +1,74 @@ +// +// 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; + + /// + /// Profile for diagnostics on the container service VMs. + /// + public partial class ContainerServiceVMDiagnostics + { + /// + /// Initializes a new instance of the ContainerServiceVMDiagnostics + /// class. + /// + public ContainerServiceVMDiagnostics() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ContainerServiceVMDiagnostics + /// class. + /// + /// Whether the VM diagnostic agent is + /// provisioned on the VM. + /// The URI of the storage account where + /// diagnostics are stored. + public ContainerServiceVMDiagnostics(bool enabled, string storageUri = default(string)) + { + Enabled = enabled; + StorageUri = storageUri; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets whether the VM diagnostic agent is provisioned on the + /// VM. + /// + [JsonProperty(PropertyName = "enabled")] + public bool Enabled { get; set; } + + /// + /// Gets the URI of the storage account where diagnostics are stored. + /// + [JsonProperty(PropertyName = "storageUri")] + public string StorageUri { get; private set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + //Nothing to validate + } + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceVMSizeTypes.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceVMSizeTypes.cs new file mode 100644 index 000000000000..d31363e9854b --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceVMSizeTypes.cs @@ -0,0 +1,67 @@ +// +// 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 ContainerServiceVMSizeTypes. + /// + public static class ContainerServiceVMSizeTypes + { + public const string StandardA0 = "Standard_A0"; + public const string StandardA1 = "Standard_A1"; + public const string StandardA2 = "Standard_A2"; + public const string StandardA3 = "Standard_A3"; + public const string StandardA4 = "Standard_A4"; + public const string StandardA5 = "Standard_A5"; + public const string StandardA6 = "Standard_A6"; + public const string StandardA7 = "Standard_A7"; + public const string StandardA8 = "Standard_A8"; + public const string StandardA9 = "Standard_A9"; + public const string StandardA10 = "Standard_A10"; + public const string StandardA11 = "Standard_A11"; + public const string StandardD1 = "Standard_D1"; + public const string StandardD2 = "Standard_D2"; + public const string StandardD3 = "Standard_D3"; + public const string StandardD4 = "Standard_D4"; + public const string StandardD11 = "Standard_D11"; + public const string StandardD12 = "Standard_D12"; + public const string StandardD13 = "Standard_D13"; + public const string StandardD14 = "Standard_D14"; + public const string StandardD1V2 = "Standard_D1_v2"; + public const string StandardD2V2 = "Standard_D2_v2"; + public const string StandardD3V2 = "Standard_D3_v2"; + public const string StandardD4V2 = "Standard_D4_v2"; + public const string StandardD5V2 = "Standard_D5_v2"; + public const string StandardD11V2 = "Standard_D11_v2"; + public const string StandardD12V2 = "Standard_D12_v2"; + public const string StandardD13V2 = "Standard_D13_v2"; + public const string StandardD14V2 = "Standard_D14_v2"; + public const string StandardG1 = "Standard_G1"; + public const string StandardG2 = "Standard_G2"; + public const string StandardG3 = "Standard_G3"; + public const string StandardG4 = "Standard_G4"; + public const string StandardG5 = "Standard_G5"; + public const string StandardDS1 = "Standard_DS1"; + public const string StandardDS2 = "Standard_DS2"; + public const string StandardDS3 = "Standard_DS3"; + public const string StandardDS4 = "Standard_DS4"; + public const string StandardDS11 = "Standard_DS11"; + public const string StandardDS12 = "Standard_DS12"; + public const string StandardDS13 = "Standard_DS13"; + public const string StandardDS14 = "Standard_DS14"; + public const string StandardGS1 = "Standard_GS1"; + public const string StandardGS2 = "Standard_GS2"; + public const string StandardGS3 = "Standard_GS3"; + public const string StandardGS4 = "Standard_GS4"; + public const string StandardGS5 = "Standard_GS5"; + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceWindowsProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceWindowsProfile.cs new file mode 100644 index 000000000000..671adcedd214 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ContainerServiceWindowsProfile.cs @@ -0,0 +1,95 @@ +// +// 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; + + /// + /// Profile for Windows VMs in the container service cluster. + /// + public partial class ContainerServiceWindowsProfile + { + /// + /// Initializes a new instance of the ContainerServiceWindowsProfile + /// class. + /// + public ContainerServiceWindowsProfile() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ContainerServiceWindowsProfile + /// class. + /// + /// The administrator username to use for + /// Windows VMs. + /// The administrator password to use for + /// Windows VMs. + public ContainerServiceWindowsProfile(string adminUsername, string adminPassword) + { + AdminUsername = adminUsername; + AdminPassword = adminPassword; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the administrator username to use for Windows VMs. + /// + [JsonProperty(PropertyName = "adminUsername")] + public string AdminUsername { get; set; } + + /// + /// Gets or sets the administrator password to use for Windows VMs. + /// + [JsonProperty(PropertyName = "adminPassword")] + public string AdminPassword { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (AdminUsername == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "AdminUsername"); + } + if (AdminPassword == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "AdminPassword"); + } + if (AdminUsername != null) + { + if (!System.Text.RegularExpressions.Regex.IsMatch(AdminUsername, "^[a-zA-Z0-9]+([._]?[a-zA-Z0-9]+)*$")) + { + throw new ValidationException(ValidationRules.Pattern, "AdminUsername", "^[a-zA-Z0-9]+([._]?[a-zA-Z0-9]+)*$"); + } + } + if (AdminPassword != null) + { + if (!System.Text.RegularExpressions.Regex.IsMatch(AdminPassword, "^(?=.*[a-z])(?=.*[A-Z])(?=.*[!@#$%\\^&\\*\\(\\)])[a-zA-Z\\d!@#$%\\^&\\*\\(\\)]{12,123}$")) + { + throw new ValidationException(ValidationRules.Pattern, "AdminPassword", "^(?=.*[a-z])(?=.*[A-Z])(?=.*[!@#$%\\^&\\*\\(\\)])[a-zA-Z\\d!@#$%\\^&\\*\\(\\)]{12,123}$"); + } + } + } + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DataDisk.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DataDisk.cs index e87c5a378f4d..39c430dc8860 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DataDisk.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DataDisk.cs @@ -75,21 +75,7 @@ public DataDisk() /// UltraSSD_LRS. Returned only for VirtualMachine ScaleSet VM disks. /// Can be updated only via updates to the VirtualMachine Scale /// Set. - /// Specifies the detach behavior to be used - /// while detaching a disk or which is already in the process of - /// detachment from the virtual machine. Supported values: - /// **ForceDetach**. <br><br> detachOption: **ForceDetach** - /// is applicable only for managed data disks. If a previous detachment - /// attempt of the data disk did not complete due to an unexpected - /// failure from the virtual machine and the disk is still not released - /// then use force-detach as a last resort option to detach the disk - /// forcibly from the VM. All writes might not have been flushed when - /// using this detach behavior. <br><br> This feature is - /// still in preview mode and is not supported for - /// VirtualMachineScaleSet. To force-detach a data disk update - /// toBeDetached to 'true' along with setting detachOption: - /// 'ForceDetach'. Possible values include: 'ForceDetach' - public DataDisk(int lun, string createOption, string name = default(string), VirtualHardDisk vhd = default(VirtualHardDisk), VirtualHardDisk image = default(VirtualHardDisk), CachingTypes? caching = default(CachingTypes?), bool? writeAcceleratorEnabled = default(bool?), int? diskSizeGB = default(int?), ManagedDiskParameters managedDisk = default(ManagedDiskParameters), bool? toBeDetached = default(bool?), long? diskIOPSReadWrite = default(long?), long? diskMBpsReadWrite = default(long?), string detachOption = default(string)) + public DataDisk(int lun, string createOption, string name = default(string), VirtualHardDisk vhd = default(VirtualHardDisk), VirtualHardDisk image = default(VirtualHardDisk), CachingTypes? caching = default(CachingTypes?), bool? writeAcceleratorEnabled = default(bool?), int? diskSizeGB = default(int?), ManagedDiskParameters managedDisk = default(ManagedDiskParameters), bool? toBeDetached = default(bool?), long? diskIOPSReadWrite = default(long?), long? diskMBpsReadWrite = default(long?)) { Lun = lun; Name = name; @@ -103,7 +89,6 @@ public DataDisk() ToBeDetached = toBeDetached; DiskIOPSReadWrite = diskIOPSReadWrite; DiskMBpsReadWrite = diskMBpsReadWrite; - DetachOption = detachOption; CustomInit(); } @@ -216,25 +201,6 @@ public DataDisk() [JsonProperty(PropertyName = "diskMBpsReadWrite")] public long? DiskMBpsReadWrite { get; private set; } - /// - /// Gets or sets specifies the detach behavior to be used while - /// detaching a disk or which is already in the process of detachment - /// from the virtual machine. Supported values: **ForceDetach**. - /// &lt;br&gt;&lt;br&gt; detachOption: **ForceDetach** - /// is applicable only for managed data disks. If a previous detachment - /// attempt of the data disk did not complete due to an unexpected - /// failure from the virtual machine and the disk is still not released - /// then use force-detach as a last resort option to detach the disk - /// forcibly from the VM. All writes might not have been flushed when - /// using this detach behavior. &lt;br&gt;&lt;br&gt; - /// This feature is still in preview mode and is not supported for - /// VirtualMachineScaleSet. To force-detach a data disk update - /// toBeDetached to 'true' along with setting detachOption: - /// 'ForceDetach'. Possible values include: 'ForceDetach' - /// - [JsonProperty(PropertyName = "detachOption")] - public string DetachOption { get; set; } - /// /// Validate the object. /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DiskDetachOptionTypes.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DiskDetachOptionTypes.cs deleted file mode 100644 index 9244426d7ec0..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/DiskDetachOptionTypes.cs +++ /dev/null @@ -1,21 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - - /// - /// Defines values for DiskDetachOptionTypes. - /// - public static class DiskDetachOptionTypes - { - public const string ForceDetach = "ForceDetach"; - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/Extension.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/Extension.cs new file mode 100644 index 000000000000..66db804aec3f --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/Extension.cs @@ -0,0 +1,57 @@ +// +// 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; + + /// + /// Describes a cloud service Extension. + /// + public partial class Extension + { + /// + /// Initializes a new instance of the Extension class. + /// + public Extension() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the Extension class. + /// + /// The name of the extension. + public Extension(string name = default(string), CloudServiceExtensionProperties properties = default(CloudServiceExtensionProperties)) + { + Name = name; + Properties = properties; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the name of the extension. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// + [JsonProperty(PropertyName = "properties")] + public CloudServiceExtensionProperties Properties { 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/GalleryDiskImageSource.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryDiskImageSource.cs new file mode 100644 index 000000000000..70bab384c3c1 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryDiskImageSource.cs @@ -0,0 +1,57 @@ +// +// 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 disk image source. + /// + 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. + public GalleryDiskImageSource(string id = default(string), string uri = default(string)) + : base(id) + { + Uri = uri; + 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; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImage.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImage.cs index 73b908e4e6db..62dbb59864df 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImage.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImage.cs @@ -59,13 +59,13 @@ public GalleryImage() /// The hypervisor generation of the /// Virtual Machine. Applicable to OS disks only. Possible values /// include: 'V1', 'V2' + /// A list of gallery image features. /// The end of life date of the gallery /// image definition. This property can be used for decommissioning /// purposes. This property is updatable. /// The current state of the gallery /// image definition. - /// A list of gallery image features. - public GalleryImage(string location, OperatingSystemTypes osType, OperatingSystemStateTypes osState, GalleryImageIdentifier identifier, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string description = default(string), string eula = default(string), string privacyStatementUri = default(string), string releaseNoteUri = default(string), string hyperVGeneration = default(string), System.DateTime? endOfLifeDate = default(System.DateTime?), RecommendedMachineConfiguration recommended = default(RecommendedMachineConfiguration), Disallowed disallowed = default(Disallowed), ImagePurchasePlan purchasePlan = default(ImagePurchasePlan), string provisioningState = default(string), IList features = default(IList)) + public GalleryImage(string location, OperatingSystemTypes osType, OperatingSystemStateTypes osState, GalleryImageIdentifier identifier, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string description = default(string), string eula = default(string), string privacyStatementUri = default(string), string releaseNoteUri = default(string), string hyperVGeneration = default(string), IList features = default(IList), System.DateTime? endOfLifeDate = default(System.DateTime?), RecommendedMachineConfiguration recommended = default(RecommendedMachineConfiguration), Disallowed disallowed = default(Disallowed), ImagePurchasePlan purchasePlan = default(ImagePurchasePlan), string provisioningState = default(string)) : base(location, id, name, type, tags) { Description = description; @@ -75,13 +75,13 @@ public GalleryImage() OsType = osType; OsState = osState; HyperVGeneration = hyperVGeneration; + Features = features; EndOfLifeDate = endOfLifeDate; Identifier = identifier; Recommended = recommended; Disallowed = disallowed; PurchasePlan = purchasePlan; ProvisioningState = provisioningState; - Features = features; CustomInit(); } @@ -142,6 +142,12 @@ public GalleryImage() [JsonProperty(PropertyName = "properties.hyperVGeneration")] public string HyperVGeneration { get; set; } + /// + /// Gets or sets a list of gallery image features. + /// + [JsonProperty(PropertyName = "properties.features")] + public IList Features { get; set; } + /// /// Gets or sets the end of life date of the gallery image definition. /// This property can be used for decommissioning purposes. This @@ -181,12 +187,6 @@ public GalleryImage() [JsonProperty(PropertyName = "properties.provisioningState")] public string ProvisioningState { get; private set; } - /// - /// Gets or sets a list of gallery image features. - /// - [JsonProperty(PropertyName = "properties.features")] - public IList Features { get; set; } - /// /// Validate the object. /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageUpdate.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageUpdate.cs index 428379ec99f5..de806c8b415b 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageUpdate.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageUpdate.cs @@ -58,13 +58,13 @@ public GalleryImageUpdate() /// The hypervisor generation of the /// Virtual Machine. Applicable to OS disks only. Possible values /// include: 'V1', 'V2' + /// A list of gallery image features. /// The end of life date of the gallery /// image definition. This property can be used for decommissioning /// purposes. This property is updatable. /// The current state of the gallery /// image definition. - /// A list of gallery image features. - public GalleryImageUpdate(OperatingSystemTypes osType, OperatingSystemStateTypes osState, GalleryImageIdentifier identifier, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string description = default(string), string eula = default(string), string privacyStatementUri = default(string), string releaseNoteUri = default(string), string hyperVGeneration = default(string), System.DateTime? endOfLifeDate = default(System.DateTime?), RecommendedMachineConfiguration recommended = default(RecommendedMachineConfiguration), Disallowed disallowed = default(Disallowed), ImagePurchasePlan purchasePlan = default(ImagePurchasePlan), string provisioningState = default(string), IList features = default(IList)) + public GalleryImageUpdate(OperatingSystemTypes osType, OperatingSystemStateTypes osState, GalleryImageIdentifier identifier, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string description = default(string), string eula = default(string), string privacyStatementUri = default(string), string releaseNoteUri = default(string), string hyperVGeneration = default(string), IList features = default(IList), System.DateTime? endOfLifeDate = default(System.DateTime?), RecommendedMachineConfiguration recommended = default(RecommendedMachineConfiguration), Disallowed disallowed = default(Disallowed), ImagePurchasePlan purchasePlan = default(ImagePurchasePlan), string provisioningState = default(string)) : base(id, name, type, tags) { Description = description; @@ -74,13 +74,13 @@ public GalleryImageUpdate() OsType = osType; OsState = osState; HyperVGeneration = hyperVGeneration; + Features = features; EndOfLifeDate = endOfLifeDate; Identifier = identifier; Recommended = recommended; Disallowed = disallowed; PurchasePlan = purchasePlan; ProvisioningState = provisioningState; - Features = features; CustomInit(); } @@ -141,6 +141,12 @@ public GalleryImageUpdate() [JsonProperty(PropertyName = "properties.hyperVGeneration")] public string HyperVGeneration { get; set; } + /// + /// Gets or sets a list of gallery image features. + /// + [JsonProperty(PropertyName = "properties.features")] + public IList Features { get; set; } + /// /// Gets or sets the end of life date of the gallery image definition. /// This property can be used for decommissioning purposes. This @@ -180,12 +186,6 @@ public GalleryImageUpdate() [JsonProperty(PropertyName = "properties.provisioningState")] public string ProvisioningState { get; private set; } - /// - /// Gets or sets a list of gallery image features. - /// - [JsonProperty(PropertyName = "properties.features")] - public IList Features { get; set; } - /// /// Validate the object. /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/HardwareProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/HardwareProfile.cs index d82198706c79..ec8e8c5cf92e 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/HardwareProfile.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/HardwareProfile.cs @@ -29,33 +29,36 @@ public HardwareProfile() /// /// Initializes a new instance of the HardwareProfile class. /// - /// Specifies the size of the virtual machine. - /// <br><br> The enum data type is currently deprecated and - /// will be removed by December 23rd 2023. <br><br> - /// Recommended way to get the list of available sizes is using these - /// APIs: <br><br> [List all available virtual machine - /// sizes in an availability + /// Specifies the size of the virtual machine. For + /// more information about virtual machine sizes, see [Sizes for + /// virtual + /// machines](https://docs.microsoft.com/en-us/azure/virtual-machines/sizes). + /// <br><br> The available VM sizes depend on region and + /// availability set. For a list of available sizes use these APIs: + /// <br><br> [List all available virtual machine sizes in + /// an availability /// set](https://docs.microsoft.com/rest/api/compute/availabilitysets/listavailablesizes) /// <br><br> [List all available virtual machine sizes in a /// region]( /// https://docs.microsoft.com/en-us/rest/api/compute/resourceskus/list) /// <br><br> [List all available virtual machine sizes for /// resizing](https://docs.microsoft.com/rest/api/compute/virtualmachines/listavailablesizes). - /// For more information about virtual machine sizes, see [Sizes for - /// virtual - /// machines](https://docs.microsoft.com/en-us/azure/virtual-machines/sizes). - /// <br><br> The available VM sizes depend on region and - /// availability set. Possible values include: 'Basic_A0', 'Basic_A1', - /// 'Basic_A2', 'Basic_A3', 'Basic_A4', 'Standard_A0', 'Standard_A1', - /// 'Standard_A2', 'Standard_A3', 'Standard_A4', 'Standard_A5', - /// 'Standard_A6', 'Standard_A7', 'Standard_A8', 'Standard_A9', - /// 'Standard_A10', 'Standard_A11', 'Standard_A1_v2', 'Standard_A2_v2', - /// 'Standard_A4_v2', 'Standard_A8_v2', 'Standard_A2m_v2', - /// 'Standard_A4m_v2', 'Standard_A8m_v2', 'Standard_B1s', - /// 'Standard_B1ms', 'Standard_B2s', 'Standard_B2ms', 'Standard_B4ms', - /// 'Standard_B8ms', 'Standard_D1', 'Standard_D2', 'Standard_D3', - /// 'Standard_D4', 'Standard_D11', 'Standard_D12', 'Standard_D13', - /// 'Standard_D14', 'Standard_D1_v2', 'Standard_D2_v2', + /// <br><br> This list of sizes is no longer updated and + /// the **VirtualMachineSizeTypes** string constants will be removed + /// from the subsequent REST API specification. Use [List all available + /// virtual machine sizes in a region]( + /// https://docs.microsoft.com/en-us/rest/api/compute/resourceskus/list) + /// to get the latest sizes. Possible values include: 'Basic_A0', + /// 'Basic_A1', 'Basic_A2', 'Basic_A3', 'Basic_A4', 'Standard_A0', + /// 'Standard_A1', 'Standard_A2', 'Standard_A3', 'Standard_A4', + /// 'Standard_A5', 'Standard_A6', 'Standard_A7', 'Standard_A8', + /// 'Standard_A9', 'Standard_A10', 'Standard_A11', 'Standard_A1_v2', + /// 'Standard_A2_v2', 'Standard_A4_v2', 'Standard_A8_v2', + /// 'Standard_A2m_v2', 'Standard_A4m_v2', 'Standard_A8m_v2', + /// 'Standard_B1s', 'Standard_B1ms', 'Standard_B2s', 'Standard_B2ms', + /// 'Standard_B4ms', 'Standard_B8ms', 'Standard_D1', 'Standard_D2', + /// 'Standard_D3', 'Standard_D4', 'Standard_D11', 'Standard_D12', + /// 'Standard_D13', 'Standard_D14', 'Standard_D1_v2', 'Standard_D2_v2', /// 'Standard_D3_v2', 'Standard_D4_v2', 'Standard_D5_v2', /// 'Standard_D2_v3', 'Standard_D4_v3', 'Standard_D8_v3', /// 'Standard_D16_v3', 'Standard_D32_v3', 'Standard_D64_v3', @@ -107,13 +110,13 @@ public HardwareProfile() partial void CustomInit(); /// - /// Gets or sets specifies the size of the virtual machine. - /// &lt;br&gt;&lt;br&gt; The enum data type is - /// currently deprecated and will be removed by December 23rd 2023. - /// &lt;br&gt;&lt;br&gt; Recommended way to get the - /// list of available sizes is using these APIs: - /// &lt;br&gt;&lt;br&gt; [List all available virtual - /// machine sizes in an availability + /// Gets or sets specifies the size of the virtual machine. For more + /// information about virtual machine sizes, see [Sizes for virtual + /// machines](https://docs.microsoft.com/en-us/azure/virtual-machines/sizes). + /// &lt;br&gt;&lt;br&gt; The available VM sizes depend + /// on region and availability set. For a list of available sizes use + /// these APIs: &lt;br&gt;&lt;br&gt; [List all + /// available virtual machine sizes in an availability /// set](https://docs.microsoft.com/rest/api/compute/availabilitysets/listavailablesizes) /// &lt;br&gt;&lt;br&gt; [List all available virtual /// machine sizes in a region]( @@ -121,30 +124,31 @@ public HardwareProfile() /// &lt;br&gt;&lt;br&gt; [List all available virtual /// machine sizes for /// resizing](https://docs.microsoft.com/rest/api/compute/virtualmachines/listavailablesizes). - /// For more information about virtual machine sizes, see [Sizes for - /// virtual - /// machines](https://docs.microsoft.com/en-us/azure/virtual-machines/sizes). - /// &lt;br&gt;&lt;br&gt; The available VM sizes depend - /// on region and availability set. Possible values include: - /// 'Basic_A0', 'Basic_A1', 'Basic_A2', 'Basic_A3', 'Basic_A4', - /// 'Standard_A0', 'Standard_A1', 'Standard_A2', 'Standard_A3', - /// 'Standard_A4', 'Standard_A5', 'Standard_A6', 'Standard_A7', - /// 'Standard_A8', 'Standard_A9', 'Standard_A10', 'Standard_A11', - /// 'Standard_A1_v2', 'Standard_A2_v2', 'Standard_A4_v2', - /// 'Standard_A8_v2', 'Standard_A2m_v2', 'Standard_A4m_v2', - /// 'Standard_A8m_v2', 'Standard_B1s', 'Standard_B1ms', 'Standard_B2s', - /// 'Standard_B2ms', 'Standard_B4ms', 'Standard_B8ms', 'Standard_D1', - /// 'Standard_D2', 'Standard_D3', 'Standard_D4', 'Standard_D11', - /// 'Standard_D12', 'Standard_D13', 'Standard_D14', 'Standard_D1_v2', - /// 'Standard_D2_v2', 'Standard_D3_v2', 'Standard_D4_v2', - /// 'Standard_D5_v2', 'Standard_D2_v3', 'Standard_D4_v3', - /// 'Standard_D8_v3', 'Standard_D16_v3', 'Standard_D32_v3', - /// 'Standard_D64_v3', 'Standard_D2s_v3', 'Standard_D4s_v3', - /// 'Standard_D8s_v3', 'Standard_D16s_v3', 'Standard_D32s_v3', - /// 'Standard_D64s_v3', 'Standard_D11_v2', 'Standard_D12_v2', - /// 'Standard_D13_v2', 'Standard_D14_v2', 'Standard_D15_v2', - /// 'Standard_DS1', 'Standard_DS2', 'Standard_DS3', 'Standard_DS4', - /// 'Standard_DS11', 'Standard_DS12', 'Standard_DS13', 'Standard_DS14', + /// &lt;br&gt;&lt;br&gt; This list of sizes is no + /// longer updated and the **VirtualMachineSizeTypes** string constants + /// will be removed from the subsequent REST API specification. Use + /// [List all available virtual machine sizes in a region]( + /// https://docs.microsoft.com/en-us/rest/api/compute/resourceskus/list) + /// to get the latest sizes. Possible values include: 'Basic_A0', + /// 'Basic_A1', 'Basic_A2', 'Basic_A3', 'Basic_A4', 'Standard_A0', + /// 'Standard_A1', 'Standard_A2', 'Standard_A3', 'Standard_A4', + /// 'Standard_A5', 'Standard_A6', 'Standard_A7', 'Standard_A8', + /// 'Standard_A9', 'Standard_A10', 'Standard_A11', 'Standard_A1_v2', + /// 'Standard_A2_v2', 'Standard_A4_v2', 'Standard_A8_v2', + /// 'Standard_A2m_v2', 'Standard_A4m_v2', 'Standard_A8m_v2', + /// 'Standard_B1s', 'Standard_B1ms', 'Standard_B2s', 'Standard_B2ms', + /// 'Standard_B4ms', 'Standard_B8ms', 'Standard_D1', 'Standard_D2', + /// 'Standard_D3', 'Standard_D4', 'Standard_D11', 'Standard_D12', + /// 'Standard_D13', 'Standard_D14', 'Standard_D1_v2', 'Standard_D2_v2', + /// 'Standard_D3_v2', 'Standard_D4_v2', 'Standard_D5_v2', + /// 'Standard_D2_v3', 'Standard_D4_v3', 'Standard_D8_v3', + /// 'Standard_D16_v3', 'Standard_D32_v3', 'Standard_D64_v3', + /// 'Standard_D2s_v3', 'Standard_D4s_v3', 'Standard_D8s_v3', + /// 'Standard_D16s_v3', 'Standard_D32s_v3', 'Standard_D64s_v3', + /// 'Standard_D11_v2', 'Standard_D12_v2', 'Standard_D13_v2', + /// 'Standard_D14_v2', 'Standard_D15_v2', 'Standard_DS1', + /// 'Standard_DS2', 'Standard_DS3', 'Standard_DS4', 'Standard_DS11', + /// 'Standard_DS12', 'Standard_DS13', 'Standard_DS14', /// 'Standard_DS1_v2', 'Standard_DS2_v2', 'Standard_DS3_v2', /// 'Standard_DS4_v2', 'Standard_DS5_v2', 'Standard_DS11_v2', /// 'Standard_DS12_v2', 'Standard_DS13_v2', 'Standard_DS14_v2', diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/Image.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/Image.cs index 4916d4ba3007..75c0fef474e3 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/Image.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/Image.cs @@ -49,16 +49,13 @@ public Image() /// Gets the HyperVGenerationType of the /// VirtualMachine created from the image. Possible values include: /// 'V1', 'V2' - /// The extended location of the - /// Image. - public Image(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), SubResource sourceVirtualMachine = default(SubResource), ImageStorageProfile storageProfile = default(ImageStorageProfile), string provisioningState = default(string), string hyperVGeneration = default(string), ExtendedLocation extendedLocation = default(ExtendedLocation)) + public Image(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), SubResource sourceVirtualMachine = default(SubResource), ImageStorageProfile storageProfile = default(ImageStorageProfile), string provisioningState = default(string), string hyperVGeneration = default(string)) : base(location, id, name, type, tags) { SourceVirtualMachine = sourceVirtualMachine; StorageProfile = storageProfile; ProvisioningState = provisioningState; HyperVGeneration = hyperVGeneration; - ExtendedLocation = extendedLocation; CustomInit(); } @@ -94,12 +91,6 @@ public Image() [JsonProperty(PropertyName = "properties.hyperVGeneration")] public string HyperVGeneration { get; set; } - /// - /// Gets or sets the extended location of the Image. - /// - [JsonProperty(PropertyName = "extendedLocation")] - public ExtendedLocation ExtendedLocation { get; set; } - /// /// Validate the object. /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/WindowsVMGuestPatchMode.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/InGuestPatchMode.cs similarity index 86% rename from sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/WindowsVMGuestPatchMode.cs rename to sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/InGuestPatchMode.cs index e3c4970c7b0f..42af3578b153 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/WindowsVMGuestPatchMode.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/InGuestPatchMode.cs @@ -12,9 +12,9 @@ namespace Microsoft.Azure.Management.Compute.Models { /// - /// Defines values for WindowsVMGuestPatchMode. + /// Defines values for InGuestPatchMode. /// - public static class WindowsVMGuestPatchMode + public static class InGuestPatchMode { public const string Manual = "Manual"; public const string AutomaticByOS = "AutomaticByOS"; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/InstanceSku.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/InstanceSku.cs new file mode 100644 index 000000000000..cc6d5e72fe8c --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/InstanceSku.cs @@ -0,0 +1,57 @@ +// +// 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; + + public partial class InstanceSku + { + /// + /// Initializes a new instance of the InstanceSku class. + /// + public InstanceSku() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the InstanceSku class. + /// + /// The sku name. + /// The tier of the cloud service role + /// instance. + public InstanceSku(string name = default(string), string tier = default(string)) + { + Name = name; + Tier = tier; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the sku name. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// + /// Gets the tier of the cloud service role instance. + /// + [JsonProperty(PropertyName = "tier")] + public string Tier { get; private set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/InstanceViewStatusesSummary.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/InstanceViewStatusesSummary.cs new file mode 100644 index 000000000000..37cee73429f9 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/InstanceViewStatusesSummary.cs @@ -0,0 +1,53 @@ +// +// 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; + + /// + /// Instance view statuses. + /// + public partial class InstanceViewStatusesSummary + { + /// + /// Initializes a new instance of the InstanceViewStatusesSummary + /// class. + /// + public InstanceViewStatusesSummary() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the InstanceViewStatusesSummary + /// class. + /// + public InstanceViewStatusesSummary(IList statusesSummary = default(IList)) + { + StatusesSummary = statusesSummary; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// + [JsonProperty(PropertyName = "statusesSummary")] + public IList StatusesSummary { get; private set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LastPatchInstallationSummary.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LastPatchInstallationSummary.cs index 3afaee59807a..d1f509272630 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LastPatchInstallationSummary.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LastPatchInstallationSummary.cs @@ -33,16 +33,24 @@ public LastPatchInstallationSummary() /// /// The overall success or failure status of the /// operation. It remains "InProgress" until the operation completes. - /// At that point it will become "Unknown", "Failed", "Succeeded", or - /// "CompletedWithWarnings.". Possible values include: 'Unknown', - /// 'InProgress', 'Failed', 'Succeeded', - /// 'CompletedWithWarnings' + /// At that point it will become "Failed", "Succeeded", or + /// "CompletedWithWarnings.". Possible values include: 'InProgress', + /// 'Failed', 'Succeeded', 'CompletedWithWarnings' /// The activity ID of the /// operation that produced this result. It is used to correlate across /// CRP and extension logs. /// Describes whether the /// operation ran out of time before it completed all its intended /// actions + /// The reboot status of the machine after + /// the patch operation. It will be in "NotNeeded" status if reboot is + /// not needed after the patch operation. "Required" will be the status + /// once the patch is applied and machine is required to reboot. + /// "Started" will be the reboot status when the machine has started to + /// reboot. "Failed" will be the status if the machine is failed to + /// reboot. "Completed" will be the status once the machine is rebooted + /// successfully. Possible values include: 'NotNeeded', 'Required', + /// 'Started', 'Failed', 'Completed' /// The number of all available /// patches but not going to be installed because it didn't match a /// classification or inclusion list entry. @@ -60,14 +68,17 @@ public LastPatchInstallationSummary() /// began. /// The UTC timestamp when the operation /// began. + /// The person or system account that started + /// the operation /// The errors that were encountered during /// execution of the operation. The details array contains the list of /// them. - public LastPatchInstallationSummary(string status = default(string), string installationActivityId = default(string), bool? maintenanceWindowExceeded = default(bool?), int? notSelectedPatchCount = default(int?), int? excludedPatchCount = default(int?), int? pendingPatchCount = default(int?), int? installedPatchCount = default(int?), int? failedPatchCount = default(int?), System.DateTime? startTime = default(System.DateTime?), System.DateTime? lastModifiedTime = default(System.DateTime?), ApiError error = default(ApiError)) + public LastPatchInstallationSummary(string status = default(string), string installationActivityId = default(string), bool? maintenanceWindowExceeded = default(bool?), string rebootStatus = default(string), int? notSelectedPatchCount = default(int?), int? excludedPatchCount = default(int?), int? pendingPatchCount = default(int?), int? installedPatchCount = default(int?), int? failedPatchCount = default(int?), System.DateTime? startTime = default(System.DateTime?), System.DateTime? lastModifiedTime = default(System.DateTime?), string startedBy = default(string), ApiError error = default(ApiError)) { Status = status; InstallationActivityId = installationActivityId; MaintenanceWindowExceeded = maintenanceWindowExceeded; + RebootStatus = rebootStatus; NotSelectedPatchCount = notSelectedPatchCount; ExcludedPatchCount = excludedPatchCount; PendingPatchCount = pendingPatchCount; @@ -75,6 +86,7 @@ public LastPatchInstallationSummary() FailedPatchCount = failedPatchCount; StartTime = startTime; LastModifiedTime = lastModifiedTime; + StartedBy = startedBy; Error = error; CustomInit(); } @@ -87,9 +99,9 @@ public LastPatchInstallationSummary() /// /// Gets the overall success or failure status of the operation. It /// remains "InProgress" until the operation completes. At that point - /// it will become "Unknown", "Failed", "Succeeded", or - /// "CompletedWithWarnings.". Possible values include: 'Unknown', - /// 'InProgress', 'Failed', 'Succeeded', 'CompletedWithWarnings' + /// it will become "Failed", "Succeeded", or "CompletedWithWarnings.". + /// Possible values include: 'InProgress', 'Failed', 'Succeeded', + /// 'CompletedWithWarnings' /// [JsonProperty(PropertyName = "status")] public string Status { get; private set; } @@ -108,6 +120,20 @@ public LastPatchInstallationSummary() [JsonProperty(PropertyName = "maintenanceWindowExceeded")] public bool? MaintenanceWindowExceeded { get; private set; } + /// + /// Gets the reboot status of the machine after the patch operation. It + /// will be in "NotNeeded" status if reboot is not needed after the + /// patch operation. "Required" will be the status once the patch is + /// applied and machine is required to reboot. "Started" will be the + /// reboot status when the machine has started to reboot. "Failed" will + /// be the status if the machine is failed to reboot. "Completed" will + /// be the status once the machine is rebooted successfully. Possible + /// values include: 'NotNeeded', 'Required', 'Started', 'Failed', + /// 'Completed' + /// + [JsonProperty(PropertyName = "rebootStatus")] + public string RebootStatus { get; private set; } + /// /// Gets the number of all available patches but not going to be /// installed because it didn't match a classification or inclusion @@ -154,6 +180,12 @@ public LastPatchInstallationSummary() [JsonProperty(PropertyName = "lastModifiedTime")] public System.DateTime? LastModifiedTime { get; private set; } + /// + /// Gets the person or system account that started the operation + /// + [JsonProperty(PropertyName = "startedBy")] + public string StartedBy { get; private set; } + /// /// Gets the errors that were encountered during execution of the /// operation. The details array contains the list of them. diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LinuxConfiguration.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LinuxConfiguration.cs index a951eba569c5..4594ed63cf39 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LinuxConfiguration.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LinuxConfiguration.cs @@ -45,14 +45,11 @@ public LinuxConfiguration() /// request body, default behavior is to set it to true. This will /// ensure that VM Agent is installed on the VM so that extensions can /// be added to the VM later. - /// [Preview Feature] Specifies settings - /// related to VM Guest Patching on Linux. - public LinuxConfiguration(bool? disablePasswordAuthentication = default(bool?), SshConfiguration ssh = default(SshConfiguration), bool? provisionVMAgent = default(bool?), LinuxPatchSettings patchSettings = default(LinuxPatchSettings)) + public LinuxConfiguration(bool? disablePasswordAuthentication = default(bool?), SshConfiguration ssh = default(SshConfiguration), bool? provisionVMAgent = default(bool?)) { DisablePasswordAuthentication = disablePasswordAuthentication; Ssh = ssh; ProvisionVMAgent = provisionVMAgent; - PatchSettings = patchSettings; CustomInit(); } @@ -85,12 +82,5 @@ public LinuxConfiguration() [JsonProperty(PropertyName = "provisionVMAgent")] public bool? ProvisionVMAgent { get; set; } - /// - /// Gets or sets [Preview Feature] Specifies settings related to VM - /// Guest Patching on Linux. - /// - [JsonProperty(PropertyName = "patchSettings")] - public LinuxPatchSettings PatchSettings { get; set; } - } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LinuxParameters.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LinuxParameters.cs deleted file mode 100644 index 4deea634136d..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LinuxParameters.cs +++ /dev/null @@ -1,85 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Input for InstallPatches on a Linux VM, as directly received by the API - /// - public partial class LinuxParameters - { - /// - /// Initializes a new instance of the LinuxParameters class. - /// - public LinuxParameters() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the LinuxParameters class. - /// - /// The update classifications - /// to select when installing patches for Linux. - /// packages to include in the - /// patch operation. Format: packageName_packageVersion - /// packages to exclude in the - /// patch operation. Format: packageName_packageVersion - /// This is used as a maintenance run - /// identifier for Auto VM Guest Patching in Linux. - public LinuxParameters(IList classificationsToInclude = default(IList), IList packageNameMasksToInclude = default(IList), IList packageNameMasksToExclude = default(IList), string maintenanceRunId = default(string)) - { - ClassificationsToInclude = classificationsToInclude; - PackageNameMasksToInclude = packageNameMasksToInclude; - PackageNameMasksToExclude = packageNameMasksToExclude; - MaintenanceRunId = maintenanceRunId; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets the update classifications to select when installing - /// patches for Linux. - /// - [JsonProperty(PropertyName = "classificationsToInclude")] - public IList ClassificationsToInclude { get; set; } - - /// - /// Gets or sets packages to include in the patch operation. Format: - /// packageName_packageVersion - /// - [JsonProperty(PropertyName = "packageNameMasksToInclude")] - public IList PackageNameMasksToInclude { get; set; } - - /// - /// Gets or sets packages to exclude in the patch operation. Format: - /// packageName_packageVersion - /// - [JsonProperty(PropertyName = "packageNameMasksToExclude")] - public IList PackageNameMasksToExclude { get; set; } - - /// - /// Gets or sets this is used as a maintenance run identifier for Auto - /// VM Guest Patching in Linux. - /// - [JsonProperty(PropertyName = "maintenanceRunId")] - public string MaintenanceRunId { get; set; } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LinuxPatchSettings.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LinuxPatchSettings.cs deleted file mode 100644 index b330cbd7884a..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LinuxPatchSettings.cs +++ /dev/null @@ -1,66 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Newtonsoft.Json; - using System.Linq; - - /// - /// Specifies settings related to VM Guest Patching on Linux. - /// - public partial class LinuxPatchSettings - { - /// - /// Initializes a new instance of the LinuxPatchSettings class. - /// - public LinuxPatchSettings() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the LinuxPatchSettings class. - /// - /// Specifies the mode of VM Guest Patching to - /// IaaS virtual machine.<br /><br /> Possible values - /// are:<br /><br /> **ImageDefault** - The virtual - /// machine's default patching configuration is used. <br - /// /><br /> **AutomaticByPlatform** - The virtual machine - /// will be automatically updated by the platform. The property - /// provisionVMAgent must be true. Possible values include: - /// 'ImageDefault', 'AutomaticByPlatform' - public LinuxPatchSettings(string patchMode = default(string)) - { - PatchMode = patchMode; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets specifies the mode of VM Guest Patching to IaaS - /// virtual machine.&lt;br /&gt;&lt;br /&gt; Possible - /// values are:&lt;br /&gt;&lt;br /&gt; - /// **ImageDefault** - The virtual machine's default patching - /// configuration is used. &lt;br /&gt;&lt;br /&gt; - /// **AutomaticByPlatform** - The virtual machine will be automatically - /// updated by the platform. The property provisionVMAgent must be - /// true. Possible values include: 'ImageDefault', - /// 'AutomaticByPlatform' - /// - [JsonProperty(PropertyName = "patchMode")] - public string PatchMode { get; set; } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerConfiguration.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerConfiguration.cs new file mode 100644 index 000000000000..1965c9fc649f --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerConfiguration.cs @@ -0,0 +1,57 @@ +// +// 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; + + /// + /// Describes the load balancer configuration. + /// + public partial class LoadBalancerConfiguration + { + /// + /// Initializes a new instance of the LoadBalancerConfiguration class. + /// + public LoadBalancerConfiguration() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the LoadBalancerConfiguration class. + /// + /// Resource Name + public LoadBalancerConfiguration(string name = default(string), LoadBalancerConfigurationProperties properties = default(LoadBalancerConfigurationProperties)) + { + Name = name; + Properties = properties; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets resource Name + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// + [JsonProperty(PropertyName = "properties")] + public LoadBalancerConfigurationProperties Properties { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerConfigurationProperties.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerConfigurationProperties.cs new file mode 100644 index 000000000000..4c91346aecc3 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerConfigurationProperties.cs @@ -0,0 +1,52 @@ +// +// 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; + + public partial class LoadBalancerConfigurationProperties + { + /// + /// Initializes a new instance of the + /// LoadBalancerConfigurationProperties class. + /// + public LoadBalancerConfigurationProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// LoadBalancerConfigurationProperties class. + /// + /// List of IP + public LoadBalancerConfigurationProperties(IList frontendIPConfigurations = default(IList)) + { + FrontendIPConfigurations = frontendIPConfigurations; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets list of IP + /// + [JsonProperty(PropertyName = "frontendIPConfigurations")] + public IList FrontendIPConfigurations { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerFrontendIPConfiguration.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerFrontendIPConfiguration.cs new file mode 100644 index 000000000000..ff6622e4be2a --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerFrontendIPConfiguration.cs @@ -0,0 +1,54 @@ +// +// 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; + + public partial class LoadBalancerFrontendIPConfiguration + { + /// + /// Initializes a new instance of the + /// LoadBalancerFrontendIPConfiguration class. + /// + public LoadBalancerFrontendIPConfiguration() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// LoadBalancerFrontendIPConfiguration class. + /// + public LoadBalancerFrontendIPConfiguration(string name = default(string), LoadBalancerFrontendIPConfigurationProperties properties = default(LoadBalancerFrontendIPConfigurationProperties)) + { + Name = name; + Properties = properties; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// + [JsonProperty(PropertyName = "properties")] + public LoadBalancerFrontendIPConfigurationProperties Properties { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerFrontendIPConfigurationProperties.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerFrontendIPConfigurationProperties.cs new file mode 100644 index 000000000000..7187963be8cd --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerFrontendIPConfigurationProperties.cs @@ -0,0 +1,67 @@ +// +// 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; + + /// + /// Describes a cloud service IP Configuration + /// + public partial class LoadBalancerFrontendIPConfigurationProperties + { + /// + /// Initializes a new instance of the + /// LoadBalancerFrontendIPConfigurationProperties class. + /// + public LoadBalancerFrontendIPConfigurationProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// LoadBalancerFrontendIPConfigurationProperties class. + /// + /// The private IP address referenced by + /// the cloud service. + public LoadBalancerFrontendIPConfigurationProperties(SubResource publicIPAddress = default(SubResource), SubResource subnet = default(SubResource), string privateIPAddress = default(string)) + { + PublicIPAddress = publicIPAddress; + Subnet = subnet; + PrivateIPAddress = privateIPAddress; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// + [JsonProperty(PropertyName = "publicIPAddress")] + public SubResource PublicIPAddress { get; set; } + + /// + /// + [JsonProperty(PropertyName = "subnet")] + public SubResource Subnet { get; set; } + + /// + /// Gets or sets the private IP address referenced by the cloud + /// service. + /// + [JsonProperty(PropertyName = "privateIPAddress")] + public string PrivateIPAddress { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/OrchestrationMode.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/OrchestrationMode.cs deleted file mode 100644 index bf55423160dc..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/OrchestrationMode.cs +++ /dev/null @@ -1,22 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - - /// - /// Defines values for OrchestrationMode. - /// - public static class OrchestrationMode - { - public const string Uniform = "Uniform"; - public const string Flexible = "Flexible"; - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PatchAssessmentState.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PatchAssessmentState.cs index e38d2040f788..d39f3abf8514 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PatchAssessmentState.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PatchAssessmentState.cs @@ -16,7 +16,11 @@ namespace Microsoft.Azure.Management.Compute.Models /// public static class PatchAssessmentState { - public const string Unknown = "Unknown"; + public const string Installed = "Installed"; + public const string Failed = "Failed"; + public const string Excluded = "Excluded"; + public const string NotSelected = "NotSelected"; + public const string Pending = "Pending"; public const string Available = "Available"; } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PatchInstallationDetail.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PatchInstallationDetail.cs deleted file mode 100644 index 6dc51bd5402f..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PatchInstallationDetail.cs +++ /dev/null @@ -1,104 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Information about a specific patch that was encountered during an - /// installation action. - /// - public partial class PatchInstallationDetail - { - /// - /// Initializes a new instance of the PatchInstallationDetail class. - /// - public PatchInstallationDetail() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the PatchInstallationDetail class. - /// - /// A unique identifier for the patch. - /// The friendly name of the patch. - /// The version string of the package. It may - /// conform to Semantic Versioning. Only applies to Linux. - /// The KBID of the patch. Only applies to Windows - /// patches. - /// The classification(s) of the patch as - /// provided by the patch publisher. - /// The state of the patch after the - /// installation operation completed. Possible values include: - /// 'Unknown', 'Installed', 'Failed', 'Excluded', 'NotSelected', - /// 'Pending' - public PatchInstallationDetail(string patchId = default(string), string name = default(string), string version = default(string), string kbId = default(string), IList classifications = default(IList), string installationState = default(string)) - { - PatchId = patchId; - Name = name; - Version = version; - KbId = kbId; - Classifications = classifications; - InstallationState = installationState; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets a unique identifier for the patch. - /// - [JsonProperty(PropertyName = "patchId")] - public string PatchId { get; private set; } - - /// - /// Gets the friendly name of the patch. - /// - [JsonProperty(PropertyName = "name")] - public string Name { get; private set; } - - /// - /// Gets the version string of the package. It may conform to Semantic - /// Versioning. Only applies to Linux. - /// - [JsonProperty(PropertyName = "version")] - public string Version { get; private set; } - - /// - /// Gets the KBID of the patch. Only applies to Windows patches. - /// - [JsonProperty(PropertyName = "kbId")] - public string KbId { get; private set; } - - /// - /// Gets the classification(s) of the patch as provided by the patch - /// publisher. - /// - [JsonProperty(PropertyName = "classifications")] - public IList Classifications { get; private set; } - - /// - /// Gets the state of the patch after the installation operation - /// completed. Possible values include: 'Unknown', 'Installed', - /// 'Failed', 'Excluded', 'NotSelected', 'Pending' - /// - [JsonProperty(PropertyName = "installationState")] - public string InstallationState { get; private set; } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PatchInstallationState.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PatchInstallationState.cs deleted file mode 100644 index 6ca7103442ba..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PatchInstallationState.cs +++ /dev/null @@ -1,26 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - - /// - /// Defines values for PatchInstallationState. - /// - public static class PatchInstallationState - { - public const string Unknown = "Unknown"; - public const string Installed = "Installed"; - public const string Failed = "Failed"; - public const string Excluded = "Excluded"; - public const string NotSelected = "NotSelected"; - public const string Pending = "Pending"; - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PatchOperationStatus.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PatchOperationStatus.cs index 0d9c96f755a1..36860e3d4230 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PatchOperationStatus.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PatchOperationStatus.cs @@ -16,7 +16,6 @@ namespace Microsoft.Azure.Management.Compute.Models /// public static class PatchOperationStatus { - public const string Unknown = "Unknown"; public const string InProgress = "InProgress"; public const string Failed = "Failed"; public const string Succeeded = "Succeeded"; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PatchSettings.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PatchSettings.cs index ce46bd86b2ba..730f6ca2e806 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PatchSettings.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PatchSettings.cs @@ -13,9 +13,6 @@ namespace Microsoft.Azure.Management.Compute.Models using Newtonsoft.Json; using System.Linq; - /// - /// Specifies settings related to VM Guest Patching on Windows. - /// public partial class PatchSettings { /// @@ -29,7 +26,7 @@ public PatchSettings() /// /// Initializes a new instance of the PatchSettings class. /// - /// Specifies the mode of VM Guest Patching to + /// Specifies the mode of in-guest patching to /// IaaS virtual machine.<br /><br /> Possible values /// are:<br /><br /> **Manual** - You control the /// application of patches to a virtual machine. You do this by @@ -39,19 +36,14 @@ public PatchSettings() /// /><br /> **AutomaticByOS** - The virtual machine will /// automatically be updated by the OS. The property /// WindowsConfiguration.enableAutomaticUpdates must be true. <br - /// /><br /> **AutomaticByPlatform** - the virtual machine + /// /><br /> ** AutomaticByPlatform** - the virtual machine /// will automatically updated by the platform. The properties /// provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates /// must be true. Possible values include: 'Manual', 'AutomaticByOS', /// 'AutomaticByPlatform' - /// Enables customers to patch their - /// Azure VMs without requiring a reboot. For enableHotpatching, the - /// 'provisionVMAgent' must be set to true and 'patchMode' must be set - /// to 'AutomaticByPlatform'. - public PatchSettings(string patchMode = default(string), bool? enableHotpatching = default(bool?)) + public PatchSettings(string patchMode = default(string)) { PatchMode = patchMode; - EnableHotpatching = enableHotpatching; CustomInit(); } @@ -61,7 +53,7 @@ public PatchSettings() partial void CustomInit(); /// - /// Gets or sets specifies the mode of VM Guest Patching to IaaS + /// Gets or sets specifies the mode of in-guest patching to IaaS /// virtual machine.&lt;br /&gt;&lt;br /&gt; Possible /// values are:&lt;br /&gt;&lt;br /&gt; **Manual** - /// You control the application of patches to a virtual machine. You @@ -71,7 +63,7 @@ public PatchSettings() /// /&gt;&lt;br /&gt; **AutomaticByOS** - The virtual /// machine will automatically be updated by the OS. The property /// WindowsConfiguration.enableAutomaticUpdates must be true. - /// &lt;br /&gt;&lt;br /&gt; **AutomaticByPlatform** - + /// &lt;br /&gt;&lt;br /&gt; ** AutomaticByPlatform** - /// the virtual machine will automatically updated by the platform. The /// properties provisionVMAgent and /// WindowsConfiguration.enableAutomaticUpdates must be true. Possible @@ -80,14 +72,5 @@ public PatchSettings() [JsonProperty(PropertyName = "patchMode")] public string PatchMode { get; set; } - /// - /// Gets or sets enables customers to patch their Azure VMs without - /// requiring a reboot. For enableHotpatching, the 'provisionVMAgent' - /// must be set to true and 'patchMode' must be set to - /// 'AutomaticByPlatform'. - /// - [JsonProperty(PropertyName = "enableHotpatching")] - public bool? EnableHotpatching { get; set; } - } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VMGuestPatchRebootStatus.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RebootStatus.cs similarity index 82% rename from sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VMGuestPatchRebootStatus.cs rename to sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RebootStatus.cs index f9bf1a04138e..b04c6371134e 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VMGuestPatchRebootStatus.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RebootStatus.cs @@ -12,11 +12,10 @@ namespace Microsoft.Azure.Management.Compute.Models { /// - /// Defines values for VMGuestPatchRebootStatus. + /// Defines values for RebootStatus. /// - public static class VMGuestPatchRebootStatus + public static class RebootStatus { - public const string Unknown = "Unknown"; public const string NotNeeded = "NotNeeded"; public const string Required = "Required"; public const string Started = "Started"; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ResourceInstanceViewStatus.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ResourceInstanceViewStatus.cs new file mode 100644 index 000000000000..fd6a5d166a6a --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ResourceInstanceViewStatus.cs @@ -0,0 +1,88 @@ +// +// 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; + + /// + /// Instance view status. + /// + public partial class ResourceInstanceViewStatus + { + /// + /// Initializes a new instance of the ResourceInstanceViewStatus class. + /// + public ResourceInstanceViewStatus() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ResourceInstanceViewStatus class. + /// + /// The status code. + /// The short localizable label for the + /// status. + /// The detailed status message, including for + /// alerts and error messages. + /// The time of the status. + /// The level code. Possible values include: + /// 'Info', 'Warning', 'Error' + public ResourceInstanceViewStatus(string code = default(string), string displayStatus = default(string), string message = default(string), System.DateTime? time = default(System.DateTime?), StatusLevelTypes? level = default(StatusLevelTypes?)) + { + Code = code; + DisplayStatus = displayStatus; + Message = message; + Time = time; + Level = level; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the status code. + /// + [JsonProperty(PropertyName = "code")] + public string Code { get; private set; } + + /// + /// Gets the short localizable label for the status. + /// + [JsonProperty(PropertyName = "displayStatus")] + public string DisplayStatus { get; private set; } + + /// + /// Gets the detailed status message, including for alerts and error + /// messages. + /// + [JsonProperty(PropertyName = "message")] + public string Message { get; private set; } + + /// + /// Gets the time of the status. + /// + [JsonProperty(PropertyName = "time")] + public System.DateTime? Time { get; private set; } + + /// + /// Gets or sets the level code. Possible values include: 'Info', + /// 'Warning', 'Error' + /// + [JsonProperty(PropertyName = "level")] + public StatusLevelTypes? Level { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstance.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstance.cs new file mode 100644 index 000000000000..1dabc78b11da --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstance.cs @@ -0,0 +1,94 @@ +// +// 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; + + public partial class RoleInstance + { + /// + /// Initializes a new instance of the RoleInstance class. + /// + public RoleInstance() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the RoleInstance class. + /// + /// Resource Id + /// Resource Name. + /// Resource Type. + /// Resource Location. + /// Resource tags. + public RoleInstance(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), InstanceSku sku = default(InstanceSku), RoleInstanceProperties properties = default(RoleInstanceProperties)) + { + Id = id; + Name = name; + Type = type; + Location = location; + Tags = tags; + Sku = sku; + Properties = properties; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets resource Id + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; private set; } + + /// + /// Gets resource Name. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// + /// Gets resource Type. + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; private set; } + + /// + /// Gets resource Location. + /// + [JsonProperty(PropertyName = "location")] + public string Location { get; private set; } + + /// + /// Gets resource tags. + /// + [JsonProperty(PropertyName = "tags")] + public IDictionary Tags { get; private set; } + + /// + /// + [JsonProperty(PropertyName = "sku")] + public InstanceSku Sku { get; set; } + + /// + /// + [JsonProperty(PropertyName = "properties")] + public RoleInstanceProperties Properties { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstanceInstanceView.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstanceInstanceView.cs new file mode 100644 index 000000000000..5897af48e493 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstanceInstanceView.cs @@ -0,0 +1,83 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// The instance view of the role instance. + /// + public partial class RoleInstanceInstanceView + { + /// + /// Initializes a new instance of the RoleInstanceInstanceView class. + /// + public RoleInstanceInstanceView() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the RoleInstanceInstanceView class. + /// + /// The Update Domain. + /// The Fault Domain. + /// Specifies a unique identifier generated + /// internally for the cloud service associated with this role + /// instance. <br /><br /> NOTE: If you are using Azure + /// Diagnostics extension, this property can be used as 'DeploymentId' + /// for querying details. + public RoleInstanceInstanceView(int? platformUpdateDomain = default(int?), int? platformFaultDomain = default(int?), string privateId = default(string), IList statuses = default(IList)) + { + PlatformUpdateDomain = platformUpdateDomain; + PlatformFaultDomain = platformFaultDomain; + PrivateId = privateId; + Statuses = statuses; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the Update Domain. + /// + [JsonProperty(PropertyName = "platformUpdateDomain")] + public int? PlatformUpdateDomain { get; private set; } + + /// + /// Gets the Fault Domain. + /// + [JsonProperty(PropertyName = "platformFaultDomain")] + public int? PlatformFaultDomain { get; private set; } + + /// + /// Gets specifies a unique identifier generated internally for the + /// cloud service associated with this role instance. &lt;br + /// /&gt;&lt;br /&gt; NOTE: If you are using Azure + /// Diagnostics extension, this property can be used as 'DeploymentId' + /// for querying details. + /// + [JsonProperty(PropertyName = "privateId")] + public string PrivateId { get; private set; } + + /// + /// + [JsonProperty(PropertyName = "statuses")] + public IList Statuses { get; private set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstanceNetworkProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstanceNetworkProfile.cs new file mode 100644 index 000000000000..4a74b02f3610 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstanceNetworkProfile.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.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Describes the network profile for the role instance. + /// + public partial class RoleInstanceNetworkProfile + { + /// + /// Initializes a new instance of the RoleInstanceNetworkProfile class. + /// + public RoleInstanceNetworkProfile() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the RoleInstanceNetworkProfile class. + /// + /// Specifies the list of resource Ids + /// for the network interfaces associated with the role + /// instance. + public RoleInstanceNetworkProfile(IList networkInterfaces = default(IList)) + { + NetworkInterfaces = networkInterfaces; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets specifies the list of resource Ids for the network interfaces + /// associated with the role instance. + /// + [JsonProperty(PropertyName = "networkInterfaces")] + public IList NetworkInterfaces { get; private set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstanceProperties.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstanceProperties.cs new file mode 100644 index 000000000000..fb7bd0ef4526 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstanceProperties.cs @@ -0,0 +1,52 @@ +// +// 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; + + public partial class RoleInstanceProperties + { + /// + /// Initializes a new instance of the RoleInstanceProperties class. + /// + public RoleInstanceProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the RoleInstanceProperties class. + /// + public RoleInstanceProperties(RoleInstanceNetworkProfile networkProfile = default(RoleInstanceNetworkProfile), RoleInstanceInstanceView instanceView = default(RoleInstanceInstanceView)) + { + NetworkProfile = networkProfile; + InstanceView = instanceView; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// + [JsonProperty(PropertyName = "networkProfile")] + public RoleInstanceNetworkProfile NetworkProfile { get; set; } + + /// + /// + [JsonProperty(PropertyName = "instanceView")] + public RoleInstanceInstanceView InstanceView { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstances.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstances.cs new file mode 100644 index 000000000000..ca428016fc69 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstances.cs @@ -0,0 +1,70 @@ +// +// 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; + + /// + /// Specifies a list of role instances from the cloud service. + /// + public partial class RoleInstances + { + /// + /// Initializes a new instance of the RoleInstances class. + /// + public RoleInstances() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the RoleInstances class. + /// + /// List of cloud service role + /// instance names. Value of '*' will signify all role instances of the + /// cloud service. + public RoleInstances(IList roleInstancesProperty) + { + RoleInstancesProperty = roleInstancesProperty; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets list of cloud service role instance names. Value of + /// '*' will signify all role instances of the cloud service. + /// + [JsonProperty(PropertyName = "roleInstances")] + public IList RoleInstancesProperty { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (RoleInstancesProperty == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "RoleInstancesProperty"); + } + } + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RollingUpgradePolicy.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RollingUpgradePolicy.cs index cf56aac6c64f..2a43f60a0103 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RollingUpgradePolicy.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RollingUpgradePolicy.cs @@ -52,20 +52,12 @@ public RollingUpgradePolicy() /// completing the update for all virtual machines in one batch and /// starting the next batch. The time duration should be specified in /// ISO 8601 format. The default value is 0 seconds (PT0S). - /// Allow VMSS to ignore AZ - /// boundaries when constructing upgrade batches. Take into - /// consideration the Update Domain and maxBatchInstancePercent to - /// determine the batch size. - /// Upgrade all unhealthy - /// instances in a scale set before any healthy instances. - public RollingUpgradePolicy(int? maxBatchInstancePercent = default(int?), int? maxUnhealthyInstancePercent = default(int?), int? maxUnhealthyUpgradedInstancePercent = default(int?), string pauseTimeBetweenBatches = default(string), bool? enableCrossZoneUpgrade = default(bool?), bool? prioritizeUnhealthyInstances = default(bool?)) + public RollingUpgradePolicy(int? maxBatchInstancePercent = default(int?), int? maxUnhealthyInstancePercent = default(int?), int? maxUnhealthyUpgradedInstancePercent = default(int?), string pauseTimeBetweenBatches = default(string)) { MaxBatchInstancePercent = maxBatchInstancePercent; MaxUnhealthyInstancePercent = maxUnhealthyInstancePercent; MaxUnhealthyUpgradedInstancePercent = maxUnhealthyUpgradedInstancePercent; PauseTimeBetweenBatches = pauseTimeBetweenBatches; - EnableCrossZoneUpgrade = enableCrossZoneUpgrade; - PrioritizeUnhealthyInstances = prioritizeUnhealthyInstances; CustomInit(); } @@ -115,21 +107,6 @@ public RollingUpgradePolicy() [JsonProperty(PropertyName = "pauseTimeBetweenBatches")] public string PauseTimeBetweenBatches { get; set; } - /// - /// Gets or sets allow VMSS to ignore AZ boundaries when constructing - /// upgrade batches. Take into consideration the Update Domain and - /// maxBatchInstancePercent to determine the batch size. - /// - [JsonProperty(PropertyName = "enableCrossZoneUpgrade")] - public bool? EnableCrossZoneUpgrade { get; set; } - - /// - /// Gets or sets upgrade all unhealthy instances in a scale set before - /// any healthy instances. - /// - [JsonProperty(PropertyName = "prioritizeUnhealthyInstances")] - public bool? PrioritizeUnhealthyInstances { get; set; } - /// /// Validate the object. /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SecurityProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SecurityProfile.cs index 0be80d5c515a..323d109564f2 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SecurityProfile.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SecurityProfile.cs @@ -30,9 +30,6 @@ public SecurityProfile() /// /// Initializes a new instance of the SecurityProfile class. /// - /// Specifies the security settings like - /// secure boot and vTPM used while creating the virtual machine. - /// <br><br>Minimum api-version: 2020-12-01 /// This property can be used by user in /// the request to enable or disable the Host Encryption for the /// virtual machine or virtual machine scale set. This will enable the @@ -40,16 +37,9 @@ public SecurityProfile() /// itself. <br><br> Default: The Encryption at host will /// be disabled unless this property is set to true for the /// resource. - /// Specifies the SecurityType of the - /// virtual machine. It is set as TrustedLaunch to enable UefiSettings. - /// <br><br> Default: UefiSettings will not be enabled - /// unless this property is set as TrustedLaunch. Possible values - /// include: 'TrustedLaunch' - public SecurityProfile(UefiSettings uefiSettings = default(UefiSettings), bool? encryptionAtHost = default(bool?), SecurityTypes? securityType = default(SecurityTypes?)) + public SecurityProfile(bool? encryptionAtHost = default(bool?)) { - UefiSettings = uefiSettings; EncryptionAtHost = encryptionAtHost; - SecurityType = securityType; CustomInit(); } @@ -58,14 +48,6 @@ public SecurityProfile() /// partial void CustomInit(); - /// - /// Gets or sets specifies the security settings like secure boot and - /// vTPM used while creating the virtual machine. - /// &lt;br&gt;&lt;br&gt;Minimum api-version: 2020-12-01 - /// - [JsonProperty(PropertyName = "uefiSettings")] - public UefiSettings UefiSettings { get; set; } - /// /// Gets or sets this property can be used by user in the request to /// enable or disable the Host Encryption for the virtual machine or @@ -78,15 +60,5 @@ public SecurityProfile() [JsonProperty(PropertyName = "encryptionAtHost")] public bool? EncryptionAtHost { get; set; } - /// - /// Gets or sets specifies the SecurityType of the virtual machine. It - /// is set as TrustedLaunch to enable UefiSettings. - /// &lt;br&gt;&lt;br&gt; Default: UefiSettings will not - /// be enabled unless this property is set as TrustedLaunch. Possible - /// values include: 'TrustedLaunch' - /// - [JsonProperty(PropertyName = "securityType")] - public SecurityTypes? SecurityType { get; set; } - } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SecurityTypes.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SecurityTypes.cs deleted file mode 100644 index aad5bca9275b..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SecurityTypes.cs +++ /dev/null @@ -1,54 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Newtonsoft.Json; - using Newtonsoft.Json.Converters; - using System.Runtime; - using System.Runtime.Serialization; - - /// - /// Defines values for SecurityTypes. - /// - [JsonConverter(typeof(StringEnumConverter))] - public enum SecurityTypes - { - [EnumMember(Value = "TrustedLaunch")] - TrustedLaunch - } - internal static class SecurityTypesEnumExtension - { - internal static string ToSerializedValue(this SecurityTypes? value) - { - return value == null ? null : ((SecurityTypes)value).ToSerializedValue(); - } - - internal static string ToSerializedValue(this SecurityTypes value) - { - switch( value ) - { - case SecurityTypes.TrustedLaunch: - return "TrustedLaunch"; - } - return null; - } - - internal static SecurityTypes? ParseSecurityTypes(this string value) - { - switch( value ) - { - case "TrustedLaunch": - return SecurityTypes.TrustedLaunch; - } - return null; - } - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VMGuestPatchRebootBehavior.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SoftwareUpdateRebootBehavior.cs similarity index 80% rename from sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VMGuestPatchRebootBehavior.cs rename to sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SoftwareUpdateRebootBehavior.cs index 87a76dded6d9..de78bf037aca 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VMGuestPatchRebootBehavior.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SoftwareUpdateRebootBehavior.cs @@ -12,11 +12,10 @@ namespace Microsoft.Azure.Management.Compute.Models { /// - /// Defines values for VMGuestPatchRebootBehavior. + /// Defines values for SoftwareUpdateRebootBehavior. /// - public static class VMGuestPatchRebootBehavior + public static class SoftwareUpdateRebootBehavior { - public const string Unknown = "Unknown"; public const string NeverReboots = "NeverReboots"; public const string AlwaysRequiresReboot = "AlwaysRequiresReboot"; public const string CanRequestReboot = "CanRequestReboot"; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SshPublicKey.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SshPublicKey.cs index 129f2e1d9d71..c26ca0214e35 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SshPublicKey.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SshPublicKey.cs @@ -38,7 +38,7 @@ public SshPublicKey() /// authenticate with the VM through ssh. The key needs to be at least /// 2048-bit and in ssh-rsa format. <br><br> For creating /// ssh keys, see [Create SSH keys on Linux and Mac for Linux VMs in - /// Azure](https://docs.microsoft.com/en-us/azure/virtual-machines/linux/mac-create-ssh-keys?toc=%2fazure%2fvirtual-machines%2flinux%2ftoc.json). + /// Azure](https://docs.microsoft.com/azure/virtual-machines/virtual-machines-linux-mac-create-ssh-keys?toc=%2fazure%2fvirtual-machines%2flinux%2ftoc.json). public SshPublicKey(string path = default(string), string keyData = default(string)) { Path = path; @@ -64,7 +64,7 @@ public SshPublicKey() /// the VM through ssh. The key needs to be at least 2048-bit and in /// ssh-rsa format. &lt;br&gt;&lt;br&gt; For creating /// ssh keys, see [Create SSH keys on Linux and Mac for Linux VMs in - /// Azure](https://docs.microsoft.com/en-us/azure/virtual-machines/linux/mac-create-ssh-keys?toc=%2fazure%2fvirtual-machines%2flinux%2ftoc.json). + /// Azure](https://docs.microsoft.com/azure/virtual-machines/virtual-machines-linux-mac-create-ssh-keys?toc=%2fazure%2fvirtual-machines%2flinux%2ftoc.json). /// [JsonProperty(PropertyName = "keyData")] public string KeyData { get; set; } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/StatusCodeCount.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/StatusCodeCount.cs new file mode 100644 index 000000000000..58d751d63e8e --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/StatusCodeCount.cs @@ -0,0 +1,57 @@ +// +// 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; + + public partial class StatusCodeCount + { + /// + /// Initializes a new instance of the StatusCodeCount class. + /// + public StatusCodeCount() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the StatusCodeCount class. + /// + /// The instance view status code + /// Number of instances having this status + /// code + public StatusCodeCount(string code = default(string), int? count = default(int?)) + { + Code = code; + Count = count; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the instance view status code + /// + [JsonProperty(PropertyName = "code")] + public string Code { get; private set; } + + /// + /// Gets number of instances having this status code + /// + [JsonProperty(PropertyName = "count")] + public int? Count { get; private set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/UefiSettings.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/UefiSettings.cs deleted file mode 100644 index 09b95b6c3d09..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/UefiSettings.cs +++ /dev/null @@ -1,69 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Newtonsoft.Json; - using System.Linq; - - /// - /// Specifies the security settings like secure boot and vTPM used while - /// creating the virtual machine. <br><br>Minimum api-version: - /// 2020-12-01 - /// - public partial class UefiSettings - { - /// - /// Initializes a new instance of the UefiSettings class. - /// - public UefiSettings() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the UefiSettings class. - /// - /// Specifies whether secure boot - /// should be enabled on the virtual machine. - /// <br><br>Minimum api-version: 2020-12-01 - /// Specifies whether vTPM should be enabled - /// on the virtual machine. <br><br>Minimum api-version: - /// 2020-12-01 - public UefiSettings(bool? secureBootEnabled = default(bool?), bool? vTpmEnabled = default(bool?)) - { - SecureBootEnabled = secureBootEnabled; - VTpmEnabled = vTpmEnabled; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets specifies whether secure boot should be enabled on the - /// virtual machine. &lt;br&gt;&lt;br&gt;Minimum - /// api-version: 2020-12-01 - /// - [JsonProperty(PropertyName = "secureBootEnabled")] - public bool? SecureBootEnabled { get; set; } - - /// - /// Gets or sets specifies whether vTPM should be enabled on the - /// virtual machine. &lt;br&gt;&lt;br&gt;Minimum - /// api-version: 2020-12-01 - /// - [JsonProperty(PropertyName = "vTpmEnabled")] - public bool? VTpmEnabled { get; set; } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/UpdateDomain.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/UpdateDomain.cs new file mode 100644 index 000000000000..a70bab5d5e0d --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/UpdateDomain.cs @@ -0,0 +1,59 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Defines an update domain for the cloud service. + /// + public partial class UpdateDomain + { + /// + /// Initializes a new instance of the UpdateDomain class. + /// + public UpdateDomain() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the UpdateDomain class. + /// + /// Resource Id + /// Resource Name + public UpdateDomain(string id = default(string), string name = default(string)) + { + Id = id; + Name = name; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets resource Id + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; private set; } + + /// + /// Gets resource Name + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VMGuestPatchClassificationLinux.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VMGuestPatchClassificationLinux.cs deleted file mode 100644 index 0cc53c8e44fc..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VMGuestPatchClassificationLinux.cs +++ /dev/null @@ -1,23 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - - /// - /// Defines values for VMGuestPatchClassificationLinux. - /// - public static class VMGuestPatchClassificationLinux - { - public const string Critical = "Critical"; - public const string Security = "Security"; - public const string Other = "Other"; - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VMGuestPatchClassificationWindows.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VMGuestPatchClassificationWindows.cs deleted file mode 100644 index e98f65e64153..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VMGuestPatchClassificationWindows.cs +++ /dev/null @@ -1,28 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - - /// - /// Defines values for VMGuestPatchClassificationWindows. - /// - public static class VMGuestPatchClassificationWindows - { - public const string Critical = "Critical"; - public const string Security = "Security"; - public const string UpdateRollUp = "UpdateRollUp"; - public const string FeaturePack = "FeaturePack"; - public const string ServicePack = "ServicePack"; - public const string Definition = "Definition"; - public const string Tools = "Tools"; - public const string Updates = "Updates"; - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VMGuestPatchRebootSetting.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VMGuestPatchRebootSetting.cs deleted file mode 100644 index ebfef92400a4..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VMGuestPatchRebootSetting.cs +++ /dev/null @@ -1,23 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - - /// - /// Defines values for VMGuestPatchRebootSetting. - /// - public static class VMGuestPatchRebootSetting - { - public const string IfRequired = "IfRequired"; - public const string Never = "Never"; - public const string Always = "Always"; - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachine.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachine.cs index b2a2fe9d7b9c..53cc695fea8b 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachine.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachine.cs @@ -139,26 +139,12 @@ public VirtualMachine() /// minutes and 120 minutes (inclusive) and should be specified in ISO /// 8601 format. The default value is 90 minutes (PT1H30M). /// <br><br> Minimum api-version: 2020-06-01 - /// Specifies the scale set logical - /// fault domain into which the Virtual Machine will be created. By - /// default, the Virtual Machine will by automatically assigned to a - /// fault domain that best maintains balance across available fault - /// domains.<br><li>This is applicable only if the - /// 'virtualMachineScaleSet' property of this Virtual Machine is - /// set.<li>The Virtual Machine Scale Set that is referenced, - /// must have 'platformFaultDomainCount' &gt; 1.<li>This - /// property cannot be updated once the Virtual Machine is - /// created.<li>Fault domain assignment can be viewed in the - /// Virtual Machine Instance View.<br><br>Minimum - /// api‐version: 2020‐12‐01 /// The virtual machine child extension /// resources. /// The identity of the virtual machine, if /// configured. /// The virtual machine zones. - /// The extended location of the Virtual - /// Machine. - public VirtualMachine(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), Plan plan = default(Plan), HardwareProfile hardwareProfile = default(HardwareProfile), StorageProfile storageProfile = default(StorageProfile), AdditionalCapabilities additionalCapabilities = default(AdditionalCapabilities), OSProfile osProfile = default(OSProfile), NetworkProfile networkProfile = default(NetworkProfile), SecurityProfile securityProfile = default(SecurityProfile), DiagnosticsProfile diagnosticsProfile = default(DiagnosticsProfile), SubResource availabilitySet = default(SubResource), SubResource virtualMachineScaleSet = default(SubResource), SubResource proximityPlacementGroup = default(SubResource), string priority = default(string), string evictionPolicy = default(string), BillingProfile billingProfile = default(BillingProfile), SubResource host = default(SubResource), SubResource hostGroup = default(SubResource), string provisioningState = default(string), VirtualMachineInstanceView instanceView = default(VirtualMachineInstanceView), string licenseType = default(string), string vmId = default(string), string extensionsTimeBudget = default(string), int? platformFaultDomain = default(int?), IList resources = default(IList), VirtualMachineIdentity identity = default(VirtualMachineIdentity), IList zones = default(IList), ExtendedLocation extendedLocation = default(ExtendedLocation)) + public VirtualMachine(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), Plan plan = default(Plan), HardwareProfile hardwareProfile = default(HardwareProfile), StorageProfile storageProfile = default(StorageProfile), AdditionalCapabilities additionalCapabilities = default(AdditionalCapabilities), OSProfile osProfile = default(OSProfile), NetworkProfile networkProfile = default(NetworkProfile), SecurityProfile securityProfile = default(SecurityProfile), DiagnosticsProfile diagnosticsProfile = default(DiagnosticsProfile), SubResource availabilitySet = default(SubResource), SubResource virtualMachineScaleSet = default(SubResource), SubResource proximityPlacementGroup = default(SubResource), string priority = default(string), string evictionPolicy = default(string), BillingProfile billingProfile = default(BillingProfile), SubResource host = default(SubResource), SubResource hostGroup = default(SubResource), string provisioningState = default(string), VirtualMachineInstanceView instanceView = default(VirtualMachineInstanceView), string licenseType = default(string), string vmId = default(string), string extensionsTimeBudget = default(string), IList resources = default(IList), VirtualMachineIdentity identity = default(VirtualMachineIdentity), IList zones = default(IList)) : base(location, id, name, type, tags) { Plan = plan; @@ -182,11 +168,9 @@ public VirtualMachine() LicenseType = licenseType; VmId = vmId; ExtensionsTimeBudget = extensionsTimeBudget; - PlatformFaultDomain = platformFaultDomain; Resources = resources; Identity = identity; Zones = zones; - ExtendedLocation = extendedLocation; CustomInit(); } @@ -404,24 +388,6 @@ public VirtualMachine() [JsonProperty(PropertyName = "properties.extensionsTimeBudget")] public string ExtensionsTimeBudget { get; set; } - /// - /// Gets or sets specifies the scale set logical fault domain into - /// which the Virtual Machine will be created. By default, the Virtual - /// Machine will by automatically assigned to a fault domain that best - /// maintains balance across available fault - /// domains.&lt;br&gt;&lt;li&gt;This is applicable only - /// if the 'virtualMachineScaleSet' property of this Virtual Machine is - /// set.&lt;li&gt;The Virtual Machine Scale Set that is - /// referenced, must have 'platformFaultDomainCount' &amp;gt; - /// 1.&lt;li&gt;This property cannot be updated once the - /// Virtual Machine is created.&lt;li&gt;Fault domain - /// assignment can be viewed in the Virtual Machine Instance - /// View.&lt;br&gt;&lt;br&gt;Minimum api‐version: - /// 2020‐12‐01 - /// - [JsonProperty(PropertyName = "properties.platformFaultDomain")] - public int? PlatformFaultDomain { get; set; } - /// /// Gets the virtual machine child extension resources. /// @@ -440,12 +406,6 @@ public VirtualMachine() [JsonProperty(PropertyName = "zones")] public IList Zones { get; set; } - /// - /// Gets or sets the extended location of the Virtual Machine. - /// - [JsonProperty(PropertyName = "extendedLocation")] - public ExtendedLocation ExtendedLocation { get; set; } - /// /// Validate the object. /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineAssessPatchesResult.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineAssessPatchesResult.cs index 9bb2a7c3e50c..3547230ce763 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineAssessPatchesResult.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineAssessPatchesResult.cs @@ -35,10 +35,9 @@ public VirtualMachineAssessPatchesResult() /// /// The overall success or failure status of the /// operation. It remains "InProgress" until the operation completes. - /// At that point it will become "Unknown", "Failed", "Succeeded", or - /// "CompletedWithWarnings.". Possible values include: 'Unknown', - /// 'InProgress', 'Failed', 'Succeeded', - /// 'CompletedWithWarnings' + /// At that point it will become "Failed", "Succeeded", or + /// "CompletedWithWarnings.". Possible values include: 'InProgress', + /// 'Failed', 'Succeeded', 'CompletedWithWarnings' /// The activity ID of the operation /// that produced this result. It is used to correlate across CRP and /// extension logs. @@ -52,12 +51,12 @@ public VirtualMachineAssessPatchesResult() /// excluding critical and security. /// The UTC timestamp when the operation /// began. - /// The list of patches that have been - /// detected as available for installation. + /// The list of patches that have been detected + /// as available for installation. /// The errors that were encountered during /// execution of the operation. The details array contains the list of /// them. - public VirtualMachineAssessPatchesResult(string status = default(string), string assessmentActivityId = default(string), bool? rebootPending = default(bool?), int? criticalAndSecurityPatchCount = default(int?), int? otherPatchCount = default(int?), System.DateTime? startDateTime = default(System.DateTime?), IList availablePatches = default(IList), ApiError error = default(ApiError)) + public VirtualMachineAssessPatchesResult(string status = default(string), string assessmentActivityId = default(string), bool? rebootPending = default(bool?), int? criticalAndSecurityPatchCount = default(int?), int? otherPatchCount = default(int?), System.DateTime? startDateTime = default(System.DateTime?), IList patches = default(IList), ApiError error = default(ApiError)) { Status = status; AssessmentActivityId = assessmentActivityId; @@ -65,7 +64,7 @@ public VirtualMachineAssessPatchesResult() CriticalAndSecurityPatchCount = criticalAndSecurityPatchCount; OtherPatchCount = otherPatchCount; StartDateTime = startDateTime; - AvailablePatches = availablePatches; + Patches = patches; Error = error; CustomInit(); } @@ -78,9 +77,9 @@ public VirtualMachineAssessPatchesResult() /// /// Gets the overall success or failure status of the operation. It /// remains "InProgress" until the operation completes. At that point - /// it will become "Unknown", "Failed", "Succeeded", or - /// "CompletedWithWarnings.". Possible values include: 'Unknown', - /// 'InProgress', 'Failed', 'Succeeded', 'CompletedWithWarnings' + /// it will become "Failed", "Succeeded", or "CompletedWithWarnings.". + /// Possible values include: 'InProgress', 'Failed', 'Succeeded', + /// 'CompletedWithWarnings' /// [JsonProperty(PropertyName = "status")] public string Status { get; private set; } @@ -124,8 +123,8 @@ public VirtualMachineAssessPatchesResult() /// Gets the list of patches that have been detected as available for /// installation. /// - [JsonProperty(PropertyName = "availablePatches")] - public IList AvailablePatches { get; private set; } + [JsonProperty(PropertyName = "patches")] + public IList Patches { get; private set; } /// /// Gets the errors that were encountered during execution of the diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineImage.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineImage.cs index a938c57910a2..8a2b6409b7e4 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineImage.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineImage.cs @@ -42,14 +42,12 @@ public VirtualMachineImage() /// virtual machine. For more information about using tags, see [Using /// tags to organize your Azure /// resources](https://docs.microsoft.com/azure/azure-resource-manager/resource-group-using-tags.md). - /// The extended location of the Virtual - /// Machine. /// Possible values include: 'V1', /// 'V2' /// Specifies disallowed configuration for the /// VirtualMachine created from the image - public VirtualMachineImage(string name, string location, string id = default(string), IDictionary tags = default(IDictionary), ExtendedLocation extendedLocation = default(ExtendedLocation), PurchasePlan plan = default(PurchasePlan), OSDiskImage osDiskImage = default(OSDiskImage), IList dataDiskImages = default(IList), AutomaticOSUpgradeProperties automaticOSUpgradeProperties = default(AutomaticOSUpgradeProperties), string hyperVGeneration = default(string), DisallowedConfiguration disallowed = default(DisallowedConfiguration), IList features = default(IList)) - : base(name, location, id, tags, extendedLocation) + public VirtualMachineImage(string name, string location, string id = default(string), IDictionary tags = default(IDictionary), PurchasePlan plan = default(PurchasePlan), OSDiskImage osDiskImage = default(OSDiskImage), IList dataDiskImages = default(IList), AutomaticOSUpgradeProperties automaticOSUpgradeProperties = default(AutomaticOSUpgradeProperties), string hyperVGeneration = default(string), DisallowedConfiguration disallowed = default(DisallowedConfiguration)) + : base(name, location, id, tags) { Plan = plan; OsDiskImage = osDiskImage; @@ -57,7 +55,6 @@ public VirtualMachineImage() AutomaticOSUpgradeProperties = automaticOSUpgradeProperties; HyperVGeneration = hyperVGeneration; Disallowed = disallowed; - Features = features; CustomInit(); } @@ -99,11 +96,6 @@ public VirtualMachineImage() [JsonProperty(PropertyName = "properties.disallowed")] public DisallowedConfiguration Disallowed { get; set; } - /// - /// - [JsonProperty(PropertyName = "properties.features")] - public IList Features { get; set; } - /// /// Validate the object. /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineImageResource.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineImageResource.cs index f7adc3819051..880249a5672c 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineImageResource.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineImageResource.cs @@ -42,15 +42,12 @@ public VirtualMachineImageResource() /// virtual machine. For more information about using tags, see [Using /// tags to organize your Azure /// resources](https://docs.microsoft.com/azure/azure-resource-manager/resource-group-using-tags.md). - /// The extended location of the Virtual - /// Machine. - public VirtualMachineImageResource(string name, string location, string id = default(string), IDictionary tags = default(IDictionary), ExtendedLocation extendedLocation = default(ExtendedLocation)) + public VirtualMachineImageResource(string name, string location, string id = default(string), IDictionary tags = default(IDictionary)) : base(id) { Name = name; Location = location; Tags = tags; - ExtendedLocation = extendedLocation; CustomInit(); } @@ -80,12 +77,6 @@ public VirtualMachineImageResource() [JsonProperty(PropertyName = "tags")] public IDictionary Tags { get; set; } - /// - /// Gets or sets the extended location of the Virtual Machine. - /// - [JsonProperty(PropertyName = "extendedLocation")] - public ExtendedLocation ExtendedLocation { get; set; } - /// /// Validate the object. /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineInstallPatchesParameters.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineInstallPatchesParameters.cs deleted file mode 100644 index e7170d046d5b..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineInstallPatchesParameters.cs +++ /dev/null @@ -1,107 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Microsoft.Rest; - using Newtonsoft.Json; - using System.Linq; - - /// - /// Input for InstallPatches as directly received by the API - /// - public partial class VirtualMachineInstallPatchesParameters - { - /// - /// Initializes a new instance of the - /// VirtualMachineInstallPatchesParameters class. - /// - public VirtualMachineInstallPatchesParameters() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the - /// VirtualMachineInstallPatchesParameters class. - /// - /// Specifies the maximum amount of time - /// that the operation will run. It must be an ISO 8601-compliant - /// duration string such as PT4H (4 hours) - /// Defines when it is acceptable to reboot - /// a VM during a software update operation. Possible values include: - /// 'IfRequired', 'Never', 'Always' - /// Input for InstallPatches on a - /// Windows VM, as directly received by the API - /// Input for InstallPatches on a Linux - /// VM, as directly received by the API - public VirtualMachineInstallPatchesParameters(string maximumDuration, string rebootSetting, WindowsParameters windowsParameters = default(WindowsParameters), LinuxParameters linuxParameters = default(LinuxParameters)) - { - MaximumDuration = maximumDuration; - RebootSetting = rebootSetting; - WindowsParameters = windowsParameters; - LinuxParameters = linuxParameters; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets specifies the maximum amount of time that the - /// operation will run. It must be an ISO 8601-compliant duration - /// string such as PT4H (4 hours) - /// - [JsonProperty(PropertyName = "maximumDuration")] - public string MaximumDuration { get; set; } - - /// - /// Gets or sets defines when it is acceptable to reboot a VM during a - /// software update operation. Possible values include: 'IfRequired', - /// 'Never', 'Always' - /// - [JsonProperty(PropertyName = "rebootSetting")] - public string RebootSetting { get; set; } - - /// - /// Gets or sets input for InstallPatches on a Windows VM, as directly - /// received by the API - /// - [JsonProperty(PropertyName = "windowsParameters")] - public WindowsParameters WindowsParameters { get; set; } - - /// - /// Gets or sets input for InstallPatches on a Linux VM, as directly - /// received by the API - /// - [JsonProperty(PropertyName = "linuxParameters")] - public LinuxParameters LinuxParameters { get; set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (MaximumDuration == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "MaximumDuration"); - } - if (RebootSetting == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "RebootSetting"); - } - } - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineInstallPatchesResult.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineInstallPatchesResult.cs deleted file mode 100644 index 53d2c65fe027..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineInstallPatchesResult.cs +++ /dev/null @@ -1,179 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// The result summary of an installation operation. - /// - public partial class VirtualMachineInstallPatchesResult - { - /// - /// Initializes a new instance of the - /// VirtualMachineInstallPatchesResult class. - /// - public VirtualMachineInstallPatchesResult() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the - /// VirtualMachineInstallPatchesResult class. - /// - /// The overall success or failure status of the - /// operation. It remains "InProgress" until the operation completes. - /// At that point it will become "Failed", "Succeeded", "Unknown" or - /// "CompletedWithWarnings.". Possible values include: 'Unknown', - /// 'InProgress', 'Failed', 'Succeeded', - /// 'CompletedWithWarnings' - /// The activity ID of the - /// operation that produced this result. It is used to correlate across - /// CRP and extension logs. - /// The reboot state of the VM following - /// completion of the operation. Possible values include: 'Unknown', - /// 'NotNeeded', 'Required', 'Started', 'Failed', 'Completed' - /// Whether the operation ran - /// out of time before it completed all its intended actions. - /// The number of patches that were - /// not installed due to the user blocking their installation. - /// The number of patches that were - /// detected as available for install, but did not meet the operation's - /// criteria. - /// The number of patches that were - /// identified as meeting the installation criteria, but were not able - /// to be installed. Typically this happens when - /// maintenanceWindowExceeded == true. - /// The number of patches - /// successfully installed. - /// The number of patches that could not - /// be installed due to some issue. See errors for details. - /// The patches that were installed during the - /// operation. - /// The UTC timestamp when the operation - /// began. - /// The errors that were encountered during - /// execution of the operation. The details array contains the list of - /// them. - public VirtualMachineInstallPatchesResult(string status = default(string), string installationActivityId = default(string), string rebootStatus = default(string), bool? maintenanceWindowExceeded = default(bool?), int? excludedPatchCount = default(int?), int? notSelectedPatchCount = default(int?), int? pendingPatchCount = default(int?), int? installedPatchCount = default(int?), int? failedPatchCount = default(int?), IList patches = default(IList), System.DateTime? startDateTime = default(System.DateTime?), ApiError error = default(ApiError)) - { - Status = status; - InstallationActivityId = installationActivityId; - RebootStatus = rebootStatus; - MaintenanceWindowExceeded = maintenanceWindowExceeded; - ExcludedPatchCount = excludedPatchCount; - NotSelectedPatchCount = notSelectedPatchCount; - PendingPatchCount = pendingPatchCount; - InstalledPatchCount = installedPatchCount; - FailedPatchCount = failedPatchCount; - Patches = patches; - StartDateTime = startDateTime; - Error = error; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets the overall success or failure status of the operation. It - /// remains "InProgress" until the operation completes. At that point - /// it will become "Failed", "Succeeded", "Unknown" or - /// "CompletedWithWarnings.". Possible values include: 'Unknown', - /// 'InProgress', 'Failed', 'Succeeded', 'CompletedWithWarnings' - /// - [JsonProperty(PropertyName = "status")] - public string Status { get; private set; } - - /// - /// Gets the activity ID of the operation that produced this result. It - /// is used to correlate across CRP and extension logs. - /// - [JsonProperty(PropertyName = "installationActivityId")] - public string InstallationActivityId { get; private set; } - - /// - /// Gets the reboot state of the VM following completion of the - /// operation. Possible values include: 'Unknown', 'NotNeeded', - /// 'Required', 'Started', 'Failed', 'Completed' - /// - [JsonProperty(PropertyName = "rebootStatus")] - public string RebootStatus { get; private set; } - - /// - /// Gets whether the operation ran out of time before it completed all - /// its intended actions. - /// - [JsonProperty(PropertyName = "maintenanceWindowExceeded")] - public bool? MaintenanceWindowExceeded { get; private set; } - - /// - /// Gets the number of patches that were not installed due to the user - /// blocking their installation. - /// - [JsonProperty(PropertyName = "excludedPatchCount")] - public int? ExcludedPatchCount { get; private set; } - - /// - /// Gets the number of patches that were detected as available for - /// install, but did not meet the operation's criteria. - /// - [JsonProperty(PropertyName = "notSelectedPatchCount")] - public int? NotSelectedPatchCount { get; private set; } - - /// - /// Gets the number of patches that were identified as meeting the - /// installation criteria, but were not able to be installed. Typically - /// this happens when maintenanceWindowExceeded == true. - /// - [JsonProperty(PropertyName = "pendingPatchCount")] - public int? PendingPatchCount { get; private set; } - - /// - /// Gets the number of patches successfully installed. - /// - [JsonProperty(PropertyName = "installedPatchCount")] - public int? InstalledPatchCount { get; private set; } - - /// - /// Gets the number of patches that could not be installed due to some - /// issue. See errors for details. - /// - [JsonProperty(PropertyName = "failedPatchCount")] - public int? FailedPatchCount { get; private set; } - - /// - /// Gets the patches that were installed during the operation. - /// - [JsonProperty(PropertyName = "patches")] - public IList Patches { get; private set; } - - /// - /// Gets the UTC timestamp when the operation began. - /// - [JsonProperty(PropertyName = "startDateTime")] - public System.DateTime? StartDateTime { get; private set; } - - /// - /// Gets the errors that were encountered during execution of the - /// operation. The details array contains the list of them. - /// - [JsonProperty(PropertyName = "error")] - public ApiError Error { get; private set; } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineInstanceView.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineInstanceView.cs index 133010dfe51a..d0140ccba255 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineInstanceView.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineInstanceView.cs @@ -64,8 +64,8 @@ public VirtualMachineInstanceView() /// that has automatic placement enabled. <br><br>Minimum /// api-version: 2020-06-01. /// The resource status information. - /// [Preview Feature] The status of virtual - /// machine patch operations. + /// The status of virtual machine patch + /// operations. public VirtualMachineInstanceView(int? platformUpdateDomain = default(int?), int? platformFaultDomain = default(int?), string computerName = default(string), string osName = default(string), string osVersion = default(string), string hyperVGeneration = default(string), string rdpThumbPrint = default(string), VirtualMachineAgentInstanceView vmAgent = default(VirtualMachineAgentInstanceView), MaintenanceRedeployStatus maintenanceRedeployStatus = default(MaintenanceRedeployStatus), IList disks = default(IList), IList extensions = default(IList), VirtualMachineHealthStatus vmHealth = default(VirtualMachineHealthStatus), BootDiagnosticsInstanceView bootDiagnostics = default(BootDiagnosticsInstanceView), string assignedHost = default(string), IList statuses = default(IList), VirtualMachinePatchStatus patchStatus = default(VirtualMachinePatchStatus)) { PlatformUpdateDomain = platformUpdateDomain; @@ -195,8 +195,7 @@ public VirtualMachineInstanceView() public IList Statuses { get; set; } /// - /// Gets or sets [Preview Feature] The status of virtual machine patch - /// operations. + /// Gets or sets the status of virtual machine patch operations. /// [JsonProperty(PropertyName = "patchStatus")] public VirtualMachinePatchStatus PatchStatus { get; set; } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachinePatchStatus.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachinePatchStatus.cs index bd1b95c7f635..bc09fb9fe98c 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachinePatchStatus.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachinePatchStatus.cs @@ -11,8 +11,6 @@ namespace Microsoft.Azure.Management.Compute.Models { using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; using System.Linq; /// @@ -36,13 +34,10 @@ public VirtualMachinePatchStatus() /// The installation summary /// of the latest installation operation for the virtual /// machine. - /// The enablement status of the - /// specified patchMode - public VirtualMachinePatchStatus(AvailablePatchSummary availablePatchSummary = default(AvailablePatchSummary), LastPatchInstallationSummary lastPatchInstallationSummary = default(LastPatchInstallationSummary), IList configurationStatuses = default(IList)) + public VirtualMachinePatchStatus(AvailablePatchSummary availablePatchSummary = default(AvailablePatchSummary), LastPatchInstallationSummary lastPatchInstallationSummary = default(LastPatchInstallationSummary)) { AvailablePatchSummary = availablePatchSummary; LastPatchInstallationSummary = lastPatchInstallationSummary; - ConfigurationStatuses = configurationStatuses; CustomInit(); } @@ -65,11 +60,5 @@ public VirtualMachinePatchStatus() [JsonProperty(PropertyName = "lastPatchInstallationSummary")] public LastPatchInstallationSummary LastPatchInstallationSummary { get; set; } - /// - /// Gets the enablement status of the specified patchMode - /// - [JsonProperty(PropertyName = "configurationStatuses")] - public IList ConfigurationStatuses { get; private set; } - } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineScaleSet.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineScaleSet.cs index f2c95f765b74..a6592646caf3 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineScaleSet.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineScaleSet.cs @@ -88,17 +88,12 @@ public VirtualMachineScaleSet() /// Specifies the scale-in policy that /// decides which virtual machines are chosen for removal when a /// Virtual Machine Scale Set is scaled-in. - /// Specifies the orchestration mode - /// for the virtual machine scale set. Possible values include: - /// 'Uniform', 'Flexible' /// The identity of the virtual machine scale /// set, if configured. /// The virtual machine scale set zones. NOTE: /// Availability zones can only be set when you create the scale /// set - /// The extended location of the Virtual - /// Machine Scale Set. - public VirtualMachineScaleSet(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), Sku sku = default(Sku), Plan plan = default(Plan), UpgradePolicy upgradePolicy = default(UpgradePolicy), AutomaticRepairsPolicy automaticRepairsPolicy = default(AutomaticRepairsPolicy), VirtualMachineScaleSetVMProfile virtualMachineProfile = default(VirtualMachineScaleSetVMProfile), string provisioningState = default(string), bool? overprovision = default(bool?), bool? doNotRunExtensionsOnOverprovisionedVMs = default(bool?), string uniqueId = default(string), bool? singlePlacementGroup = default(bool?), bool? zoneBalance = default(bool?), int? platformFaultDomainCount = default(int?), SubResource proximityPlacementGroup = default(SubResource), SubResource hostGroup = default(SubResource), AdditionalCapabilities additionalCapabilities = default(AdditionalCapabilities), ScaleInPolicy scaleInPolicy = default(ScaleInPolicy), string orchestrationMode = default(string), VirtualMachineScaleSetIdentity identity = default(VirtualMachineScaleSetIdentity), IList zones = default(IList), ExtendedLocation extendedLocation = default(ExtendedLocation)) + public VirtualMachineScaleSet(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), Sku sku = default(Sku), Plan plan = default(Plan), UpgradePolicy upgradePolicy = default(UpgradePolicy), AutomaticRepairsPolicy automaticRepairsPolicy = default(AutomaticRepairsPolicy), VirtualMachineScaleSetVMProfile virtualMachineProfile = default(VirtualMachineScaleSetVMProfile), string provisioningState = default(string), bool? overprovision = default(bool?), bool? doNotRunExtensionsOnOverprovisionedVMs = default(bool?), string uniqueId = default(string), bool? singlePlacementGroup = default(bool?), bool? zoneBalance = default(bool?), int? platformFaultDomainCount = default(int?), SubResource proximityPlacementGroup = default(SubResource), SubResource hostGroup = default(SubResource), AdditionalCapabilities additionalCapabilities = default(AdditionalCapabilities), ScaleInPolicy scaleInPolicy = default(ScaleInPolicy), VirtualMachineScaleSetIdentity identity = default(VirtualMachineScaleSetIdentity), IList zones = default(IList)) : base(location, id, name, type, tags) { Sku = sku; @@ -117,10 +112,8 @@ public VirtualMachineScaleSet() HostGroup = hostGroup; AdditionalCapabilities = additionalCapabilities; ScaleInPolicy = scaleInPolicy; - OrchestrationMode = orchestrationMode; Identity = identity; Zones = zones; - ExtendedLocation = extendedLocation; CustomInit(); } @@ -252,13 +245,6 @@ public VirtualMachineScaleSet() [JsonProperty(PropertyName = "properties.scaleInPolicy")] public ScaleInPolicy ScaleInPolicy { get; set; } - /// - /// Gets or sets specifies the orchestration mode for the virtual - /// machine scale set. Possible values include: 'Uniform', 'Flexible' - /// - [JsonProperty(PropertyName = "properties.orchestrationMode")] - public string OrchestrationMode { get; set; } - /// /// Gets or sets the identity of the virtual machine scale set, if /// configured. @@ -273,13 +259,6 @@ public VirtualMachineScaleSet() [JsonProperty(PropertyName = "zones")] public IList Zones { get; set; } - /// - /// Gets or sets the extended location of the Virtual Machine Scale - /// Set. - /// - [JsonProperty(PropertyName = "extendedLocation")] - public ExtendedLocation ExtendedLocation { get; set; } - /// /// Validate the object. /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineSoftwarePatchProperties.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineSoftwarePatchProperties.cs index bc709ce1f948..274c3f085e3c 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineSoftwarePatchProperties.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineSoftwarePatchProperties.cs @@ -37,12 +37,12 @@ public VirtualMachineSoftwarePatchProperties() /// The friendly name of the patch. /// The version number of the patch. This /// property applies only to Linux patches. - /// The KBID of the patch. Only applies to Windows + /// The KBID of the patch. Only applies to Windows /// patches. /// The classification(s) of the patch as /// provided by the patch publisher. /// Describes the reboot requirements of - /// the patch. Possible values include: 'Unknown', 'NeverReboots', + /// the patch. Possible values include: 'NeverReboots', /// 'AlwaysRequiresReboot', 'CanRequestReboot' /// The activity ID of the operation that /// produced this result. It is used to correlate across CRP and @@ -51,14 +51,15 @@ public VirtualMachineSoftwarePatchProperties() /// published this patch. /// The UTC timestamp of the last /// update to this patch record. - /// Describes the availability of a given - /// patch. Possible values include: 'Unknown', 'Available' - public VirtualMachineSoftwarePatchProperties(string patchId = default(string), string name = default(string), string version = default(string), string kbId = default(string), IList classifications = default(IList), string rebootBehavior = default(string), string activityId = default(string), System.DateTime? publishedDate = default(System.DateTime?), System.DateTime? lastModifiedDateTime = default(System.DateTime?), string assessmentState = default(string)) + /// Describes the outcome of an install + /// operation for a given patch. Possible values include: 'Installed', + /// 'Failed', 'Excluded', 'NotSelected', 'Pending', 'Available' + public VirtualMachineSoftwarePatchProperties(string patchId = default(string), string name = default(string), string version = default(string), string kbid = default(string), IList classifications = default(IList), string rebootBehavior = default(string), string activityId = default(string), System.DateTime? publishedDate = default(System.DateTime?), System.DateTime? lastModifiedDateTime = default(System.DateTime?), string assessmentState = default(string)) { PatchId = patchId; Name = name; Version = version; - KbId = kbId; + Kbid = kbid; Classifications = classifications; RebootBehavior = rebootBehavior; ActivityId = activityId; @@ -95,8 +96,8 @@ public VirtualMachineSoftwarePatchProperties() /// /// Gets the KBID of the patch. Only applies to Windows patches. /// - [JsonProperty(PropertyName = "kbId")] - public string KbId { get; private set; } + [JsonProperty(PropertyName = "kbid")] + public string Kbid { get; private set; } /// /// Gets the classification(s) of the patch as provided by the patch @@ -107,7 +108,7 @@ public VirtualMachineSoftwarePatchProperties() /// /// Gets describes the reboot requirements of the patch. Possible - /// values include: 'Unknown', 'NeverReboots', 'AlwaysRequiresReboot', + /// values include: 'NeverReboots', 'AlwaysRequiresReboot', /// 'CanRequestReboot' /// [JsonProperty(PropertyName = "rebootBehavior")] @@ -133,8 +134,9 @@ public VirtualMachineSoftwarePatchProperties() public System.DateTime? LastModifiedDateTime { get; private set; } /// - /// Gets describes the availability of a given patch. Possible values - /// include: 'Unknown', 'Available' + /// Gets describes the outcome of an install operation for a given + /// patch. Possible values include: 'Installed', 'Failed', 'Excluded', + /// 'NotSelected', 'Pending', 'Available' /// [JsonProperty(PropertyName = "assessmentState")] public string AssessmentState { get; private set; } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineUpdate.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineUpdate.cs index b91aa7a099bf..5a4f79543b84 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineUpdate.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineUpdate.cs @@ -135,22 +135,10 @@ public VirtualMachineUpdate() /// minutes and 120 minutes (inclusive) and should be specified in ISO /// 8601 format. The default value is 90 minutes (PT1H30M). /// <br><br> Minimum api-version: 2020-06-01 - /// Specifies the scale set logical - /// fault domain into which the Virtual Machine will be created. By - /// default, the Virtual Machine will by automatically assigned to a - /// fault domain that best maintains balance across available fault - /// domains.<br><li>This is applicable only if the - /// 'virtualMachineScaleSet' property of this Virtual Machine is - /// set.<li>The Virtual Machine Scale Set that is referenced, - /// must have 'platformFaultDomainCount' &gt; 1.<li>This - /// property cannot be updated once the Virtual Machine is - /// created.<li>Fault domain assignment can be viewed in the - /// Virtual Machine Instance View.<br><br>Minimum - /// api‐version: 2020‐12‐01 /// The identity of the virtual machine, if /// configured. /// The virtual machine zones. - public VirtualMachineUpdate(IDictionary tags = default(IDictionary), Plan plan = default(Plan), HardwareProfile hardwareProfile = default(HardwareProfile), StorageProfile storageProfile = default(StorageProfile), AdditionalCapabilities additionalCapabilities = default(AdditionalCapabilities), OSProfile osProfile = default(OSProfile), NetworkProfile networkProfile = default(NetworkProfile), SecurityProfile securityProfile = default(SecurityProfile), DiagnosticsProfile diagnosticsProfile = default(DiagnosticsProfile), SubResource availabilitySet = default(SubResource), SubResource virtualMachineScaleSet = default(SubResource), SubResource proximityPlacementGroup = default(SubResource), string priority = default(string), string evictionPolicy = default(string), BillingProfile billingProfile = default(BillingProfile), SubResource host = default(SubResource), SubResource hostGroup = default(SubResource), string provisioningState = default(string), VirtualMachineInstanceView instanceView = default(VirtualMachineInstanceView), string licenseType = default(string), string vmId = default(string), string extensionsTimeBudget = default(string), int? platformFaultDomain = default(int?), VirtualMachineIdentity identity = default(VirtualMachineIdentity), IList zones = default(IList)) + public VirtualMachineUpdate(IDictionary tags = default(IDictionary), Plan plan = default(Plan), HardwareProfile hardwareProfile = default(HardwareProfile), StorageProfile storageProfile = default(StorageProfile), AdditionalCapabilities additionalCapabilities = default(AdditionalCapabilities), OSProfile osProfile = default(OSProfile), NetworkProfile networkProfile = default(NetworkProfile), SecurityProfile securityProfile = default(SecurityProfile), DiagnosticsProfile diagnosticsProfile = default(DiagnosticsProfile), SubResource availabilitySet = default(SubResource), SubResource virtualMachineScaleSet = default(SubResource), SubResource proximityPlacementGroup = default(SubResource), string priority = default(string), string evictionPolicy = default(string), BillingProfile billingProfile = default(BillingProfile), SubResource host = default(SubResource), SubResource hostGroup = default(SubResource), string provisioningState = default(string), VirtualMachineInstanceView instanceView = default(VirtualMachineInstanceView), string licenseType = default(string), string vmId = default(string), string extensionsTimeBudget = default(string), VirtualMachineIdentity identity = default(VirtualMachineIdentity), IList zones = default(IList)) : base(tags) { Plan = plan; @@ -174,7 +162,6 @@ public VirtualMachineUpdate() LicenseType = licenseType; VmId = vmId; ExtensionsTimeBudget = extensionsTimeBudget; - PlatformFaultDomain = platformFaultDomain; Identity = identity; Zones = zones; CustomInit(); @@ -394,24 +381,6 @@ public VirtualMachineUpdate() [JsonProperty(PropertyName = "properties.extensionsTimeBudget")] public string ExtensionsTimeBudget { get; set; } - /// - /// Gets or sets specifies the scale set logical fault domain into - /// which the Virtual Machine will be created. By default, the Virtual - /// Machine will by automatically assigned to a fault domain that best - /// maintains balance across available fault - /// domains.&lt;br&gt;&lt;li&gt;This is applicable only - /// if the 'virtualMachineScaleSet' property of this Virtual Machine is - /// set.&lt;li&gt;The Virtual Machine Scale Set that is - /// referenced, must have 'platformFaultDomainCount' &amp;gt; - /// 1.&lt;li&gt;This property cannot be updated once the - /// Virtual Machine is created.&lt;li&gt;Fault domain - /// assignment can be viewed in the Virtual Machine Instance - /// View.&lt;br&gt;&lt;br&gt;Minimum api‐version: - /// 2020‐12‐01 - /// - [JsonProperty(PropertyName = "properties.platformFaultDomain")] - public int? PlatformFaultDomain { get; set; } - /// /// Gets or sets the identity of the virtual machine, if configured. /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/WindowsConfiguration.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/WindowsConfiguration.cs index 809b8955c76a..615ddbafcfb6 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/WindowsConfiguration.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/WindowsConfiguration.cs @@ -51,8 +51,8 @@ public WindowsConfiguration() /// Specifies additional /// base-64 encoded XML formatted information that can be included in /// the Unattend.xml file, which is used by Windows Setup. - /// [Preview Feature] Specifies settings - /// related to VM Guest Patching on Windows. + /// Specifies settings related to in-guest + /// patching (KBs). /// Specifies the Windows Remote Management /// listeners. This enables remote Windows PowerShell. public WindowsConfiguration(bool? provisionVMAgent = default(bool?), bool? enableAutomaticUpdates = default(bool?), string timeZone = default(string), IList additionalUnattendContent = default(IList), PatchSettings patchSettings = default(PatchSettings), WinRMConfiguration winRM = default(WinRMConfiguration)) @@ -112,8 +112,7 @@ public WindowsConfiguration() public IList AdditionalUnattendContent { get; set; } /// - /// Gets or sets [Preview Feature] Specifies settings related to VM - /// Guest Patching on Windows. + /// Gets or sets specifies settings related to in-guest patching (KBs). /// [JsonProperty(PropertyName = "patchSettings")] public PatchSettings PatchSettings { get; set; } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/WindowsParameters.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/WindowsParameters.cs deleted file mode 100644 index 230533edc19d..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/WindowsParameters.cs +++ /dev/null @@ -1,97 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Input for InstallPatches on a Windows VM, as directly received by the - /// API - /// - public partial class WindowsParameters - { - /// - /// Initializes a new instance of the WindowsParameters class. - /// - public WindowsParameters() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the WindowsParameters class. - /// - /// The update classifications - /// to select when installing patches for Windows. - /// Kbs to include in the patch - /// operation - /// Kbs to exclude in the patch - /// operation - /// Filters out Kbs that don't - /// have an InstallationRebootBehavior of 'NeverReboots' when this is - /// set to true. - /// This is used to install patches - /// that were published on or before this given max published - /// date. - public WindowsParameters(IList classificationsToInclude = default(IList), IList kbNumbersToInclude = default(IList), IList kbNumbersToExclude = default(IList), bool? excludeKbsRequiringReboot = default(bool?), System.DateTime? maxPatchPublishDate = default(System.DateTime?)) - { - ClassificationsToInclude = classificationsToInclude; - KbNumbersToInclude = kbNumbersToInclude; - KbNumbersToExclude = kbNumbersToExclude; - ExcludeKbsRequiringReboot = excludeKbsRequiringReboot; - MaxPatchPublishDate = maxPatchPublishDate; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets the update classifications to select when installing - /// patches for Windows. - /// - [JsonProperty(PropertyName = "classificationsToInclude")] - public IList ClassificationsToInclude { get; set; } - - /// - /// Gets or sets kbs to include in the patch operation - /// - [JsonProperty(PropertyName = "kbNumbersToInclude")] - public IList KbNumbersToInclude { get; set; } - - /// - /// Gets or sets kbs to exclude in the patch operation - /// - [JsonProperty(PropertyName = "kbNumbersToExclude")] - public IList KbNumbersToExclude { get; set; } - - /// - /// Gets or sets filters out Kbs that don't have an - /// InstallationRebootBehavior of 'NeverReboots' when this is set to - /// true. - /// - [JsonProperty(PropertyName = "excludeKbsRequiringReboot")] - public bool? ExcludeKbsRequiringReboot { get; set; } - - /// - /// Gets or sets this is used to install patches that were published on - /// or before this given max published date. - /// - [JsonProperty(PropertyName = "maxPatchPublishDate")] - public System.DateTime? MaxPatchPublishDate { get; set; } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Operations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Operations.cs index 3e58df5747bc..53367987b667 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Operations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Operations.cs @@ -70,7 +70,7 @@ internal Operations(ComputeManagementClient client) /// public async Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ProximityPlacementGroupsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ProximityPlacementGroupsOperations.cs index 5026ed7ba823..6372cbdc612a 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ProximityPlacementGroupsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ProximityPlacementGroupsOperations.cs @@ -105,7 +105,7 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -327,7 +327,7 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; ProximityPlacementGroupUpdate parameters = new ProximityPlacementGroupUpdate(); if (tags != null) { @@ -530,7 +530,7 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -710,7 +710,7 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -895,7 +895,7 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1078,7 +1078,7 @@ internal ProximityPlacementGroupsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SdkInfo_ComputeManagementClient.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SdkInfo_ComputeManagementClient.cs index 0549a1c958e6..6678215733f6 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SdkInfo_ComputeManagementClient.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SdkInfo_ComputeManagementClient.cs @@ -19,45 +19,55 @@ public static IEnumerable> ApiInfo_ComputeManageme { return new Tuple[] { - new Tuple("Compute", "AvailabilitySets", "2020-12-01"), - new Tuple("Compute", "DedicatedHostGroups", "2020-12-01"), - new Tuple("Compute", "DedicatedHosts", "2020-12-01"), + new Tuple("Compute", "AvailabilitySets", "2020-06-01"), + new Tuple("Compute", "CloudServiceRoleInstances", "2020-10-01-preview"), + new Tuple("Compute", "CloudServiceRoles", "2020-10-01-preview"), + new Tuple("Compute", "CloudServices", "2020-10-01-preview"), + new Tuple("Compute", "CloudServicesUpdateDomain", "2020-10-01-preview"), + new Tuple("Compute", "DedicatedHostGroups", "2020-06-01"), + new Tuple("Compute", "DedicatedHosts", "2020-06-01"), new Tuple("Compute", "DiskAccesses", "2020-09-30"), new Tuple("Compute", "DiskEncryptionSets", "2020-09-30"), new Tuple("Compute", "DiskRestorePoint", "2020-09-30"), new Tuple("Compute", "Disks", "2020-09-30"), - new Tuple("Compute", "Galleries", "2020-09-30"), - new Tuple("Compute", "GalleryApplicationVersions", "2020-09-30"), - new Tuple("Compute", "GalleryApplications", "2020-09-30"), - new Tuple("Compute", "GalleryImageVersions", "2020-09-30"), - new Tuple("Compute", "GalleryImages", "2020-09-30"), - new Tuple("Compute", "GallerySharingProfile", "2020-09-30"), - new Tuple("Compute", "Images", "2020-12-01"), - new Tuple("Compute", "LogAnalytics", "2020-12-01"), - new Tuple("Compute", "Operations", "2020-12-01"), - new Tuple("Compute", "ProximityPlacementGroups", "2020-12-01"), + new Tuple("Compute", "Galleries", "2019-12-01"), + new Tuple("Compute", "GalleryApplicationVersions", "2019-12-01"), + new Tuple("Compute", "GalleryApplications", "2019-12-01"), + new Tuple("Compute", "GalleryImageVersions", "2019-12-01"), + new Tuple("Compute", "GalleryImages", "2019-12-01"), + new Tuple("Compute", "Images", "2020-06-01"), + new Tuple("Compute", "LogAnalytics", "2020-06-01"), + new Tuple("Compute", "Operations", "2020-06-01"), + new Tuple("Compute", "ProximityPlacementGroups", "2020-06-01"), new Tuple("Compute", "ResourceSkus", "2019-04-01"), - new Tuple("Compute", "SharedGalleries", "2020-09-30"), - new Tuple("Compute", "SharedGalleryImageVersions", "2020-09-30"), - new Tuple("Compute", "SharedGalleryImages", "2020-09-30"), new Tuple("Compute", "Snapshots", "2020-09-30"), - new Tuple("Compute", "SshPublicKeys", "2020-12-01"), - new Tuple("Compute", "Usage", "2020-12-01"), - new Tuple("Compute", "VirtualMachineExtensionImages", "2020-12-01"), - new Tuple("Compute", "VirtualMachineExtensions", "2020-12-01"), - new Tuple("Compute", "VirtualMachineImages", "2020-12-01"), - new Tuple("Compute", "VirtualMachineImagesEdgeZone", "2020-12-01"), - new Tuple("Compute", "VirtualMachineRunCommands", "2020-12-01"), - new Tuple("Compute", "VirtualMachineScaleSetExtensions", "2020-12-01"), - new Tuple("Compute", "VirtualMachineScaleSetRollingUpgrades", "2020-12-01"), - new Tuple("Compute", "VirtualMachineScaleSetVMExtensions", "2020-12-01"), - new Tuple("Compute", "VirtualMachineScaleSetVMRunCommands", "2020-12-01"), - new Tuple("Compute", "VirtualMachineScaleSetVMs", "2020-12-01"), - new Tuple("Compute", "VirtualMachineScaleSets", "2020-12-01"), - new Tuple("Compute", "VirtualMachineSizes", "2020-12-01"), - new Tuple("Compute", "VirtualMachines", "2020-12-01"), + new Tuple("Compute", "SshPublicKeys", "2020-06-01"), + new Tuple("Compute", "Usage", "2020-06-01"), + new Tuple("Compute", "VirtualMachineExtensionImages", "2020-06-01"), + new Tuple("Compute", "VirtualMachineExtensions", "2020-06-01"), + new Tuple("Compute", "VirtualMachineImages", "2020-06-01"), + new Tuple("Compute", "VirtualMachineRunCommands", "2020-06-01"), + new Tuple("Compute", "VirtualMachineScaleSetExtensions", "2020-06-01"), + new Tuple("Compute", "VirtualMachineScaleSetRollingUpgrades", "2020-06-01"), + new Tuple("Compute", "VirtualMachineScaleSetVMExtensions", "2020-06-01"), + new Tuple("Compute", "VirtualMachineScaleSetVMRunCommands", "2020-06-01"), + new Tuple("Compute", "VirtualMachineScaleSetVMs", "2020-06-01"), + new Tuple("Compute", "VirtualMachineScaleSets", "2020-06-01"), + new Tuple("Compute", "VirtualMachineSizes", "2020-06-01"), + new Tuple("Compute", "VirtualMachines", "2020-06-01"), + new Tuple("ContainerService", "ContainerServices", "2017-01-31"), }.AsEnumerable(); } } + // BEGIN: Code Generation Metadata Section + public static readonly String AutoRestVersion = "v2"; + public static readonly String AutoRestBootStrapperVersion = "autorest@2.0.4413"; + public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/compute/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=C:\\azure-sdk-for-net\\sdk"; + public static readonly String GithubForkName = "Azure"; + public static readonly String GithubBranchName = "master"; + public static readonly String GithubCommidId = "a35bddecf81df1a1a3030dbaee0b73c777aeb0db"; + public static readonly String CodeGenerationErrors = ""; + public static readonly String GithubRepoName = "azure-rest-api-specs"; + // END: Code Generation Metadata Section } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SshPublicKeysOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SshPublicKeysOperations.cs index 9897a18878eb..bfb79ef0f201 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SshPublicKeysOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SshPublicKeysOperations.cs @@ -81,7 +81,7 @@ internal SshPublicKeysOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -265,7 +265,7 @@ internal SshPublicKeysOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -468,7 +468,7 @@ internal SshPublicKeysOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -694,7 +694,7 @@ internal SshPublicKeysOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -892,7 +892,7 @@ internal SshPublicKeysOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1068,7 +1068,7 @@ internal SshPublicKeysOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1265,7 +1265,7 @@ internal SshPublicKeysOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/UsageOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/UsageOperations.cs index e0c198b712e8..03b03c068a01 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/UsageOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/UsageOperations.cs @@ -96,7 +96,7 @@ internal UsageOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineExtensionImagesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineExtensionImagesOperations.cs index 214564a54e88..61a6ba57f579 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineExtensionImagesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineExtensionImagesOperations.cs @@ -106,7 +106,7 @@ internal VirtualMachineExtensionImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -303,7 +303,7 @@ internal VirtualMachineExtensionImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -505,7 +505,7 @@ internal VirtualMachineExtensionImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineExtensionsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineExtensionsOperations.cs index 8e20e220f535..0d80e4c732e6 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineExtensionsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineExtensionsOperations.cs @@ -186,7 +186,7 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -390,7 +390,7 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -608,7 +608,7 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -843,7 +843,7 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1050,7 +1050,7 @@ internal VirtualMachineExtensionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineImagesEdgeZoneOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineImagesEdgeZoneOperationsExtensions.cs deleted file mode 100644 index b7c0df8deb58..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineImagesEdgeZoneOperationsExtensions.cs +++ /dev/null @@ -1,315 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using System.Collections; - using System.Collections.Generic; - using System.Threading; - using System.Threading.Tasks; - - /// - /// Extension methods for VirtualMachineImagesEdgeZoneOperations. - /// - public static partial class VirtualMachineImagesEdgeZoneOperationsExtensions - { - /// - /// Gets a virtual machine image in an edge zone. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of a supported Azure region. - /// - /// - /// The name of the edge zone. - /// - /// - /// A valid image publisher. - /// - /// - /// A valid image publisher offer. - /// - /// - /// A valid image SKU. - /// - /// - /// A valid image SKU version. - /// - public static VirtualMachineImage Get(this IVirtualMachineImagesEdgeZoneOperations operations, string location, string edgeZone, string publisherName, string offer, string skus, string version) - { - return operations.GetAsync(location, edgeZone, publisherName, offer, skus, version).GetAwaiter().GetResult(); - } - - /// - /// Gets a virtual machine image in an edge zone. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of a supported Azure region. - /// - /// - /// The name of the edge zone. - /// - /// - /// A valid image publisher. - /// - /// - /// A valid image publisher offer. - /// - /// - /// A valid image SKU. - /// - /// - /// A valid image SKU version. - /// - /// - /// The cancellation token. - /// - public static async Task GetAsync(this IVirtualMachineImagesEdgeZoneOperations operations, string location, string edgeZone, string publisherName, string offer, string skus, string version, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetWithHttpMessagesAsync(location, edgeZone, publisherName, offer, skus, version, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Gets a list of all virtual machine image versions for the specified - /// location, edge zone, publisher, offer, and SKU. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of a supported Azure region. - /// - /// - /// The name of the edge zone. - /// - /// - /// A valid image publisher. - /// - /// - /// A valid image publisher offer. - /// - /// - /// A valid image SKU. - /// - /// - /// The expand expression to apply on the operation. - /// - /// - /// An integer value specifying the number of images to return that matches - /// supplied values. - /// - /// - /// Specifies the order of the results returned. Formatted as an OData query. - /// - public static IList List(this IVirtualMachineImagesEdgeZoneOperations operations, string location, string edgeZone, string publisherName, string offer, string skus, string expand = default(string), int? top = default(int?), string orderby = default(string)) - { - return operations.ListAsync(location, edgeZone, publisherName, offer, skus, expand, top, orderby).GetAwaiter().GetResult(); - } - - /// - /// Gets a list of all virtual machine image versions for the specified - /// location, edge zone, publisher, offer, and SKU. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of a supported Azure region. - /// - /// - /// The name of the edge zone. - /// - /// - /// A valid image publisher. - /// - /// - /// A valid image publisher offer. - /// - /// - /// A valid image SKU. - /// - /// - /// The expand expression to apply on the operation. - /// - /// - /// An integer value specifying the number of images to return that matches - /// supplied values. - /// - /// - /// Specifies the order of the results returned. Formatted as an OData query. - /// - /// - /// The cancellation token. - /// - public static async Task> ListAsync(this IVirtualMachineImagesEdgeZoneOperations operations, string location, string edgeZone, string publisherName, string offer, string skus, string expand = default(string), int? top = default(int?), string orderby = default(string), CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListWithHttpMessagesAsync(location, edgeZone, publisherName, offer, skus, expand, top, orderby, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Gets a list of virtual machine image offers for the specified location, - /// edge zone and publisher. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of a supported Azure region. - /// - /// - /// The name of the edge zone. - /// - /// - /// A valid image publisher. - /// - public static IList ListOffers(this IVirtualMachineImagesEdgeZoneOperations operations, string location, string edgeZone, string publisherName) - { - return operations.ListOffersAsync(location, edgeZone, publisherName).GetAwaiter().GetResult(); - } - - /// - /// Gets a list of virtual machine image offers for the specified location, - /// edge zone and publisher. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of a supported Azure region. - /// - /// - /// The name of the edge zone. - /// - /// - /// A valid image publisher. - /// - /// - /// The cancellation token. - /// - public static async Task> ListOffersAsync(this IVirtualMachineImagesEdgeZoneOperations operations, string location, string edgeZone, string publisherName, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListOffersWithHttpMessagesAsync(location, edgeZone, publisherName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Gets a list of virtual machine image publishers for the specified Azure - /// location and edge zone. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of a supported Azure region. - /// - /// - /// The name of the edge zone. - /// - public static IList ListPublishers(this IVirtualMachineImagesEdgeZoneOperations operations, string location, string edgeZone) - { - return operations.ListPublishersAsync(location, edgeZone).GetAwaiter().GetResult(); - } - - /// - /// Gets a list of virtual machine image publishers for the specified Azure - /// location and edge zone. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of a supported Azure region. - /// - /// - /// The name of the edge zone. - /// - /// - /// The cancellation token. - /// - public static async Task> ListPublishersAsync(this IVirtualMachineImagesEdgeZoneOperations operations, string location, string edgeZone, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListPublishersWithHttpMessagesAsync(location, edgeZone, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Gets a list of virtual machine image SKUs for the specified location, edge - /// zone, publisher, and offer. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of a supported Azure region. - /// - /// - /// The name of the edge zone. - /// - /// - /// A valid image publisher. - /// - /// - /// A valid image publisher offer. - /// - public static IList ListSkus(this IVirtualMachineImagesEdgeZoneOperations operations, string location, string edgeZone, string publisherName, string offer) - { - return operations.ListSkusAsync(location, edgeZone, publisherName, offer).GetAwaiter().GetResult(); - } - - /// - /// Gets a list of virtual machine image SKUs for the specified location, edge - /// zone, publisher, and offer. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of a supported Azure region. - /// - /// - /// The name of the edge zone. - /// - /// - /// A valid image publisher. - /// - /// - /// A valid image publisher offer. - /// - /// - /// The cancellation token. - /// - public static async Task> ListSkusAsync(this IVirtualMachineImagesEdgeZoneOperations operations, string location, string edgeZone, string publisherName, string offer, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListSkusWithHttpMessagesAsync(location, edgeZone, publisherName, offer, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineImagesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineImagesOperations.cs index c5580e85ffac..3310becdc2ae 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineImagesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineImagesOperations.cs @@ -115,7 +115,7 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -337,7 +337,7 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -551,7 +551,7 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -739,7 +739,7 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -939,7 +939,7 @@ internal VirtualMachineImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineRunCommandsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineRunCommandsOperations.cs index 92eefae7737c..faf49cb6233f 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineRunCommandsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineRunCommandsOperations.cs @@ -94,7 +94,7 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -293,7 +293,7 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -579,7 +579,7 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -783,7 +783,7 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1001,7 +1001,7 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1236,7 +1236,7 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1443,7 +1443,7 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetExtensionsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetExtensionsOperations.cs index 597afb7122f8..a84c409c1393 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetExtensionsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetExtensionsOperations.cs @@ -186,7 +186,7 @@ internal VirtualMachineScaleSetExtensionsOperations(ComputeManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -387,7 +387,7 @@ internal VirtualMachineScaleSetExtensionsOperations(ComputeManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -596,7 +596,7 @@ internal VirtualMachineScaleSetExtensionsOperations(ComputeManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -831,7 +831,7 @@ internal VirtualMachineScaleSetExtensionsOperations(ComputeManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1056,7 +1056,7 @@ internal VirtualMachineScaleSetExtensionsOperations(ComputeManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetRollingUpgradesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetRollingUpgradesOperations.cs index 6ad75c560b4c..4259bf51041b 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetRollingUpgradesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetRollingUpgradesOperations.cs @@ -164,7 +164,7 @@ internal VirtualMachineScaleSetRollingUpgradesOperations(ComputeManagementClient { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -355,7 +355,7 @@ internal VirtualMachineScaleSetRollingUpgradesOperations(ComputeManagementClient { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -530,7 +530,7 @@ internal VirtualMachineScaleSetRollingUpgradesOperations(ComputeManagementClient { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -705,7 +705,7 @@ internal VirtualMachineScaleSetRollingUpgradesOperations(ComputeManagementClient { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMExtensionsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMExtensionsOperations.cs index c9e8eba48742..0447703927e2 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMExtensionsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMExtensionsOperations.cs @@ -201,7 +201,7 @@ internal VirtualMachineScaleSetVMExtensionsOperations(ComputeManagementClient cl { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -415,7 +415,7 @@ internal VirtualMachineScaleSetVMExtensionsOperations(ComputeManagementClient cl { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -637,7 +637,7 @@ internal VirtualMachineScaleSetVMExtensionsOperations(ComputeManagementClient cl { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -881,7 +881,7 @@ internal VirtualMachineScaleSetVMExtensionsOperations(ComputeManagementClient cl { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1097,7 +1097,7 @@ internal VirtualMachineScaleSetVMExtensionsOperations(ComputeManagementClient cl { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMRunCommandsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMRunCommandsOperations.cs index fa0fd3d5f855..ad9e63511683 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMRunCommandsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMRunCommandsOperations.cs @@ -201,7 +201,7 @@ internal VirtualMachineScaleSetVMRunCommandsOperations(ComputeManagementClient c { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -415,7 +415,7 @@ internal VirtualMachineScaleSetVMRunCommandsOperations(ComputeManagementClient c { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -641,7 +641,7 @@ internal VirtualMachineScaleSetVMRunCommandsOperations(ComputeManagementClient c { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -885,7 +885,7 @@ internal VirtualMachineScaleSetVMRunCommandsOperations(ComputeManagementClient c { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1101,7 +1101,7 @@ internal VirtualMachineScaleSetVMRunCommandsOperations(ComputeManagementClient c { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMsOperations.cs index 496e00e7def5..7a513780a284 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMsOperations.cs @@ -177,20 +177,16 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// /// The instance ID of the virtual machine. /// - /// - /// Optional parameter to force delete a virtual machine from a VM scale set. - /// (Feature in Preview) - /// /// /// The headers that will be added to request. /// /// /// The cancellation token. /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request - AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, forceDeletion, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } @@ -249,7 +245,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -457,7 +453,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -660,7 +656,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -989,7 +985,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1220,7 +1216,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1436,7 +1432,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; VirtualMachineScaleSetVMReimageParameters vmScaleSetVMReimageInput = default(VirtualMachineScaleSetVMReimageParameters); if (tempDisk != null) { @@ -1632,7 +1628,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1817,7 +1813,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2014,7 +2010,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2203,10 +2199,6 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// /// The instance ID of the virtual machine. /// - /// - /// Optional parameter to force delete a virtual machine from a VM scale set. - /// (Feature in Preview) - /// /// /// Headers that will be added to request. /// @@ -2225,7 +2217,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, string instanceId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -2243,7 +2235,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2254,7 +2246,6 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); tracingParameters.Add("instanceId", instanceId); - tracingParameters.Add("forceDeletion", forceDeletion); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); @@ -2267,10 +2258,6 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) _url = _url.Replace("{instanceId}", System.Uri.EscapeDataString(instanceId)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (forceDeletion != null) - { - _queryParameters.Add(string.Format("forceDeletion={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(forceDeletion, Client.SerializationSettings).Trim('"')))); - } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -2437,7 +2424,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2624,7 +2611,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2806,7 +2793,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2989,7 +2976,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -3171,7 +3158,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -3367,7 +3354,7 @@ internal VirtualMachineScaleSetVMsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMsOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMsOperationsExtensions.cs index 888c670a294f..41dc7e73a605 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMsOperationsExtensions.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetVMsOperationsExtensions.cs @@ -240,13 +240,9 @@ public static VirtualMachineScaleSetVM Update(this IVirtualMachineScaleSetVMsOpe /// /// The instance ID of the virtual machine. /// - /// - /// Optional parameter to force delete a virtual machine from a VM scale set. - /// (Feature in Preview) - /// - public static void Delete(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, bool? forceDeletion = default(bool?)) + public static void Delete(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId) { - operations.DeleteAsync(resourceGroupName, vmScaleSetName, instanceId, forceDeletion).GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, vmScaleSetName, instanceId).GetAwaiter().GetResult(); } /// @@ -264,16 +260,12 @@ public static VirtualMachineScaleSetVM Update(this IVirtualMachineScaleSetVMsOpe /// /// The instance ID of the virtual machine. /// - /// - /// Optional parameter to force delete a virtual machine from a VM scale set. - /// (Feature in Preview) - /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, bool? forceDeletion = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, forceDeletion, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -1034,13 +1026,9 @@ public static VirtualMachineScaleSetVM BeginUpdate(this IVirtualMachineScaleSetV /// /// The instance ID of the virtual machine. /// - /// - /// Optional parameter to force delete a virtual machine from a VM scale set. - /// (Feature in Preview) - /// - public static void BeginDelete(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, bool? forceDeletion = default(bool?)) + public static void BeginDelete(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId) { - operations.BeginDeleteAsync(resourceGroupName, vmScaleSetName, instanceId, forceDeletion).GetAwaiter().GetResult(); + operations.BeginDeleteAsync(resourceGroupName, vmScaleSetName, instanceId).GetAwaiter().GetResult(); } /// @@ -1058,16 +1046,12 @@ public static VirtualMachineScaleSetVM BeginUpdate(this IVirtualMachineScaleSetV /// /// The instance ID of the virtual machine. /// - /// - /// Optional parameter to force delete a virtual machine from a VM scale set. - /// (Feature in Preview) - /// /// /// The cancellation token. /// - public static async Task BeginDeleteAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, bool? forceDeletion = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginDeleteAsync(this IVirtualMachineScaleSetVMsOperations operations, string resourceGroupName, string vmScaleSetName, string instanceId, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, forceDeletion, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceId, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetsOperations.cs index b0287372faf8..f1a9b826a5f7 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetsOperations.cs @@ -50,199 +50,6 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// public ComputeManagementClient Client { get; private set; } - /// - /// Gets all the VM scale sets under the specified subscription for the - /// specified location. - /// - /// - /// The location for which VM scale sets under the subscription are queried. - /// - /// - /// 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>> ListByLocationWithHttpMessagesAsync(string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (location == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "location"); - } - if (location != null) - { - if (!System.Text.RegularExpressions.Regex.IsMatch(location, "^[-\\w\\._]+$")) - { - throw new ValidationException(ValidationRules.Pattern, "location", "^[-\\w\\._]+$"); - } - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2020-12-01"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("location", location); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByLocation", tracingParameters); - } - // Construct URL - var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/virtualMachineScaleSets").ToString(); - _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse>(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - /// /// Create or update a VM scale set. /// @@ -302,19 +109,16 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// The name of the VM scale set. /// - /// - /// Optional parameter to force delete a VM scale set. (Feature in Preview) - /// /// /// The headers that will be added to request. /// /// /// The cancellation token. /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request - AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, forceDeletion, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } @@ -362,7 +166,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -553,20 +357,16 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// The virtual machine scale set instance ids. /// - /// - /// Optional parameter to force delete virtual machines from the VM scale set. - /// (Feature in Preview) - /// /// /// The headers that will be added to request. /// /// /// The cancellation token. /// - public async Task DeleteInstancesWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task DeleteInstancesWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request - AzureOperationResponse _response = await BeginDeleteInstancesWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, forceDeletion, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginDeleteInstancesWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } @@ -614,7 +414,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -801,7 +601,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -982,7 +782,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1173,7 +973,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1367,7 +1167,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1792,7 +1592,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1992,7 +1792,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; VMScaleSetConvertToSinglePlacementGroupInput parameters = new VMScaleSetConvertToSinglePlacementGroupInput(); if (activePlacementGroupId != null) { @@ -2216,7 +2016,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2442,7 +2242,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2608,9 +2408,6 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// The name of the VM scale set. /// - /// - /// Optional parameter to force delete a VM scale set. (Feature in Preview) - /// /// /// Headers that will be added to request. /// @@ -2629,7 +2426,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -2643,7 +2440,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2653,7 +2450,6 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); - tracingParameters.Add("forceDeletion", forceDeletion); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); @@ -2665,10 +2461,6 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) _url = _url.Replace("{vmScaleSetName}", System.Uri.EscapeDataString(vmScaleSetName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (forceDeletion != null) - { - _queryParameters.Add(string.Format("forceDeletion={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(forceDeletion, Client.SerializationSettings).Trim('"')))); - } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -2828,7 +2620,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; VirtualMachineScaleSetVMInstanceIDs vmInstanceIDs = default(VirtualMachineScaleSetVMInstanceIDs); if (instanceIds != null) { @@ -2985,10 +2777,6 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// The virtual machine scale set instance ids. /// - /// - /// Optional parameter to force delete virtual machines from the VM scale set. - /// (Feature in Preview) - /// /// /// Headers that will be added to request. /// @@ -3007,7 +2795,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginDeleteInstancesWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds, bool? forceDeletion = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginDeleteInstancesWithHttpMessagesAsync(string resourceGroupName, string vmScaleSetName, IList instanceIds, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -3025,7 +2813,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "instanceIds"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; VirtualMachineScaleSetVMInstanceRequiredIDs vmInstanceIDs = new VirtualMachineScaleSetVMInstanceRequiredIDs(); if (instanceIds != null) { @@ -3040,7 +2828,6 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("vmScaleSetName", vmScaleSetName); - tracingParameters.Add("forceDeletion", forceDeletion); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("vmInstanceIDs", vmInstanceIDs); tracingParameters.Add("cancellationToken", cancellationToken); @@ -3053,10 +2840,6 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) _url = _url.Replace("{vmScaleSetName}", System.Uri.EscapeDataString(vmScaleSetName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (forceDeletion != null) - { - _queryParameters.Add(string.Format("forceDeletion={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(forceDeletion, Client.SerializationSettings).Trim('"')))); - } if (apiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); @@ -3227,7 +3010,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; VirtualMachineScaleSetVMInstanceIDs vmInstanceIDs = default(VirtualMachineScaleSetVMInstanceIDs); if (instanceIds != null) { @@ -3423,7 +3206,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; VirtualMachineScaleSetVMInstanceIDs vmInstanceIDs = default(VirtualMachineScaleSetVMInstanceIDs); if (instanceIds != null) { @@ -3614,7 +3397,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; VirtualMachineScaleSetVMInstanceIDs vmInstanceIDs = default(VirtualMachineScaleSetVMInstanceIDs); if (instanceIds != null) { @@ -3806,7 +3589,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; VirtualMachineScaleSetVMInstanceIDs vmInstanceIDs = default(VirtualMachineScaleSetVMInstanceIDs); if (instanceIds != null) { @@ -4000,7 +3783,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; VirtualMachineScaleSetVMInstanceIDs vmInstanceIDs = default(VirtualMachineScaleSetVMInstanceIDs); if (instanceIds != null) { @@ -4194,7 +3977,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "instanceIds"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; VirtualMachineScaleSetVMInstanceRequiredIDs vmInstanceIDs = new VirtualMachineScaleSetVMInstanceRequiredIDs(); if (instanceIds != null) { @@ -4384,7 +4167,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -4570,7 +4353,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; VirtualMachineScaleSetVMInstanceIDs vmInstanceIDs = default(VirtualMachineScaleSetVMInstanceIDs); if (instanceIds != null) { @@ -4767,7 +4550,7 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -4906,180 +4689,6 @@ internal VirtualMachineScaleSetsOperations(ComputeManagementClient client) return _result; } - /// - /// Gets all the VM scale sets under the specified subscription for the - /// specified location. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task>> ListByLocationNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (nextPageLink == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("nextPageLink", nextPageLink); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByLocationNext", tracingParameters); - } - // Construct URL - string _url = "{nextLink}"; - _url = _url.Replace("{nextLink}", nextPageLink); - List _queryParameters = new List(); - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new CloudException(_errorBody.Message); - ex.Body = _errorBody; - } - } - catch (JsonException) - { - // Ignore the exception - } - ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - if (_shouldTrace) - { - ServiceClientTracing.Error(_invocationId, ex); - } - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw ex; - } - // Create Result - var _result = new AzureOperationResponse>(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_httpResponse.Headers.Contains("x-ms-request-id")) - { - _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); - } - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - /// /// Gets a list of all VM scale sets under a resource group. /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetsOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetsOperationsExtensions.cs index ae311ab9e0c5..d4f6d015812f 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetsOperationsExtensions.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineScaleSetsOperationsExtensions.cs @@ -23,42 +23,6 @@ namespace Microsoft.Azure.Management.Compute /// public static partial class VirtualMachineScaleSetsOperationsExtensions { - /// - /// Gets all the VM scale sets under the specified subscription for the - /// specified location. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The location for which VM scale sets under the subscription are queried. - /// - public static IPage ListByLocation(this IVirtualMachineScaleSetsOperations operations, string location) - { - return operations.ListByLocationAsync(location).GetAwaiter().GetResult(); - } - - /// - /// Gets all the VM scale sets under the specified subscription for the - /// specified location. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The location for which VM scale sets under the subscription are queried. - /// - /// - /// The cancellation token. - /// - public static async Task> ListByLocationAsync(this IVirtualMachineScaleSetsOperations operations, string location, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListByLocationWithHttpMessagesAsync(location, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - /// /// Create or update a VM scale set. /// @@ -163,12 +127,9 @@ public static VirtualMachineScaleSet Update(this IVirtualMachineScaleSetsOperati /// /// The name of the VM scale set. /// - /// - /// Optional parameter to force delete a VM scale set. (Feature in Preview) - /// - public static void Delete(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, bool? forceDeletion = default(bool?)) + public static void Delete(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName) { - operations.DeleteAsync(resourceGroupName, vmScaleSetName, forceDeletion).GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, vmScaleSetName).GetAwaiter().GetResult(); } /// @@ -183,15 +144,12 @@ public static VirtualMachineScaleSet Update(this IVirtualMachineScaleSetsOperati /// /// The name of the VM scale set. /// - /// - /// Optional parameter to force delete a VM scale set. (Feature in Preview) - /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, bool? forceDeletion = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, forceDeletion, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -300,13 +258,9 @@ public static VirtualMachineScaleSet Get(this IVirtualMachineScaleSetsOperations /// /// The virtual machine scale set instance ids. /// - /// - /// Optional parameter to force delete virtual machines from the VM scale set. - /// (Feature in Preview) - /// - public static void DeleteInstances(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds, bool? forceDeletion = default(bool?)) + public static void DeleteInstances(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds) { - operations.DeleteInstancesAsync(resourceGroupName, vmScaleSetName, instanceIds, forceDeletion).GetAwaiter().GetResult(); + operations.DeleteInstancesAsync(resourceGroupName, vmScaleSetName, instanceIds).GetAwaiter().GetResult(); } /// @@ -324,16 +278,12 @@ public static VirtualMachineScaleSet Get(this IVirtualMachineScaleSetsOperations /// /// The virtual machine scale set instance ids. /// - /// - /// Optional parameter to force delete virtual machines from the VM scale set. - /// (Feature in Preview) - /// /// /// The cancellation token. /// - public static async Task DeleteInstancesAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds, bool? forceDeletion = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteInstancesAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteInstancesWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, forceDeletion, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.DeleteInstancesWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -1170,12 +1120,9 @@ public static VirtualMachineScaleSet BeginUpdate(this IVirtualMachineScaleSetsOp /// /// The name of the VM scale set. /// - /// - /// Optional parameter to force delete a VM scale set. (Feature in Preview) - /// - public static void BeginDelete(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, bool? forceDeletion = default(bool?)) + public static void BeginDelete(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName) { - operations.BeginDeleteAsync(resourceGroupName, vmScaleSetName, forceDeletion).GetAwaiter().GetResult(); + operations.BeginDeleteAsync(resourceGroupName, vmScaleSetName).GetAwaiter().GetResult(); } /// @@ -1190,15 +1137,12 @@ public static VirtualMachineScaleSet BeginUpdate(this IVirtualMachineScaleSetsOp /// /// The name of the VM scale set. /// - /// - /// Optional parameter to force delete a VM scale set. (Feature in Preview) - /// /// /// The cancellation token. /// - public static async Task BeginDeleteAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, bool? forceDeletion = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginDeleteAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, forceDeletion, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -1267,13 +1211,9 @@ public static VirtualMachineScaleSet BeginUpdate(this IVirtualMachineScaleSetsOp /// /// The virtual machine scale set instance ids. /// - /// - /// Optional parameter to force delete virtual machines from the VM scale set. - /// (Feature in Preview) - /// - public static void BeginDeleteInstances(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds, bool? forceDeletion = default(bool?)) + public static void BeginDeleteInstances(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds) { - operations.BeginDeleteInstancesAsync(resourceGroupName, vmScaleSetName, instanceIds, forceDeletion).GetAwaiter().GetResult(); + operations.BeginDeleteInstancesAsync(resourceGroupName, vmScaleSetName, instanceIds).GetAwaiter().GetResult(); } /// @@ -1291,16 +1231,12 @@ public static VirtualMachineScaleSet BeginUpdate(this IVirtualMachineScaleSetsOp /// /// The virtual machine scale set instance ids. /// - /// - /// Optional parameter to force delete virtual machines from the VM scale set. - /// (Feature in Preview) - /// /// /// The cancellation token. /// - public static async Task BeginDeleteInstancesAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds, bool? forceDeletion = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginDeleteInstancesAsync(this IVirtualMachineScaleSetsOperations operations, string resourceGroupName, string vmScaleSetName, IList instanceIds, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.BeginDeleteInstancesWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, forceDeletion, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.BeginDeleteInstancesWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, instanceIds, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -1744,42 +1680,6 @@ public static void BeginSetOrchestrationServiceState(this IVirtualMachineScaleSe (await operations.BeginSetOrchestrationServiceStateWithHttpMessagesAsync(resourceGroupName, vmScaleSetName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); } - /// - /// Gets all the VM scale sets under the specified subscription for the - /// specified location. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - public static IPage ListByLocationNext(this IVirtualMachineScaleSetsOperations operations, string nextPageLink) - { - return operations.ListByLocationNextAsync(nextPageLink).GetAwaiter().GetResult(); - } - - /// - /// Gets all the VM scale sets under the specified subscription for the - /// specified location. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The cancellation token. - /// - public static async Task> ListByLocationNextAsync(this IVirtualMachineScaleSetsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListByLocationNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - /// /// Gets a list of all VM scale sets under a resource group. /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineSizesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineSizesOperations.cs index 11ae9680fcb1..92ec0f79c93e 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineSizesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachineSizesOperations.cs @@ -95,7 +95,7 @@ internal VirtualMachineSizesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperations.cs index e722b9908b88..6c241ff79b1e 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperations.cs @@ -95,7 +95,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -394,7 +394,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -593,7 +593,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -836,7 +836,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1006,7 +1006,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1189,7 +1189,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1385,7 +1385,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1731,7 +1731,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1949,7 +1949,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2103,31 +2103,6 @@ internal VirtualMachinesOperations(ComputeManagementClient client) return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } - /// - /// Installs patches on the VM. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - /// - /// Input for InstallPatches as directly received by the API - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> InstallPatchesWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineInstallPatchesParameters installPatchesInput, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginInstallPatchesWithHttpMessagesAsync(resourceGroupName, vmName, installPatchesInput, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - /// /// Run command on the VM. /// @@ -2209,7 +2184,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2422,7 +2397,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2648,7 +2623,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2738,7 +2713,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 201) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -2798,6 +2773,24 @@ internal VirtualMachinesOperations(ComputeManagementClient client) throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -2849,7 +2842,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -3028,7 +3021,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -3202,7 +3195,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -3382,7 +3375,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -3560,7 +3553,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -3733,7 +3726,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -3906,7 +3899,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -4080,7 +4073,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -4259,7 +4252,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; VirtualMachineReimageParameters parameters = default(VirtualMachineReimageParameters); if (tempDisk != null) { @@ -4445,7 +4438,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -4621,7 +4614,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -4771,218 +4764,6 @@ internal VirtualMachinesOperations(ComputeManagementClient client) return _result; } - /// - /// Installs patches on the VM. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - /// - /// Input for InstallPatches as directly received by the API - /// - /// - /// 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> BeginInstallPatchesWithHttpMessagesAsync(string resourceGroupName, string vmName, VirtualMachineInstallPatchesParameters installPatchesInput, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (vmName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "vmName"); - } - if (installPatchesInput == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "installPatchesInput"); - } - if (installPatchesInput != null) - { - installPatchesInput.Validate(); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - string apiVersion = "2020-12-01"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("vmName", vmName); - tracingParameters.Add("installPatchesInput", installPatchesInput); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginInstallPatches", 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/virtualMachines/{vmName}/installPatches").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{vmName}", System.Uri.EscapeDataString(vmName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - List _queryParameters = new List(); - if (apiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - var _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); - _httpRequest.RequestUri = new System.Uri(_url); - // Set Headers - if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) - { - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); - } - if (Client.AcceptLanguage != null) - { - if (_httpRequest.Headers.Contains("accept-language")) - { - _httpRequest.Headers.Remove("accept-language"); - } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); - } - - - if (customHeaders != null) - { - foreach(var _header in customHeaders) - { - if (_httpRequest.Headers.Contains(_header.Key)) - { - _httpRequest.Headers.Remove(_header.Key); - } - _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); - } - } - - // Serialize Request - string _requestContent = null; - if(installPatchesInput != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(installPatchesInput, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } - // Set Credentials - if (Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - if (_shouldTrace) - { - ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); - } - HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested(); - string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 202) - { - 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; - } - /// /// Run command on the VM. /// @@ -5038,7 +4819,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2020-12-01"; + string apiVersion = "2020-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperationsExtensions.cs index 1c7bc104a93c..ff38e874b981 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperationsExtensions.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/VirtualMachinesOperationsExtensions.cs @@ -993,52 +993,6 @@ public static VirtualMachineAssessPatchesResult AssessPatches(this IVirtualMachi } } - /// - /// Installs patches on the VM. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - /// - /// Input for InstallPatches as directly received by the API - /// - public static VirtualMachineInstallPatchesResult InstallPatches(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, VirtualMachineInstallPatchesParameters installPatchesInput) - { - return operations.InstallPatchesAsync(resourceGroupName, vmName, installPatchesInput).GetAwaiter().GetResult(); - } - - /// - /// Installs patches on the VM. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - /// - /// Input for InstallPatches as directly received by the API - /// - /// - /// The cancellation token. - /// - public static async Task InstallPatchesAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, VirtualMachineInstallPatchesParameters installPatchesInput, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.InstallPatchesWithHttpMessagesAsync(resourceGroupName, vmName, installPatchesInput, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - /// /// Run command on the VM. /// @@ -1675,52 +1629,6 @@ public static VirtualMachineAssessPatchesResult BeginAssessPatches(this IVirtual } } - /// - /// Installs patches on the VM. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - /// - /// Input for InstallPatches as directly received by the API - /// - public static VirtualMachineInstallPatchesResult BeginInstallPatches(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, VirtualMachineInstallPatchesParameters installPatchesInput) - { - return operations.BeginInstallPatchesAsync(resourceGroupName, vmName, installPatchesInput).GetAwaiter().GetResult(); - } - - /// - /// Installs patches on the VM. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the virtual machine. - /// - /// - /// Input for InstallPatches as directly received by the API - /// - /// - /// The cancellation token. - /// - public static async Task BeginInstallPatchesAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string vmName, VirtualMachineInstallPatchesParameters installPatchesInput, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.BeginInstallPatchesWithHttpMessagesAsync(resourceGroupName, vmName, installPatchesInput, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - /// /// Run command on the VM. /// From adf567857a1c233e7886ed39fd76021e1b3e4873 Mon Sep 17 00:00:00 2001 From: Kang Sun Date: Thu, 11 Mar 2021 17:28:02 -0800 Subject: [PATCH 14/27] update gallery --- .../Models/GalleryArtifactVersionSource.cs | 12 +++- .../Models/GalleryDiskImageSource.cs | 57 ------------------- .../src/Generated/Models/GalleryImage.cs | 18 +++--- .../Generated/Models/GalleryImageUpdate.cs | 18 +++--- 4 files changed, 29 insertions(+), 76 deletions(-) delete mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryDiskImageSource.cs 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 baa59334f2ab..ebe95fdfc09b 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,9 +34,12 @@ public GalleryArtifactVersionSource() /// The id of the gallery artifact version source. Can /// specify a disk uri, snapshot uri, user image or storage account /// resource. - public GalleryArtifactVersionSource(string id = default(string)) + /// 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)) { Id = id; + Uri = uri; CustomInit(); } @@ -53,5 +56,12 @@ 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/GalleryDiskImageSource.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryDiskImageSource.cs deleted file mode 100644 index 70bab384c3c1..000000000000 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryDiskImageSource.cs +++ /dev/null @@ -1,57 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Compute.Models -{ - using Newtonsoft.Json; - using System.Linq; - - /// - /// The gallery disk image source. - /// - 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. - public GalleryDiskImageSource(string id = default(string), string uri = default(string)) - : base(id) - { - Uri = uri; - 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; } - - } -} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImage.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImage.cs index 62dbb59864df..73b908e4e6db 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImage.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImage.cs @@ -59,13 +59,13 @@ public GalleryImage() /// The hypervisor generation of the /// Virtual Machine. Applicable to OS disks only. Possible values /// include: 'V1', 'V2' - /// A list of gallery image features. /// The end of life date of the gallery /// image definition. This property can be used for decommissioning /// purposes. This property is updatable. /// The current state of the gallery /// image definition. - public GalleryImage(string location, OperatingSystemTypes osType, OperatingSystemStateTypes osState, GalleryImageIdentifier identifier, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string description = default(string), string eula = default(string), string privacyStatementUri = default(string), string releaseNoteUri = default(string), string hyperVGeneration = default(string), IList features = default(IList), System.DateTime? endOfLifeDate = default(System.DateTime?), RecommendedMachineConfiguration recommended = default(RecommendedMachineConfiguration), Disallowed disallowed = default(Disallowed), ImagePurchasePlan purchasePlan = default(ImagePurchasePlan), string provisioningState = default(string)) + /// A list of gallery image features. + public GalleryImage(string location, OperatingSystemTypes osType, OperatingSystemStateTypes osState, GalleryImageIdentifier identifier, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string description = default(string), string eula = default(string), string privacyStatementUri = default(string), string releaseNoteUri = default(string), string hyperVGeneration = default(string), System.DateTime? endOfLifeDate = default(System.DateTime?), RecommendedMachineConfiguration recommended = default(RecommendedMachineConfiguration), Disallowed disallowed = default(Disallowed), ImagePurchasePlan purchasePlan = default(ImagePurchasePlan), string provisioningState = default(string), IList features = default(IList)) : base(location, id, name, type, tags) { Description = description; @@ -75,13 +75,13 @@ public GalleryImage() OsType = osType; OsState = osState; HyperVGeneration = hyperVGeneration; - Features = features; EndOfLifeDate = endOfLifeDate; Identifier = identifier; Recommended = recommended; Disallowed = disallowed; PurchasePlan = purchasePlan; ProvisioningState = provisioningState; + Features = features; CustomInit(); } @@ -142,12 +142,6 @@ public GalleryImage() [JsonProperty(PropertyName = "properties.hyperVGeneration")] public string HyperVGeneration { get; set; } - /// - /// Gets or sets a list of gallery image features. - /// - [JsonProperty(PropertyName = "properties.features")] - public IList Features { get; set; } - /// /// Gets or sets the end of life date of the gallery image definition. /// This property can be used for decommissioning purposes. This @@ -187,6 +181,12 @@ public GalleryImage() [JsonProperty(PropertyName = "properties.provisioningState")] public string ProvisioningState { get; private set; } + /// + /// Gets or sets a list of gallery image features. + /// + [JsonProperty(PropertyName = "properties.features")] + public IList Features { get; set; } + /// /// Validate the object. /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageUpdate.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageUpdate.cs index de806c8b415b..428379ec99f5 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageUpdate.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageUpdate.cs @@ -58,13 +58,13 @@ public GalleryImageUpdate() /// The hypervisor generation of the /// Virtual Machine. Applicable to OS disks only. Possible values /// include: 'V1', 'V2' - /// A list of gallery image features. /// The end of life date of the gallery /// image definition. This property can be used for decommissioning /// purposes. This property is updatable. /// The current state of the gallery /// image definition. - public GalleryImageUpdate(OperatingSystemTypes osType, OperatingSystemStateTypes osState, GalleryImageIdentifier identifier, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string description = default(string), string eula = default(string), string privacyStatementUri = default(string), string releaseNoteUri = default(string), string hyperVGeneration = default(string), IList features = default(IList), System.DateTime? endOfLifeDate = default(System.DateTime?), RecommendedMachineConfiguration recommended = default(RecommendedMachineConfiguration), Disallowed disallowed = default(Disallowed), ImagePurchasePlan purchasePlan = default(ImagePurchasePlan), string provisioningState = default(string)) + /// A list of gallery image features. + public GalleryImageUpdate(OperatingSystemTypes osType, OperatingSystemStateTypes osState, GalleryImageIdentifier identifier, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string description = default(string), string eula = default(string), string privacyStatementUri = default(string), string releaseNoteUri = default(string), string hyperVGeneration = default(string), System.DateTime? endOfLifeDate = default(System.DateTime?), RecommendedMachineConfiguration recommended = default(RecommendedMachineConfiguration), Disallowed disallowed = default(Disallowed), ImagePurchasePlan purchasePlan = default(ImagePurchasePlan), string provisioningState = default(string), IList features = default(IList)) : base(id, name, type, tags) { Description = description; @@ -74,13 +74,13 @@ public GalleryImageUpdate() OsType = osType; OsState = osState; HyperVGeneration = hyperVGeneration; - Features = features; EndOfLifeDate = endOfLifeDate; Identifier = identifier; Recommended = recommended; Disallowed = disallowed; PurchasePlan = purchasePlan; ProvisioningState = provisioningState; + Features = features; CustomInit(); } @@ -141,12 +141,6 @@ public GalleryImageUpdate() [JsonProperty(PropertyName = "properties.hyperVGeneration")] public string HyperVGeneration { get; set; } - /// - /// Gets or sets a list of gallery image features. - /// - [JsonProperty(PropertyName = "properties.features")] - public IList Features { get; set; } - /// /// Gets or sets the end of life date of the gallery image definition. /// This property can be used for decommissioning purposes. This @@ -186,6 +180,12 @@ public GalleryImageUpdate() [JsonProperty(PropertyName = "properties.provisioningState")] public string ProvisioningState { get; private set; } + /// + /// Gets or sets a list of gallery image features. + /// + [JsonProperty(PropertyName = "properties.features")] + public IList Features { get; set; } + /// /// Validate the object. /// From c7ff79e754150949a70d028d3c86e1f6c9555374 Mon Sep 17 00:00:00 2001 From: Kang Sun Date: Thu, 11 Mar 2021 17:39:05 -0800 Subject: [PATCH 15/27] revert unnecessary change --- sdk/compute/Microsoft.Azure.Management.Compute/AzSdk.RP.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/AzSdk.RP.props b/sdk/compute/Microsoft.Azure.Management.Compute/AzSdk.RP.props index 4491d23ad8c9..ab55962cc552 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/AzSdk.RP.props +++ b/sdk/compute/Microsoft.Azure.Management.Compute/AzSdk.RP.props @@ -1,7 +1,7 @@  - Compute_2020-06-01;Compute_2020-10-01-preview;Compute_2020-09-30;Compute_2019-12-01;Compute_2019-04-01;ContainerService_2017-01-31; + Compute_2020-10-01-preview;Compute_2020-06-30;Compute_2020-05-01;Compute_2019-12-01;Compute_2019-11-01;Compute_2019-04-01;ContainerService_2017-01-31; $(PackageTags);$(CommonTags);$(AzureApiTag); \ No newline at end of file From d069151a28ea228d1637e852e1e64db07e84ee7e Mon Sep 17 00:00:00 2001 From: Kang Sun Date: Mon, 29 Mar 2021 18:14:22 -0700 Subject: [PATCH 16/27] update examples --- .../GalleryApplication_CRUD_Tests.json | 310 +- .../GalleryImageVersion_CRUD_Tests.json | 3017 ++++++----------- .../GalleryTests/GalleryImage_CRUD_Tests.json | 648 ++-- .../GalleryTests/Gallery_CRUD_Tests.json | 543 ++- 4 files changed, 1841 insertions(+), 2677 deletions(-) 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 ffedd3229a35..c1ae13c4abc6 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryApplication_CRUD_Tests.json +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryApplication_CRUD_Tests.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg115?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg581?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f5aa0f93-8772-423f-9e46-1e6f5fa72619" + "b3e689bb-5a03-4c2e-b6ad-62a751feef96" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "d19f66d4-403d-4cf0-8e8a-046c06e70f9e" + "68187e8d-9b77-47f7-af46-ae161143b334" ], "x-ms-correlation-request-id": [ - "d19f66d4-403d-4cf0-8e8a-046c06e70f9e" + "68187e8d-9b77-47f7-af46-ae161143b334" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231024Z:d19f66d4-403d-4cf0-8e8a-046c06e70f9e" + "WESTCENTRALUS:20210330T003304Z:68187e8d-9b77-47f7-af46-ae161143b334" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:10:23 GMT" + "Tue, 30 Mar 2021 00:33:03 GMT" ], "Content-Length": [ "196" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115\",\r\n \"name\": \"galleryPsTestRg115\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg581\",\r\n \"name\": \"galleryPsTestRg581\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTM0NT9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg581/providers/Microsoft.Compute/galleries/galleryPsTestGallery4899?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NDg5OT9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\"\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6a925eaa-c0bf-47fe-bad5-3d630d034c36" + "eaeb2444-c2df-4a1f-a63e-7c30bbeb912e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,19 +99,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/1b466b9b-8e3c-46e9-8337-1f491c76245c?api-version=2020-09-30" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/bcf1cfa3-a935-452e-a6e8-f8e4279a0eb8?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;298" + "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" + "060de95e-c116-496e-9451-1806a389aa56_132573019786508288,060de95e-c116-496e-9451-1806a389aa56_132573019786508288" ], "x-ms-request-id": [ - "1b466b9b-8e3c-46e9-8337-1f491c76245c" + "bcf1cfa3-a935-452e-a6e8-f8e4279a0eb8" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -121,16 +121,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "56c77797-51b4-4ba7-82e4-ae4842aa32bf" + "a6ef7ebc-0601-4471-b7fd-ba41266da851" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231037Z:56c77797-51b4-4ba7-82e4-ae4842aa32bf" + "WESTCENTRALUS:20210330T003312Z:a6ef7ebc-0601-4471-b7fd-ba41266da851" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:10:36 GMT" + "Tue, 30 Mar 2021 00:33:12 GMT" ], "Content-Length": [ "578" @@ -142,20 +142,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery5345\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY5345\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Private\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery4899\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg581/providers/Microsoft.Compute/galleries/galleryPsTestGallery4899\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY4899\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Private\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/1b466b9b-8e3c-46e9-8337-1f491c76245c?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xYjQ2NmI5Yi04ZTNjLTQ2ZTktODMzNy0xZjQ5MWM3NjI0NWM/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/bcf1cfa3-a935-452e-a6e8-f8e4279a0eb8?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9iY2YxY2ZhMy1hOTM1LTQ1MmUtYTZlOC1mOGU0Mjc5YTBlYjg/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -166,16 +166,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4193" + "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4198" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" + "060de95e-c116-496e-9451-1806a389aa56_132573019786508288,060de95e-c116-496e-9451-1806a389aa56_132573019786508288" ], "x-ms-request-id": [ - "4e7995e8-2abd-4cc6-a6d9-c839c7377229" + "8246d725-f1e9-4466-b6ce-7e0f48acc751" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -185,16 +185,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "b1be55e6-7cb0-49fb-b5b1-e26da19a1618" + "561d379f-df4b-4696-ba8c-f7e5f0e61549" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231107Z:b1be55e6-7cb0-49fb-b5b1-e26da19a1618" + "WESTCENTRALUS:20210330T003343Z:561d379f-df4b-4696-ba8c-f7e5f0e61549" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:11:06 GMT" + "Tue, 30 Mar 2021 00:33:42 GMT" ], "Content-Length": [ "184" @@ -206,20 +206,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:10:35.1123505-07:00\",\r\n \"endTime\": \"2020-10-22T16:10:35.8311134-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1b466b9b-8e3c-46e9-8337-1f491c76245c\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:33:11.0763732-07:00\",\r\n \"endTime\": \"2021-03-29T17:33:11.9826422-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"bcf1cfa3-a935-452e-a6e8-f8e4279a0eb8\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTM0NT9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg581/providers/Microsoft.Compute/galleries/galleryPsTestGallery4899?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NDg5OT9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -230,16 +230,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;345,Microsoft.Compute/GetGallery30Min;2485" + "Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2496" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" + "060de95e-c116-496e-9451-1806a389aa56_132573019786508288,060de95e-c116-496e-9451-1806a389aa56_132573019786508288" ], "x-ms-request-id": [ - "559240ca-c681-41b0-ad62-1c7eabbb025a" + "c660b8f4-e132-42b2-81f6-6f4fdbc25237" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -249,16 +249,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "c9a98556-f4c8-41d8-8e77-0010777749c8" + "7e8f5a79-7190-4f64-ad16-7ce6e59ee038" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231107Z:c9a98556-f4c8-41d8-8e77-0010777749c8" + "WESTCENTRALUS:20210330T003343Z:7e8f5a79-7190-4f64-ad16-7ce6e59ee038" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:11:07 GMT" + "Tue, 30 Mar 2021 00:33:42 GMT" ], "Content-Length": [ "514" @@ -270,26 +270,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery5345\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY5345\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery4899\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg581/providers/Microsoft.Compute/galleries/galleryPsTestGallery4899\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY4899\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345/applications/galleryPsTestGalleryApplication8396?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTM0NS9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjgzOTY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg581/providers/Microsoft.Compute/galleries/galleryPsTestGallery4899/applications/galleryPsTestGalleryApplication5395?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NDg5OS9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjUzOTU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\",\r\n \"supportedOSType\": \"Windows\"\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "225c4488-2c19-4733-b87e-da9c8fe349c1" + "45293549-c092-4976-9ba2-adcf63807446" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -306,35 +306,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateUpdateGalleryApplication3Min;149,Microsoft.Compute/CreateUpdateGalleryApplication30Min;747" + "Microsoft.Compute/CreateUpdateGalleryApplication3Min;149,Microsoft.Compute/CreateUpdateGalleryApplication30Min;749" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" + "060de95e-c116-496e-9451-1806a389aa56_132573019786508288,060de95e-c116-496e-9451-1806a389aa56_132573019786508288" ], "x-ms-request-id": [ - "159ef9d7-0712-420f-9e59-03fa20830888" + "525a09a9-feb0-4653-b0ae-f09e12d44933" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "3e9d2bab-37b2-4976-9bb5-19426611cd31" + "588dced9-67bd-4088-8f95-cdf9ac3d14d2" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231108Z:3e9d2bab-37b2-4976-9bb5-19426611cd31" + "WESTCENTRALUS:20210330T003343Z:588dced9-67bd-4088-8f95-cdf9ac3d14d2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:11:07 GMT" + "Tue, 30 Mar 2021 00:33:43 GMT" ], "Content-Length": [ "633" @@ -346,26 +346,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication8396\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345/applications/galleryPsTestGalleryApplication8396\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication5395\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg581/providers/Microsoft.Compute/galleries/galleryPsTestGallery4899/applications/galleryPsTestGalleryApplication5395\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345/applications/galleryPsTestGalleryApplication8396?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTM0NS9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjgzOTY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg581/providers/Microsoft.Compute/galleries/galleryPsTestGallery4899/applications/galleryPsTestGalleryApplication5395?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NDg5OS9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjUzOTU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"Updated description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\",\r\n \"supportedOSType\": \"Windows\"\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f8357eb1-d129-4319-a9ab-cfeb27254283" + "bdaa94c2-4067-4175-96d1-9b99928e5226" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -382,35 +382,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateUpdateGalleryApplication3Min;148,Microsoft.Compute/CreateUpdateGalleryApplication30Min;746" + "Microsoft.Compute/CreateUpdateGalleryApplication3Min;148,Microsoft.Compute/CreateUpdateGalleryApplication30Min;748" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" + "060de95e-c116-496e-9451-1806a389aa56_132573019786508288,060de95e-c116-496e-9451-1806a389aa56_132573019786508288" ], "x-ms-request-id": [ - "d82ae477-02ca-40ab-a6fd-d1429f1a2186" + "688db625-2e80-4ee1-b4da-8c972250c3d3" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "0877d6d2-f03c-44f2-9667-bfcf3361415f" + "173221b2-12bd-48a8-9258-f9535ef16ffd" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231139Z:0877d6d2-f03c-44f2-9667-bfcf3361415f" + "WESTCENTRALUS:20210330T003414Z:173221b2-12bd-48a8-9258-f9535ef16ffd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:11:38 GMT" + "Tue, 30 Mar 2021 00:34:14 GMT" ], "Content-Length": [ "609" @@ -422,20 +422,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication8396\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345/applications/galleryPsTestGalleryApplication8396\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"Updated description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication5395\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg581/providers/Microsoft.Compute/galleries/galleryPsTestGallery4899/applications/galleryPsTestGalleryApplication5395\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"Updated description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345/applications/galleryPsTestGalleryApplication8396?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTM0NS9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjgzOTY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg581/providers/Microsoft.Compute/galleries/galleryPsTestGallery4899/applications/galleryPsTestGalleryApplication5395?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NDg5OS9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjUzOTU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -446,16 +446,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryApplication3Min;298,Microsoft.Compute/GetGalleryApplication30Min;1987" + "Microsoft.Compute/GetGalleryApplication3Min;298,Microsoft.Compute/GetGalleryApplication30Min;1998" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" + "060de95e-c116-496e-9451-1806a389aa56_132573019786508288,060de95e-c116-496e-9451-1806a389aa56_132573019786508288" ], "x-ms-request-id": [ - "b667a4e5-4de0-456f-bba5-67a036e8b2e3" + "06051a85-b957-4d45-b6fc-8cdd2465cba2" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -465,16 +465,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "6fa8ec45-36f0-41ef-b14e-cab3128a9af4" + "49f419ae-2b71-4c05-a8e0-03568f518a3c" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231138Z:6fa8ec45-36f0-41ef-b14e-cab3128a9af4" + "WESTCENTRALUS:20210330T003414Z:49f419ae-2b71-4c05-a8e0-03568f518a3c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:11:37 GMT" + "Tue, 30 Mar 2021 00:34:13 GMT" ], "Content-Length": [ "633" @@ -486,26 +486,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication8396\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345/applications/galleryPsTestGalleryApplication8396\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication5395\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg581/providers/Microsoft.Compute/galleries/galleryPsTestGallery4899/applications/galleryPsTestGalleryApplication5395\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345/applications/galleryPsTestGalleryApplication8396?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTM0NS9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjgzOTY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg581/providers/Microsoft.Compute/galleries/galleryPsTestGallery4899/applications/galleryPsTestGalleryApplication5395?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NDg5OS9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjUzOTU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0af66fef-8026-4466-a40e-b544436d5aae" + "471d6ca3-fdc9-4760-8830-05b9f66658c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -516,16 +516,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryApplication3Min;297,Microsoft.Compute/GetGalleryApplication30Min;1986" + "Microsoft.Compute/GetGalleryApplication3Min;297,Microsoft.Compute/GetGalleryApplication30Min;1997" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" + "060de95e-c116-496e-9451-1806a389aa56_132573019786508288,060de95e-c116-496e-9451-1806a389aa56_132573019786508288" ], "x-ms-request-id": [ - "5467a309-046e-4c0d-8809-b7f856f076ab" + "ffd5ea9b-6091-4c73-b135-c8756a23433a" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -535,16 +535,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "f74c7f51-233f-44b9-b118-15ef77dea406" + "a83d1c58-a4c4-4012-ab65-1b4face6a322" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231138Z:f74c7f51-233f-44b9-b118-15ef77dea406" + "WESTCENTRALUS:20210330T003414Z:a83d1c58-a4c4-4012-ab65-1b4face6a322" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:11:38 GMT" + "Tue, 30 Mar 2021 00:34:13 GMT" ], "Content-Length": [ "633" @@ -556,26 +556,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication8396\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345/applications/galleryPsTestGalleryApplication8396\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication5395\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg581/providers/Microsoft.Compute/galleries/galleryPsTestGallery4899/applications/galleryPsTestGalleryApplication5395\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345/applications/galleryPsTestGalleryApplication8396?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTM0NS9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjgzOTY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg581/providers/Microsoft.Compute/galleries/galleryPsTestGallery4899/applications/galleryPsTestGalleryApplication5395?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NDg5OS9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjUzOTU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d270c6cb-161d-417b-a41c-760765086ea4" + "311cbecb-abad-423a-bbad-f2d58e2bae4a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -586,16 +586,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryApplication3Min;296,Microsoft.Compute/GetGalleryApplication30Min;1985" + "Microsoft.Compute/GetGalleryApplication3Min;296,Microsoft.Compute/GetGalleryApplication30Min;1996" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" + "060de95e-c116-496e-9451-1806a389aa56_132573019786508288,060de95e-c116-496e-9451-1806a389aa56_132573019786508288" ], "x-ms-request-id": [ - "a00440e9-54ef-432f-be65-a0ce2ee44b28" + "d267568c-f2e7-4368-8041-77145ad45525" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -605,16 +605,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "b9b4db3c-8705-49c6-a536-7eb8f04f264b" + "6aaebe1b-0944-4b89-b771-e0dc70b2da78" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231139Z:b9b4db3c-8705-49c6-a536-7eb8f04f264b" + "WESTCENTRALUS:20210330T003414Z:6aaebe1b-0944-4b89-b771-e0dc70b2da78" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:11:38 GMT" + "Tue, 30 Mar 2021 00:34:14 GMT" ], "Content-Length": [ "609" @@ -626,26 +626,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication8396\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345/applications/galleryPsTestGalleryApplication8396\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"Updated description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication5395\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg581/providers/Microsoft.Compute/galleries/galleryPsTestGallery4899/applications/galleryPsTestGalleryApplication5395\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"Updated description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345/applications/galleryPsTestGalleryApplication8396?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTM0NS9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjgzOTY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg581/providers/Microsoft.Compute/galleries/galleryPsTestGallery4899/applications/galleryPsTestGalleryApplication5395?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NDg5OS9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjUzOTU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5ff93915-a1ce-4a5c-89fe-f57374fbcc84" + "5c6302a6-1e1c-41bb-aec9-173d4d334aa5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -656,16 +656,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/DeleteGalleryApplication3Min;49,Microsoft.Compute/DeleteGalleryApplication30Min;298" + "Microsoft.Compute/DeleteGalleryApplication3Min;49,Microsoft.Compute/DeleteGalleryApplication30Min;299" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" + "060de95e-c116-496e-9451-1806a389aa56_132573019786508288,060de95e-c116-496e-9451-1806a389aa56_132573019786508288" ], "x-ms-request-id": [ - "b50d9f3b-f988-417d-b0e0-17ee28cb7c25" + "cbe602ca-947a-457a-b3d5-810ada530ae5" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -675,16 +675,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "abe07287-6fe0-44fb-9acb-91e7cb5bfd53" + "04b0e9f7-a911-46e7-9e84-0107fd01d0aa" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231139Z:abe07287-6fe0-44fb-9acb-91e7cb5bfd53" + "WESTCENTRALUS:20210330T003415Z:04b0e9f7-a911-46e7-9e84-0107fd01d0aa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:11:38 GMT" + "Tue, 30 Mar 2021 00:34:14 GMT" ], "Expires": [ "-1" @@ -697,22 +697,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg115/providers/Microsoft.Compute/galleries/galleryPsTestGallery5345?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzExNS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTM0NT9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg581/providers/Microsoft.Compute/galleries/galleryPsTestGallery4899?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NDg5OT9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd8ac6e5-68c4-49b6-9bf6-8faa08b899f2" + "876a9764-6c8e-480d-b4f1-3145f23c3437" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -723,22 +723,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/78b08b5e-6185-4dc5-8079-0a209db322a9?monitor=true&api-version=2020-09-30" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/160b0f51-0401-4e6b-bc23-a07c7ab52937?monitor=true&api-version=2020-09-30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/78b08b5e-6185-4dc5-8079-0a209db322a9?api-version=2020-09-30" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/160b0f51-0401-4e6b-bc23-a07c7ab52937?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;298" + "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;899" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" + "060de95e-c116-496e-9451-1806a389aa56_132573019786508288,060de95e-c116-496e-9451-1806a389aa56_132573019786508288" ], "x-ms-request-id": [ - "78b08b5e-6185-4dc5-8079-0a209db322a9" + "160b0f51-0401-4e6b-bc23-a07c7ab52937" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -748,16 +748,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "d4ce9a0a-34f1-4af8-baaf-f9fde957b858" + "2ba9e383-4b16-4566-9ce8-9b2f0f2697dd" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231140Z:d4ce9a0a-34f1-4af8-baaf-f9fde957b858" + "WESTCENTRALUS:20210330T003416Z:2ba9e383-4b16-4566-9ce8-9b2f0f2697dd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:11:40 GMT" + "Tue, 30 Mar 2021 00:34:15 GMT" ], "Expires": [ "-1" @@ -770,16 +770,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/78b08b5e-6185-4dc5-8079-0a209db322a9?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy83OGIwOGI1ZS02MTg1LTRkYzUtODA3OS0wYTIwOWRiMzIyYTk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/160b0f51-0401-4e6b-bc23-a07c7ab52937?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xNjBiMGY1MS0wNDAxLTRlNmItYmMyMy1hMDdjN2FiNTI5Mzc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -790,16 +790,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4191" + "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4196" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" + "060de95e-c116-496e-9451-1806a389aa56_132573019786508288,060de95e-c116-496e-9451-1806a389aa56_132573019786508288" ], "x-ms-request-id": [ - "c25eb790-9a4e-4f9f-8283-496e52b0c9f2" + "a87417f1-ceb8-43e1-aa82-379a42802a0e" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -809,16 +809,16 @@ "11994" ], "x-ms-correlation-request-id": [ - "87684c77-a972-4747-9165-e36cb7e55a54" + "8733e8a3-ba22-46fc-85c6-938f66367dd5" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231211Z:87684c77-a972-4747-9165-e36cb7e55a54" + "WESTCENTRALUS:20210330T003446Z:8733e8a3-ba22-46fc-85c6-938f66367dd5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:12:10 GMT" + "Tue, 30 Mar 2021 00:34:45 GMT" ], "Content-Length": [ "184" @@ -830,20 +830,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:11:40.7226448-07:00\",\r\n \"endTime\": \"2020-10-22T16:11:41.0195276-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"78b08b5e-6185-4dc5-8079-0a209db322a9\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:34:15.8580901-07:00\",\r\n \"endTime\": \"2021-03-29T17:34:16.1550054-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"160b0f51-0401-4e6b-bc23-a07c7ab52937\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/78b08b5e-6185-4dc5-8079-0a209db322a9?monitor=true&api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy83OGIwOGI1ZS02MTg1LTRkYzUtODA3OS0wYTIwOWRiMzIyYTk/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/160b0f51-0401-4e6b-bc23-a07c7ab52937?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xNjBiMGY1MS0wNDAxLTRlNmItYmMyMy1hMDdjN2FiNTI5Mzc/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -854,16 +854,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4190" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4195" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "060de95e-c116-496e-9451-1806a389aa56_132373484089700323,060de95e-c116-496e-9451-1806a389aa56_132373484089700323" + "060de95e-c116-496e-9451-1806a389aa56_132573019786508288,060de95e-c116-496e-9451-1806a389aa56_132573019786508288" ], "x-ms-request-id": [ - "870a654d-f08a-4824-a8ae-098e92606308" + "22449719-0535-4b90-b10d-8b3f5c1cc351" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -873,16 +873,16 @@ "11993" ], "x-ms-correlation-request-id": [ - "bc691707-dd6e-4e7c-a5b4-842bf218c52b" + "772155e1-ee94-4bc4-9160-38d2318d95f9" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231211Z:bc691707-dd6e-4e7c-a5b4-842bf218c52b" + "WESTCENTRALUS:20210330T003446Z:772155e1-ee94-4bc4-9160-38d2318d95f9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:12:10 GMT" + "Tue, 30 Mar 2021 00:34:45 GMT" ], "Expires": [ "-1" @@ -897,12 +897,12 @@ ], "Names": { "GalleryApplication_CRUD_Tests": [ - "galleryPsTestRg115", - "galleryPsTestGallery5345", - "galleryPsTestGalleryApplication8396" + "galleryPsTestRg581", + "galleryPsTestGallery4899", + "galleryPsTestGalleryApplication5395" ] }, "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 1c36a8e15dcc..ec0741bacfe7 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryImageVersion_CRUD_Tests.json +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryImageVersion_CRUD_Tests.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/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=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "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=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "524a4299-78ae-443f-ab53-5e18d9ecb670" + "73465510-f472-43b5-bdce-53bf7e0585b5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -26,33 +26,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43999" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "19a6b8e7-2f9b-4b25-aea4-718323f85895_132468954105547249" + "19a6b8e7-2f9b-4b25-aea4-718323f85895_132573950891713657" ], "x-ms-request-id": [ - "e3d9d638-d033-48b2-ba82-2e31f985292e" + "047fa7b1-ba0f-4c50-88ea-041849c4156e" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11987" ], "x-ms-correlation-request-id": [ - "ec30d52a-c04d-4a8a-976f-c7d0beabfcf3" + "807bda28-87c0-4964-b627-847d84397d59" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231222Z:ec30d52a-c04d-4a8a-976f-c7d0beabfcf3" + "WESTCENTRALUS:20210330T003452Z:807bda28-87c0-4964-b627-847d84397d59" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:12:21 GMT" + "Tue, 30 Mar 2021 00:34:51 GMT" ], "Content-Length": [ "309" @@ -68,19 +71,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg9950?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg184?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4ND9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg9950\": \"2020-10-22 23:12:22Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg184\": \"2021-03-30 00:34:52Z\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7537699c-aad6-4090-a89f-6dc743726f89" + "421e3516-4772-46ed-a9dc-a3a032658853" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -89,7 +92,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "99" + "98" ] }, "ResponseHeaders": { @@ -103,13 +106,13 @@ "1199" ], "x-ms-request-id": [ - "3251eb0d-fd65-438f-9d12-642f9ad94521" + "0e92a003-3ac9-49f7-8dc4-1b33667133de" ], "x-ms-correlation-request-id": [ - "3251eb0d-fd65-438f-9d12-642f9ad94521" + "0e92a003-3ac9-49f7-8dc4-1b33667133de" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231223Z:3251eb0d-fd65-438f-9d12-642f9ad94521" + "WESTCENTRALUS:20210330T003453Z:0e92a003-3ac9-49f7-8dc4-1b33667133de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -118,10 +121,10 @@ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:12:23 GMT" + "Tue, 30 Mar 2021 00:34:52 GMT" ], "Content-Length": [ - "246" + "243" ], "Content-Type": [ "application/json; charset=utf-8" @@ -130,23 +133,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950\",\r\n \"name\": \"galleryPsTestRg9950\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg9950\": \"2020-10-22 23:12:22Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184\",\r\n \"name\": \"galleryPsTestRg184\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg184\": \"2021-03-30 00:34:52Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg9950?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg184?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4ND9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg9950\": \"2020-10-22 23:12:55Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg184\": \"2021-03-30 00:35:27Z\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fa471970-3a28-44b3-af21-d0171f4b6bde" + "3cedbef1-10ad-40cc-b10d-a29d6dbc8fb0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -155,7 +158,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "99" + "98" ] }, "ResponseHeaders": { @@ -169,13 +172,13 @@ "1198" ], "x-ms-request-id": [ - "a156a281-5cd9-4a9e-aa69-40ab5bf23a20" + "98315546-ff98-4f54-9200-ccdbc8ee781e" ], "x-ms-correlation-request-id": [ - "a156a281-5cd9-4a9e-aa69-40ab5bf23a20" + "98315546-ff98-4f54-9200-ccdbc8ee781e" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231255Z:a156a281-5cd9-4a9e-aa69-40ab5bf23a20" + "WESTCENTRALUS:20210330T003527Z:98315546-ff98-4f54-9200-ccdbc8ee781e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -184,10 +187,10 @@ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:12:55 GMT" + "Tue, 30 Mar 2021 00:35:27 GMT" ], "Content-Length": [ - "246" + "243" ], "Content-Type": [ "application/json; charset=utf-8" @@ -196,23 +199,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950\",\r\n \"name\": \"galleryPsTestRg9950\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg9950\": \"2020-10-22 23:12:55Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184\",\r\n \"name\": \"galleryPsTestRg184\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg184\": \"2021-03-30 00:35:27Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Storage/storageAccounts/saforgallery3821?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnkzODIxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Storage/storageAccounts/saforgallery1715?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3NhZm9yZ2FsbGVyeTE3MTU/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": [ - "0ced650a-3c4e-42b4-9c27-d4a15194d163" + "c000ba66-2808-408a-99cf-162e2aeb69a8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" @@ -232,13 +235,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Storage/locations/eastus2/asyncoperations/3f576258-4958-4682-9407-9782624fc6bf?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Storage/locations/eastus2/asyncoperations/2f3f6ce5-7a2a-44c1-ac05-1d100c398686?monitor=true&api-version=2015-06-15" ], "Retry-After": [ "17" ], "x-ms-request-id": [ - "3f576258-4958-4682-9407-9782624fc6bf" + "2f3f6ce5-7a2a-44c1-ac05-1d100c398686" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -247,19 +250,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "6c9955dd-0fdc-4140-bb7f-98090a4e739c" + "834a4dfa-7694-47c6-b849-b53ca5ddf178" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231227Z:6c9955dd-0fdc-4140-bb7f-98090a4e739c" + "WESTCENTRALUS:20210330T003459Z:834a4dfa-7694-47c6-b849-b53ca5ddf178" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:12:27 GMT" + "Tue, 30 Mar 2021 00:34:58 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -275,13 +278,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Storage/locations/eastus2/asyncoperations/3f576258-4958-4682-9407-9782624fc6bf?monitor=true&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMi9hc3luY29wZXJhdGlvbnMvM2Y1NzYyNTgtNDk1OC00NjgyLTk0MDctOTc4MjYyNGZjNmJmP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Storage/locations/eastus2/asyncoperations/2f3f6ce5-7a2a-44c1-ac05-1d100c398686?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMi9hc3luY29wZXJhdGlvbnMvMmYzZjZjZTUtN2EyYS00NGMxLWFjMDUtMWQxMDBjMzk4Njg2P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" @@ -295,7 +298,7 @@ "no-cache" ], "x-ms-request-id": [ - "1f615557-b640-4a77-9b73-6b04f4cf77ba" + "06c8f2bd-5860-491a-8131-1bff27087912" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -307,16 +310,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "b71c7a34-df3a-410e-89d4-a7c73cd44291" + "9c0560cf-51f0-4425-993c-2b6c3742f727" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231244Z:b71c7a34-df3a-410e-89d4-a7c73cd44291" + "WESTCENTRALUS:20210330T003516Z:9c0560cf-51f0-4425-993c-2b6c3742f727" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:12:44 GMT" + "Tue, 30 Mar 2021 00:35:15 GMT" ], "Content-Length": [ "89" @@ -332,19 +335,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b4520f08-9726-40d8-8398-1818808de61e" + "4754f62b-d4b2-4ce6-ae30-9238bda64df0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" @@ -358,7 +361,7 @@ "no-cache" ], "x-ms-request-id": [ - "2b5a84b4-ccaa-4bbe-a5c4-2919421c5463" + "d2c324a9-8b49-4da0-9f46-e178c7796f91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -370,19 +373,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "85990e2b-9d3d-422e-94cc-4e5915701bad" + "1f9d438d-aa97-4acf-96fd-986b0197fcac" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231254Z:85990e2b-9d3d-422e-94cc-4e5915701bad" + "WESTCENTRALUS:20210330T003526Z:1f9d438d-aa97-4acf-96fd-986b0197fcac" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:12:54 GMT" + "Tue, 30 Mar 2021 00:35:26 GMT" ], "Content-Length": [ - "765" + "764" ], "Content-Type": [ "application/json" @@ -391,23 +394,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Storage/storageAccounts/saforgallery3821\",\r\n \"name\": \"saforgallery3821\",\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\": \"2020-10-22T23:12:26.7229991Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery3821.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery3821.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery3821.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery3821.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/galleryPsTestRg184/providers/Microsoft.Storage/storageAccounts/saforgallery1715\",\r\n \"name\": \"saforgallery1715\",\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\": \"2021-03-30T00:34:55.778176Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery1715.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery1715.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery1715.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery1715.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/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Storage/storageAccounts/saforgallery3821?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnkzODIxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Storage/storageAccounts/saforgallery1715?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3NhZm9yZ2FsbGVyeTE3MTU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aaec5fb1-e7b1-47d1-bf4c-e87361517497" + "af3962c8-fe4b-474d-9b6c-f4f634f5df56" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" @@ -421,7 +424,7 @@ "no-cache" ], "x-ms-request-id": [ - "56de594c-d2f9-4b04-9a62-717aac0e9ad8" + "bb4a167e-ef12-4b01-a082-e0d4be994788" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -433,19 +436,19 @@ "11997" ], "x-ms-correlation-request-id": [ - "27ff3ea4-e0d0-478b-a04e-82a072623f07" + "743b5f1e-3fca-4d3a-8313-a4ff0510326a" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231254Z:27ff3ea4-e0d0-478b-a04e-82a072623f07" + "WESTCENTRALUS:20210330T003526Z:743b5f1e-3fca-4d3a-8313-a4ff0510326a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:12:54 GMT" + "Tue, 30 Mar 2021 00:35:26 GMT" ], "Content-Length": [ - "753" + "752" ], "Content-Type": [ "application/json" @@ -454,23 +457,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Storage/storageAccounts/saforgallery3821\",\r\n \"name\": \"saforgallery3821\",\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\": \"2020-10-22T23:12:26.7229991Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery3821.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery3821.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery3821.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery3821.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/galleryPsTestRg184/providers/Microsoft.Storage/storageAccounts/saforgallery1715\",\r\n \"name\": \"saforgallery1715\",\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\": \"2021-03-30T00:34:55.778176Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery1715.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery1715.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery1715.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery1715.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/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/publicIPAddresses/pip6143?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDYxNDM/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/publicIPAddresses/pip6852?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwNjg1Mj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn6774\"\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\": \"dn5334\"\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": [ - "ebf931e7-ca8d-4a6a-95b1-97e5cd47bf44" + "b49e2923-635d-43c7-aa8f-171f6c035eb6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" @@ -493,19 +496,19 @@ "1" ], "x-ms-request-id": [ - "7532e2a6-88ab-4d7a-964a-8263d378ac81" + "4e20b2cd-e8a9-4592-a64f-4744da29bd6b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Network/locations/eastus2/operations/7532e2a6-88ab-4d7a-964a-8263d378ac81?api-version=2019-09-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Network/locations/eastus2/operations/4e20b2cd-e8a9-4592-a64f-4744da29bd6b?api-version=2019-09-01" ], "x-ms-correlation-request-id": [ - "cece5f3b-ca70-4b6c-a536-77f8d86b6f26" + "8a94f563-2e78-4311-8483-87bb3eaf73fe" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "793142d6-0a8a-43b4-ad2f-ef2a55d422af" + "3ced8896-f4e7-4fb9-b712-c6114a40f669" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -518,16 +521,16 @@ "1199" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231304Z:cece5f3b-ca70-4b6c-a536-77f8d86b6f26" + "WESTCENTRALUS:20210330T003531Z:8a94f563-2e78-4311-8483-87bb3eaf73fe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:13:04 GMT" + "Tue, 30 Mar 2021 00:35:30 GMT" ], "Content-Length": [ - "763" + "762" ], "Content-Type": [ "application/json; charset=utf-8" @@ -536,17 +539,81 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pip6143\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/publicIPAddresses/pip6143\",\r\n \"etag\": \"W/\\\"281a13fc-bcd3-47cf-ae97-e63067e556a8\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ef04c573-631f-41c6-ae52-33f94dbe81e3\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn6774\",\r\n \"fqdn\": \"dn6774.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\": \"pip6852\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/publicIPAddresses/pip6852\",\r\n \"etag\": \"W/\\\"f2dc6d82-ff26-4c63-a745-6491cf2a180b\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"39669029-b2be-4fd2-9639-da0258fb62d8\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5334\",\r\n \"fqdn\": \"dn5334.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/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Network/locations/eastus2/operations/7532e2a6-88ab-4d7a-964a-8263d378ac81?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzc1MzJlMmE2LTg4YWItNGQ3YS05NjRhLTgyNjNkMzc4YWM4MT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Network/locations/eastus2/operations/4e20b2cd-e8a9-4592-a64f-4744da29bd6b?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzRlMjBiMmNkLWU4YTktNDU5Mi1hNjRmLTQ3NDRkYTI5YmQ2Yj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "2" + ], + "x-ms-request-id": [ + "5c3bc8d1-ecbc-4244-b3d7-ce4a1472ccbb" + ], + "x-ms-correlation-request-id": [ + "61660eb2-ac3f-4607-8c78-fb3977453120" + ], + "x-ms-arm-service-request-id": [ + "ebda1a2c-d40d-4beb-8cd0-6926be1b99b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210330T003532Z:61660eb2-ac3f-4607-8c78-fb3977453120" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 30 Mar 2021 00:35:31 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Network/locations/eastus2/operations/4e20b2cd-e8a9-4592-a64f-4744da29bd6b?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzRlMjBiMmNkLWU4YTktNDU5Mi1hNjRmLTQ3NDRkYTI5YmQ2Yj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" @@ -560,13 +627,13 @@ "no-cache" ], "x-ms-request-id": [ - "4e4768d4-fcb5-488d-adc3-9832138d300b" + "d10fe274-1589-41c4-b918-ca7f7e3bafda" ], "x-ms-correlation-request-id": [ - "f199f5d8-aa22-4480-bdfd-2f7218b4aa19" + "494bcc37-1202-462c-84b6-ec958f9559db" ], "x-ms-arm-service-request-id": [ - "71e92e3c-8d02-4f3c-bea4-3e6f4147f098" + "bebfcb80-4081-4d85-a0fd-f0761a733c5e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -579,13 +646,13 @@ "11998" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231306Z:f199f5d8-aa22-4480-bdfd-2f7218b4aa19" + "WESTCENTRALUS:20210330T003534Z:494bcc37-1202-462c-84b6-ec958f9559db" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:13:05 GMT" + "Tue, 30 Mar 2021 00:35:33 GMT" ], "Content-Length": [ "29" @@ -601,13 +668,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/publicIPAddresses/pip6143?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDYxNDM/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/publicIPAddresses/pip6852?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwNjg1Mj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" @@ -621,16 +688,16 @@ "no-cache" ], "ETag": [ - "W/\"b7b721e8-2724-402f-aea5-0c969920385b\"" + "W/\"8674ee42-d091-466e-8fb4-26eab3839b8b\"" ], "x-ms-request-id": [ - "56bccf52-ec53-4d1f-91ad-53994ce312d6" + "5aeb8c04-c5ae-4147-8274-97f09b17f87a" ], "x-ms-correlation-request-id": [ - "7eb19a94-854b-48d1-9b7c-d77fd064c875" + "65da5833-abd3-46d7-bb79-e5752f903c77" ], "x-ms-arm-service-request-id": [ - "e4cdd922-47e8-423e-8b35-9679fab20928" + "4d41aef0-fe94-4bdd-9edd-93623fa89ff0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -643,16 +710,16 @@ "11997" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231306Z:7eb19a94-854b-48d1-9b7c-d77fd064c875" + "WESTCENTRALUS:20210330T003534Z:65da5833-abd3-46d7-bb79-e5752f903c77" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:13:06 GMT" + "Tue, 30 Mar 2021 00:35:33 GMT" ], "Content-Length": [ - "764" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -661,23 +728,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pip6143\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/publicIPAddresses/pip6143\",\r\n \"etag\": \"W/\\\"b7b721e8-2724-402f-aea5-0c969920385b\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ef04c573-631f-41c6-ae52-33f94dbe81e3\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn6774\",\r\n \"fqdn\": \"dn6774.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\": \"pip6852\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/publicIPAddresses/pip6852\",\r\n \"etag\": \"W/\\\"8674ee42-d091-466e-8fb4-26eab3839b8b\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"39669029-b2be-4fd2-9639-da0258fb62d8\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5334\",\r\n \"fqdn\": \"dn5334.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/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/publicIPAddresses/pip6143?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDYxNDM/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/publicIPAddresses/pip6852?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwNjg1Mj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f2104ff-6c24-40d6-b0f8-d6b5d419bd4f" + "decf3401-4390-40d1-a0cd-b910fa5f34df" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" @@ -691,16 +758,16 @@ "no-cache" ], "ETag": [ - "W/\"b7b721e8-2724-402f-aea5-0c969920385b\"" + "W/\"8674ee42-d091-466e-8fb4-26eab3839b8b\"" ], "x-ms-request-id": [ - "06baff6f-0236-46d0-9046-7e88364363fd" + "318452b3-8aaf-4c0b-9508-1fbec10dbfd8" ], "x-ms-correlation-request-id": [ - "fbb82087-9702-413d-9689-b7c4be9d1db5" + "619e1fbc-6c0b-4c7f-8622-7c2e4e789ed6" ], "x-ms-arm-service-request-id": [ - "501d05dd-e06b-4b4c-b524-274d88be04ca" + "7470b26a-3d69-4c76-8778-73b0e3fd3ac0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -713,16 +780,16 @@ "11996" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231306Z:fbb82087-9702-413d-9689-b7c4be9d1db5" + "WESTCENTRALUS:20210330T003534Z:619e1fbc-6c0b-4c7f-8622-7c2e4e789ed6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:13:06 GMT" + "Tue, 30 Mar 2021 00:35:33 GMT" ], "Content-Length": [ - "764" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -731,23 +798,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pip6143\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/publicIPAddresses/pip6143\",\r\n \"etag\": \"W/\\\"b7b721e8-2724-402f-aea5-0c969920385b\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ef04c573-631f-41c6-ae52-33f94dbe81e3\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn6774\",\r\n \"fqdn\": \"dn6774.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\": \"pip6852\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/publicIPAddresses/pip6852\",\r\n \"etag\": \"W/\\\"8674ee42-d091-466e-8fb4-26eab3839b8b\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"39669029-b2be-4fd2-9639-da0258fb62d8\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5334\",\r\n \"fqdn\": \"dn5334.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/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/virtualNetworks/vn632?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYzMj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/virtualNetworks/vn2860?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMjg2MD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "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\": \"sn3362\"\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\": \"sn62\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "345f66fc-e737-43b0-98e5-6c8b107bdee3" + "df557e7b-2f11-4c1a-96ba-b7b354363912" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" @@ -756,7 +823,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "396" + "394" ] }, "ResponseHeaders": { @@ -770,19 +837,19 @@ "3" ], "x-ms-request-id": [ - "cab4cbed-2531-4ac6-aa8d-6283f50d9d19" + "5420b46d-77eb-415a-b147-9d51132cf268" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Network/locations/eastus2/operations/cab4cbed-2531-4ac6-aa8d-6283f50d9d19?api-version=2019-09-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Network/locations/eastus2/operations/5420b46d-77eb-415a-b147-9d51132cf268?api-version=2019-09-01" ], "x-ms-correlation-request-id": [ - "48f14a07-d4f3-4580-80e4-4d4b79122f2a" + "dd04da60-c467-4363-b390-d9f8d02b7d6f" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "430d0310-19fd-4484-bfe4-260834618e13" + "66c9d9c0-1b67-46d3-848c-8fcb852df5d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -795,16 +862,16 @@ "1198" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231307Z:48f14a07-d4f3-4580-80e4-4d4b79122f2a" + "WESTCENTRALUS:20210330T003536Z:dd04da60-c467-4363-b390-d9f8d02b7d6f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:13:07 GMT" + "Tue, 30 Mar 2021 00:35:35 GMT" ], "Content-Length": [ - "1384" + "1321" ], "Content-Type": [ "application/json; charset=utf-8" @@ -813,17 +880,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vn632\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/virtualNetworks/vn632\",\r\n \"etag\": \"W/\\\"ae947008-c7f8-4704-9a7e-6f5e949cb263\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"1e3b4064-7118-4a46-af43-c4ee9222f39e\",\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\": \"sn3362\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/virtualNetworks/vn632/subnets/sn3362\",\r\n \"etag\": \"W/\\\"ae947008-c7f8-4704-9a7e-6f5e949cb263\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vn2860\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/virtualNetworks/vn2860\",\r\n \"etag\": \"W/\\\"602cb3e9-fa80-4e7d-bc2b-e3f7e2e04273\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"cad3fc27-466b-4e39-ab01-4aa4f114bf61\",\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\": \"sn62\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/virtualNetworks/vn2860/subnets/sn62\",\r\n \"etag\": \"W/\\\"602cb3e9-fa80-4e7d-bc2b-e3f7e2e04273\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Network/locations/eastus2/operations/cab4cbed-2531-4ac6-aa8d-6283f50d9d19?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2NhYjRjYmVkLTI1MzEtNGFjNi1hYThkLTYyODNmNTBkOWQxOT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Network/locations/eastus2/operations/5420b46d-77eb-415a-b147-9d51132cf268?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzU0MjBiNDZkLTc3ZWItNDE1YS1iMTQ3LTlkNTExMzJjZjI2OD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" @@ -837,13 +904,13 @@ "no-cache" ], "x-ms-request-id": [ - "4b75a0bf-6494-4d75-be05-2fcafafc444c" + "6d397363-c694-403f-830e-7501d2a21f25" ], "x-ms-correlation-request-id": [ - "508c5a83-ff2c-401b-bee8-806e584f265c" + "6840688e-ca49-42ec-ad11-4d962a2d6d1a" ], "x-ms-arm-service-request-id": [ - "964f44f7-b3b1-4fab-ad7d-2916462525e9" + "b03e3bfd-1612-48a9-ae54-19f0af734597" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -856,13 +923,13 @@ "11995" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231311Z:508c5a83-ff2c-401b-bee8-806e584f265c" + "WESTCENTRALUS:20210330T003539Z:6840688e-ca49-42ec-ad11-4d962a2d6d1a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:13:10 GMT" + "Tue, 30 Mar 2021 00:35:38 GMT" ], "Content-Length": [ "29" @@ -878,13 +945,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/virtualNetworks/vn632?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYzMj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/virtualNetworks/vn2860?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMjg2MD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" @@ -898,16 +965,16 @@ "no-cache" ], "ETag": [ - "W/\"ee84d36d-4c1f-425a-946d-4fcc9baa64c7\"" + "W/\"7ef882e9-155c-4980-9f4a-d36b1851f8de\"" ], "x-ms-request-id": [ - "5de134af-3bd9-482b-878b-c0f6805502c6" + "a6262256-98ac-4189-9df5-d9af2bc3d335" ], "x-ms-correlation-request-id": [ - "3c6e1e80-802b-4757-97ac-fcbc8c2c0ca1" + "b0c07e79-5501-4ce6-8c77-dc268e776ac6" ], "x-ms-arm-service-request-id": [ - "85ca8745-f755-4ac1-a464-279c300deeb3" + "5f279d08-cbd7-4b7e-82a2-1ffede7e1c78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -920,16 +987,16 @@ "11994" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231311Z:3c6e1e80-802b-4757-97ac-fcbc8c2c0ca1" + "WESTCENTRALUS:20210330T003539Z:b0c07e79-5501-4ce6-8c77-dc268e776ac6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:13:10 GMT" + "Tue, 30 Mar 2021 00:35:38 GMT" ], "Content-Length": [ - "1386" + "1323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -938,23 +1005,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vn632\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/virtualNetworks/vn632\",\r\n \"etag\": \"W/\\\"ee84d36d-4c1f-425a-946d-4fcc9baa64c7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1e3b4064-7118-4a46-af43-c4ee9222f39e\",\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\": \"sn3362\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/virtualNetworks/vn632/subnets/sn3362\",\r\n \"etag\": \"W/\\\"ee84d36d-4c1f-425a-946d-4fcc9baa64c7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vn2860\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/virtualNetworks/vn2860\",\r\n \"etag\": \"W/\\\"7ef882e9-155c-4980-9f4a-d36b1851f8de\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cad3fc27-466b-4e39-ab01-4aa4f114bf61\",\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\": \"sn62\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/virtualNetworks/vn2860/subnets/sn62\",\r\n \"etag\": \"W/\\\"7ef882e9-155c-4980-9f4a-d36b1851f8de\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/virtualNetworks/vn632/subnets/sn3362?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYzMi9zdWJuZXRzL3NuMzM2Mj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/virtualNetworks/vn2860/subnets/sn62?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMjg2MC9zdWJuZXRzL3NuNjI/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7334cd0e-ec3d-4c63-9232-26d9fb710958" + "7fe2e7e6-6ff2-46c2-a255-84b6ec2e7f3b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" @@ -968,16 +1035,16 @@ "no-cache" ], "ETag": [ - "W/\"ee84d36d-4c1f-425a-946d-4fcc9baa64c7\"" + "W/\"7ef882e9-155c-4980-9f4a-d36b1851f8de\"" ], "x-ms-request-id": [ - "aae6e270-4cff-4a92-a6da-d64ac910bcb8" + "539db42b-47fa-46a7-b3a8-b60ac8452463" ], "x-ms-correlation-request-id": [ - "913becde-f158-46d8-a6a5-59ee07add035" + "5cf1f27e-3def-48d0-8ccc-e93764410b16" ], "x-ms-arm-service-request-id": [ - "65cc02f1-d0aa-4400-b5a2-063d52e0e0f1" + "29b87132-ec47-4f78-8507-1e3bc05ae118" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,16 +1057,16 @@ "11993" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231311Z:913becde-f158-46d8-a6a5-59ee07add035" + "WESTCENTRALUS:20210330T003539Z:5cf1f27e-3def-48d0-8ccc-e93764410b16" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:13:10 GMT" + "Tue, 30 Mar 2021 00:35:38 GMT" ], "Content-Length": [ - "548" + "524" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1008,23 +1075,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"sn3362\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/virtualNetworks/vn632/subnets/sn3362\",\r\n \"etag\": \"W/\\\"ee84d36d-4c1f-425a-946d-4fcc9baa64c7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"sn62\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/virtualNetworks/vn2860/subnets/sn62\",\r\n \"etag\": \"W/\\\"7ef882e9-155c-4980-9f4a-d36b1851f8de\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/networkInterfaces/nic1723?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE3MjM/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/networkInterfaces/nic5370?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTM3MD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"sn3362\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/virtualNetworks/vn632/subnets/sn3362\"\r\n }\r\n },\r\n \"name\": \"ip4160\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"sn62\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/virtualNetworks/vn2860/subnets/sn62\"\r\n }\r\n },\r\n \"name\": \"ip3834\"\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": [ - "012959d4-1d69-46dd-929f-0cfcae1bf4c7" + "1813232f-f54f-4edd-bc4d-781b5bfbfddd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" @@ -1033,7 +1100,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "747" + "743" ] }, "ResponseHeaders": { @@ -1044,19 +1111,19 @@ "no-cache" ], "x-ms-request-id": [ - "2706d78a-c410-4725-9cb7-afd7c1ec8f59" + "9b5418dd-a6db-421f-8615-b6c36db8b1fe" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Network/locations/eastus2/operations/2706d78a-c410-4725-9cb7-afd7c1ec8f59?api-version=2019-09-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Network/locations/eastus2/operations/9b5418dd-a6db-421f-8615-b6c36db8b1fe?api-version=2019-09-01" ], "x-ms-correlation-request-id": [ - "1531875a-ae53-4824-9d56-66c2f1eb5628" + "a6603648-97c0-4d5d-a751-3917cf623f26" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "6f07f4fd-cc6e-44cb-9d0d-b0faee1955bf" + "9ad719a3-a80b-4349-b6e7-a5f82a015eee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1069,16 +1136,16 @@ "1197" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231313Z:1531875a-ae53-4824-9d56-66c2f1eb5628" + "WESTCENTRALUS:20210330T003541Z:a6603648-97c0-4d5d-a751-3917cf623f26" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:13:12 GMT" + "Tue, 30 Mar 2021 00:35:40 GMT" ], "Content-Length": [ - "1642" + "1638" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1087,17 +1154,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"nic1723\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/networkInterfaces/nic1723\",\r\n \"etag\": \"W/\\\"030b49b4-bdb0-4071-8ad9-a0ea9b064905\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7ac19ab6-65e5-4d10-ac69-9e0e94ec2625\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip4160\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/networkInterfaces/nic1723/ipConfigurations/ip4160\",\r\n \"etag\": \"W/\\\"030b49b4-bdb0-4071-8ad9-a0ea9b064905\\\"\",\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/galleryPsTestRg9950/providers/Microsoft.Network/virtualNetworks/vn632/subnets/sn3362\"\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\": \"mradwhqyofdevl0dytxjeixttg.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic5370\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/networkInterfaces/nic5370\",\r\n \"etag\": \"W/\\\"4617c98c-eff8-4222-bcca-6889d90f72c9\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"16b954dc-0a13-4082-a8c7-2428003526e5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3834\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/networkInterfaces/nic5370/ipConfigurations/ip3834\",\r\n \"etag\": \"W/\\\"4617c98c-eff8-4222-bcca-6889d90f72c9\\\"\",\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/galleryPsTestRg184/providers/Microsoft.Network/virtualNetworks/vn2860/subnets/sn62\"\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\": \"e54nhstliy2u3kybjkspcff5mb.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/networkInterfaces/nic1723?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE3MjM/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/networkInterfaces/nic5370?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTM3MD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" @@ -1111,16 +1178,16 @@ "no-cache" ], "ETag": [ - "W/\"030b49b4-bdb0-4071-8ad9-a0ea9b064905\"" + "W/\"4617c98c-eff8-4222-bcca-6889d90f72c9\"" ], "x-ms-request-id": [ - "e795b50f-0119-46cf-9d0c-b00d8cba62fe" + "39ae8e02-d54c-41b0-a224-8a099b7f53ae" ], "x-ms-correlation-request-id": [ - "5a82ac84-f5f1-4540-b889-28996b96e93b" + "fdd86278-535d-4748-9b56-eeffe886d391" ], "x-ms-arm-service-request-id": [ - "326619c7-67ee-40ca-916e-fd6d288cc21b" + "fc9f891c-7f89-4df2-bc28-57b3b4ab174d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1133,16 +1200,16 @@ "11992" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231313Z:5a82ac84-f5f1-4540-b889-28996b96e93b" + "WESTCENTRALUS:20210330T003541Z:fdd86278-535d-4748-9b56-eeffe886d391" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:13:12 GMT" + "Tue, 30 Mar 2021 00:35:40 GMT" ], "Content-Length": [ - "1642" + "1638" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1151,23 +1218,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"nic1723\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/networkInterfaces/nic1723\",\r\n \"etag\": \"W/\\\"030b49b4-bdb0-4071-8ad9-a0ea9b064905\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7ac19ab6-65e5-4d10-ac69-9e0e94ec2625\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip4160\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/networkInterfaces/nic1723/ipConfigurations/ip4160\",\r\n \"etag\": \"W/\\\"030b49b4-bdb0-4071-8ad9-a0ea9b064905\\\"\",\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/galleryPsTestRg9950/providers/Microsoft.Network/virtualNetworks/vn632/subnets/sn3362\"\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\": \"mradwhqyofdevl0dytxjeixttg.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic5370\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/networkInterfaces/nic5370\",\r\n \"etag\": \"W/\\\"4617c98c-eff8-4222-bcca-6889d90f72c9\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"16b954dc-0a13-4082-a8c7-2428003526e5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3834\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/networkInterfaces/nic5370/ipConfigurations/ip3834\",\r\n \"etag\": \"W/\\\"4617c98c-eff8-4222-bcca-6889d90f72c9\\\"\",\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/galleryPsTestRg184/providers/Microsoft.Network/virtualNetworks/vn2860/subnets/sn62\"\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\": \"e54nhstliy2u3kybjkspcff5mb.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/networkInterfaces/nic1723?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE3MjM/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/networkInterfaces/nic5370?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTM3MD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1eccf200-5ccf-469c-8533-bfcfe2db3bd6" + "21d5ebb9-58be-4a25-b1d9-3d05985f815b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" @@ -1181,16 +1248,16 @@ "no-cache" ], "ETag": [ - "W/\"030b49b4-bdb0-4071-8ad9-a0ea9b064905\"" + "W/\"4617c98c-eff8-4222-bcca-6889d90f72c9\"" ], "x-ms-request-id": [ - "a4b58e59-4245-42bc-af98-811f6ad269cf" + "c1105b89-6707-4ab7-8c64-0833104fa684" ], "x-ms-correlation-request-id": [ - "9c695355-17ac-421d-955f-632262d51cf3" + "2c5801f8-e579-45e9-854d-13bfd7636ad8" ], "x-ms-arm-service-request-id": [ - "9e960e31-90b6-4230-a3fd-d17715647f29" + "24d98a07-ef30-4a9a-8cec-c819aa2547fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1203,16 +1270,16 @@ "11991" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231313Z:9c695355-17ac-421d-955f-632262d51cf3" + "WESTCENTRALUS:20210330T003541Z:2c5801f8-e579-45e9-854d-13bfd7636ad8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:13:12 GMT" + "Tue, 30 Mar 2021 00:35:40 GMT" ], "Content-Length": [ - "1642" + "1638" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1221,26 +1288,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"nic1723\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/networkInterfaces/nic1723\",\r\n \"etag\": \"W/\\\"030b49b4-bdb0-4071-8ad9-a0ea9b064905\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7ac19ab6-65e5-4d10-ac69-9e0e94ec2625\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip4160\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/networkInterfaces/nic1723/ipConfigurations/ip4160\",\r\n \"etag\": \"W/\\\"030b49b4-bdb0-4071-8ad9-a0ea9b064905\\\"\",\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/galleryPsTestRg9950/providers/Microsoft.Network/virtualNetworks/vn632/subnets/sn3362\"\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\": \"mradwhqyofdevl0dytxjeixttg.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic5370\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/networkInterfaces/nic5370\",\r\n \"etag\": \"W/\\\"4617c98c-eff8-4222-bcca-6889d90f72c9\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"16b954dc-0a13-4082-a8c7-2428003526e5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3834\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/networkInterfaces/nic5370/ipConfigurations/ip3834\",\r\n \"etag\": \"W/\\\"4617c98c-eff8-4222-bcca-6889d90f72c9\\\"\",\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/galleryPsTestRg184/providers/Microsoft.Network/virtualNetworks/vn2860/subnets/sn62\"\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\": \"e54nhstliy2u3kybjkspcff5mb.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/availabilitySets/asforgallery9985?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXNmb3JnYWxsZXJ5OTk4NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/availabilitySets/asforgallery8439?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXZhaWxhYmlsaXR5U2V0cy9hc2ZvcmdhbGxlcnk4NDM5P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", "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": [ - "4a20976a-23be-41e4-838a-d8ebf050b10f" + "bc1d3aa7-7da9-4496-ba95-9109c604eb7a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1257,13 +1324,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1197" + "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fe8d2277-324d-4841-a750-ad7912c2433b" + "626ff073-1365-4eb8-8606-f3f7f73ba28b" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1273,19 +1340,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "f3b32ee1-2077-4be5-87e2-68ec7ab1bc07" + "f8e02b1e-31e6-4811-9138-d35b1b57684f" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231315Z:f3b32ee1-2077-4be5-87e2-68ec7ab1bc07" + "WESTCENTRALUS:20210330T003544Z:f8e02b1e-31e6-4811-9138-d35b1b57684f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:13:15 GMT" + "Tue, 30 Mar 2021 00:35:44 GMT" ], "Content-Length": [ - "464" + "463" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1294,32 +1361,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"asforgallery9985\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/availabilitySets/asforgallery9985\",\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\": \"asforgallery8439\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/availabilitySets/asforgallery8439\",\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/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/virtualMachines/vm6924?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY5MjQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/virtualMachines/vm6537?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtNjUzNz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20180315\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://saforgallery3821.blob.core.windows.net/crptestar8729/oscrptestar8032.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/galleryPsTestRg9950/providers/Microsoft.Network/networkInterfaces/nic1723\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/availabilitySets/asforgallery9985\"\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://saforgallery1715.blob.core.windows.net/crptestar9300/oscrptestar8986.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/galleryPsTestRg184/providers/Microsoft.Network/networkInterfaces/nic5370\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/availabilitySets/asforgallery8439\"\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": [ - "1ce4f2f2-f8bd-418a-bafe-4287e415b818" + "07ba0ca5-fa64-4f58-85b3-0ff5ca4321a1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1236" + "1237" ] }, "ResponseHeaders": { @@ -1333,19 +1400,19 @@ "10" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/8c4ed540-fa0b-44cc-82a3-d99b90efd887?api-version=2020-06-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/b6904e8d-f1ae-4ae1-94ad-34efac2d8331?api-version=2020-12-01" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1196" + "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1198" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8c4ed540-fa0b-44cc-82a3-d99b90efd887" + "b6904e8d-f1ae-4ae1-94ad-34efac2d8331" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1355,19 +1422,19 @@ "1198" ], "x-ms-correlation-request-id": [ - "0445a9ad-6a8c-45d4-a61b-cf911ba4ddb7" + "814e4562-3eda-4c3d-928f-99652e86cf07" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231329Z:0445a9ad-6a8c-45d4-a61b-cf911ba4ddb7" + "WESTCENTRALUS:20210330T003546Z:814e4562-3eda-4c3d-928f-99652e86cf07" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:13:29 GMT" + "Tue, 30 Mar 2021 00:35:46 GMT" ], "Content-Length": [ - "1850" + "1968" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1376,20 +1443,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vm6924\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/virtualMachines/vm6924\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"e59ff4a8-2d17-4a01-aa7e-2b31064c1ddb\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY9985\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20180315\",\r\n \"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://saforgallery3821.blob.core.windows.net/crptestar8729/oscrptestar8032.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/networkInterfaces/nic1723\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vm6537\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/virtualMachines/vm6537\",\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\": \"dcb840be-2ab4-4156-b04a-7ef28a1ced09\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY8439\"\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://saforgallery1715.blob.core.windows.net/crptestar9300/oscrptestar8986.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/networkInterfaces/nic5370\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/8c4ed540-fa0b-44cc-82a3-d99b90efd887?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzhjNGVkNTQwLWZhMGItNDRjYy04MmEzLWQ5OWI5MGVmZDg4Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/b6904e8d-f1ae-4ae1-94ad-34efac2d8331?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2I2OTA0ZThkLWYxYWUtNGFlMS05NGFkLTM0ZWZhYzJkODMzMT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1403,154 +1470,32 @@ "50" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29982" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "c6487330-2cf0-4d87-908a-3152440a747f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-correlation-request-id": [ - "ee3f7540-6cef-4b90-a17e-607b25d03e60" - ], - "x-ms-routing-request-id": [ - "WESTUS:20201022T231340Z:ee3f7540-6cef-4b90-a17e-607b25d03e60" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 23:13:39 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:13:29.1038512-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8c4ed540-fa0b-44cc-82a3-d99b90efd887\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/8c4ed540-fa0b-44cc-82a3-d99b90efd887?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzhjNGVkNTQwLWZhMGItNDRjYy04MmEzLWQ5OWI5MGVmZDg4Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29220.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29981" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "8765ca59-d69e-4c4a-aa5f-2436f3ad438f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-correlation-request-id": [ - "a6c2d38e-33f5-49e2-8089-0bb61d189036" - ], - "x-ms-routing-request-id": [ - "WESTUS:20201022T231430Z:a6c2d38e-33f5-49e2-8089-0bb61d189036" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 23:14:29 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:13:29.1038512-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8c4ed540-fa0b-44cc-82a3-d99b90efd887\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/8c4ed540-fa0b-44cc-82a3-d99b90efd887?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzhjNGVkNTQwLWZhMGItNDRjYy04MmEzLWQ5OWI5MGVmZDg4Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29220.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29980" + "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29996" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dc52a1ad-6dfc-4690-9d2f-5868fd70e810" + "d0261339-d4ca-4a99-bbec-c73f4e191f17" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11986" ], "x-ms-correlation-request-id": [ - "b13f7d56-9535-4075-b532-9bcc745c0d36" + "57c81df2-896d-4dd0-84aa-924684bc4fc6" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231520Z:b13f7d56-9535-4075-b532-9bcc745c0d36" + "WESTCENTRALUS:20210330T003556Z:57c81df2-896d-4dd0-84aa-924684bc4fc6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:15:20 GMT" + "Tue, 30 Mar 2021 00:35:56 GMT" ], "Content-Length": [ "134" @@ -1562,20 +1507,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:13:29.1038512-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8c4ed540-fa0b-44cc-82a3-d99b90efd887\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:35:45.6338616-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6904e8d-f1ae-4ae1-94ad-34efac2d8331\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/8c4ed540-fa0b-44cc-82a3-d99b90efd887?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzhjNGVkNTQwLWZhMGItNDRjYy04MmEzLWQ5OWI5MGVmZDg4Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/b6904e8d-f1ae-4ae1-94ad-34efac2d8331?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2I2OTA0ZThkLWYxYWUtNGFlMS05NGFkLTM0ZWZhYzJkODMzMT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1586,32 +1531,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29978" + "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29995" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "08aeb82d-b5ef-435c-8a8b-9109657a86cd" + "f1a26458-edf3-4df2-9b68-c67655d5f210" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11984" ], "x-ms-correlation-request-id": [ - "4f323422-72bf-4f6c-b772-31688d741af9" + "5e2f7248-72d8-4439-87a5-bd24ba0aaefe" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231610Z:4f323422-72bf-4f6c-b772-31688d741af9" + "WESTCENTRALUS:20210330T003646Z:5e2f7248-72d8-4439-87a5-bd24ba0aaefe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:16:10 GMT" + "Tue, 30 Mar 2021 00:36:46 GMT" ], "Content-Length": [ "134" @@ -1623,20 +1568,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:13:29.1038512-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8c4ed540-fa0b-44cc-82a3-d99b90efd887\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:35:45.6338616-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6904e8d-f1ae-4ae1-94ad-34efac2d8331\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/8c4ed540-fa0b-44cc-82a3-d99b90efd887?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzhjNGVkNTQwLWZhMGItNDRjYy04MmEzLWQ5OWI5MGVmZDg4Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/b6904e8d-f1ae-4ae1-94ad-34efac2d8331?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2I2OTA0ZThkLWYxYWUtNGFlMS05NGFkLTM0ZWZhYzJkODMzMT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1647,32 +1592,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29977" + "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29994" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8018e30c-a6fe-4b1a-8e97-36f3f107b32e" + "7f03b02a-e109-4d9e-b02b-c9cfefcdd7a5" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11983" ], "x-ms-correlation-request-id": [ - "7ee2acfa-2d7e-4169-97d3-5226d47cae23" + "0708cdec-c6a7-4d94-9aad-ef564adbf0d9" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231700Z:7ee2acfa-2d7e-4169-97d3-5226d47cae23" + "WESTCENTRALUS:20210330T003736Z:0708cdec-c6a7-4d94-9aad-ef564adbf0d9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:16:59 GMT" + "Tue, 30 Mar 2021 00:37:36 GMT" ], "Content-Length": [ "134" @@ -1684,20 +1629,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:13:29.1038512-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8c4ed540-fa0b-44cc-82a3-d99b90efd887\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:35:45.6338616-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6904e8d-f1ae-4ae1-94ad-34efac2d8331\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/8c4ed540-fa0b-44cc-82a3-d99b90efd887?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzhjNGVkNTQwLWZhMGItNDRjYy04MmEzLWQ5OWI5MGVmZDg4Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/b6904e8d-f1ae-4ae1-94ad-34efac2d8331?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2I2OTA0ZThkLWYxYWUtNGFlMS05NGFkLTM0ZWZhYzJkODMzMT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1708,32 +1653,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29973" + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29991" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c4fa78cb-6d6e-4f4f-a4d8-2e8f46ccad00" + "3a8a1f2f-9f9a-4fcd-ad28-8c6d11d1ccd4" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11982" ], "x-ms-correlation-request-id": [ - "d13cddb3-25f3-4c15-b9bb-c4db3d2f7f93" + "00b0b76c-f188-4f9e-8ce8-583f2d0920a7" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231750Z:d13cddb3-25f3-4c15-b9bb-c4db3d2f7f93" + "WESTCENTRALUS:20210330T003827Z:00b0b76c-f188-4f9e-8ce8-583f2d0920a7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:17:50 GMT" + "Tue, 30 Mar 2021 00:38:26 GMT" ], "Content-Length": [ "184" @@ -1745,20 +1690,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:13:29.1038512-07:00\",\r\n \"endTime\": \"2020-10-22T16:17:34.0274727-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8c4ed540-fa0b-44cc-82a3-d99b90efd887\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:35:45.6338616-07:00\",\r\n \"endTime\": \"2021-03-29T17:38:22.8218451-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b6904e8d-f1ae-4ae1-94ad-34efac2d8331\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/virtualMachines/vm6924?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY5MjQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/virtualMachines/vm6537?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtNjUzNz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1769,35 +1714,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31921" + "Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31938" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8d946758-3d98-47b2-971e-f39dbf8c35f0" + "8c09460b-673f-4705-96cb-38c7beaa74f1" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11981" ], "x-ms-correlation-request-id": [ - "118ad5da-1edd-4dc4-8f90-2c787e9cf76f" + "9b2e8993-5893-4b46-8476-96fcf5b3916d" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231751Z:118ad5da-1edd-4dc4-8f90-2c787e9cf76f" + "WESTCENTRALUS:20210330T003827Z:9b2e8993-5893-4b46-8476-96fcf5b3916d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:17:50 GMT" + "Tue, 30 Mar 2021 00:38:26 GMT" ], "Content-Length": [ - "1879" + "1997" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1806,26 +1751,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vm6924\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/virtualMachines/vm6924\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"e59ff4a8-2d17-4a01-aa7e-2b31064c1ddb\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY9985\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20180315\",\r\n \"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://saforgallery3821.blob.core.windows.net/crptestar8729/oscrptestar8032.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/networkInterfaces/nic1723\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vm6537\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/virtualMachines/vm6537\",\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\": \"dcb840be-2ab4-4156-b04a-7ef28a1ced09\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY8439\"\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://saforgallery1715.blob.core.windows.net/crptestar9300/oscrptestar8986.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/networkInterfaces/nic5370\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/virtualMachines/vm6924?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY5MjQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/virtualMachines/vm6537?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtNjUzNz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "35b6199d-c5bc-472d-ba06-ea3635f3e9e0" + "8802c738-8ba1-4520-b526-b0e16a7fc6d4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1836,35 +1781,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3990,Microsoft.Compute/LowCostGet30Min;31920" + "Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31937" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "68587a69-a42b-4e23-88fb-640d860dcf06" + "0fa403bd-36dd-470e-b4c3-e147e746b322" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11980" ], "x-ms-correlation-request-id": [ - "d6ad4928-42b1-4d22-b333-f23f68084fd3" + "30efde36-76ec-4e5f-83b6-35e0fba715af" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231751Z:d6ad4928-42b1-4d22-b333-f23f68084fd3" + "WESTCENTRALUS:20210330T003827Z:30efde36-76ec-4e5f-83b6-35e0fba715af" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:17:51 GMT" + "Tue, 30 Mar 2021 00:38:26 GMT" ], "Content-Length": [ - "1879" + "1997" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1873,26 +1818,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vm6924\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/virtualMachines/vm6924\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"e59ff4a8-2d17-4a01-aa7e-2b31064c1ddb\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY9985\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20180315\",\r\n \"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://saforgallery3821.blob.core.windows.net/crptestar8729/oscrptestar8032.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Network/networkInterfaces/nic1723\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vm6537\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/virtualMachines/vm6537\",\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\": \"dcb840be-2ab4-4156-b04a-7ef28a1ced09\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY8439\"\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://saforgallery1715.blob.core.windows.net/crptestar9300/oscrptestar8986.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/networkInterfaces/nic5370\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTg2OTM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/images/psTestSourceImage5220?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaW1hZ2VzL3BzVGVzdFNvdXJjZUltYWdlNTIyMD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"blobUri\": \"https://saforgallery3821.blob.core.windows.net/crptestar8729/oscrptestar8032.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://saforgallery1715.blob.core.windows.net/crptestar9300/oscrptestar8986.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": [ - "ae635c52-a324-40ce-bc6e-b5b260d84de2" + "4d6140f6-4fe0-4153-88c0-8051d88da1c8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1909,19 +1854,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/89ff137b-8445-460b-8437-dbc82b292b1c?api-version=2020-06-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/3287f8bb-ebcc-4302-a2a5-70f9248b0055?api-version=2020-12-01" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateImages3Min;39,Microsoft.Compute/CreateImages30Min;198" + "Microsoft.Compute/CreateImages3Min;39,Microsoft.Compute/CreateImages30Min;199" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "89ff137b-8445-460b-8437-dbc82b292b1c" + "3287f8bb-ebcc-4302-a2a5-70f9248b0055" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1931,19 +1876,19 @@ "1197" ], "x-ms-correlation-request-id": [ - "26efb284-7fe6-436e-8966-4fea5a56eec1" + "e33cd110-40c6-42e6-90f7-d0453c9f2218" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231758Z:26efb284-7fe6-436e-8966-4fea5a56eec1" + "WESTCENTRALUS:20210330T003834Z:e33cd110-40c6-42e6-90f7-d0453c9f2218" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:17:58 GMT" + "Tue, 30 Mar 2021 00:38:33 GMT" ], "Content-Length": [ - "767" + "766" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1952,20 +1897,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"psTestSourceImage8693\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693\",\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://saforgallery3821.blob.core.windows.net/crptestar8729/oscrptestar8032.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\": \"psTestSourceImage5220\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/images/psTestSourceImage5220\",\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://saforgallery1715.blob.core.windows.net/crptestar9300/oscrptestar8986.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/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/89ff137b-8445-460b-8437-dbc82b292b1c?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzg5ZmYxMzdiLTg0NDUtNDYwYi04NDM3LWRiYzgyYjI5MmIxYz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/3287f8bb-ebcc-4302-a2a5-70f9248b0055?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzMyODdmOGJiLWViY2MtNDMwMi1hMmE1LTcwZjkyNDhiMDA1NT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1976,32 +1921,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29971" + "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29989" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "215f13fd-f833-455f-b8a7-96f535315893" + "06594650-fe58-4002-96e9-450fac89284b" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11979" ], "x-ms-correlation-request-id": [ - "dd68e70e-098e-4bfc-b036-c7801b77691b" + "a011678c-bfb4-444e-9fef-8d24d0e780a8" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231828Z:dd68e70e-098e-4bfc-b036-c7801b77691b" + "WESTCENTRALUS:20210330T003904Z:a011678c-bfb4-444e-9fef-8d24d0e780a8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:18:28 GMT" + "Tue, 30 Mar 2021 00:39:03 GMT" ], "Content-Length": [ "184" @@ -2013,20 +1958,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:17:52.7462917-07:00\",\r\n \"endTime\": \"2020-10-22T16:18:02.9963634-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"89ff137b-8445-460b-8437-dbc82b292b1c\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:38:28.6343477-07:00\",\r\n \"endTime\": \"2021-03-29T17:38:38.8531906-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3287f8bb-ebcc-4302-a2a5-70f9248b0055\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTg2OTM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/images/psTestSourceImage5220?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaW1hZ2VzL3BzVGVzdFNvdXJjZUltYWdlNTIyMD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -2037,35 +1982,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetImages3Min;358,Microsoft.Compute/GetImages30Min;1792" + "Microsoft.Compute/GetImages3Min;358,Microsoft.Compute/GetImages30Min;1798" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "26af7c77-c7fc-4329-ad9e-4657fa00e6be" + "6ecc1b7a-87d8-49e3-8f70-a0e3f1560b70" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11978" ], "x-ms-correlation-request-id": [ - "0c37c219-4359-4cd1-a3f2-f1e2100f9c3c" + "1dc2b275-ae35-49de-a83a-cb02f47dda62" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231828Z:0c37c219-4359-4cd1-a3f2-f1e2100f9c3c" + "WESTCENTRALUS:20210330T003904Z:1dc2b275-ae35-49de-a83a-cb02f47dda62" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:18:28 GMT" + "Tue, 30 Mar 2021 00:39:03 GMT" ], "Content-Length": [ - "796" + "795" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2074,26 +2019,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"psTestSourceImage8693\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693\",\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://saforgallery3821.blob.core.windows.net/crptestar8729/oscrptestar8032.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\": \"psTestSourceImage5220\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/images/psTestSourceImage5220\",\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://saforgallery1715.blob.core.windows.net/crptestar9300/oscrptestar8986.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/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTg2OTM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/images/psTestSourceImage5220?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaW1hZ2VzL3BzVGVzdFNvdXJjZUltYWdlNTIyMD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "009f5c3f-8e4d-4dbe-a93c-e7c9a2c6b31f" + "fe013f24-e3aa-4ef0-b1c1-580205fda648" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -2104,35 +2049,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetImages3Min;357,Microsoft.Compute/GetImages30Min;1791" + "Microsoft.Compute/GetImages3Min;357,Microsoft.Compute/GetImages30Min;1797" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3660b933-3147-4865-9d16-a9d0b240d243" + "8b64171d-b524-4223-81a1-1c759f2df97a" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11977" ], "x-ms-correlation-request-id": [ - "9de381f9-5f11-4d39-97b7-2e34411a6323" + "94dafbd9-ee95-4038-9dce-959b786a44c5" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231828Z:9de381f9-5f11-4d39-97b7-2e34411a6323" + "WESTCENTRALUS:20210330T003904Z:94dafbd9-ee95-4038-9dce-959b786a44c5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:18:28 GMT" + "Tue, 30 Mar 2021 00:39:04 GMT" ], "Content-Length": [ - "796" + "795" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2141,26 +2086,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"psTestSourceImage8693\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693\",\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://saforgallery3821.blob.core.windows.net/crptestar8729/oscrptestar8032.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\": \"psTestSourceImage5220\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/images/psTestSourceImage5220\",\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://saforgallery1715.blob.core.windows.net/crptestar9300/oscrptestar8986.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/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzMzNj9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", "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": [ - "b61ad902-c1fd-40f8-8630-162378bda94b" + "9611021c-61be-4593-a945-9a44a094d5e2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2177,19 +2122,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/bfc4ff59-3e73-4516-b28e-9cc9db85d9c3?api-version=2020-09-30" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/239e5b85-c319-405a-a0e4-7d66df5d4785?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;296" + "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;298" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "bfc4ff59-3e73-4516-b28e-9cc9db85d9c3" + "239e5b85-c319-405a-a0e4-7d66df5d4785" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2199,19 +2144,19 @@ "1196" ], "x-ms-correlation-request-id": [ - "a6dda605-0a08-42a9-b90a-193429e7ce0c" + "71a70e2e-0a98-4258-8613-79401c9c622a" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231830Z:a6dda605-0a08-42a9-b90a-193429e7ce0c" + "WESTCENTRALUS:20210330T003906Z:71a70e2e-0a98-4258-8613-79401c9c622a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:18:30 GMT" + "Tue, 30 Mar 2021 00:39:05 GMT" ], "Content-Length": [ - "573" + "572" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2220,20 +2165,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery5957\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957\",\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-GALLERYPSTESTGALLERY5957\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Private\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery7336\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336\",\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-GALLERYPSTESTGALLERY7336\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Private\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/bfc4ff59-3e73-4516-b28e-9cc9db85d9c3?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iZmM0ZmY1OS0zZTczLTQ1MTYtYjI4ZS05Y2M5ZGI4NWQ5YzM/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/239e5b85-c319-405a-a0e4-7d66df5d4785?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yMzllNWI4NS1jMzE5LTQwNWEtYTBlNC03ZDY2ZGY1ZDQ3ODU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -2244,35 +2189,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4153" + "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4186" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "29ec80f7-bda5-430c-a11d-87a75ee3ad71" + "c00183ce-7d9c-4e63-9049-3cf0e33b18f9" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11976" ], "x-ms-correlation-request-id": [ - "bd89c922-ad93-48fd-9dbc-5b8c236c1aac" + "f00c96fa-2440-4bdc-a2a5-d92a6360cdcd" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231900Z:bd89c922-ad93-48fd-9dbc-5b8c236c1aac" + "WESTCENTRALUS:20210330T003936Z:f00c96fa-2440-4bdc-a2a5-d92a6360cdcd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:19:00 GMT" + "Tue, 30 Mar 2021 00:39:35 GMT" ], "Content-Length": [ "184" @@ -2284,20 +2229,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:18:30.0217578-07:00\",\r\n \"endTime\": \"2020-10-22T16:18:30.2556521-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"bfc4ff59-3e73-4516-b28e-9cc9db85d9c3\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:39:05.9664537-07:00\",\r\n \"endTime\": \"2021-03-29T17:39:06.2164623-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"239e5b85-c319-405a-a0e4-7d66df5d4785\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzMzNj9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -2308,38 +2253,38 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;341,Microsoft.Compute/GetGallery30Min;2468" + "Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2489" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "e8793089-934e-463c-8b6f-642d089acb85" + "aed17cbd-f93e-4efa-834a-27a47a0e22ea" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11975" ], "x-ms-correlation-request-id": [ - "7020349a-2c60-49c5-9197-05901c9953c6" + "7aa9bdda-1f56-42d3-8413-8b1e500b8785" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231900Z:7020349a-2c60-49c5-9197-05901c9953c6" + "WESTCENTRALUS:20210330T003936Z:7aa9bdda-1f56-42d3-8413-8b1e500b8785" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:19:00 GMT" + "Tue, 30 Mar 2021 00:39:35 GMT" ], "Content-Length": [ - "509" + "508" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2348,26 +2293,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery5957\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957\",\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-GALLERYPSTESTGALLERY5957\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery7336\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336\",\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-GALLERYPSTESTGALLERY7336\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzNzQ1P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzMzNi9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTE4MjE/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "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": [ - "da3d3a85-a9ff-47ab-b258-db2f096f2d5d" + "b1e35076-98b2-4ea7-8455-d882e56cf67b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2384,19 +2329,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/0fc18e6a-731e-4cd2-9d7e-8ffefc930247?api-version=2020-09-30" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/bc54027c-b599-4b1b-921c-6425dddd7d5e?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;746" + "Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;747" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "0fc18e6a-731e-4cd2-9d7e-8ffefc930247" + "bc54027c-b599-4b1b-921c-6425dddd7d5e" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2406,19 +2351,19 @@ "1195" ], "x-ms-correlation-request-id": [ - "b89fe2a2-60a4-4a4c-86a7-e4eef4fe6eb7" + "ae05fe0e-0825-4c87-a809-6968353457d2" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231902Z:b89fe2a2-60a4-4a4c-86a7-e4eef4fe6eb7" + "WESTCENTRALUS:20210330T003938Z:ae05fe0e-0825-4c87-a809-6968353457d2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:19:02 GMT" + "Tue, 30 Mar 2021 00:39:37 GMT" ], "Content-Length": [ - "646" + "645" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2427,20 +2372,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage3745\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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\": \"galleryPsTestGalleryImage1821\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"description\": \"This is the gallery image description.\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/0fc18e6a-731e-4cd2-9d7e-8ffefc930247?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wZmMxOGU2YS03MzFlLTRjZDItOWQ3ZS04ZmZlZmM5MzAyNDc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/bc54027c-b599-4b1b-921c-6425dddd7d5e?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iYzU0MDI3Yy1iNTk5LTRiMWItOTIxYy02NDI1ZGRkZDdkNWU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -2451,38 +2396,38 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4151" + "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4184" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "aecf15d1-07bc-49ac-a245-d7435a93e618" + "44a3665e-4780-4621-bdf6-5b6dc6956e13" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11974" ], "x-ms-correlation-request-id": [ - "312b1b40-6b76-4f4c-b5bd-29b64fe47c7f" + "101b265d-b1b3-413a-9eab-d041a5fa2e54" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231932Z:312b1b40-6b76-4f4c-b5bd-29b64fe47c7f" + "WESTCENTRALUS:20210330T004008Z:101b265d-b1b3-413a-9eab-d041a5fa2e54" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:19:32 GMT" + "Tue, 30 Mar 2021 00:40:08 GMT" ], "Content-Length": [ - "184" + "183" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2491,20 +2436,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:01.9118646-07:00\",\r\n \"endTime\": \"2020-10-22T16:19:02.0368627-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0fc18e6a-731e-4cd2-9d7e-8ffefc930247\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:39:37.5773501-07:00\",\r\n \"endTime\": \"2021-03-29T17:39:37.717982-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"bc54027c-b599-4b1b-921c-6425dddd7d5e\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzNzQ1P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzMzNi9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTE4MjE/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -2515,38 +2460,38 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImage3Min;594,Microsoft.Compute/GetGalleryImage30Min;2961" + "Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2983" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "27f64fa4-f8f5-40bd-8cd0-4e521978af1b" + "e4d9d0d0-1dd5-4ffe-b0b0-10df4c6f17ee" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11973" ], "x-ms-correlation-request-id": [ - "ffb4cc20-93dd-4954-a8f7-beadca6df324" + "5061a076-9f4c-4170-bd1c-12c76c33b1f5" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231932Z:ffb4cc20-93dd-4954-a8f7-beadca6df324" + "WESTCENTRALUS:20210330T004008Z:5061a076-9f4c-4170-bd1c-12c76c33b1f5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:19:32 GMT" + "Tue, 30 Mar 2021 00:40:08 GMT" ], "Content-Length": [ - "647" + "646" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2555,32 +2500,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage3745\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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\": \"galleryPsTestGalleryImage1821\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"This is the gallery image description.\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/versions/1.0.0?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzNzQ1L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzMzNi9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTE4MjEvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "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\": \"2020-11-01T07: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/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693\"\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\": \"2021-04-08T07: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/galleryPsTestRg184/providers/Microsoft.Compute/images/psTestSourceImage5220\"\r\n }\r\n }\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ad28fe2a-5ad8-429c-bc4f-b9676cc468c5" + "c64be93c-95e0-4bbe-8cb0-1b89bb7d608d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "603" + "602" ] }, "ResponseHeaders": { @@ -2594,19 +2539,19 @@ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/82e09f14-222f-4754-bb6a-a531b5026f3d?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1198" + "Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1199" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "fcb01f2f-56d4-464d-a072-3be120eb4cc0" + "82e09f14-222f-4754-bb6a-a531b5026f3d" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2616,19 +2561,19 @@ "1194" ], "x-ms-correlation-request-id": [ - "5e70f9e0-e45b-4254-af40-142722662cd6" + "a49bb406-bac1-4373-96be-9757f1de0a83" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231934Z:5e70f9e0-e45b-4254-af40-142722662cd6" + "WESTCENTRALUS:20210330T004009Z:a49bb406-bac1-4373-96be-9757f1de0a83" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:19:33 GMT" + "Tue, 30 Mar 2021 00:40:09 GMT" ], "Content-Length": [ - "1036" + "1034" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2637,32 +2582,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/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\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"endOfLifeDate\": \"2020-11-01T00: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/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693\"\r\n }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821/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\": \"2021-03-29T17:40:09.0320568-07:00\",\r\n \"endOfLifeDate\": \"2021-04-08T00: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/galleryPsTestRg184/providers/Microsoft.Compute/images/psTestSourceImage5220\"\r\n }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/versions/1.0.0?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzNzQ1L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzMzNi9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTE4MjEvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "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\": \"2021-01-30T08: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/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693\"\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\": \"2021-07-07T07: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/galleryPsTestRg184/providers/Microsoft.Compute/images/psTestSourceImage5220\"\r\n }\r\n }\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1e6007ce-880b-495a-ac91-c1c6dea3b004" + "6694425e-98ee-4837-af7e-edfbce31a682" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "603" + "602" ] }, "ResponseHeaders": { @@ -2676,7 +2621,7 @@ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/df430ebe-c312-4d04-9b67-e7f2eaeba97a?api-version=2020-09-30" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/771470a3-3857-40c0-86c0-36e74515495f?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1198" @@ -2685,10 +2630,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "df430ebe-c312-4d04-9b67-e7f2eaeba97a" + "771470a3-3857-40c0-86c0-36e74515495f" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2698,19 +2643,19 @@ "1193" ], "x-ms-correlation-request-id": [ - "574ee840-b2aa-44aa-bf42-3d258f69763c" + "d6c3b571-8017-417c-9052-d6ad62ca4c30" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T233841Z:574ee840-b2aa-44aa-bf42-3d258f69763c" + "WESTCENTRALUS:20210330T004812Z:d6c3b571-8017-417c-9052-d6ad62ca4c30" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:38:40 GMT" + "Tue, 30 Mar 2021 00:48:12 GMT" ], "Content-Length": [ - "1150" + "1148" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2719,20 +2664,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/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\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"endOfLifeDate\": \"2021-01-30T00: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/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821/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\": \"2021-03-29T17:40:09.0320568-07:00\",\r\n \"endOfLifeDate\": \"2021-07-07T00: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/galleryPsTestRg184/providers/Microsoft.Compute/images/psTestSourceImage5220\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/82e09f14-222f-4754-bb6a-a531b5026f3d?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy84MmUwOWYxNC0yMjJmLTQ3NTQtYmI2YS1hNTMxYjUwMjZmM2Q/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -2746,35 +2691,35 @@ "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4149" + "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4182" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "9841fb43-55a1-4916-9adf-774c9050c751" + "5d2c4b54-6191-4a08-9fb6-c2f290e45980" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11972" ], "x-ms-correlation-request-id": [ - "8dedeaec-a2b5-4788-a9a0-6d8037c21495" + "d9d63729-c342-47f4-b397-9ad2f0574eae" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T232034Z:8dedeaec-a2b5-4788-a9a0-6d8037c21495" + "WESTCENTRALUS:20210330T004110Z:d9d63729-c342-47f4-b397-9ad2f0574eae" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:20:34 GMT" + "Tue, 30 Mar 2021 00:41:09 GMT" ], "Content-Length": [ "134" @@ -2786,20 +2731,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:40:09.0320568-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"82e09f14-222f-4754-bb6a-a531b5026f3d\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/82e09f14-222f-4754-bb6a-a531b5026f3d?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy84MmUwOWYxNC0yMjJmLTQ3NTQtYmI2YS1hNTMxYjUwMjZmM2Q/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -2813,35 +2758,35 @@ "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4148" + "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4181" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "f90ecf6d-7638-4e2b-8ce3-38404478ae07" + "3ce56025-3f81-425c-93b8-136de17ca9cc" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11971" ], "x-ms-correlation-request-id": [ - "35ba1ce0-4060-43c3-87bf-5c77ab275c3c" + "037f7d40-ce09-4f8b-9cfc-8690b48ffb7c" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T232134Z:35ba1ce0-4060-43c3-87bf-5c77ab275c3c" + "WESTCENTRALUS:20210330T004210Z:037f7d40-ce09-4f8b-9cfc-8690b48ffb7c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:21:34 GMT" + "Tue, 30 Mar 2021 00:42:10 GMT" ], "Content-Length": [ "134" @@ -2853,20 +2798,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:40:09.0320568-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"82e09f14-222f-4754-bb6a-a531b5026f3d\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/82e09f14-222f-4754-bb6a-a531b5026f3d?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy84MmUwOWYxNC0yMjJmLTQ3NTQtYmI2YS1hNTMxYjUwMjZmM2Q/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -2880,35 +2825,35 @@ "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4146" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4179" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "80b9ffb8-c368-48c2-9060-ce7f5d7d9b4a" + "22387701-ca1a-40bf-854e-fd109b5c9c4a" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11970" ], "x-ms-correlation-request-id": [ - "9cbf5bcc-e795-4ef4-ae54-d358dfc5eb7a" + "b36783ef-c75c-46eb-b450-b4711612292b" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T232235Z:9cbf5bcc-e795-4ef4-ae54-d358dfc5eb7a" + "WESTCENTRALUS:20210330T004310Z:b36783ef-c75c-46eb-b450-b4711612292b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:22:34 GMT" + "Tue, 30 Mar 2021 00:43:09 GMT" ], "Content-Length": [ "134" @@ -2920,20 +2865,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:40:09.0320568-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"82e09f14-222f-4754-bb6a-a531b5026f3d\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/82e09f14-222f-4754-bb6a-a531b5026f3d?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy84MmUwOWYxNC0yMjJmLTQ3NTQtYmI2YS1hNTMxYjUwMjZmM2Q/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -2947,35 +2892,35 @@ "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4144" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4177" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "b54fa1e8-b3c8-4cfa-9149-575e80276385" + "d395bce7-c80f-42e0-908b-717b986371e1" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11969" ], "x-ms-correlation-request-id": [ - "99611436-4e62-4aba-bf69-4a42a98e7b73" + "2ccf64e2-c9a8-40d0-a056-6c5bfb2d72a9" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T232335Z:99611436-4e62-4aba-bf69-4a42a98e7b73" + "WESTCENTRALUS:20210330T004410Z:2ccf64e2-c9a8-40d0-a056-6c5bfb2d72a9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:23:34 GMT" + "Tue, 30 Mar 2021 00:44:10 GMT" ], "Content-Length": [ "134" @@ -2987,20 +2932,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:40:09.0320568-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"82e09f14-222f-4754-bb6a-a531b5026f3d\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/82e09f14-222f-4754-bb6a-a531b5026f3d?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy84MmUwOWYxNC0yMjJmLTQ3NTQtYmI2YS1hNTMxYjUwMjZmM2Q/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -3014,35 +2959,35 @@ "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4142" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4175" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "5454faff-d937-4736-a915-52633e126323" + "e781504a-4553-40d3-aa37-c26a33d4fe73" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11968" ], "x-ms-correlation-request-id": [ - "e94d126c-64ee-414b-a2ac-e470cecc16b7" + "bb14fa95-d226-4391-a4ae-4dc7f7297895" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T232435Z:e94d126c-64ee-414b-a2ac-e470cecc16b7" + "WESTCENTRALUS:20210330T004511Z:bb14fa95-d226-4391-a4ae-4dc7f7297895" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:24:34 GMT" + "Tue, 30 Mar 2021 00:45:10 GMT" ], "Content-Length": [ "134" @@ -3054,20 +2999,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:40:09.0320568-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"82e09f14-222f-4754-bb6a-a531b5026f3d\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/82e09f14-222f-4754-bb6a-a531b5026f3d?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy84MmUwOWYxNC0yMjJmLTQ3NTQtYmI2YS1hNTMxYjUwMjZmM2Q/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -3081,35 +3026,35 @@ "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4150" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4173" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "a390fb18-d6f6-457a-8a8f-d8988f051f4c" + "1b586c2d-ca10-4a08-9a5e-5e6847b714ea" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11967" ], "x-ms-correlation-request-id": [ - "6c7b304f-82ae-4659-ade6-baa3c32bb201" + "bc655927-d8f7-49e2-bcd7-bf3f70b9d1d8" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T232535Z:6c7b304f-82ae-4659-ade6-baa3c32bb201" + "WESTCENTRALUS:20210330T004611Z:bc655927-d8f7-49e2-bcd7-bf3f70b9d1d8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:25:35 GMT" + "Tue, 30 Mar 2021 00:46:10 GMT" ], "Content-Length": [ "134" @@ -3121,20 +3066,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:40:09.0320568-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"82e09f14-222f-4754-bb6a-a531b5026f3d\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/82e09f14-222f-4754-bb6a-a531b5026f3d?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy84MmUwOWYxNC0yMjJmLTQ3NTQtYmI2YS1hNTMxYjUwMjZmM2Q/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -3148,35 +3093,35 @@ "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4148" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4171" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "deccb931-6628-42b0-9665-7b2c08a144b6" + "0577ecf9-f758-4df0-8419-7e861a0376eb" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11966" ], "x-ms-correlation-request-id": [ - "11634bbc-5ef3-4de9-9de6-cb8e1e0aff94" + "837011dd-0237-4929-b76b-b2d1f37b58f0" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T232636Z:11634bbc-5ef3-4de9-9de6-cb8e1e0aff94" + "WESTCENTRALUS:20210330T004711Z:837011dd-0237-4929-b76b-b2d1f37b58f0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:26:35 GMT" + "Tue, 30 Mar 2021 00:47:10 GMT" ], "Content-Length": [ "134" @@ -3188,20 +3133,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:40:09.0320568-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"82e09f14-222f-4754-bb6a-a531b5026f3d\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/82e09f14-222f-4754-bb6a-a531b5026f3d?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy84MmUwOWYxNC0yMjJmLTQ3NTQtYmI2YS1hNTMxYjUwMjZmM2Q/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -3211,42 +3156,39 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "60" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4146" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4169" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "f8744722-c780-449b-b52c-5d8c792dfcae" + "6bfb0fe7-3cd2-4dc4-8473-d5d390dac249" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11965" ], "x-ms-correlation-request-id": [ - "7bb31ccb-67c8-443b-8585-0c0ae3a399ea" + "5472d2ac-2193-446d-b747-2e941bb0e92f" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T232736Z:7bb31ccb-67c8-443b-8585-0c0ae3a399ea" + "WESTCENTRALUS:20210330T004811Z:5472d2ac-2193-446d-b747-2e941bb0e92f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:27:35 GMT" + "Tue, 30 Mar 2021 00:48:11 GMT" ], "Content-Length": [ - "134" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3255,20 +3197,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:40:09.0320568-07:00\",\r\n \"endTime\": \"2021-03-29T17:47:39.9451295-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"82e09f14-222f-4754-bb6a-a531b5026f3d\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzMzNi9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTE4MjEvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -3278,42 +3220,39 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "60" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4144" + "Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9997" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "94e596f8-9403-41cb-88ef-3bc7114af503" + "0ffbcd9a-e0f3-467d-93ed-f8b38a2b56e7" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11964" ], "x-ms-correlation-request-id": [ - "f134646e-f8ac-4c58-8007-ed84a979db13" + "8c264555-f4d2-4e22-a6e5-1625cd6885f9" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T232836Z:f134646e-f8ac-4c58-8007-ed84a979db13" + "WESTCENTRALUS:20210330T004812Z:8c264555-f4d2-4e22-a6e5-1625cd6885f9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:28:36 GMT" + "Tue, 30 Mar 2021 00:48:11 GMT" ], "Content-Length": [ - "134" + "1149" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3322,20 +3261,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821/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\": \"2021-03-29T17:40:09.0320568-07:00\",\r\n \"endOfLifeDate\": \"2021-04-08T00: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/galleryPsTestRg184/providers/Microsoft.Compute/images/psTestSourceImage5220\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzMzNi9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTE4MjEvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "5e12b366-a924-4c31-b80d-3ab295b65ce5" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -3345,42 +3290,39 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "60" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4142" + "Microsoft.Compute/GetGalleryImageVersion3Min;1998,Microsoft.Compute/GetGalleryImageVersion30Min;9996" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "462b7863-6d77-4b56-807a-54b3e07b8369" + "9a2117bc-358d-4997-9159-502e3abef6bf" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11963" ], "x-ms-correlation-request-id": [ - "ab79e62e-5673-4470-a531-f4ec6c53bde8" + "1e6ba88a-ab1f-4f18-a38a-4ca431eb61ce" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T232937Z:ab79e62e-5673-4470-a531-f4ec6c53bde8" + "WESTCENTRALUS:20210330T004812Z:1e6ba88a-ab1f-4f18-a38a-4ca431eb61ce" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:29:36 GMT" + "Tue, 30 Mar 2021 00:48:11 GMT" ], "Content-Length": [ - "134" + "1149" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3389,20 +3331,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821/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\": \"2021-03-29T17:40:09.0320568-07:00\",\r\n \"endOfLifeDate\": \"2021-04-08T00: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/galleryPsTestRg184/providers/Microsoft.Compute/images/psTestSourceImage5220\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzMzNi9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTE4MjEvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -3412,42 +3354,39 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "60" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4149" + "Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9991" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "40abee44-e881-4d6c-8558-8d5e758897f2" + "4585b92f-6bf2-463d-a50d-416b8be4c204" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11957" ], "x-ms-correlation-request-id": [ - "0085f29d-0c13-4749-9b5b-302e31d915e3" + "201e8294-da7c-4d90-9546-5dbd70e9d0d0" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T233037Z:0085f29d-0c13-4749-9b5b-302e31d915e3" + "WESTCENTRALUS:20210330T005113Z:201e8294-da7c-4d90-9546-5dbd70e9d0d0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:30:36 GMT" + "Tue, 30 Mar 2021 00:51:13 GMT" ], "Content-Length": [ - "134" + "1149" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3456,20 +3395,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821/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\": \"2021-03-29T17:40:09.0320568-07:00\",\r\n \"endOfLifeDate\": \"2021-07-07T00: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/galleryPsTestRg184/providers/Microsoft.Compute/images/psTestSourceImage5220\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzMzNi9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTE4MjEvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "2e6ff09a-db54-4ab6-b518-a62f8e4c6da9" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -3479,42 +3424,39 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "60" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4147" + "Microsoft.Compute/GetGalleryImageVersion3Min;1998,Microsoft.Compute/GetGalleryImageVersion30Min;9990" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "1c9712ca-8572-4519-b90e-1260e776a731" + "cfa5c826-2c69-445c-97a8-8bc4d9e98648" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11956" ], "x-ms-correlation-request-id": [ - "7811b346-4406-44f2-824b-218db874da81" + "9cee09e0-5011-482e-b90f-c92fb01d3a97" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T233137Z:7811b346-4406-44f2-824b-218db874da81" + "WESTCENTRALUS:20210330T005113Z:9cee09e0-5011-482e-b90f-c92fb01d3a97" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:31:37 GMT" + "Tue, 30 Mar 2021 00:51:13 GMT" ], "Content-Length": [ - "134" + "1149" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3523,762 +3465,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821/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\": \"2021-03-29T17:40:09.0320568-07:00\",\r\n \"endOfLifeDate\": \"2021-07-07T00: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/galleryPsTestRg184/providers/Microsoft.Compute/images/psTestSourceImage5220\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821/versions/1.0.0?$expand=ReplicationStatus&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzMzNi9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTE4MjEvdmVyc2lvbnMvMS4wLjA/JGV4cGFuZD1SZXBsaWNhdGlvblN0YXR1cyZhcGktdmVyc2lvbj0yMDIwLTA5LTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "66283d14-f3ec-4e12-bd21-fc4433b0092d" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4145" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" - ], - "x-ms-request-id": [ - "5453e96b-fde1-474d-b2ea-908f8c522f91" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" - ], - "x-ms-correlation-request-id": [ - "56e86114-08f7-43b5-89ab-9c818825e2ca" - ], - "x-ms-routing-request-id": [ - "WESTUS:20201022T233238Z:56e86114-08f7-43b5-89ab-9c818825e2ca" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 23:32:37 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29220.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4143" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" - ], - "x-ms-request-id": [ - "d0ec979b-18b9-4585-82a8-383d305c5927" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" - ], - "x-ms-correlation-request-id": [ - "b70ac4da-fd47-489d-8765-0e59484c7917" - ], - "x-ms-routing-request-id": [ - "WESTUS:20201022T233338Z:b70ac4da-fd47-489d-8765-0e59484c7917" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 23:33:37 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29220.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4141" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" - ], - "x-ms-request-id": [ - "c3c75070-753d-4a7e-b2d3-7497e48600ec" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" - ], - "x-ms-correlation-request-id": [ - "7be0fc47-f328-41a2-8d2e-7d15d2959536" - ], - "x-ms-routing-request-id": [ - "WESTUS:20201022T233438Z:7be0fc47-f328-41a2-8d2e-7d15d2959536" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 23:34:38 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29220.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4154" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" - ], - "x-ms-request-id": [ - "6093e32c-ad2a-421a-ab0f-5c84a38b6da4" - ], - "Retry-After": [ - "60" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" - ], - "x-ms-correlation-request-id": [ - "34443839-6b0b-4110-8ef0-a4c930d48ea2" - ], - "x-ms-routing-request-id": [ - "WESTUS:20201022T233539Z:34443839-6b0b-4110-8ef0-a4c930d48ea2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 23:35:38 GMT" - ], - "Date": [ - "Wed, 30 Dec 2020 00:02:25 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29220.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4152" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" - ], - "x-ms-request-id": [ - "8dd4b825-2895-46c9-af41-45abdf43613a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" - ], - "x-ms-correlation-request-id": [ - "09d5764c-510b-41db-bac0-b4393611baa0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20201022T233639Z:09d5764c-510b-41db-bac0-b4393611baa0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 23:36:39 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29220.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4150" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" - ], - "x-ms-request-id": [ - "7ef9ac1f-e296-4266-9cd1-ab64b0064198" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" - ], - "x-ms-correlation-request-id": [ - "0194400f-42d6-4036-ba44-ef9194fc2e88" - ], - "x-ms-routing-request-id": [ - "WESTUS:20201022T233739Z:0194400f-42d6-4036-ba44-ef9194fc2e88" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 23:37:39 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fcb01f2f-56d4-464d-a072-3be120eb4cc0?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mY2IwMWYyZi01NmQ0LTQ2NGQtYTA3Mi0zYmUxMjBlYjRjYzA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29220.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4148" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" - ], - "x-ms-request-id": [ - "74679aa1-16d2-45f5-abe7-48039c6f32f0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" - ], - "x-ms-correlation-request-id": [ - "776cec08-6c96-45bb-a958-04c00dd5ecec" - ], - "x-ms-routing-request-id": [ - "WESTUS:20201022T233840Z:776cec08-6c96-45bb-a958-04c00dd5ecec" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 23:38:40 GMT" - ], - "Content-Length": [ - "182" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"endTime\": \"2020-10-22T16:37:49.4116167-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"fcb01f2f-56d4-464d-a072-3be120eb4cc0\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/versions/1.0.0?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzNzQ1L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29220.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImageVersion3Min;1995,Microsoft.Compute/GetGalleryImageVersion30Min;9988" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" - ], - "x-ms-request-id": [ - "8bf56308-6efa-48b6-a279-cb721b57689d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" - ], - "x-ms-correlation-request-id": [ - "598beffb-fd6f-465b-9e2a-41d45efff081" - ], - "x-ms-routing-request-id": [ - "WESTUS:20201022T233840Z:598beffb-fd6f-465b-9e2a-41d45efff081" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 23:38:40 GMT" - ], - "Content-Length": [ - "1151" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/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\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"endOfLifeDate\": \"2020-11-01T00: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/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/versions/1.0.0?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzNzQ1L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "38280a23-2b34-44ca-99c0-bac61c8141b7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29220.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImageVersion3Min;1994,Microsoft.Compute/GetGalleryImageVersion30Min;9987" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" - ], - "x-ms-request-id": [ - "82e0a8a3-3c87-44fe-909b-6e20e4faa08e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" - ], - "x-ms-correlation-request-id": [ - "9bfddd38-008e-4478-86bf-bb31287501b6" - ], - "x-ms-routing-request-id": [ - "WESTUS:20201022T233840Z:9bfddd38-008e-4478-86bf-bb31287501b6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 23:38:40 GMT" - ], - "Content-Length": [ - "1151" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/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\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"endOfLifeDate\": \"2020-11-01T00: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/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/versions/1.0.0?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzNzQ1L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29220.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9984" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" - ], - "x-ms-request-id": [ - "81d3a6f9-18f0-469c-b58a-e003d34e34bc" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" - ], - "x-ms-correlation-request-id": [ - "d65b862f-deac-4279-aa75-ed599a002111" - ], - "x-ms-routing-request-id": [ - "WESTUS:20201022T234142Z:d65b862f-deac-4279-aa75-ed599a002111" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 23:41:41 GMT" - ], - "Content-Length": [ - "1151" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/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\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"endOfLifeDate\": \"2021-01-30T00: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/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/versions/1.0.0?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzNzQ1L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7ea47b3d-89b3-4e77-bb66-0224c5f80839" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29220.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImageVersion3Min;1998,Microsoft.Compute/GetGalleryImageVersion30Min;9983" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" - ], - "x-ms-request-id": [ - "f40ce4ba-3b67-4621-bab0-8e9f8c7d7522" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" - ], - "x-ms-correlation-request-id": [ - "d8567afb-e3b9-4cff-95a6-5c58c6671e25" - ], - "x-ms-routing-request-id": [ - "WESTUS:20201022T234142Z:d8567afb-e3b9-4cff-95a6-5c58c6671e25" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 23:41:41 GMT" - ], - "Content-Length": [ - "1151" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/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\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"endOfLifeDate\": \"2021-01-30T00: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/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/versions/1.0.0?$expand=ReplicationStatus&api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzNzQ1L3ZlcnNpb25zLzEuMC4wPyRleHBhbmQ9UmVwbGljYXRpb25TdGF0dXMmYXBpLXZlcnNpb249MjAyMC0wOS0zMA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9f67809f-03a1-4ba8-999e-799f6e72a132" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29220.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -4289,16 +3495,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImageVersion3Min;1993,Microsoft.Compute/GetGalleryImageVersion30Min;9986" + "Microsoft.Compute/GetGalleryImageVersion3Min;1997,Microsoft.Compute/GetGalleryImageVersion30Min;9995" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "e1fa8287-264c-472e-baac-ff6b8b485cef" + "1a605b2d-e664-4757-aa94-ff26116cbdc8" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4308,19 +3514,19 @@ "11962" ], "x-ms-correlation-request-id": [ - "56f182be-2402-4045-93a9-ee47b5c23890" + "5fc7d112-b129-4601-b348-090b750775ce" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T233840Z:56f182be-2402-4045-93a9-ee47b5c23890" + "WESTCENTRALUS:20210330T004812Z:5fc7d112-b129-4601-b348-090b750775ce" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:38:40 GMT" + "Tue, 30 Mar 2021 00:48:11 GMT" ], "Content-Length": [ - "1369" + "1367" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4329,20 +3535,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/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\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"endOfLifeDate\": \"2020-11-01T00: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/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"replicationStatus\": {\r\n \"aggregatedState\": \"Completed\",\r\n \"summary\": [\r\n {\r\n \"region\": \"eastus2\",\r\n \"state\": \"Completed\",\r\n \"progress\": 100\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/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821/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\": \"2021-03-29T17:40:09.0320568-07:00\",\r\n \"endOfLifeDate\": \"2021-04-08T00: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/galleryPsTestRg184/providers/Microsoft.Compute/images/psTestSourceImage5220\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"replicationStatus\": {\r\n \"aggregatedState\": \"Completed\",\r\n \"summary\": [\r\n {\r\n \"region\": \"eastus2\",\r\n \"state\": \"Completed\",\r\n \"progress\": 100\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/df430ebe-c312-4d04-9b67-e7f2eaeba97a?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9kZjQzMGViZS1jMzEyLTRkMDQtOWI2Ny1lN2YyZWFlYmE5N2E/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/771470a3-3857-40c0-86c0-36e74515495f?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83NzE0NzBhMy0zODU3LTQwYzAtODZjMC0zNmU3NDUxNTQ5NWY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -4356,38 +3562,38 @@ "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4146" + "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4166" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "c676b8d9-ccad-4509-948a-7ce19324d74a" + "a97735af-a714-433e-b5f9-8d608f8c32b2" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11960" ], "x-ms-correlation-request-id": [ - "86bac651-0da8-4695-bdcd-c74830cb2bed" + "1dd98996-2c6e-42ab-9379-479b5b722523" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T233941Z:86bac651-0da8-4695-bdcd-c74830cb2bed" + "WESTCENTRALUS:20210330T004912Z:1dd98996-2c6e-42ab-9379-479b5b722523" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:39:40 GMT" + "Tue, 30 Mar 2021 00:49:12 GMT" ], "Content-Length": [ - "134" + "132" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4396,20 +3602,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:38:40.6770898-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"df430ebe-c312-4d04-9b67-e7f2eaeba97a\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:48:12.49366-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"771470a3-3857-40c0-86c0-36e74515495f\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/df430ebe-c312-4d04-9b67-e7f2eaeba97a?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9kZjQzMGViZS1jMzEyLTRkMDQtOWI2Ny1lN2YyZWFlYmE5N2E/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/771470a3-3857-40c0-86c0-36e74515495f?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83NzE0NzBhMy0zODU3LTQwYzAtODZjMC0zNmU3NDUxNTQ5NWY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -4423,38 +3629,38 @@ "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4152" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4165" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "fc0c2a3a-f71f-4a45-a231-f6b16b4570e3" + "9536e0d6-29d4-40fc-a5b7-772008c1eadb" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11959" ], "x-ms-correlation-request-id": [ - "5f33cef1-c4f1-4e55-a968-61cb5e430749" + "aab1b4fd-34e3-446f-b091-fe04befcfe28" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T234041Z:5f33cef1-c4f1-4e55-a968-61cb5e430749" + "WESTCENTRALUS:20210330T005013Z:aab1b4fd-34e3-446f-b091-fe04befcfe28" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:40:40 GMT" + "Tue, 30 Mar 2021 00:50:12 GMT" ], "Content-Length": [ - "134" + "132" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4463,20 +3669,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:38:40.6770898-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"df430ebe-c312-4d04-9b67-e7f2eaeba97a\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:48:12.49366-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"771470a3-3857-40c0-86c0-36e74515495f\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/df430ebe-c312-4d04-9b67-e7f2eaeba97a?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9kZjQzMGViZS1jMzEyLTRkMDQtOWI2Ny1lN2YyZWFlYmE5N2E/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/771470a3-3857-40c0-86c0-36e74515495f?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83NzE0NzBhMy0zODU3LTQwYzAtODZjMC0zNmU3NDUxNTQ5NWY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -4487,38 +3693,38 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4150" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4163" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "910015ce-dd15-4684-b78b-ed10170f4237" + "b466853e-4600-4271-b547-1d38d5598938" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11958" ], "x-ms-correlation-request-id": [ - "017c3fea-aa16-4b51-b409-1be3f39e53f2" + "6e0d4d9f-055e-4f27-89fe-252afbcd7bb6" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T234141Z:017c3fea-aa16-4b51-b409-1be3f39e53f2" + "WESTCENTRALUS:20210330T005113Z:6e0d4d9f-055e-4f27-89fe-252afbcd7bb6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:41:41 GMT" + "Tue, 30 Mar 2021 00:51:13 GMT" ], "Content-Length": [ - "184" + "181" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4527,26 +3733,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:38:40.6770898-07:00\",\r\n \"endTime\": \"2020-10-22T16:41:10.8486799-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"df430ebe-c312-4d04-9b67-e7f2eaeba97a\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:48:12.49366-07:00\",\r\n \"endTime\": \"2021-03-29T17:50:42.673053-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"771470a3-3857-40c0-86c0-36e74515495f\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/versions?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzNzQ1L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821/versions?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzMzNi9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTE4MjEvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "949906a1-c5ef-40de-9ac4-c4a8694c2e3c" + "b4bb00d2-56ad-4a5c-96ff-580bc5d7b8d8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -4557,61 +3763,68 @@ "no-cache" ], "x-ms-original-request-ids": [ - "dd2ed183-bd18-49ff-b512-bd202beda84a", - "40860ab9-f2c7-40ea-aee4-05811cb2db05", - "f7c97797-970d-4723-9e99-65b804660f87", - "bf01726f-86a4-4d0d-a7de-31d85a5866db", - "2dee530b-92f3-4cee-8b44-27082642d4fa", - "d37ea41a-e18f-409d-aec8-dad532be90df", - "b78d316c-eed6-4d23-ada5-59f95b8764e1", - "fb7429b7-6446-4b60-8c2e-e822555a646a", - "74c9a3f0-5a43-483f-9c39-4ed6c79cb061", - "761c3ec9-43c5-4b30-b5cd-e3264583ed98", - "19c63f84-37ac-4146-b00a-6bca81f957c6", - "0e05e873-f307-40db-abf4-5c9a76c117f8", - "b2809d85-b364-400d-bba5-a0bfc6e6de86", - "5f57ae87-be2d-4c28-ab3e-ace10f36592b", - "5e91a5b6-5d7d-42d4-9d2c-0be655297508", - "3b18f67a-367b-4f77-87a6-25283d9cff5a", - "5a43a20f-8ab3-449d-857b-0efb5e9d23c1", - "9411755e-2714-4ed0-b3ce-43d1b1d3baa6", - "083f4b3b-70ae-4959-8ca7-39b417f293a0", - "32f572a0-d5be-4ac4-8724-70044d578010", - "5d14b2cd-a405-4d37-9836-1343eebe1ab8", - "66c2aa24-62f1-4b57-8c0c-f5aa2cda5844", - "2c403464-e313-4e5a-b4fc-24b104e860a1", - "5b6756ed-dd8f-4cda-8c45-1652fd32b586", - "88f3712b-e6ac-46b9-a79c-37f5599747df", - "3c6054ea-64e5-4fdb-9908-f4265ed6cc5f", - "a4bbf35a-1254-46c6-a54c-9ae7f19cf66e", - "6e4d178a-f8bf-45ff-92bf-2f44fc35442d", - "fc6b6242-f433-438d-90cf-7e0908d833a0", - "ec43cc11-670d-411b-907f-6163d122638f", - "b3cdde2f-de72-4702-9bfd-96636d24fb45", - "e5c5f508-b30b-487d-adf7-9d4a4dccc50f", - "17caed0b-7691-4f45-a749-28e3e781f169", - "bc9a8009-efa5-4e17-8f07-83f2f6a99fd7", - "9a9113e0-ce3d-40ca-92e6-bdad63e33ea7", - "83f4bf00-7e49-434b-a1d2-3333cdd95259", - "e1af7b33-3304-48f6-8d6c-6952e6765410", - "f0473bc4-f980-4ef0-8509-791a98fce4c8", - "5b5e30d7-3133-4221-923a-e4f7283a15cb", - "724a4000-0c66-4aea-a633-33d84f1e047a", - "7c8694ab-e875-440a-94ba-22909e29cb4a", - "e1d0be52-1701-4e52-9819-0a74621d4f62", - "d3d6be90-acc3-4135-b580-8a922fd26413" + "91ddd66a-2d90-497f-8f9d-b9095a91e201", + "90faba52-f65f-442b-9f1f-c29e2166cd36", + "ea31edc6-5a54-46a3-9184-f1394cb12636", + "9c1e8d25-3af7-425b-9d89-aaabfe74b19a", + "2f199568-d017-46a4-a4a3-10defe78a6e5", + "a468e87d-5095-4bb9-973c-a9c693c576b4", + "7ed2a8cd-2f1f-4ac9-838f-29ec238e7c12", + "5e579bb5-08a5-4cea-8684-4d5e8eb5f611", + "876f6c2b-df83-44a7-ae08-d360011b928a", + "73343bee-8995-4dec-83d0-bf3c34f96334", + "83a2e3eb-5d0e-4939-a3ad-01fa1cdf8c23", + "b1d3c0c0-e28b-4689-80d6-ff7468c8a30b", + "74dbd1df-bc61-4f2f-97b5-e2c8c2f50228", + "d0852742-6d3e-4fa3-bac0-7cddceb28232", + "2d4ac9ee-8e2f-4956-becf-816c5d6ba7fc", + "0df3b4ce-64ee-4c4b-8464-6352249ff510", + "72e7489b-fdc2-47e7-90d2-cdfef16763fb", + "20150a9a-394a-40d9-8f52-74afb2e52ef4", + "e55767ed-8f78-4f03-92f5-605f6f58fc17", + "fa662831-90cc-4428-83b0-7e7af9a52b33", + "3b988eab-a0e5-4b39-8c84-54d5bd4d0c00", + "4f4594c8-db06-4fb1-ae77-3876c9ab191a", + "d5ecd06c-9025-4b9a-9fa6-4603bbabd4d4", + "acee1951-7e78-4dfe-8173-1d10572e3f9b", + "8499dba7-f2f3-4d8b-9666-0d4d62b6c41a", + "54f8461e-6613-441f-93e1-b50611273e3a", + "ab038cb3-e7a1-46a5-b95e-d090037d0abc", + "9d7a956d-24fa-48b6-b871-2aee48855374", + "52f36638-2b7c-425d-a68a-1cc20c7db7ad", + "56335b49-9726-4236-968b-32c3d4729025", + "765e454a-7446-495d-8d45-a319c9cf97af", + "b78ac503-977a-452a-a613-52cf48b37021", + "a345b7a9-a014-418e-954c-2232f606b8bd", + "c7119e19-73e0-4f77-a86f-6b6deed839d8", + "6cbe060b-c961-4eda-801e-51ec387828bd", + "a74bbbf9-1bde-4dd9-8afc-4aa4b2436ef4", + "0c494131-525b-4911-b4da-d3253584f139", + "7568325e-0117-4146-a1e6-c2e600f042c8", + "03334dfb-e9f9-4d52-9e8e-9f2612fc2e23", + "8a8d8f06-873d-4969-b440-63b83121f46f", + "c5833d90-01f7-4912-85e9-8354b0eb00a6", + "af3df702-b746-4825-b26b-fdb292498862", + "da42899d-1fcc-471b-b1db-91f865cb0ad2", + "ac5c55ab-421d-46bf-adae-ecac9bf15114", + "6b42783c-b865-4fa3-994f-80c9a2c53000", + "36bb7770-26c0-4a39-8177-71f19ad62021", + "4df41766-8586-448a-8d41-bc8ff4b60614", + "d5464538-37cb-4f18-8bf1-13866dd50dac", + "c9709a98-3e74-4313-b4d5-3939f4e09494", + "d4751b47-07f9-4fb0-a81e-fb7d8a034a4a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11955" ], "x-ms-request-id": [ - "7fe4707c-a40a-4254-ac1f-67987a844eec" + "f6944d91-d99c-4851-af73-bb48e504e563" ], "x-ms-correlation-request-id": [ - "7fe4707c-a40a-4254-ac1f-67987a844eec" + "f6944d91-d99c-4851-af73-bb48e504e563" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T234143Z:7fe4707c-a40a-4254-ac1f-67987a844eec" + "WESTCENTRALUS:20210330T005115Z:f6944d91-d99c-4851-af73-bb48e504e563" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4620,7 +3833,7 @@ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:41:43 GMT" + "Tue, 30 Mar 2021 00:51:14 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4629,29 +3842,29 @@ "-1" ], "Content-Length": [ - "900" + "898" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/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\": \"2020-10-22T16:19:33.6933253-07:00\",\r\n \"endOfLifeDate\": \"2021-01-30T00: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/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821/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\": \"2021-03-29T17:40:09.0320568-07:00\",\r\n \"endOfLifeDate\": \"2021-07-07T00: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/galleryPsTestRg184/providers/Microsoft.Compute/images/psTestSourceImage5220\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/versions?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzNzQ1L3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821/versions?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzMzNi9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTE4MjEvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14509df9-a131-4b0e-b9d6-85d219291a5a" + "4b880ad6-1330-48e7-a6c9-b620b616337d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -4662,61 +3875,68 @@ "no-cache" ], "x-ms-original-request-ids": [ - "136f66e6-0915-4512-9b46-06dd5ae29bdc", - "69288caa-98ff-4628-bc0f-87b55c11be2e", - "a52f9944-135e-4644-87a4-0c63604bd93f", - "8031ee73-5e75-488a-a845-6c01d498da6c", - "277822ce-ad5e-4c82-a66b-867e6041b20a", - "4d0e0ad3-06c0-4d78-a5d9-fabc679ce7e8", - "e71b2eb5-dda6-4734-82ce-98fc541f16e0", - "7e58fbb6-6199-4a63-b8e2-2db3cb7e5bb7", - "d499304e-ad64-4870-8123-19393663c029", - "7b3020bc-1632-4b70-abbe-76e637311525", - "a7766d95-b980-4118-a752-1b9e2d49e6b5", - "0b0bf6b3-c12a-45a1-aa18-1848a53031b7", - "8020d942-ccd6-445c-9487-da766f6bcdcf", - "7be73e92-11fa-4f33-9727-39797e1153a3", - "9952856f-2501-4937-a762-b7da8ead1148", - "9953ca2f-d8ee-4913-ae06-fe2cf0cd3182", - "bd667df1-2e19-478f-b0a2-aa3b2e21c7f2", - "10a5ca64-0de0-4d48-8ab5-1047d0ba11e1", - "66968db8-5f20-4b3a-8692-058414f0597e", - "93593c24-005f-4e6e-b7bc-2be7d34f64b1", - "eaef44d1-2739-4af9-9f74-aa4df5b79228", - "d368e7ce-df52-4e77-85b3-c746b48fd178", - "4401f894-e8fe-4a3c-8b7f-c10c45343154", - "e397b9f0-557b-4727-bfca-cb5c635c6459", - "96962fb7-e2aa-43f7-a615-429d6d967252", - "1fa636a6-aba6-4c7b-8f0e-dfa0097e3e4a", - "9a3ccbab-5814-41e2-b5b9-a994d04f5843", - "9736d912-0ea5-47e3-98bb-eb324f65e930", - "b9f4a4a6-4bdb-4143-9a69-422114576e4b", - "e4312cd7-50b0-46b8-96cd-f6c8ebf69e01", - "939253ce-962e-40cb-85b4-b775dda6b992", - "b125f35f-c44e-4545-842f-90bfd905f48d", - "71fe9238-0618-4b43-8164-f75c830c44fe", - "b36234d2-e1c8-4845-a6bc-a8626fd60621", - "a2df2a05-8274-47ae-b73c-3111a3ef7ecc", - "66226737-9d01-4341-97ef-5b63673e7800", - "88bfb73b-d50e-4a29-bcab-770fb3e17a8c", - "10445497-a4ad-4f19-8e5d-a06439d947ef", - "a7322188-64e2-4c63-9448-71a68e33c95d", - "abd68f01-cf4e-4d79-b3ff-40d239b08be4", - "c920a3ab-8115-4b83-95ea-e40968072516", - "c5894c79-04f5-477e-bfed-b2b5be8e2c72", - "8779d777-e4a0-4cf1-8f11-44da1245ea61" + "06c0c42d-06ef-4c1c-bed1-7ff07016ea0f", + "f264b21b-abca-4ff7-8bbf-d8e7bb154b29", + "ff19fc1a-05d0-496f-a224-17112d2d006d", + "63a3c3c4-d008-45bc-a099-2d6812bf1b4a", + "5f7aebae-c913-4664-ba44-fc187bda525c", + "a9856cf6-b4d1-4b68-afc3-6f144f682937", + "716c6c17-23d7-4264-a6ce-3e7c91c7b123", + "1ee1f46a-e4f1-456a-baf6-e7ab686d5588", + "7e8bfd8d-d0ec-4dbb-a02a-e5ccc83002ed", + "9e29b633-f6f9-4e8c-a8f4-02eab56aadb2", + "3b8bd67e-e471-4866-982b-c98bc7ab2b08", + "85fe9947-4e20-4a89-ad71-8e7dc145fa7a", + "07268a4c-c2e5-4288-a4cf-aff74ae51bf3", + "066b830a-60a1-4b96-9e41-53893e4e9d2c", + "3cb249a6-30af-49b4-9cb1-c569f3e22931", + "8bdd943f-aa03-47e9-b904-d2a5467a1ae3", + "a3971dc9-01ae-45f1-9f97-5152b1de3369", + "0667eb92-60fa-42de-b546-f26e9f51f7cf", + "8be7dfb3-713b-47f0-9ac1-1a8aa5bfe95d", + "659e862d-94dc-45e2-a48c-a0910520ddd3", + "d6162d61-898c-4467-a575-1015248d00cd", + "5f30ee0a-a8f3-4910-9bd2-c011d400bcec", + "d2b05000-441d-446d-bbe6-ce5aeadd4d50", + "47999664-033f-4556-8b87-5fc22f1858f6", + "9f248a30-ec60-45f6-8669-f0d9920dde20", + "643665fb-67ab-4e4a-9ff2-66f58efffce3", + "d316c096-d4eb-4465-aa37-0e78f116972d", + "74fac789-01fa-41d3-ae4c-4319f3a97eeb", + "6730044e-2c58-41e8-95cc-bdaf13c8a4d5", + "33815a9d-6a1b-4b6c-a74f-761027a7a1e8", + "17e7c4fc-d10f-49d2-8cb0-b6646add7884", + "bf499909-6acb-45dc-867b-29db914689f0", + "f4dd49ac-1b9d-4bbc-a9fd-db7a4a748129", + "c23778cb-81bf-47ee-99df-57a9758d62d7", + "b6cd24a2-c717-4583-b0ed-0824ac845e88", + "440c4611-d899-4cf7-907e-0ff150e03c7a", + "6460d98c-0d82-4951-94ad-e986d5bf5449", + "4845e974-d3bd-42bb-b3ef-76eaff408701", + "637632f6-0f70-415e-a2fd-03d6adfcda63", + "490c760f-46d9-4a6d-9b32-116e9120ea83", + "bc06ead3-6aea-41a2-b6c3-ce2b0b833b91", + "6f465e98-a8ac-4aa7-870a-4d98097b3203", + "07141745-13f2-4686-af61-a04cd7fa76b9", + "4fa499ef-3815-45f5-962f-9dbc23929744", + "fb788512-4da3-4199-b44e-ce15683ce5c8", + "d950c3c5-ae2f-45ac-901c-7bdb0099fb8d", + "8a1f75bd-a82d-44cd-be63-d80b3600495b", + "9095300e-8dad-49e9-8b57-238e19c622a5", + "76740775-4085-4ba0-a9c6-2bd063d7ebef", + "2532e76d-c212-4c25-ac95-338d809cbf14" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" + "11951" ], "x-ms-request-id": [ - "28b7c326-8b03-4a18-8383-bff35af23af4" + "dc07964d-78c8-45b7-a1d4-67ca26ac8203" ], "x-ms-correlation-request-id": [ - "28b7c326-8b03-4a18-8383-bff35af23af4" + "dc07964d-78c8-45b7-a1d4-67ca26ac8203" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T234346Z:28b7c326-8b03-4a18-8383-bff35af23af4" + "WESTCENTRALUS:20210330T005316Z:dc07964d-78c8-45b7-a1d4-67ca26ac8203" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4725,7 +3945,7 @@ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:43:46 GMT" + "Tue, 30 Mar 2021 00:53:15 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4741,22 +3961,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745/versions/1.0.0?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzNzQ1L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzMzNi9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTE4MjEvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d0c7644d-d34a-4ea4-9e53-2230e6959fe8" + "48172619-e2c5-4a41-b373-2dd2c4e2d7ef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -4767,13 +3987,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/78986a1d-e90f-4b92-a358-be943c27ec7b?monitor=true&api-version=2020-09-30" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/03f88459-aa29-4790-b1d0-44d22d67b744?monitor=true&api-version=2020-09-30" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/78986a1d-e90f-4b92-a358-be943c27ec7b?api-version=2020-09-30" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/03f88459-aa29-4790-b1d0-44d22d67b744?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/DeleteGalleryImageVersion3Min;149,Microsoft.Compute/DeleteGalleryImageVersion30Min;999" @@ -4782,10 +4002,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "78986a1d-e90f-4b92-a358-be943c27ec7b" + "03f88459-aa29-4790-b1d0-44d22d67b744" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4795,16 +4015,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "682cf089-cf9a-48b4-8c51-01ebde7d6969" + "f0b6a164-0de2-4398-b15a-2e7b69f291a3" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T234144Z:682cf089-cf9a-48b4-8c51-01ebde7d6969" + "WESTCENTRALUS:20210330T005115Z:f0b6a164-0de2-4398-b15a-2e7b69f291a3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:41:43 GMT" + "Tue, 30 Mar 2021 00:51:15 GMT" ], "Expires": [ "-1" @@ -4817,16 +4037,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/78986a1d-e90f-4b92-a358-be943c27ec7b?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83ODk4NmExZC1lOTBmLTRiOTItYTM1OC1iZTk0M2MyN2VjN2I/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/03f88459-aa29-4790-b1d0-44d22d67b744?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wM2Y4ODQ1OS1hYTI5LTQ3OTAtYjFkMC00NGQyMmQ2N2I3NDQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -4840,35 +4060,35 @@ "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4148" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4161" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "822ea189-bb53-4fa7-a099-191a3a4ff0ba" + "1d4a4ecc-21ed-4572-8d8f-e5f252716045" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11954" ], "x-ms-correlation-request-id": [ - "c4a4a83a-a7ae-47ff-a514-f9f73977f2a5" + "db2cf31d-6ed8-41dd-9aa7-1098a5aaf1f9" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T234244Z:c4a4a83a-a7ae-47ff-a514-f9f73977f2a5" + "WESTCENTRALUS:20210330T005215Z:db2cf31d-6ed8-41dd-9aa7-1098a5aaf1f9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:42:43 GMT" + "Tue, 30 Mar 2021 00:52:14 GMT" ], "Content-Length": [ "134" @@ -4880,20 +4100,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:41:43.8955623-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"78986a1d-e90f-4b92-a358-be943c27ec7b\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:51:15.2527556-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"03f88459-aa29-4790-b1d0-44d22d67b744\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/78986a1d-e90f-4b92-a358-be943c27ec7b?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83ODk4NmExZC1lOTBmLTRiOTItYTM1OC1iZTk0M2MyN2VjN2I/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/03f88459-aa29-4790-b1d0-44d22d67b744?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wM2Y4ODQ1OS1hYTI5LTQ3OTAtYjFkMC00NGQyMmQ2N2I3NDQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -4904,35 +4124,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4146" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4159" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "ca7dfe97-d610-4b0b-a3a8-1302c6b60a13" + "2a44645f-fc75-4119-9b08-4e6304c97ac0" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "11953" ], "x-ms-correlation-request-id": [ - "813d742f-9c48-43e7-8e5a-ddb008849955" + "1c114005-42db-4a8d-932f-6bd27ec7fb0e" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T234344Z:813d742f-9c48-43e7-8e5a-ddb008849955" + "WESTCENTRALUS:20210330T005315Z:1c114005-42db-4a8d-932f-6bd27ec7fb0e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:43:44 GMT" + "Tue, 30 Mar 2021 00:53:15 GMT" ], "Content-Length": [ "184" @@ -4944,20 +4164,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:41:43.8955623-07:00\",\r\n \"endTime\": \"2020-10-22T16:43:14.0830795-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"78986a1d-e90f-4b92-a358-be943c27ec7b\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:51:15.2527556-07:00\",\r\n \"endTime\": \"2021-03-29T17:52:45.4758353-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"03f88459-aa29-4790-b1d0-44d22d67b744\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/78986a1d-e90f-4b92-a358-be943c27ec7b?monitor=true&api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83ODk4NmExZC1lOTBmLTRiOTItYTM1OC1iZTk0M2MyN2VjN2I/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/03f88459-aa29-4790-b1d0-44d22d67b744?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wM2Y4ODQ1OS1hYTI5LTQ3OTAtYjFkMC00NGQyMmQ2N2I3NDQ/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -4968,35 +4188,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4145" + "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4158" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "4ca817fe-ba07-4552-843e-9ec3493aeab9" + "ceec3f40-53c6-44ea-bc49-255a5205affa" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "11952" ], "x-ms-correlation-request-id": [ - "a4b60305-a50f-4512-b2ca-e209b41fab5e" + "b08c9310-5080-4643-afc1-b39d8a1e96b5" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T234344Z:a4b60305-a50f-4512-b2ca-e209b41fab5e" + "WESTCENTRALUS:20210330T005315Z:b08c9310-5080-4643-afc1-b39d8a1e96b5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:43:44 GMT" + "Tue, 30 Mar 2021 00:53:15 GMT" ], "Expires": [ "-1" @@ -5009,22 +4229,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTg2OTM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/images/psTestSourceImage5220?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaW1hZ2VzL3BzVGVzdFNvdXJjZUltYWdlNTIyMD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aa21c917-cd0b-4581-b888-8b93df6304b0" + "a5a56ca6-6f2b-48a0-863f-c5310a8b5cbc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -5035,10 +4255,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/f604a968-db5c-4eb6-8d93-33636e6415cc?monitor=true&api-version=2020-06-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/80d3eb80-d334-4059-b0ef-5047e6873d92?monitor=true&api-version=2020-12-01" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/f604a968-db5c-4eb6-8d93-33636e6415cc?api-version=2020-06-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/80d3eb80-d334-4059-b0ef-5047e6873d92?api-version=2020-12-01" ], "Azure-AsyncNotification": [ "Enabled" @@ -5050,7 +4270,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f604a968-db5c-4eb6-8d93-33636e6415cc" + "80d3eb80-d334-4059-b0ef-5047e6873d92" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -5060,16 +4280,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "8c394935-c448-4533-a220-dab1c882d4f8" + "0b0976c8-d141-49b4-9dc5-4fe32e21b0f0" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T234846Z:8c394935-c448-4533-a220-dab1c882d4f8" + "WESTCENTRALUS:20210330T005816Z:0b0976c8-d141-49b4-9dc5-4fe32e21b0f0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:48:46 GMT" + "Tue, 30 Mar 2021 00:58:16 GMT" ], "Expires": [ "-1" @@ -5082,22 +4302,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/images/psTestSourceImage8693?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTg2OTM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/images/psTestSourceImage5220?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaW1hZ2VzL3BzVGVzdFNvdXJjZUltYWdlNTIyMD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eacde523-3115-4ffc-b6d9-120b3165efd6" + "771bbe26-10bd-4c5d-ad49-6e87f108d764" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -5111,13 +4331,13 @@ "14994" ], "x-ms-request-id": [ - "761970a2-8c68-4389-b13c-7dc8453f3360" + "b0975df0-4833-4a68-9ce9-1f6326a746e4" ], "x-ms-correlation-request-id": [ - "761970a2-8c68-4389-b13c-7dc8453f3360" + "b0975df0-4833-4a68-9ce9-1f6326a746e4" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T235130Z:761970a2-8c68-4389-b13c-7dc8453f3360" + "WESTCENTRALUS:20210330T010028Z:b0975df0-4833-4a68-9ce9-1f6326a746e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5126,7 +4346,7 @@ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:51:29 GMT" + "Tue, 30 Mar 2021 01:00:28 GMT" ], "Expires": [ "-1" @@ -5136,16 +4356,16 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/f604a968-db5c-4eb6-8d93-33636e6415cc?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2Y2MDRhOTY4LWRiNWMtNGViNi04ZDkzLTMzNjM2ZTY0MTVjYz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/80d3eb80-d334-4059-b0ef-5047e6873d92?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzgwZDNlYjgwLWQzMzQtNDA1OS1iMGVmLTUwNDdlNjg3M2Q5Mj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -5156,13 +4376,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29986" + "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29972" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9ff1f665-c5fe-438c-80e4-dce431263c4b" + "809320a9-21a0-4647-b37a-e77ecbc39d30" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -5172,16 +4392,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "b28836c0-474c-4b14-a345-8f9e08e7c4f0" + "6a49486b-b7c3-41af-81f9-14e040201754" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T234916Z:b28836c0-474c-4b14-a345-8f9e08e7c4f0" + "WESTCENTRALUS:20210330T005846Z:6a49486b-b7c3-41af-81f9-14e040201754" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:49:16 GMT" + "Tue, 30 Mar 2021 00:58:45 GMT" ], "Content-Length": [ "184" @@ -5193,20 +4413,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:48:46.6966297-07:00\",\r\n \"endTime\": \"2020-10-22T16:48:51.8216873-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f604a968-db5c-4eb6-8d93-33636e6415cc\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:58:16.5000741-07:00\",\r\n \"endTime\": \"2021-03-29T17:58:21.5626011-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"80d3eb80-d334-4059-b0ef-5047e6873d92\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/f604a968-db5c-4eb6-8d93-33636e6415cc?monitor=true&api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2Y2MDRhOTY4LWRiNWMtNGViNi04ZDkzLTMzNjM2ZTY0MTVjYz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/80d3eb80-d334-4059-b0ef-5047e6873d92?monitor=true&api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzgwZDNlYjgwLWQzMzQtNDA1OS1iMGVmLTUwNDdlNjg3M2Q5Mj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -5217,13 +4437,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29985" + "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29971" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ec220855-608a-4a31-b98c-8215eb9b8a3d" + "959d08de-73b6-49d6-8cba-6bf6cee686c3" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -5233,16 +4453,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "b46b5b08-7acb-4b9a-ae04-37c9d4351e0d" + "91baa7ef-d6cf-42a0-92ba-3c5d12af54ba" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T234917Z:b46b5b08-7acb-4b9a-ae04-37c9d4351e0d" + "WESTCENTRALUS:20210330T005846Z:91baa7ef-d6cf-42a0-92ba-3c5d12af54ba" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:49:16 GMT" + "Tue, 30 Mar 2021 00:58:46 GMT" ], "Expires": [ "-1" @@ -5255,22 +4475,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/virtualMachines/vm6924?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY5MjQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/virtualMachines/vm6537?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtNjUzNz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e5484adf-f732-4f89-8f75-90ea7d80f73e" + "e453b337-fbed-46b5-8ac6-98d150c65a12" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -5281,13 +4501,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/e9323d1f-0a27-44f2-9a64-4043a2ab7ed2?monitor=true&api-version=2020-06-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/7d31d2ce-431d-4e8d-8415-e97da4afb64c?monitor=true&api-version=2020-12-01" ], "Retry-After": [ "10" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/e9323d1f-0a27-44f2-9a64-4043a2ab7ed2?api-version=2020-06-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/7d31d2ce-431d-4e8d-8415-e97da4afb64c?api-version=2020-12-01" ], "Azure-AsyncNotification": [ "Enabled" @@ -5299,7 +4519,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e9323d1f-0a27-44f2-9a64-4043a2ab7ed2" + "7d31d2ce-431d-4e8d-8415-e97da4afb64c" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -5309,16 +4529,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "68bbc0b0-2920-404f-ac23-e59cb5bc1118" + "21159874-2c95-4bcc-a269-873b82c5e912" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T234917Z:68bbc0b0-2920-404f-ac23-e59cb5bc1118" + "WESTCENTRALUS:20210330T005847Z:21159874-2c95-4bcc-a269-873b82c5e912" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:49:17 GMT" + "Tue, 30 Mar 2021 00:58:46 GMT" ], "Expires": [ "-1" @@ -5331,22 +4551,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/virtualMachines/vm6924?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY5MjQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/virtualMachines/vm6537?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtNjUzNz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "609e6791-a244-4f25-a239-1493e86ae3e8" + "d05fd9ca-58df-4c9d-a0ce-42ab55e35e72" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -5360,13 +4580,13 @@ "14995" ], "x-ms-request-id": [ - "346bcaba-ff12-48e3-8f2a-a8755592d3f9" + "7b411995-4b66-4ea6-9e60-989063efc618" ], "x-ms-correlation-request-id": [ - "346bcaba-ff12-48e3-8f2a-a8755592d3f9" + "7b411995-4b66-4ea6-9e60-989063efc618" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T235129Z:346bcaba-ff12-48e3-8f2a-a8755592d3f9" + "WESTCENTRALUS:20210330T010028Z:7b411995-4b66-4ea6-9e60-989063efc618" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5375,7 +4595,7 @@ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:51:28 GMT" + "Tue, 30 Mar 2021 01:00:28 GMT" ], "Expires": [ "-1" @@ -5385,16 +4605,16 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/e9323d1f-0a27-44f2-9a64-4043a2ab7ed2?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2U5MzIzZDFmLTBhMjctNDRmMi05YTY0LTQwNDNhMmFiN2VkMj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/7d31d2ce-431d-4e8d-8415-e97da4afb64c?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzdkMzFkMmNlLTQzMWQtNGU4ZC04NDE1LWU5N2RhNGFmYjY0Yz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -5408,13 +4628,13 @@ "30" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29983" + "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29970" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "95f5074f-a098-4938-9401-bb99aea68f6c" + "80d144de-af6f-4505-ba6d-43ee619104f1" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -5424,16 +4644,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "e239006b-386e-4621-883f-6516c290f933" + "e26d6b1a-3258-49bb-931b-e1b4ce352387" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T234927Z:e239006b-386e-4621-883f-6516c290f933" + "WESTCENTRALUS:20210330T005857Z:e26d6b1a-3258-49bb-931b-e1b4ce352387" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:49:27 GMT" + "Tue, 30 Mar 2021 00:58:56 GMT" ], "Content-Length": [ "134" @@ -5445,20 +4665,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:49:17.2282436-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e9323d1f-0a27-44f2-9a64-4043a2ab7ed2\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:58:46.9534636-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7d31d2ce-431d-4e8d-8415-e97da4afb64c\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/e9323d1f-0a27-44f2-9a64-4043a2ab7ed2?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2U5MzIzZDFmLTBhMjctNDRmMi05YTY0LTQwNDNhMmFiN2VkMj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/7d31d2ce-431d-4e8d-8415-e97da4afb64c?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzdkMzFkMmNlLTQzMWQtNGU4ZC04NDE1LWU5N2RhNGFmYjY0Yz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -5469,13 +4689,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29982" + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29968" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "986df32c-23c9-428f-aff1-9babcb21136d" + "11f184e8-aee2-4944-a066-2fa46a049a4a" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -5485,77 +4705,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "842f3833-1a01-4579-ba04-cc5b586effca" - ], - "x-ms-routing-request-id": [ - "WESTUS:20201022T234957Z:842f3833-1a01-4579-ba04-cc5b586effca" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Oct 2020 23:49:57 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:49:17.2282436-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e9323d1f-0a27-44f2-9a64-4043a2ab7ed2\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/e9323d1f-0a27-44f2-9a64-4043a2ab7ed2?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2U5MzIzZDFmLTBhMjctNDRmMi05YTY0LTQwNDNhMmFiN2VkMj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29220.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29980" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "74e7ecf9-abb5-4cb9-ba5f-cbd94b7bd636" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-correlation-request-id": [ - "a4f26b3d-967e-477e-a590-9fddcec40fd9" + "e2a9993f-ffa4-48a8-a017-4985542181d4" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T235027Z:a4f26b3d-967e-477e-a590-9fddcec40fd9" + "WESTCENTRALUS:20210330T005927Z:e2a9993f-ffa4-48a8-a017-4985542181d4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:50:27 GMT" + "Tue, 30 Mar 2021 00:59:26 GMT" ], "Content-Length": [ "184" @@ -5567,20 +4726,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:49:17.2282436-07:00\",\r\n \"endTime\": \"2020-10-22T16:49:58.8535257-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e9323d1f-0a27-44f2-9a64-4043a2ab7ed2\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:58:46.9534636-07:00\",\r\n \"endTime\": \"2021-03-29T17:59:20.4536236-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7d31d2ce-431d-4e8d-8415-e97da4afb64c\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/e9323d1f-0a27-44f2-9a64-4043a2ab7ed2?monitor=true&api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2U5MzIzZDFmLTBhMjctNDRmMi05YTY0LTQwNDNhMmFiN2VkMj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/7d31d2ce-431d-4e8d-8415-e97da4afb64c?monitor=true&api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzdkMzFkMmNlLTQzMWQtNGU4ZC04NDE1LWU5N2RhNGFmYjY0Yz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -5591,32 +4750,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29979" + "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29967" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bc2faa52-bbbf-492b-ab58-b2c863fdf47a" + "2c9a8c08-ef0d-445e-939e-49b6e49aaa67" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11995" ], "x-ms-correlation-request-id": [ - "c12a3c23-68da-4e32-99d4-5ce4b6678e19" + "3a5d198d-0240-43b4-b568-cc9f93d7e464" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T235027Z:c12a3c23-68da-4e32-99d4-5ce4b6678e19" + "WESTCENTRALUS:20210330T005927Z:3a5d198d-0240-43b4-b568-cc9f93d7e464" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:50:27 GMT" + "Tue, 30 Mar 2021 00:59:26 GMT" ], "Expires": [ "-1" @@ -5629,22 +4788,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957/images/galleryPsTestGalleryImage3745?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UzNzQ1P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzMzNi9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTE4MjE/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9a953d4a-b630-4377-ab6b-4a7d66d69da0" + "aa40cf79-a27c-4a97-a711-97c9920ab66f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -5655,22 +4814,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/4f887188-a866-42cd-bdbb-72a5cea50e95?monitor=true&api-version=2020-09-30" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fc9e26d6-2109-48fb-8c6d-f73a6095c760?monitor=true&api-version=2020-09-30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/4f887188-a866-42cd-bdbb-72a5cea50e95?api-version=2020-09-30" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fc9e26d6-2109-48fb-8c6d-f73a6095c760?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/DeleteGalleryImage3Min;49,Microsoft.Compute/DeleteGalleryImage30Min;299" + "Microsoft.Compute/DeleteGalleryImage3Min;49,Microsoft.Compute/DeleteGalleryImage30Min;298" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "4f887188-a866-42cd-bdbb-72a5cea50e95" + "fc9e26d6-2109-48fb-8c6d-f73a6095c760" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -5680,16 +4839,16 @@ "14997" ], "x-ms-correlation-request-id": [ - "8819010d-c4b7-4300-9a65-e69b9ce247f2" + "43bab369-0bcc-4817-a492-6f691f7fd441" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T235028Z:8819010d-c4b7-4300-9a65-e69b9ce247f2" + "WESTCENTRALUS:20210330T005927Z:43bab369-0bcc-4817-a492-6f691f7fd441" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:50:27 GMT" + "Tue, 30 Mar 2021 00:59:27 GMT" ], "Expires": [ "-1" @@ -5702,16 +4861,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/4f887188-a866-42cd-bdbb-72a5cea50e95?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy80Zjg4NzE4OC1hODY2LTQyY2QtYmRiYi03MmE1Y2VhNTBlOTU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fc9e26d6-2109-48fb-8c6d-f73a6095c760?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mYzllMjZkNi0yMTA5LTQ4ZmItOGM2ZC1mNzNhNjA5NWM3NjA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -5722,38 +4881,38 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4160" + "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4155" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "6ed257f6-60bd-42dd-a5c3-9b86787b544c" + "e5aafe2b-22ba-4b05-9a40-b9f2483b6ca5" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11994" ], "x-ms-correlation-request-id": [ - "1e783e28-25d6-437e-b35a-9f7adb04abd2" + "700420f7-37a2-4c26-a9ae-405ddcdf2596" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T235058Z:1e783e28-25d6-437e-b35a-9f7adb04abd2" + "WESTCENTRALUS:20210330T005957Z:700420f7-37a2-4c26-a9ae-405ddcdf2596" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:50:57 GMT" + "Tue, 30 Mar 2021 00:59:56 GMT" ], "Content-Length": [ - "183" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5762,20 +4921,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:50:28.317439-07:00\",\r\n \"endTime\": \"2020-10-22T16:50:28.5519056-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4f887188-a866-42cd-bdbb-72a5cea50e95\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:59:27.6983467-07:00\",\r\n \"endTime\": \"2021-03-29T17:59:27.9483586-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"fc9e26d6-2109-48fb-8c6d-f73a6095c760\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/4f887188-a866-42cd-bdbb-72a5cea50e95?monitor=true&api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy80Zjg4NzE4OC1hODY2LTQyY2QtYmRiYi03MmE1Y2VhNTBlOTU/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fc9e26d6-2109-48fb-8c6d-f73a6095c760?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mYzllMjZkNi0yMTA5LTQ4ZmItOGM2ZC1mNzNhNjA5NWM3NjA/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -5786,35 +4945,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4159" + "Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4154" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "f8868dea-74ab-455c-bc28-2d315b334bd7" + "2806e29a-0394-4f60-b7f5-5bd67d8e6f44" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11993" ], "x-ms-correlation-request-id": [ - "f58cb289-aa98-496c-956b-fea9b2971a68" + "af2793fb-cbf3-4d0e-b41c-553bd7726bff" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T235058Z:f58cb289-aa98-496c-956b-fea9b2971a68" + "WESTCENTRALUS:20210330T005957Z:af2793fb-cbf3-4d0e-b41c-553bd7726bff" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:50:57 GMT" + "Tue, 30 Mar 2021 00:59:57 GMT" ], "Expires": [ "-1" @@ -5827,22 +4986,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9950/providers/Microsoft.Compute/galleries/galleryPsTestGallery5957?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk5NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU5NTc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzMzNj9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "46ab08e9-6e62-4d9e-92d5-a038443409d0" + "65ef7c92-30aa-42a6-a467-aabaa81491c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -5853,22 +5012,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/f1fcf756-9f68-4321-bc90-05c3632854e9?monitor=true&api-version=2020-09-30" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a6443a9a-d259-4451-9c9e-8ef27b8a1aa5?monitor=true&api-version=2020-09-30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/f1fcf756-9f68-4321-bc90-05c3632854e9?api-version=2020-09-30" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a6443a9a-d259-4451-9c9e-8ef27b8a1aa5?api-version=2020-09-30" ], "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": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "f1fcf756-9f68-4321-bc90-05c3632854e9" + "a6443a9a-d259-4451-9c9e-8ef27b8a1aa5" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -5878,16 +5037,16 @@ "14996" ], "x-ms-correlation-request-id": [ - "33dfab89-131e-4671-b189-e5ff656dff15" + "54e6fef7-8d2a-4042-8a4f-f86d0018c167" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T235059Z:33dfab89-131e-4671-b189-e5ff656dff15" + "WESTCENTRALUS:20210330T005958Z:54e6fef7-8d2a-4042-8a4f-f86d0018c167" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:50:58 GMT" + "Tue, 30 Mar 2021 00:59:57 GMT" ], "Expires": [ "-1" @@ -5900,16 +5059,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/f1fcf756-9f68-4321-bc90-05c3632854e9?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mMWZjZjc1Ni05ZjY4LTQzMjEtYmM5MC0wNWMzNjMyODU0ZTk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a6443a9a-d259-4451-9c9e-8ef27b8a1aa5?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hNjQ0M2E5YS1kMjU5LTQ0NTEtOWM5ZS04ZWYyN2I4YTFhYTU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -5920,38 +5079,38 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4157" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4164" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "87b4a60e-dfbd-4f79-bb21-a4d9ac0951ac" + "cdae2c8e-430f-467d-8800-6c558861b570" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11992" ], "x-ms-correlation-request-id": [ - "43c6fe09-abb5-44e6-b4db-6c039c5aa504" + "01f6638d-7408-4a35-b038-9cd5c80c762c" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T235129Z:43c6fe09-abb5-44e6-b4db-6c039c5aa504" + "WESTCENTRALUS:20210330T010028Z:01f6638d-7408-4a35-b038-9cd5c80c762c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:51:28 GMT" + "Tue, 30 Mar 2021 01:00:28 GMT" ], "Content-Length": [ - "182" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5960,20 +5119,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:50:59.0986877-07:00\",\r\n \"endTime\": \"2020-10-22T16:50:59.19241-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f1fcf756-9f68-4321-bc90-05c3632854e9\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:59:58.2000505-07:00\",\r\n \"endTime\": \"2021-03-29T17:59:58.3092431-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a6443a9a-d259-4451-9c9e-8ef27b8a1aa5\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/f1fcf756-9f68-4321-bc90-05c3632854e9?monitor=true&api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mMWZjZjc1Ni05ZjY4LTQzMjEtYmM5MC0wNWMzNjMyODU0ZTk/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a6443a9a-d259-4451-9c9e-8ef27b8a1aa5?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hNjQ0M2E5YS1kMjU5LTQ0NTEtOWM5ZS04ZWYyN2I4YTFhYTU/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -5984,35 +5143,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4156" + "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4163" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "2b3fe3b9-ac77-42e3-b310-c82d99bf1629" + "43c5808c-1e26-4e58-b9d9-29f1c6507ddf" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11991" ], "x-ms-correlation-request-id": [ - "d669c661-9b7a-478c-a11d-9e3e7167061c" + "a1474673-9909-484a-a172-25d0a13770e2" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T235129Z:d669c661-9b7a-478c-a11d-9e3e7167061c" + "WESTCENTRALUS:20210330T010028Z:a1474673-9909-484a-a172-25d0a13770e2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:51:28 GMT" + "Tue, 30 Mar 2021 01:00:28 GMT" ], "Expires": [ "-1" @@ -6027,33 +5186,33 @@ ], "Names": { "GalleryImageVersion_CRUD_Tests": [ - "galleryPsTestRg9950", - "psTestSourceImage8693", - "galleryPsTestGallery5957", - "galleryPsTestGalleryImage3745" + "galleryPsTestRg184", + "psTestSourceImage5220", + "galleryPsTestGallery7336", + "galleryPsTestGalleryImage1821" ], "CreateCRPImage": [ - "saforgallery3821", - "asforgallery9985" + "saforgallery1715", + "asforgallery8439" ], "CreatePublicIP": [ - "pip6143", - "dn6774" + "pip6852", + "dn5334" ], "CreateVNET": [ - "vn632", - "sn3362" + "vn2860", + "sn62" ], "CreateNIC": [ - "nic1723", - "ip4160" + "nic5370", + "ip3834" ], "CreateDefaultVMInput": [ - "crptestar8729", - "crptestar1077", - "crptestar8032", - "vm6924", - "Microsoft.Compute/virtualMachines5763" + "crptestar9300", + "crptestar4963", + "crptestar8986", + "vm6537", + "Microsoft.Compute/virtualMachines5602" ] }, "Variables": { diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryImage_CRUD_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryImage_CRUD_Tests.json index ce536f9297b8..8e8e4092014a 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,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg5359?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzUzNTk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg3662?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NjI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "68191049-45e8-478e-9644-409692bce604" + "bd719d5a-43f2-4619-b9c1-355ca2d29bfa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "e90b7ca1-69b6-478b-bf04-ebf9cefede10" + "7788b0c4-8b8b-4619-9c1c-c3825686133a" ], "x-ms-correlation-request-id": [ - "e90b7ca1-69b6-478b-bf04-ebf9cefede10" + "7788b0c4-8b8b-4619-9c1c-c3825686133a" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T230740Z:e90b7ca1-69b6-478b-bf04-ebf9cefede10" + "WESTCENTRALUS:20210330T003020Z:7788b0c4-8b8b-4619-9c1c-c3825686133a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:07:40 GMT" + "Tue, 30 Mar 2021 00:30:20 GMT" ], "Content-Length": [ "192" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359\",\r\n \"name\": \"galleryPsTestRg5359\",\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/galleryPsTestRg3662\",\r\n \"name\": \"galleryPsTestRg3662\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzUzNTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4OTc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3662/providers/Microsoft.Compute/galleries/galleryPsTestGallery4084?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQwODQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "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": [ - "d22f8749-2ebd-4e1d-b1dd-efac76d53287" + "97dcf5a5-cac3-46e1-9cf3-6bfc7091d6d6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,19 +99,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fb6f1ca1-73f3-412a-a0ad-1fa428c6f4a6?api-version=2020-09-30" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/f6f59423-1631-4584-b669-0905838575d3?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateUpdateGallery3Min;48,Microsoft.Compute/CreateUpdateGallery30Min;296" + "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "fb6f1ca1-73f3-412a-a0ad-1fa428c6f4a6" + "f6f59423-1631-4584-b669-0905838575d3" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -121,16 +121,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "dbbb020a-81ba-4b67-9ada-53ba41ace969" + "aa712780-bfd8-45bc-b1ae-24487091e09d" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T230744Z:dbbb020a-81ba-4b67-9ada-53ba41ace969" + "WESTCENTRALUS:20210330T003023Z:aa712780-bfd8-45bc-b1ae-24487091e09d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:07:43 GMT" + "Tue, 30 Mar 2021 00:30:23 GMT" ], "Content-Length": [ "573" @@ -142,20 +142,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8897\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897\",\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-GALLERYPSTESTGALLERY8897\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Private\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery4084\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3662/providers/Microsoft.Compute/galleries/galleryPsTestGallery4084\",\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-GALLERYPSTESTGALLERY4084\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Private\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fb6f1ca1-73f3-412a-a0ad-1fa428c6f4a6?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mYjZmMWNhMS03M2YzLTQxMmEtYTBhZC0xZmE0MjhjNmY0YTY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/f6f59423-1631-4584-b669-0905838575d3?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mNmY1OTQyMy0xNjMxLTQ1ODQtYjY2OS0wOTA1ODM4NTc1ZDM/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -166,16 +166,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4163" + "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4198" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "3261dc2d-24e2-49db-8c33-43d423785127" + "30edf1f0-6df2-4929-a456-c09a9cea9813" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -185,16 +185,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "a13e0992-d7e7-4e0b-9b8c-e3e13d0851c5" + "e5868bac-3837-45b5-a74b-f717dc7ee0cf" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T230814Z:a13e0992-d7e7-4e0b-9b8c-e3e13d0851c5" + "WESTCENTRALUS:20210330T003053Z:e5868bac-3837-45b5-a74b-f717dc7ee0cf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:08:14 GMT" + "Tue, 30 Mar 2021 00:30:53 GMT" ], "Content-Length": [ "184" @@ -206,20 +206,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:07:43.8183343-07:00\",\r\n \"endTime\": \"2020-10-22T16:07:43.8964573-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"fb6f1ca1-73f3-412a-a0ad-1fa428c6f4a6\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:30:22.9096043-07:00\",\r\n \"endTime\": \"2021-03-29T17:30:23.1752386-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f6f59423-1631-4584-b669-0905838575d3\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzUzNTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4OTc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3662/providers/Microsoft.Compute/galleries/galleryPsTestGallery4084?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQwODQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -230,16 +230,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;337,Microsoft.Compute/GetGallery30Min;2472" + "Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2496" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "560e7f98-f658-46d5-96b9-1fa59fe38916" + "005ad22c-6b91-4cd7-9a45-9f2a697629c7" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -249,16 +249,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "f32b43e7-c09d-4982-93f0-c450eb699623" + "61464ea8-8794-4776-8279-31048999c5f8" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T230814Z:f32b43e7-c09d-4982-93f0-c450eb699623" + "WESTCENTRALUS:20210330T003053Z:61464ea8-8794-4776-8279-31048999c5f8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:08:14 GMT" + "Tue, 30 Mar 2021 00:30:53 GMT" ], "Content-Length": [ "509" @@ -270,26 +270,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8897\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897\",\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-GALLERYPSTESTGALLERY8897\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery4084\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3662/providers/Microsoft.Compute/galleries/galleryPsTestGallery4084\",\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-GALLERYPSTESTGALLERY4084\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images/galleryPsTestGalleryImage8015?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzUzNTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4OTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4MDE1P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3662/providers/Microsoft.Compute/galleries/galleryPsTestGallery4084/images/galleryPsTestGalleryImage2946?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQwODQvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UyOTQ2P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "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": [ - "7078bf97-837c-4455-bbcb-efb037f3aafe" + "6a82ee8e-c390-4aec-a76c-859f4dbbaf63" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -306,19 +306,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/e75bdc81-6b12-4d5b-afd8-2d592ffcaaa5?api-version=2020-09-30" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/1cf6bdb4-a359-44a4-a602-d2cb37285f11?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;746" + "Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;749" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "e75bdc81-6b12-4d5b-afd8-2d592ffcaaa5" + "1cf6bdb4-a359-44a4-a602-d2cb37285f11" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -328,16 +328,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "adcaae5e-3834-4fb1-b206-d53f60517298" + "4144e73f-2ecb-4d04-b252-44b6b0de2e88" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T230816Z:adcaae5e-3834-4fb1-b206-d53f60517298" + "WESTCENTRALUS:20210330T003055Z:4144e73f-2ecb-4d04-b252-44b6b0de2e88" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:08:16 GMT" + "Tue, 30 Mar 2021 00:30:54 GMT" ], "Content-Length": [ "646" @@ -349,26 +349,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage8015\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images/galleryPsTestGalleryImage8015\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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\": \"galleryPsTestGalleryImage2946\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3662/providers/Microsoft.Compute/galleries/galleryPsTestGallery4084/images/galleryPsTestGalleryImage2946\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"description\": \"This is the gallery image description.\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images/galleryPsTestGalleryImage8015?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzUzNTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4OTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4MDE1P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3662/providers/Microsoft.Compute/galleries/galleryPsTestGallery4084/images/galleryPsTestGalleryImage2946?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQwODQvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UyOTQ2P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "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": [ - "eda125ba-0727-42c0-b863-583056c3988d" + "b56f5945-8cb3-4d7b-8022-15f63a34b9bb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -385,19 +385,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fe80c8b1-9fd8-4b25-b345-00bb350eb54f?api-version=2020-09-30" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/ad096088-219a-45b5-bad1-304e874fe70d?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateUpdateGalleryImage3Min;148,Microsoft.Compute/CreateUpdateGalleryImage30Min;745" + "Microsoft.Compute/CreateUpdateGalleryImage3Min;148,Microsoft.Compute/CreateUpdateGalleryImage30Min;748" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "fe80c8b1-9fd8-4b25-b345-00bb350eb54f" + "ad096088-219a-45b5-bad1-304e874fe70d" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -407,16 +407,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "ec36a6cb-85af-443a-85bd-ad5e98bd7f51" + "0ff2a68c-016e-420a-8ac5-943b28dcb320" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T230847Z:ec36a6cb-85af-443a-85bd-ad5e98bd7f51" + "WESTCENTRALUS:20210330T003126Z:0ff2a68c-016e-420a-8ac5-943b28dcb320" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:08:46 GMT" + "Tue, 30 Mar 2021 00:31:25 GMT" ], "Content-Length": [ "628" @@ -428,20 +428,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage8015\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images/galleryPsTestGalleryImage8015\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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\": \"galleryPsTestGalleryImage2946\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3662/providers/Microsoft.Compute/galleries/galleryPsTestGallery4084/images/galleryPsTestGalleryImage2946\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Updated description.\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/e75bdc81-6b12-4d5b-afd8-2d592ffcaaa5?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lNzViZGM4MS02YjEyLTRkNWItYWZkOC0yZDU5MmZmY2FhYTU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/1cf6bdb4-a359-44a4-a602-d2cb37285f11?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8xY2Y2YmRiNC1hMzU5LTQ0YTQtYTYwMi1kMmNiMzcyODVmMTE/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -452,16 +452,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4161" + "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4196" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "7a50ce1a-b9f1-4700-a813-0b17fbb3bf14" + "81d980e7-8eb8-42a2-a6cb-4852162a8f2c" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -471,16 +471,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "6dd5185d-9715-469a-9883-56af7b946693" + "b4cb0216-b5ca-4a4d-aebc-253ef0623067" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T230846Z:6dd5185d-9715-469a-9883-56af7b946693" + "WESTCENTRALUS:20210330T003125Z:b4cb0216-b5ca-4a4d-aebc-253ef0623067" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:08:45 GMT" + "Tue, 30 Mar 2021 00:31:24 GMT" ], "Content-Length": [ "184" @@ -492,20 +492,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:08:15.8339603-07:00\",\r\n \"endTime\": \"2020-10-22T16:08:15.9433783-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e75bdc81-6b12-4d5b-afd8-2d592ffcaaa5\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:30:54.8487085-07:00\",\r\n \"endTime\": \"2021-03-29T17:30:54.9737186-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1cf6bdb4-a359-44a4-a602-d2cb37285f11\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images/galleryPsTestGalleryImage8015?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzUzNTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4OTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4MDE1P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3662/providers/Microsoft.Compute/galleries/galleryPsTestGallery4084/images/galleryPsTestGalleryImage2946?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQwODQvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UyOTQ2P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -516,16 +516,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImage3Min;588,Microsoft.Compute/GetGalleryImage30Min;2961" + "Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2996" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "97893d87-24c8-4e14-884f-bf7aa64e4a96" + "74043a61-7d46-48c2-ac81-fe9f4a20c634" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -535,16 +535,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "33b77fc9-1187-49c6-8f0f-a61ae8414890" + "675ff97d-f948-4a8d-a370-184968c3af0d" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T230846Z:33b77fc9-1187-49c6-8f0f-a61ae8414890" + "WESTCENTRALUS:20210330T003125Z:675ff97d-f948-4a8d-a370-184968c3af0d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:08:46 GMT" + "Tue, 30 Mar 2021 00:31:24 GMT" ], "Content-Length": [ "647" @@ -556,26 +556,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage8015\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images/galleryPsTestGalleryImage8015\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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\": \"galleryPsTestGalleryImage2946\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3662/providers/Microsoft.Compute/galleries/galleryPsTestGallery4084/images/galleryPsTestGalleryImage2946\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"This is the gallery image description.\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images/galleryPsTestGalleryImage8015?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzUzNTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4OTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4MDE1P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3662/providers/Microsoft.Compute/galleries/galleryPsTestGallery4084/images/galleryPsTestGalleryImage2946?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQwODQvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UyOTQ2P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d6a62161-0d68-453f-bec2-dd138929c2c5" + "23ec12b0-5a03-4bce-b427-49ab224f219c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -586,16 +586,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImage3Min;587,Microsoft.Compute/GetGalleryImage30Min;2960" + "Microsoft.Compute/GetGalleryImage3Min;595,Microsoft.Compute/GetGalleryImage30Min;2995" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "47821a10-14f4-4c5c-bcab-b845089c5d02" + "696611b3-5000-4715-ae6d-d6b0047ffe85" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -605,16 +605,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "4575f5ff-f415-41c0-836c-f511eed61540" + "64500e5e-6742-4895-be3c-b21836ae0d38" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T230846Z:4575f5ff-f415-41c0-836c-f511eed61540" + "WESTCENTRALUS:20210330T003125Z:64500e5e-6742-4895-be3c-b21836ae0d38" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:08:46 GMT" + "Tue, 30 Mar 2021 00:31:24 GMT" ], "Content-Length": [ "647" @@ -626,20 +626,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage8015\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images/galleryPsTestGalleryImage8015\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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\": \"galleryPsTestGalleryImage2946\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3662/providers/Microsoft.Compute/galleries/galleryPsTestGallery4084/images/galleryPsTestGalleryImage2946\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"This is the gallery image description.\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images/galleryPsTestGalleryImage8015?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzUzNTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4OTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4MDE1P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3662/providers/Microsoft.Compute/galleries/galleryPsTestGallery4084/images/galleryPsTestGalleryImage2946?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQwODQvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UyOTQ2P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -650,16 +650,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImage3Min;586,Microsoft.Compute/GetGalleryImage30Min;2955" + "Microsoft.Compute/GetGalleryImage3Min;591,Microsoft.Compute/GetGalleryImage30Min;2991" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "973dfe38-adb9-4a8e-9add-b3cfc06d44dd" + "77cc8645-42ad-4145-a607-a61f2d6a1354" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -669,16 +669,16 @@ "11993" ], "x-ms-correlation-request-id": [ - "5fd01e85-49d9-46c1-afb2-2f2175da6ba5" + "fe504057-92fd-481c-9f8f-5f3431c0777f" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T230917Z:5fd01e85-49d9-46c1-afb2-2f2175da6ba5" + "WESTCENTRALUS:20210330T003156Z:fe504057-92fd-481c-9f8f-5f3431c0777f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:09:16 GMT" + "Tue, 30 Mar 2021 00:31:56 GMT" ], "Content-Length": [ "629" @@ -690,26 +690,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage8015\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images/galleryPsTestGalleryImage8015\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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\": \"galleryPsTestGalleryImage2946\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3662/providers/Microsoft.Compute/galleries/galleryPsTestGallery4084/images/galleryPsTestGalleryImage2946\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Updated description.\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images/galleryPsTestGalleryImage8015?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzUzNTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4OTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4MDE1P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3662/providers/Microsoft.Compute/galleries/galleryPsTestGallery4084/images/galleryPsTestGalleryImage2946?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQwODQvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UyOTQ2P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6353644b-a9f1-44cd-a971-6fa33342eee8" + "c57aba4a-6c0f-4598-803c-e134770a0e27" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -720,16 +720,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImage3Min;585,Microsoft.Compute/GetGalleryImage30Min;2954" + "Microsoft.Compute/GetGalleryImage3Min;590,Microsoft.Compute/GetGalleryImage30Min;2990" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "beb12661-318f-4155-a8d4-d34244bad89e" + "0e016bd2-04d4-43b5-81ab-a5f37e9bf39d" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -739,16 +739,16 @@ "11992" ], "x-ms-correlation-request-id": [ - "f4565e39-848f-4cf1-992f-75bb7c697ec2" + "4d0f8c86-0e00-485d-9568-58719adcef9f" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T230917Z:f4565e39-848f-4cf1-992f-75bb7c697ec2" + "WESTCENTRALUS:20210330T003156Z:4d0f8c86-0e00-485d-9568-58719adcef9f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:09:16 GMT" + "Tue, 30 Mar 2021 00:31:56 GMT" ], "Content-Length": [ "629" @@ -760,20 +760,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage8015\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images/galleryPsTestGalleryImage8015\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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\": \"galleryPsTestGalleryImage2946\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3662/providers/Microsoft.Compute/galleries/galleryPsTestGallery4084/images/galleryPsTestGalleryImage2946\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Updated description.\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fe80c8b1-9fd8-4b25-b345-00bb350eb54f?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mZTgwYzhiMS05ZmQ4LTRiMjUtYjM0NS0wMGJiMzUwZWI1NGY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/ad096088-219a-45b5-bad1-304e874fe70d?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hZDA5NjA4OC0yMTlhLTQ1YjUtYmFkMS0zMDRlODc0ZmU3MGQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -784,16 +784,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4158" + "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4194" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "12b1b749-d1a2-4177-8879-390a2b50ffc4" + "77b3c9ee-1c89-4a13-89fe-3bdcfccb9056" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -803,16 +803,16 @@ "11994" ], "x-ms-correlation-request-id": [ - "c08c008a-6d95-4e5d-86bf-88e0c60665b7" + "932d6d6d-356d-4533-8ac3-41a1aa498eff" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T230917Z:c08c008a-6d95-4e5d-86bf-88e0c60665b7" + "WESTCENTRALUS:20210330T003156Z:932d6d6d-356d-4533-8ac3-41a1aa498eff" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:09:16 GMT" + "Tue, 30 Mar 2021 00:31:56 GMT" ], "Content-Length": [ "184" @@ -824,26 +824,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:08:46.8964855-07:00\",\r\n \"endTime\": \"2020-10-22T16:08:46.9277347-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"fe80c8b1-9fd8-4b25-b345-00bb350eb54f\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:31:26.0533913-07:00\",\r\n \"endTime\": \"2021-03-29T17:31:26.1002908-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ad096088-219a-45b5-bad1-304e874fe70d\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzUzNTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4OTcvaW1hZ2VzP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3662/providers/Microsoft.Compute/galleries/galleryPsTestGallery4084/images?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQwODQvaW1hZ2VzP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "50609e37-7033-44e6-bff3-6be21bb85786" + "c58df58b-195a-4c0b-8359-8211a9e58247" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -854,61 +854,68 @@ "no-cache" ], "x-ms-original-request-ids": [ - "e7fecd32-2a89-41f0-b35e-759715f287a0", - "b0fbd3ee-c9e8-45f5-b7a7-20315c2e4cc6", - "03d476f4-7425-45db-b63c-f38425a2fbf1", - "e881c475-69cb-4d6f-a8bf-1c4b0cac0edc", - "7d3eef71-053e-46ab-a1bf-100e76d8fb1f", - "b53a35c8-3fdf-45f6-9657-5fe2b399055a", - "fd759f9e-ed3a-46c4-803c-3739896c2721", - "44ffcaca-36d6-4601-9309-9435befc6424", - "5d9a1bd3-e984-4ac1-be5a-33358bfd6c7d", - "8295b913-cb57-4011-8de0-3dbd5c7b9b56", - "0a0872af-c3a0-4827-a685-44651f81ea42", - "f5006ac9-4257-447b-a0ca-193b047e6cb3", - "2159f7ff-8b21-4bbc-b2ee-02fb5598bd93", - "a30cac47-8c95-40d2-9b5c-cbc659066d88", - "477a13be-7917-4b2d-af5f-94c1c6712bc2", - "b36ff679-395f-45a5-b1c3-5a5720486a19", - "808ca131-a46e-4b5f-bf49-43d0c12749cb", - "3267e724-ad3b-4952-b165-dcd3fb9d675f", - "ccb63cb1-4708-4e7f-b091-173715d5a684", - "e20682d6-af09-42cf-b0a3-47f89f357dd2", - "ab34a94c-a46d-4670-b373-494343f782f3", - "fa079b1f-c045-419f-ae2a-5cfcc5ec16a8", - "d386302b-0eae-4158-8da7-f6897cf01cd3", - "040e575a-5b01-4fac-b6c3-897658c73aed", - "d9a15f2c-b8f9-45b2-a7eb-373dbe4e13e1", - "37082f34-29e4-4889-a52c-def8b13c99c4", - "7ee7b8b4-5c38-4f06-acc5-ff3e87759cbc", - "21f0a828-4816-484b-a441-dbade3a60314", - "6c91f2c5-d56d-4d88-a3ea-3918c19e596b", - "2b585a18-380c-436d-8f20-be098835b2c2", - "61392074-a789-45ba-91e5-b3b2f2a740a4", - "9d4c7ad6-b660-4ddf-93ae-f582a88ba672", - "457e685e-2592-4cd4-932f-08d5ba35d3c6", - "db12db1a-00bd-4815-b684-598b3872feaa", - "57b899bd-7890-4ccc-b25b-980108b1054c", - "7eead5f9-7632-4634-8577-c4b366ce2cb1", - "ab00c5b0-e8be-4506-946f-7d9741955a3f", - "6e55e5f0-1bb0-4a2f-84c4-6c7d403cc8bd", - "a65a53ed-d290-4d72-8ffb-6925230ed8f1", - "9a612e45-a23e-404a-8a58-752a5036caff", - "26188204-84d0-4c62-a6bd-0e7f405bf434", - "df345a51-eb8a-4123-9763-64a5a443cf30", - "ea4e0ce0-8827-4e41-83ea-d2f096ca7681" + "7f2c7015-bdf9-4eac-8e61-336e0133332a", + "939d4f4e-2750-4cf3-b04b-a8a7ffe14c29", + "45dd67b2-3bf9-4450-9008-f7e31d1bb0d6", + "e81f1d4e-dca5-4a1b-b4d2-6270536a5ccf", + "60d6d4ce-780d-4eb7-b295-083076a48af8", + "cd64a982-9dd9-4dd2-a526-1f01aa9f5be3", + "48ce51e4-747c-492c-ad2e-39ec5a7a8280", + "d946243b-00f7-4673-9d80-15baf337b19a", + "06667bf3-d1df-4730-9141-c5eb55ea5f1c", + "c959509b-fd4d-4e11-9cf2-3dab9ccf9ff9", + "7321b794-91e6-4768-a270-0832c988aa60", + "e98dc138-33ed-426a-b978-c91366a71374", + "2892a751-7cf3-4c0e-99af-9e01d37b3b21", + "363ec6a5-97de-4da8-ac5c-751279a9ac62", + "55362031-90b7-4831-b855-bbc393da05b9", + "c244dc5b-d12b-4b58-9de2-18c453e6e61d", + "cfb1f62c-26e2-4ea0-b837-183e967f9724", + "6d14fd8d-a466-4e76-aead-02f61da8f187", + "45507692-7c92-41b5-8e5b-c1c1daf46c8b", + "3968e46a-a118-4cee-81cd-91dd20983d61", + "1ccefe90-6238-4a9d-8984-9362cff4ad0b", + "0887e70e-de47-4567-9e36-2499345d8994", + "c3496548-a9f2-402c-b850-d2c1acfdb50e", + "13926ef1-e94f-4748-9045-85cfae10c09c", + "ec9bbe02-0181-4169-b926-0ba81d5b629d", + "8087d8b6-2a86-4758-821e-727ccba762f6", + "dd1ca9d4-1567-4da1-85dd-6293dd39dd52", + "44d24dbd-12f7-4c51-817a-b211ba59e68a", + "aef13326-61d4-4a72-b96f-ebf1746f07d5", + "f301d2e1-4548-43ce-8a5a-70c8e59e2e8c", + "a44901ef-1171-43e8-a406-e3f69d7fb369", + "c81a6f18-4c37-4b04-b7ec-8bc8fcb5fe34", + "cab2af6c-7f3e-4c63-a0dc-4095be2e7dcf", + "ca1943f9-b364-4c7a-9b12-ebcde6184eec", + "13e5c473-4479-49f6-9254-1c8267e9cbea", + "8d6b42ff-231e-4f1a-bd3c-d24ff715b712", + "9293bf6e-e38e-426c-b9bf-fe46265e804e", + "8edd141d-9a7b-42ae-a518-51ae26c9199d", + "8db6a9f6-5ef5-4cae-b00a-a89cbe866adf", + "3e9fc789-899a-4775-9a2c-81e193ac6609", + "9a2a32c7-ab26-4ed3-85bc-a63b18128e63", + "72e382bc-332d-40ab-a998-c3690ef988f2", + "ce6b8a65-03e9-486c-8935-8d2f17bd3c4c", + "398c5e10-7c8e-4d6c-b631-4689f544aa76", + "3442f2c8-440c-4813-9730-3693186ea3e2", + "46a8919d-1b15-4cd8-b87f-08777e5a31dd", + "30f7c851-4064-4acf-a4e2-b5996579ccfc", + "7fbfcacf-b658-4828-8f0a-55f1e1b5035a", + "87d72af8-5bf3-40a9-baad-23eece758f00", + "6246f1d8-3ab4-4c90-840f-2df79304d90a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], "x-ms-request-id": [ - "432534dd-0ac4-4622-a3ce-b2dec49a4963" + "b6c8d24d-7a88-4610-959a-7a2f34bbf769" ], "x-ms-correlation-request-id": [ - "432534dd-0ac4-4622-a3ce-b2dec49a4963" + "b6c8d24d-7a88-4610-959a-7a2f34bbf769" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T230917Z:432534dd-0ac4-4622-a3ce-b2dec49a4963" + "WESTCENTRALUS:20210330T003158Z:b6c8d24d-7a88-4610-959a-7a2f34bbf769" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -917,7 +924,7 @@ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:09:17 GMT" + "Tue, 30 Mar 2021 00:31:58 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -929,26 +936,26 @@ "535" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"galleryPsTestGalleryImage8015\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images/galleryPsTestGalleryImage8015\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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\": \"galleryPsTestGalleryImage2946\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3662/providers/Microsoft.Compute/galleries/galleryPsTestGallery4084/images/galleryPsTestGalleryImage2946\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"testPub\",\r\n \"offer\": \"testOffer\",\r\n \"sku\": \"testSku\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Updated description.\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzUzNTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4OTcvaW1hZ2VzP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3662/providers/Microsoft.Compute/galleries/galleryPsTestGallery4084/images?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQwODQvaW1hZ2VzP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cedeee07-7760-4695-965a-a1685b15d0f0" + "8f022918-8123-46a8-a538-db13a4bd1305" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -959,61 +966,68 @@ "no-cache" ], "x-ms-original-request-ids": [ - "41387edf-4bb8-43f9-82a2-47a4e7b7686d", - "a443fe41-eb54-49a6-9f5d-220953d30dfd", - "afc6ff7a-0368-4bed-8edf-2cd4f80d7254", - "104e895c-b17e-434d-9404-65d1dbce6225", - "11a088ad-d598-49fb-bbf2-28e84a0f7175", - "8905e5ab-1251-41ae-93f8-a01c2c7d07a3", - "f6a3d2fd-ad2e-4cee-9716-7a56b85d231e", - "85909707-a516-4111-8157-4a1f4d0ebe1a", - "136c946c-ef90-483e-be3a-d008cf02dc34", - "e6a12768-656f-4b6c-acc1-7a3766904753", - "553927f2-d435-442e-83da-d2f9f48746f3", - "54e9e475-c93e-4cd0-8759-9fe0d7820e8f", - "dc5435fb-33b4-42c7-90b8-c087173c7846", - "396844ba-6420-4ca6-bcb9-c4a325cca4e6", - "a5638416-77fe-4380-902d-6999586b8ccd", - "779f8c7b-33b5-46df-bbe8-f46878cfae88", - "786dc45c-84da-4ed3-833f-7372243f0243", - "d6f4638a-ff7c-423d-a7b3-09ec622aabf6", - "fd592446-398c-4162-980f-230281c178df", - "84c5640f-e562-4e5c-b717-6a0992f8c39e", - "12423d9b-42b1-4513-ab94-d07cc77e22e5", - "5c5fe6c6-a04b-496f-bea1-7984f47218e2", - "86b74bd0-d3c5-4a71-bf77-fe9bc258df30", - "23947693-2f5b-4e76-b105-ffcf10f3fd6b", - "e3847006-44e9-4fef-a48e-01a0923c8d87", - "248014f0-491f-4ed9-b7b8-2931ddb659d0", - "95114234-376d-49a7-a485-7e0a3b0d954d", - "a50af20a-e166-493f-8081-6d62161ee944", - "839ed460-f21d-4de4-93a8-3128549c3c6c", - "323f6f49-a6a3-4c94-b367-8ff5e81344d4", - "1613f0f8-4286-49e9-9d07-63259621ba34", - "b88c33af-e419-4ec7-a724-9e1fd549e20f", - "99b96e41-2ca6-40b9-97f8-6354cd048fe6", - "eae83516-5ff0-46c4-946f-58f8d9855ebf", - "f3414f9d-3c19-44db-868e-ba8c64bd7a0c", - "d7fc4460-450b-45e5-8331-5815e5cb1998", - "dd3c57c1-2777-4f37-b4ac-d8af2f74dd6f", - "0a09a42b-ce34-4acf-9898-8cd96a11482d", - "864e48e7-9a95-4758-a1b2-d5e5557e4bd8", - "2c29d299-d639-4f14-ac28-ae0cb282db70", - "f17f2311-5289-49c0-8a65-72bdc30d1a2b", - "4a5c98b0-e627-452a-80cf-5f490e8447e9", - "dcb97b1b-c414-4b04-8866-afe230c384ef" + "18a6f3b7-9b51-429e-bcba-f71a2801c8a7", + "fb4c2043-f610-42dd-ae45-15320f14a841", + "dea208be-6943-4cc7-a63e-d147d077ca4f", + "18421ac2-3db4-4580-9dd9-fa93ec56d8e8", + "ca7e79db-a346-41fd-9fe4-bfa614990fd4", + "9604b9fb-c89c-4641-ac29-c99d7f4d2777", + "76401c73-2d21-4b8d-ba8b-6ea88fc98496", + "22330706-1f41-4838-853f-fed0164bd99a", + "c7bcc6dd-0821-4248-bd4f-666b6e7e431d", + "4f84c9f0-09a0-43f9-bcbf-4a3fb49a120a", + "2abdc18c-d130-49b2-81e7-bc44c122e40d", + "4428fcc6-3d42-4b5c-bdb2-32c2d831ef00", + "c8d65c54-f1fe-4c94-b54a-3b7cbfd31a47", + "4ad65a00-f075-4f8a-ba70-667e5c06516e", + "b1006d96-c687-4ee7-8967-cc31c7c80f86", + "d53e9d74-e7db-4ee5-ad83-9a8db7d97a9e", + "01d50017-218b-45ef-b25d-5808da0ce107", + "8f4a3539-038b-4cb6-837a-0f8df96be17f", + "44bfcafa-e49d-424a-8164-e36569b721f0", + "521f707d-9280-4714-b9d0-31e6217b54ba", + "dbf370e9-b8b4-469c-a867-5b23a46ac496", + "97039a6e-2716-4c4e-94f1-e266ce889bb7", + "450953aa-0a32-47b8-a8a5-6f0a2e9369b4", + "fe5e41a9-2059-4887-8948-48c0b80df3b3", + "5119c52f-22b3-4612-87b1-146d4892e535", + "c25a929c-83f4-4c3b-8f9c-2d814e68cbe8", + "23f9b9ec-5dd5-4931-84d0-3e4e50bd9aa1", + "73dd6001-0281-4c6d-8b4d-3d7771ddef02", + "434b3dcc-5ac3-4916-b6a3-803ed41be715", + "2623d3ec-c6c7-41d4-9fdd-d40a2325f800", + "70500cd1-aba2-4b9a-91a0-76528f574dd9", + "6825873c-b194-4762-8619-5f5159a5d29e", + "e80a3c53-310c-4a47-b98a-27e24289e908", + "e0b6ff93-3681-4813-b528-dfd80c09dd6e", + "dfc7e765-8070-405a-b9a0-856bfa39f7a0", + "25ab8b50-8832-4a3e-8a9c-e9b783430b61", + "34082ba5-db0c-4ffd-83b5-c4e85c93de74", + "7b208b76-e2d4-4806-a4a3-b45d31184c65", + "75ea24cc-020a-49bf-918b-d0f56726e350", + "db9c0425-326f-4615-90f9-a8acb616e128", + "891261e5-172b-46e2-8d83-e1c7fa15a040", + "02206967-154c-429b-9acd-0b46a54ab909", + "97ef8d48-168b-423b-869f-788e700d5f53", + "f9297426-cc82-4e55-a7fa-31c0c652bb1f", + "c2ace901-dab1-4654-a840-6c03113a69f2", + "f984b93d-0f89-4375-83ad-2174cc9f97c9", + "fec44e56-2125-4805-9cde-62c5e1be6939", + "5a435372-74cf-4618-afaa-3e09cf435ffe", + "135d3f88-8977-4ce9-86e4-e39060629e7b", + "6e544124-2ffb-4c53-abbc-27b6be0f1bb3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], "x-ms-request-id": [ - "46f6a72b-8d9a-4990-b05c-83530a5a39f5" + "717b6a96-3ee1-4577-ab9f-ca8424108f0c" ], "x-ms-correlation-request-id": [ - "46f6a72b-8d9a-4990-b05c-83530a5a39f5" + "717b6a96-3ee1-4577-ab9f-ca8424108f0c" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T230949Z:46f6a72b-8d9a-4990-b05c-83530a5a39f5" + "WESTCENTRALUS:20210330T003229Z:717b6a96-3ee1-4577-ab9f-ca8424108f0c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1022,7 +1036,7 @@ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:09:48 GMT" + "Tue, 30 Mar 2021 00:32:28 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1038,22 +1052,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897/images/galleryPsTestGalleryImage8015?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzUzNTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4OTcvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4MDE1P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3662/providers/Microsoft.Compute/galleries/galleryPsTestGallery4084/images/galleryPsTestGalleryImage2946?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQwODQvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UyOTQ2P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a755e9c4-6d81-4990-ada9-367d86b55429" + "f5574352-1785-4f4d-b940-6daaead7e66b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1064,22 +1078,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/b87fec8c-b822-4ba4-88d4-9ed3ff6f78a7?monitor=true&api-version=2020-09-30" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a92f53a0-2d79-4f9b-b3dd-0b11c53457aa?monitor=true&api-version=2020-09-30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/b87fec8c-b822-4ba4-88d4-9ed3ff6f78a7?api-version=2020-09-30" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a92f53a0-2d79-4f9b-b3dd-0b11c53457aa?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/DeleteGalleryImage3Min;49,Microsoft.Compute/DeleteGalleryImage30Min;298" + "Microsoft.Compute/DeleteGalleryImage3Min;49,Microsoft.Compute/DeleteGalleryImage30Min;299" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "b87fec8c-b822-4ba4-88d4-9ed3ff6f78a7" + "a92f53a0-2d79-4f9b-b3dd-0b11c53457aa" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1089,16 +1103,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "7ce52957-3764-4243-873f-7f4a1b323ed2" + "fc30c80a-4481-44e3-af6c-19083bd45154" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T230918Z:7ce52957-3764-4243-873f-7f4a1b323ed2" + "WESTCENTRALUS:20210330T003158Z:fc30c80a-4481-44e3-af6c-19083bd45154" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:09:17 GMT" + "Tue, 30 Mar 2021 00:31:58 GMT" ], "Expires": [ "-1" @@ -1111,16 +1125,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/b87fec8c-b822-4ba4-88d4-9ed3ff6f78a7?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iODdmZWM4Yy1iODIyLTRiYTQtODhkNC05ZWQzZmY2Zjc4YTc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a92f53a0-2d79-4f9b-b3dd-0b11c53457aa?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hOTJmNTNhMC0yZDc5LTRmOWItYjNkZC0wYjExYzUzNDU3YWE/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1131,16 +1145,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4156" + "Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4192" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "095f17e4-57a6-4e8e-83ed-b13c46a09631" + "ee2eef9c-4e55-4a5f-8ec4-e16f0fcf79a8" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1150,16 +1164,16 @@ "11990" ], "x-ms-correlation-request-id": [ - "e7b49dd5-0f9c-4e6c-b48b-f1c92d495e9a" + "64ebfc01-693e-4ce9-b62f-59cb4046f856" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T230948Z:e7b49dd5-0f9c-4e6c-b48b-f1c92d495e9a" + "WESTCENTRALUS:20210330T003228Z:64ebfc01-693e-4ce9-b62f-59cb4046f856" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:09:47 GMT" + "Tue, 30 Mar 2021 00:32:28 GMT" ], "Content-Length": [ "184" @@ -1171,20 +1185,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:09:18.3651908-07:00\",\r\n \"endTime\": \"2020-10-22T16:09:18.4589184-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b87fec8c-b822-4ba4-88d4-9ed3ff6f78a7\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:31:58.4454898-07:00\",\r\n \"endTime\": \"2021-03-29T17:31:58.5704922-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a92f53a0-2d79-4f9b-b3dd-0b11c53457aa\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/b87fec8c-b822-4ba4-88d4-9ed3ff6f78a7?monitor=true&api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iODdmZWM4Yy1iODIyLTRiYTQtODhkNC05ZWQzZmY2Zjc4YTc/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a92f53a0-2d79-4f9b-b3dd-0b11c53457aa?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hOTJmNTNhMC0yZDc5LTRmOWItYjNkZC0wYjExYzUzNDU3YWE/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1195,16 +1209,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4155" + "Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4191" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "061cb7ba-0a9d-4f94-8b2f-5b9b03ee87c3" + "d4d35f25-277c-4e4c-9b74-12de11a93622" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1214,16 +1228,16 @@ "11989" ], "x-ms-correlation-request-id": [ - "97c439ac-971b-4417-9e7a-ae6b047887c7" + "7703c646-0162-45d9-8e4d-14acaa7bac32" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T230948Z:97c439ac-971b-4417-9e7a-ae6b047887c7" + "WESTCENTRALUS:20210330T003228Z:7703c646-0162-45d9-8e4d-14acaa7bac32" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:09:47 GMT" + "Tue, 30 Mar 2021 00:32:28 GMT" ], "Expires": [ "-1" @@ -1236,22 +1250,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg5359/providers/Microsoft.Compute/galleries/galleryPsTestGallery8897?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzUzNTkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg4OTc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3662/providers/Microsoft.Compute/galleries/galleryPsTestGallery4084?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQwODQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d49e04f3-ac7f-4e0c-b607-5c4d96138af1" + "081d962c-c4c0-42ab-92ac-5cec56cd20cf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1262,22 +1276,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/7e73201d-726d-4694-bf04-bb81591c6153?monitor=true&api-version=2020-09-30" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/d8dd9798-92ac-4f0c-a3c7-999bbda97aa1?monitor=true&api-version=2020-09-30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/7e73201d-726d-4694-bf04-bb81591c6153?api-version=2020-09-30" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/d8dd9798-92ac-4f0c-a3c7-999bbda97aa1?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;298" + "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;899" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "7e73201d-726d-4694-bf04-bb81591c6153" + "d8dd9798-92ac-4f0c-a3c7-999bbda97aa1" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1287,16 +1301,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "fe2fa2ca-9321-458e-bb8b-33bd9f2365c8" + "78a58e9d-05d7-4cea-9f45-e79f5880c18b" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T230949Z:fe2fa2ca-9321-458e-bb8b-33bd9f2365c8" + "WESTCENTRALUS:20210330T003229Z:78a58e9d-05d7-4cea-9f45-e79f5880c18b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:09:48 GMT" + "Tue, 30 Mar 2021 00:32:29 GMT" ], "Expires": [ "-1" @@ -1309,16 +1323,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/7e73201d-726d-4694-bf04-bb81591c6153?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83ZTczMjAxZC03MjZkLTQ2OTQtYmYwNC1iYjgxNTkxYzYxNTM/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/d8dd9798-92ac-4f0c-a3c7-999bbda97aa1?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9kOGRkOTc5OC05MmFjLTRmMGMtYTNjNy05OTliYmRhOTdhYTE/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1329,35 +1343,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4152" + "Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4189" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "6d8e57a3-8cdd-46fd-9649-1563172075f3" + "e666a3ea-d160-47fb-9d46-a5209dd96cf3" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11986" ], "x-ms-correlation-request-id": [ - "02041aff-a46e-41ef-8d8e-6b295b07b536" + "b93731ea-ab5f-4ec6-814d-377e847edd6f" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231019Z:02041aff-a46e-41ef-8d8e-6b295b07b536" + "WESTCENTRALUS:20210330T003259Z:b93731ea-ab5f-4ec6-814d-377e847edd6f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:10:19 GMT" + "Tue, 30 Mar 2021 00:32:59 GMT" ], "Content-Length": [ "184" @@ -1369,20 +1383,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T16:09:49.3652366-07:00\",\r\n \"endTime\": \"2020-10-22T16:09:49.4433703-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7e73201d-726d-4694-bf04-bb81591c6153\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:32:29.3221954-07:00\",\r\n \"endTime\": \"2021-03-29T17:32:29.4472755-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d8dd9798-92ac-4f0c-a3c7-999bbda97aa1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/7e73201d-726d-4694-bf04-bb81591c6153?monitor=true&api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83ZTczMjAxZC03MjZkLTQ2OTQtYmYwNC1iYjgxNTkxYzYxNTM/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/d8dd9798-92ac-4f0c-a3c7-999bbda97aa1?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9kOGRkOTc5OC05MmFjLTRmMGMtYTNjNy05OTliYmRhOTdhYTE/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1393,35 +1407,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4151" + "Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4188" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "881906b1-3170-4e39-a6fa-219becc5a44b" + "277be90c-a4cc-46e5-87b9-3280f8b36c88" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11985" ], "x-ms-correlation-request-id": [ - "ec523a18-553b-4fa8-8aee-7849fed8b483" + "14c64489-7d36-4004-abb5-a5954f92f677" ], "x-ms-routing-request-id": [ - "WESTUS:20201022T231019Z:ec523a18-553b-4fa8-8aee-7849fed8b483" + "WESTCENTRALUS:20210330T003259Z:14c64489-7d36-4004-abb5-a5954f92f677" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Oct 2020 23:10:19 GMT" + "Tue, 30 Mar 2021 00:32:59 GMT" ], "Expires": [ "-1" @@ -1436,12 +1450,12 @@ ], "Names": { "GalleryImage_CRUD_Tests": [ - "galleryPsTestRg5359", - "galleryPsTestGallery8897", - "galleryPsTestGalleryImage8015" + "galleryPsTestRg3662", + "galleryPsTestGallery4084", + "galleryPsTestGalleryImage2946" ] }, "Variables": { - "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871" + "SubscriptionId": "97f78232-382b-46a7-8a72-964d692c4f3f" } } \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_CRUD_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_CRUD_Tests.json index ee0fa6e4d5ca..fbc97f15d467 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_CRUD_Tests.json +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_CRUD_Tests.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg6640?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY2NDA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg3658?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NTg/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2a51ad5b-67fd-408f-a74c-a771969cd0d8" + "d21c7324-01e6-463f-a783-2eadef6be5b9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "929ae659-c813-4d6a-8b64-cb6a8b947123" + "47c19756-8875-415d-a2cc-9f41a8c09d06" ], "x-ms-correlation-request-id": [ - "929ae659-c813-4d6a-8b64-cb6a8b947123" + "47c19756-8875-415d-a2cc-9f41a8c09d06" ], "x-ms-routing-request-id": [ - "WESTUS:20201023T000411Z:929ae659-c813-4d6a-8b64-cb6a8b947123" + "WESTUS:20210330T010032Z:47c19756-8875-415d-a2cc-9f41a8c09d06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 00:04:10 GMT" + "Tue, 30 Mar 2021 01:00:32 GMT" ], "Content-Length": [ "192" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640\",\r\n \"name\": \"galleryPsTestRg6640\",\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/galleryPsTestRg3658\",\r\n \"name\": \"galleryPsTestRg3658\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY2NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1NDQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3658/providers/Microsoft.Compute/galleries/galleryPsTestGallery1299?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTEyOTk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "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": [ - "d1f4e50b-0327-4fc9-9701-d60f4298cde6" + "688abc9d-4499-460a-aec9-40283bd9441e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,19 +99,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/218a0ac1-17d3-4d74-a1f2-1ad07492b99f?api-version=2020-09-30" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/14f6e75a-b430-4c40-87ba-5448b6214b35?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299" + "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;298" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "218a0ac1-17d3-4d74-a1f2-1ad07492b99f" + "14f6e75a-b430-4c40-87ba-5448b6214b35" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -121,16 +121,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "c5504e50-2334-4bc6-af37-60507cceb38b" + "8b861719-086c-4b57-a64b-691c459725a8" ], "x-ms-routing-request-id": [ - "WESTUS:20201023T000414Z:c5504e50-2334-4bc6-af37-60507cceb38b" + "WESTUS:20210330T010035Z:8b861719-086c-4b57-a64b-691c459725a8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 00:04:13 GMT" + "Tue, 30 Mar 2021 01:00:35 GMT" ], "Content-Length": [ "573" @@ -142,26 +142,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8544\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544\",\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-GALLERYPSTESTGALLERY8544\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Private\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery1299\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3658/providers/Microsoft.Compute/galleries/galleryPsTestGallery1299\",\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-GALLERYPSTESTGALLERY1299\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Private\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY2NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1NDQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3658/providers/Microsoft.Compute/galleries/galleryPsTestGallery1299?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTEyOTk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is an updated description\"\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1f27a869-1bed-4987-9d4b-7b7ed39c4e6e" + "1d35e011-114a-4e56-a0b7-1bed504182fd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -178,19 +178,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/3ec5c497-dcaf-4e92-a9bd-7ee77b35353a?api-version=2020-09-30" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/6aa0310d-11ff-4b7c-958e-a27a13c90ece?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateUpdateGallery3Min;48,Microsoft.Compute/CreateUpdateGallery30Min;298" + "Microsoft.Compute/CreateUpdateGallery3Min;48,Microsoft.Compute/CreateUpdateGallery30Min;297" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "3ec5c497-dcaf-4e92-a9bd-7ee77b35353a" + "6aa0310d-11ff-4b7c-958e-a27a13c90ece" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -200,16 +200,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "94f0aefb-61a9-4770-a128-e48e0d6670a1" + "ec511fc9-ffc9-46d8-8bc0-f083d4f1baae" ], "x-ms-routing-request-id": [ - "WESTUS:20201023T000444Z:94f0aefb-61a9-4770-a128-e48e0d6670a1" + "WESTUS:20210330T010106Z:ec511fc9-ffc9-46d8-8bc0-f083d4f1baae" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 00:04:44 GMT" + "Tue, 30 Mar 2021 01:01:05 GMT" ], "Content-Length": [ "568" @@ -221,20 +221,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8544\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8544\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Private\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery1299\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3658/providers/Microsoft.Compute/galleries/galleryPsTestGallery1299\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY1299\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Private\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/218a0ac1-17d3-4d74-a1f2-1ad07492b99f?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yMThhMGFjMS0xN2QzLTRkNzQtYTFmMi0xYWQwNzQ5MmI5OWY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/14f6e75a-b430-4c40-87ba-5448b6214b35?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8xNGY2ZTc1YS1iNDMwLTRjNDAtODdiYS01NDQ4YjYyMTRiMzU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -245,38 +245,38 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4174" + "Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4161" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "1161e843-c622-4dcb-b5c0-aa0edf602bcc" + "fcad369e-7188-4e71-8b4b-0308b66907a6" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-correlation-request-id": [ - "727c85cf-22e6-49bc-87d4-5e567399cdab" + "ff7fc37f-df9d-4937-90aa-81e6da54bcbb" ], "x-ms-routing-request-id": [ - "WESTUS:20201023T000444Z:727c85cf-22e6-49bc-87d4-5e567399cdab" + "WESTUS:20210330T010105Z:ff7fc37f-df9d-4937-90aa-81e6da54bcbb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 00:04:44 GMT" + "Tue, 30 Mar 2021 01:01:05 GMT" ], "Content-Length": [ - "184" + "183" ], "Content-Type": [ "application/json; charset=utf-8" @@ -285,20 +285,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T17:04:13.5669615-07:00\",\r\n \"endTime\": \"2020-10-22T17:04:13.7700778-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"218a0ac1-17d3-4d74-a1f2-1ad07492b99f\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T18:00:35.1392098-07:00\",\r\n \"endTime\": \"2021-03-29T18:00:35.248592-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"14f6e75a-b430-4c40-87ba-5448b6214b35\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY2NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1NDQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3658/providers/Microsoft.Compute/galleries/galleryPsTestGallery1299?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTEyOTk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -309,35 +309,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2492" + "Microsoft.Compute/GetGallery3Min;344,Microsoft.Compute/GetGallery30Min;2483" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "4138f18d-c2de-4777-ad43-091efa4a0fa2" + "a0c5a9cf-a8d3-4331-8c76-e14f641ad514" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-correlation-request-id": [ - "42d6f9ba-7774-4008-99ce-f6fcb7f59987" + "4da8dde3-641c-4dad-81c7-b3e768009e1a" ], "x-ms-routing-request-id": [ - "WESTUS:20201023T000444Z:42d6f9ba-7774-4008-99ce-f6fcb7f59987" + "WESTUS:20210330T010105Z:4da8dde3-641c-4dad-81c7-b3e768009e1a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 00:04:44 GMT" + "Tue, 30 Mar 2021 01:01:05 GMT" ], "Content-Length": [ "509" @@ -349,26 +349,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8544\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544\",\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-GALLERYPSTESTGALLERY8544\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery1299\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3658/providers/Microsoft.Compute/galleries/galleryPsTestGallery1299\",\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-GALLERYPSTESTGALLERY1299\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY2NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1NDQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3658/providers/Microsoft.Compute/galleries/galleryPsTestGallery1299?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTEyOTk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a032d99-f40a-4862-a7b5-fd434c22e2b7" + "23e68ba8-f395-4858-a250-22a18e35900c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -379,35 +379,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;345,Microsoft.Compute/GetGallery30Min;2491" + "Microsoft.Compute/GetGallery3Min;343,Microsoft.Compute/GetGallery30Min;2482" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "7bc1d785-7efb-4fb1-bd7f-e8837d8c2ec4" + "2fbe6c47-fa8e-433d-9b3f-b41c0cd2de08" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-correlation-request-id": [ - "2169f4ca-7c61-4f2d-a9f2-f1bc6befcc68" + "eed467fd-eeb5-4484-8878-f8fad17d3aea" ], "x-ms-routing-request-id": [ - "WESTUS:20201023T000444Z:2169f4ca-7c61-4f2d-a9f2-f1bc6befcc68" + "WESTUS:20210330T010106Z:eed467fd-eeb5-4484-8878-f8fad17d3aea" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 00:04:44 GMT" + "Tue, 30 Mar 2021 01:01:05 GMT" ], "Content-Length": [ "509" @@ -419,20 +419,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8544\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544\",\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-GALLERYPSTESTGALLERY8544\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery1299\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3658/providers/Microsoft.Compute/galleries/galleryPsTestGallery1299\",\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-GALLERYPSTESTGALLERY1299\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY2NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1NDQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3658/providers/Microsoft.Compute/galleries/galleryPsTestGallery1299?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTEyOTk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -443,35 +443,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;344,Microsoft.Compute/GetGallery30Min;2490" + "Microsoft.Compute/GetGallery3Min;342,Microsoft.Compute/GetGallery30Min;2481" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "92d269c8-6552-4e64-9ca6-08bf453afcda" + "31b1cbed-567d-473f-b6d0-553615d02a8d" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11996" ], "x-ms-correlation-request-id": [ - "c2bb266b-40c1-412a-b356-63b3fc9513af" + "14770c38-8b27-4ce2-9382-a8ed1e9d027f" ], "x-ms-routing-request-id": [ - "WESTUS:20201023T000444Z:c2bb266b-40c1-412a-b356-63b3fc9513af" + "WESTUS:20210330T010106Z:14770c38-8b27-4ce2-9382-a8ed1e9d027f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 00:04:44 GMT" + "Tue, 30 Mar 2021 01:01:06 GMT" ], "Content-Length": [ "503" @@ -483,26 +483,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8544\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8544\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery1299\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3658/providers/Microsoft.Compute/galleries/galleryPsTestGallery1299\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY1299\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY2NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1NDQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3658/providers/Microsoft.Compute/galleries/galleryPsTestGallery1299?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTEyOTk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "15cd883e-d24c-4132-90a5-93118fa34058" + "c7d5902c-0443-46c5-92dd-acd45308b13c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -513,35 +513,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;343,Microsoft.Compute/GetGallery30Min;2489" + "Microsoft.Compute/GetGallery3Min;341,Microsoft.Compute/GetGallery30Min;2480" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "26b110a9-e0bd-4cd3-b51b-117d3ac20ee2" + "52c258fb-cd4e-4e36-8485-50cdfa4b05d0" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11995" ], "x-ms-correlation-request-id": [ - "684cd184-6258-4fea-910e-28aa2a394d68" + "b9d3369c-9b49-4b70-9bce-b00925075e95" ], "x-ms-routing-request-id": [ - "WESTUS:20201023T000445Z:684cd184-6258-4fea-910e-28aa2a394d68" + "WESTUS:20210330T010106Z:b9d3369c-9b49-4b70-9bce-b00925075e95" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 00:04:44 GMT" + "Tue, 30 Mar 2021 01:01:06 GMT" ], "Content-Length": [ "503" @@ -553,23 +553,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8544\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8544\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery1299\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3658/providers/Microsoft.Compute/galleries/galleryPsTestGallery1299\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY1299\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg6640New?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY2NDBOZXc/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg3658New?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NThOZXc/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "22097a2a-aff1-4535-9949-f3ad9540805d" + "043a69f7-a991-4934-82c6-c4877cf82754" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -592,13 +592,13 @@ "1198" ], "x-ms-request-id": [ - "f6eeb8ac-1931-47e0-ab48-aacc3398cb0f" + "8a4980f5-8994-4e88-be90-081abe4d1300" ], "x-ms-correlation-request-id": [ - "f6eeb8ac-1931-47e0-ab48-aacc3398cb0f" + "8a4980f5-8994-4e88-be90-081abe4d1300" ], "x-ms-routing-request-id": [ - "WESTUS:20201023T000445Z:f6eeb8ac-1931-47e0-ab48-aacc3398cb0f" + "WESTUS:20210330T010107Z:8a4980f5-8994-4e88-be90-081abe4d1300" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -607,7 +607,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 00:04:45 GMT" + "Tue, 30 Mar 2021 01:01:06 GMT" ], "Content-Length": [ "198" @@ -619,26 +619,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640New\",\r\n \"name\": \"galleryPsTestRg6640New\",\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/galleryPsTestRg3658New\",\r\n \"name\": \"galleryPsTestRg3658New\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640New/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544New?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY2NDBOZXcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1NDROZXc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3658New/providers/Microsoft.Compute/galleries/galleryPsTestGallery1299New?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NThOZXcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTEyOTlOZXc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is an updated description\"\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1952488e-d72d-444e-a3d3-e315b0c51149" + "6d7b60b0-7bb6-489b-b526-908d380764d3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -655,19 +655,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a791cbdd-8f07-4634-b3fa-e817dcbd2049?api-version=2020-09-30" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a5089f24-a00a-4351-80f6-14edbda3696a?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateUpdateGallery3Min;47,Microsoft.Compute/CreateUpdateGallery30Min;297" + "Microsoft.Compute/CreateUpdateGallery3Min;47,Microsoft.Compute/CreateUpdateGallery30Min;296" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "a791cbdd-8f07-4634-b3fa-e817dcbd2049" + "a5089f24-a00a-4351-80f6-14edbda3696a" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -677,16 +677,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "912ee172-f996-486f-8f1f-41f86d32d688" + "221d11a8-e4cb-4105-bc87-4ce6a8465616" ], "x-ms-routing-request-id": [ - "WESTUS:20201023T000457Z:912ee172-f996-486f-8f1f-41f86d32d688" + "WESTUS:20210330T010119Z:221d11a8-e4cb-4105-bc87-4ce6a8465616" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 00:04:57 GMT" + "Tue, 30 Mar 2021 01:01:18 GMT" ], "Content-Length": [ "579" @@ -698,20 +698,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8544New\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640New/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544New\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8544NEW\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Private\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery1299New\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3658New/providers/Microsoft.Compute/galleries/galleryPsTestGallery1299New\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY1299NEW\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Private\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a791cbdd-8f07-4634-b3fa-e817dcbd2049?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hNzkxY2JkZC04ZjA3LTQ2MzQtYjNmYS1lODE3ZGNiZDIwNDk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a5089f24-a00a-4351-80f6-14edbda3696a?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hNTA4OWYyNC1hMDBhLTQzNTEtODBmNi0xNGVkYmRhMzY5NmE/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -722,38 +722,38 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4181" + "Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4159" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "a91db3e3-0fb9-4746-9c71-e8f524ce739d" + "0c2114a7-9aad-47ff-af30-58fad2d0f915" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11994" ], "x-ms-correlation-request-id": [ - "c518bfda-a764-41d8-b359-6524accf175d" + "743cee55-35f3-4f57-9406-56179999e3a4" ], "x-ms-routing-request-id": [ - "WESTUS:20201023T000527Z:c518bfda-a764-41d8-b359-6524accf175d" + "WESTUS:20210330T010149Z:743cee55-35f3-4f57-9406-56179999e3a4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 00:05:27 GMT" + "Tue, 30 Mar 2021 01:01:48 GMT" ], "Content-Length": [ - "183" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -762,20 +762,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T17:04:56.957546-07:00\",\r\n \"endTime\": \"2020-10-22T17:04:57.0513482-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a791cbdd-8f07-4634-b3fa-e817dcbd2049\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T18:01:18.5632801-07:00\",\r\n \"endTime\": \"2021-03-29T18:01:18.6726601-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a5089f24-a00a-4351-80f6-14edbda3696a\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640New/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544New?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY2NDBOZXcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1NDROZXc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3658New/providers/Microsoft.Compute/galleries/galleryPsTestGallery1299New?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NThOZXcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTEyOTlOZXc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -786,35 +786,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;335,Microsoft.Compute/GetGallery30Min;2481" + "Microsoft.Compute/GetGallery3Min;335,Microsoft.Compute/GetGallery30Min;2474" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "6940be1b-83e1-47fb-86ec-249e4e242cc7" + "a964f3ef-cebd-46c9-b25f-10cf15cbb5cc" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11993" ], "x-ms-correlation-request-id": [ - "a25315c1-d8a7-4fbe-8abf-6a70ead9b075" + "025db2f5-5d5f-4713-b74a-3a2dbc20f9f9" ], "x-ms-routing-request-id": [ - "WESTUS:20201023T000527Z:a25315c1-d8a7-4fbe-8abf-6a70ead9b075" + "WESTUS:20210330T010149Z:025db2f5-5d5f-4713-b74a-3a2dbc20f9f9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 00:05:27 GMT" + "Tue, 30 Mar 2021 01:01:48 GMT" ], "Content-Length": [ "515" @@ -826,26 +826,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8544New\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640New/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544New\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8544NEW\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery1299New\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3658New/providers/Microsoft.Compute/galleries/galleryPsTestGallery1299New\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY1299NEW\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY2NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcz9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3658/providers/Microsoft.Compute/galleries?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcz9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e298d99b-cb16-4885-a16b-64e09f845993" + "e09db24f-d52c-48cb-ad1e-2a231b1d29d0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -862,29 +862,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "32015e38-3513-4eec-8b3a-4abc44cc49db" + "849dd5c4-1969-4189-8e91-642de077daa0" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11992" ], "x-ms-correlation-request-id": [ - "0e5b4ef6-7eba-4803-9726-9efb7c84a9f5" + "dfbb3788-3c63-49ef-880d-5ba487b253e4" ], "x-ms-routing-request-id": [ - "WESTUS:20201023T000527Z:0e5b4ef6-7eba-4803-9726-9efb7c84a9f5" + "WESTUS:20210330T010149Z:dfbb3788-3c63-49ef-880d-5ba487b253e4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 00:05:27 GMT" + "Tue, 30 Mar 2021 01:01:48 GMT" ], "Content-Length": [ "580" @@ -896,26 +896,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"galleryPsTestGallery8544\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8544\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"galleryPsTestGallery1299\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG3658/providers/Microsoft.Compute/galleries/galleryPsTestGallery1299\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY1299\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY2NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcz9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3658/providers/Microsoft.Compute/galleries?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcz9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57732c37-16ad-44fb-8b07-3ffae6921c39" + "2a5e2546-63bd-4fc5-8bba-0b3d6fef5538" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -926,16 +926,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11986" ], "x-ms-request-id": [ - "4a117397-a6d4-4a2b-8e7f-e6534459ea15" + "b3afe6e6-fee0-4546-8ab4-7a6e58ecdb84" ], "x-ms-correlation-request-id": [ - "4a117397-a6d4-4a2b-8e7f-e6534459ea15" + "b3afe6e6-fee0-4546-8ab4-7a6e58ecdb84" ], "x-ms-routing-request-id": [ - "WESTUS:20201023T000631Z:4a117397-a6d4-4a2b-8e7f-e6534459ea15" + "WESTUS:20210330T010253Z:b3afe6e6-fee0-4546-8ab4-7a6e58ecdb84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -944,7 +944,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 00:06:30 GMT" + "Tue, 30 Mar 2021 01:02:53 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -966,16 +966,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "864b057c-c97a-4203-b53e-8b4cb8ee206f" + "58ea1ac5-d5ca-4d39-aa03-33938eea8967" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -986,41 +986,32 @@ "no-cache" ], "x-ms-original-request-ids": [ - "fa0403a7-648e-4307-a327-8d859cf68420", - "f16cac33-9d10-40e1-9eb2-810c8af16d02", - "27314b73-8d2b-46b6-9089-53ead59d5a36", - "dd4e5a4a-e65b-4c70-91e0-253cafe6ea1c", - "f574e311-1f40-45b8-8279-4f963f9c282e", - "b631361a-fa0b-425d-807b-b2f94301306c", - "6a40c879-12fa-4c9a-8ab8-d91e9f399e28", - "4cfbf4f9-4e86-49ea-bec1-7535b15ee47b", - "58d939f6-9fc7-4b26-89f1-bab8bc5082be", - "e0cfa560-5aac-48f6-beb7-c7b756a5ddad", - "3ec1409b-270a-4688-b7a6-6a7fab4ccd18", - "cba4c03c-7afe-4a12-9604-46a9d262b8a2", - "8c81d3e9-34fd-4087-8171-95aeaba1cad9", - "f69cd3b3-4931-4f29-8c44-0f34c332b982", - "15c92025-2df8-4854-9be5-9e23fdd6fdde", - "3e51dfc5-08fe-452d-89a5-733e9d052bab", - "6f40161b-ce69-4552-80f9-e9c40e1867fe", - "7e6ad697-8dc3-492b-ae66-fccbe2aeef30", - "c344c3be-4d81-4bf5-8cce-7bcbb0ec2130", - "64fe783d-e921-4e1d-a815-f7fd138e602f", - "a4ee30c9-4571-4b35-8b47-79aab528730f", - "148394c4-898d-4fb3-8ce5-728285efcebd", - "76055931-bf21-4ca0-8d75-4d428623549e" + "ca6763b5-e6da-427d-91fb-38526e48a4c7", + "9f8f50b9-0e6f-415f-887f-ac79595943cb", + "b72ab8e3-029d-472d-bae5-771bdbeb6ec0", + "638a7679-c1c2-4b2d-839f-e47ed88d956a", + "0fad5795-386f-427d-806a-31ea852a21c6", + "401c1da3-d1a7-47f6-bf68-073587534eb9", + "7e70b158-db0b-456b-b3e2-98896b10ba06", + "74594b7d-3d97-453c-9528-c5680cf6dfeb", + "22b1f30c-fa04-4c37-8a34-233c045edbb6", + "405f42f6-4a7f-403b-b228-dfce3b0aaf5f", + "e165faf0-fae5-49e5-a2de-624bfd012801", + "2388322d-3785-4ae0-ba59-e211e75027cd", + "fdb387e3-35e4-4e2a-b84f-f8ef8324d0af", + "cadc3799-428f-4ce1-b6c7-1c692d3569f2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11991" ], "x-ms-request-id": [ - "196f7d1c-cb1c-4984-ae2a-b12aa809a346" + "f857b073-aa5d-4bda-b069-694fd975abfc" ], "x-ms-correlation-request-id": [ - "196f7d1c-cb1c-4984-ae2a-b12aa809a346" + "f857b073-aa5d-4bda-b069-694fd975abfc" ], "x-ms-routing-request-id": [ - "WESTUS:20201023T000529Z:196f7d1c-cb1c-4984-ae2a-b12aa809a346" + "WESTUS:20210330T010152Z:f857b073-aa5d-4bda-b069-694fd975abfc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1029,7 +1020,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 00:05:28 GMT" + "Tue, 30 Mar 2021 01:01:51 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1038,29 +1029,29 @@ "-1" ], "Content-Length": [ - "44162" + "26620" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"galleryesvygavwonxl\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-3-2020-PRODWESTCENTRALUS/providers/Microsoft.Compute/galleries/galleryesvygavwonxl\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYESVYGAVWONXL\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerybzektbfwpnhb\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-4-2020-PRODWESTCENTRALUS/providers/Microsoft.Compute/galleries/gallerybzektbfwpnhb\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYBZEKTBFWPNHB\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryhevfrypvwebt\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-5-2020-PRODWESTCENTRALUS/providers/Microsoft.Compute/galleries/galleryhevfrypvwebt\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYHEVFRYPVWEBT\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerypfbtfergacrp\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-6-2020-PRODWESTCENTRALUS/providers/Microsoft.Compute/galleries/gallerypfbtfergacrp\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPFBTFERGACRP\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryjotpfpinylvh\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-8-2020-PRODWESTCENTRALUS/providers/Microsoft.Compute/galleries/galleryjotpfpinylvh\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYJOTPFPINYLVH\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"longlivedgalwcus\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYWCUS/providers/Microsoft.Compute/galleries/longlivedgalwcus\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery used for e2e testing\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEDGALWCUS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gal1-with-dash\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/SIG1/providers/Microsoft.Compute/galleries/gal1-with-dash\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"description\": \"Shared Image Gallery for my ORG\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GAL1-WITH-DASH\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerynfrphfwyzeyy\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-3-2020-PRODSOUTHCENTRALUS/providers/Microsoft.Compute/galleries/gallerynfrphfwyzeyy\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYNFRPHFWYZEYY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryeiwnxjqhrizs\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-4-2020-PRODSOUTHCENTRALUS/providers/Microsoft.Compute/galleries/galleryeiwnxjqhrizs\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYEIWNXJQHRIZS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryyizbvcsirvna\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-5-2020-PRODSOUTHCENTRALUS/providers/Microsoft.Compute/galleries/galleryyizbvcsirvna\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYYIZBVCSIRVNA\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryvziynzcwyfvb\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-6-2020-PRODSOUTHCENTRALUS/providers/Microsoft.Compute/galleries/galleryvziynzcwyfvb\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYVZIYNZCWYFVB\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerytuognthrhlhc\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-7-2020-PRODSOUTHCENTRALUS/providers/Microsoft.Compute/galleries/gallerytuognthrhlhc\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYTUOGNTHRHLHC\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerymzwbagbpgaho\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-8-2020-PRODSOUTHCENTRALUS/providers/Microsoft.Compute/galleries/gallerymzwbagbpgaho\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYMZWBAGBPGAHO\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"newgal\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYSCUS/providers/Microsoft.Compute/galleries/newgal\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-NEWGAL\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery7877\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG3904/providers/Microsoft.Compute/galleries/galleryPsTestGallery7877\",\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-GALLERYPSTESTGALLERY7877\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery8544\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8544\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery8544New\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG6640NEW/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544New\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8544NEW\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery2082\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG955/providers/Microsoft.Compute/galleries/galleryPsTestGallery2082\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY2082\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery5452\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG2221/providers/Microsoft.Compute/galleries/galleryPsTestGallery5452\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY5452\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery2813\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG2383/providers/Microsoft.Compute/galleries/galleryPsTestGallery2813\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY2813\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery1535\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG2561/providers/Microsoft.Compute/galleries/galleryPsTestGallery1535\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY1535\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery2290\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG3320/providers/Microsoft.Compute/galleries/galleryPsTestGallery2290\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY2290\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery7072\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG3950/providers/Microsoft.Compute/galleries/galleryPsTestGallery7072\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY7072\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery6097\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG5384/providers/Microsoft.Compute/galleries/galleryPsTestGallery6097\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY6097\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery6736\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG5735/providers/Microsoft.Compute/galleries/galleryPsTestGallery6736\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY6736\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery2697\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG5937/providers/Microsoft.Compute/galleries/galleryPsTestGallery2697\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY2697\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery4873\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG7379/providers/Microsoft.Compute/galleries/galleryPsTestGallery4873\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY4873\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery5395\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG7539/providers/Microsoft.Compute/galleries/galleryPsTestGallery5395\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY5395\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery9652\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG768/providers/Microsoft.Compute/galleries/galleryPsTestGallery9652\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY9652\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery4074\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG7763/providers/Microsoft.Compute/galleries/galleryPsTestGallery4074\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY4074\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery8638\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG7993/providers/Microsoft.Compute/galleries/galleryPsTestGallery8638\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8638\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery9035\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG8001/providers/Microsoft.Compute/galleries/galleryPsTestGallery9035\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY9035\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery5554\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG8037/providers/Microsoft.Compute/galleries/galleryPsTestGallery5554\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY5554\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery8307\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG8405/providers/Microsoft.Compute/galleries/galleryPsTestGallery8307\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8307\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery9682\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG8649/providers/Microsoft.Compute/galleries/galleryPsTestGallery9682\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY9682\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery8732\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG9198/providers/Microsoft.Compute/galleries/galleryPsTestGallery8732\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8732\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery3722\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG9909/providers/Microsoft.Compute/galleries/galleryPsTestGallery3722\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY3722\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery7310\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG9915/providers/Microsoft.Compute/galleries/galleryPsTestGallery7310\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY7310\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryituasnuotqjj\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-3-2020-PRODWESTUS/providers/Microsoft.Compute/galleries/galleryituasnuotqjj\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYITUASNUOTQJJ\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerykzxlmtntmhpe\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-4-2020-PRODWESTUS/providers/Microsoft.Compute/galleries/gallerykzxlmtntmhpe\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYKZXLMTNTMHPE\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryetsnokrzufeg\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-5-2020-PRODWESTUS/providers/Microsoft.Compute/galleries/galleryetsnokrzufeg\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYETSNOKRZUFEG\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerytcidnseplsex\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-6-2020-PRODWESTUS/providers/Microsoft.Compute/galleries/gallerytcidnseplsex\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYTCIDNSEPLSEX\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerywfdzwwunzeim\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-7-2020-PRODWESTUS/providers/Microsoft.Compute/galleries/gallerywfdzwwunzeim\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYWFDZWWUNZEIM\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryinnhevgxzxvp\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-8-2020-PRODWESTUS/providers/Microsoft.Compute/galleries/galleryinnhevgxzxvp\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYINNHEVGXZXVP\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"sigtiptest\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYWESTUS/providers/Microsoft.Compute/galleries/sigtiptest\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-SIGTIPTEST\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"CopyV2Standardgalleryjrmpmjaiouic\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-22-2020-PRODEASTUS/providers/Microsoft.Compute/galleries/CopyV2Standardgalleryjrmpmjaiouic\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-COPYV2STANDARDGALLERYJRMPMJAIOUIC\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"sig_test_aus\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/SIG_TEST/providers/Microsoft.Compute/galleries/sig_test_aus\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-SIG_TEST_AUS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"myGalleryHaHa20191004\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/TEMPRG2/providers/Microsoft.Compute/galleries/myGalleryHaHa20191004\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"description\": \"This is the gallery description.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-MYGALLERYHAHA20191004\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"DiskLonglivedGallerycanadacentral\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDSIGDISKRGINCANADACENTRAL/providers/Microsoft.Compute/galleries/DiskLonglivedGallerycanadacentral\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-DISKLONGLIVEDGALLERYCANADACENTRAL\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"disklonglivedgalleryIncanadacentral\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGRUNNINGRG-CANADACENTRAL/providers/Microsoft.Compute/galleries/disklonglivedgalleryIncanadacentral\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-DISKLONGLIVEDGALLERYINCANADACENTRAL\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"CopyV2Standardgallerymfjxsafpslar\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-22-2020-PRODNORTHEUROPE/providers/Microsoft.Compute/galleries/CopyV2Standardgallerymfjxsafpslar\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-COPYV2STANDARDGALLERYMFJXSAFPSLAR\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryevfczbqxmdgy\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-22-2020-PRODBRAZILSOUTH/providers/Microsoft.Compute/galleries/galleryevfczbqxmdgy\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYEVFCZBQXMDGY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryudatdkismxmx\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-22-2020-PRODBRAZILSOUTH/providers/Microsoft.Compute/galleries/galleryudatdkismxmx\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYUDATDKISMXMX\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"disklonglivedgalleryInukwest\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGRUNNINGRG-UKWEST/providers/Microsoft.Compute/galleries/disklonglivedgalleryInukwest\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"ukwest\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-DISKLONGLIVEDGALLERYINUKWEST\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryysgcpwxutvyr\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-19-2020-PRODEASTASIA/providers/Microsoft.Compute/galleries/galleryysgcpwxutvyr\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYYSGCPWXUTVYR\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"CopyV2Standardgallerybrknzmfubnkg\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-22-2020-PRODWESTUS2/providers/Microsoft.Compute/galleries/CopyV2Standardgallerybrknzmfubnkg\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-COPYV2STANDARDGALLERYBRKNZMFUBNKG\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerycjblbwvxtepk\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-22-2020-PRODWESTUS2/providers/Microsoft.Compute/galleries/gallerycjblbwvxtepk\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYCJBLBWVXTEPK\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"grlianTestGallery\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GRLIANRG/providers/Microsoft.Compute/galleries/grlianTestGallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GRLIANTESTGALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"longlivedgallery\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYAZURESUPPORTRG/providers/Microsoft.Compute/galleries/longlivedgallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"description\": \"My Private Gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEDGALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"disklonglivedgalleryIncanadaeast\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGRUNNINGRG-CANADAEAST/providers/Microsoft.Compute/galleries/disklonglivedgalleryIncanadaeast\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-DISKLONGLIVEDGALLERYINCANADAEAST\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"disklonglivedgalleryInaustraliasoutheast\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGRUNNINGRG-AUSTRALIASOUTHEAST/providers/Microsoft.Compute/galleries/disklonglivedgalleryInaustraliasoutheast\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-DISKLONGLIVEDGALLERYINAUSTRALIASOUTHEAST\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerylynbzaemiqkk\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-16-2020-PRODAUSTRALIACENTRAL/providers/Microsoft.Compute/galleries/gallerylynbzaemiqkk\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"australiacentral\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYLYNBZAEMIQKK\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerylzzkdkslrjrk\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-19-2020-PRODSOUTHAFRICANORTH/providers/Microsoft.Compute/galleries/gallerylzzkdkslrjrk\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southafricanorth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYLZZKDKSLRJRK\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryocqwcgmssdus\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-19-2020-PRODGERMANYWESTCENTRAL/providers/Microsoft.Compute/galleries/galleryocqwcgmssdus\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"germanywestcentral\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYOCQWCGMSSDUS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryjyzlrurtgyql\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-1-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/galleryjyzlrurtgyql\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYJYZLRURTGYQL\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryigpiolyxhegn\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-13-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/galleryigpiolyxhegn\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYIGPIOLYXHEGN\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryogghackydurn\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-14-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/galleryogghackydurn\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYOGGHACKYDURN\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerykpxqivdffoaa\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-15-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/gallerykpxqivdffoaa\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYKPXQIVDFFOAA\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryxqygvvznxsqb\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-16-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/galleryxqygvvznxsqb\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYXQYGVVZNXSQB\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryiobuyuchtwqd\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-19-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/galleryiobuyuchtwqd\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYIOBUYUCHTWQD\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerylplkjragptrk\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-2-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/gallerylplkjragptrk\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYLPLKJRAGPTRK\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryzlnxggfqnutb\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-20-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/galleryzlnxggfqnutb\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYZLNXGGFQNUTB\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerynqfywamohuwn\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-21-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/gallerynqfywamohuwn\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYNQFYWAMOHUWN\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerydiaqgdrffnqp\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-22-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/gallerydiaqgdrffnqp\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYDIAQGDRFFNQP\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerylxacxcogxpae\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-5-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/gallerylxacxcogxpae\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYLXACXCOGXPAE\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerythozbswcgroh\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-6-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/gallerythozbswcgroh\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYTHOZBSWCGROH\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerysemcjztbtwxi\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-7-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/gallerysemcjztbtwxi\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYSEMCJZTBTWXI\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerywjmkvbvqrotp\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-8-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/gallerywjmkvbvqrotp\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYWJMKVBVQROTP\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryqlssopvwhqff\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-9-2020-PRODFRANCESOUTH/providers/Microsoft.Compute/galleries/galleryqlssopvwhqff\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYQLSSOPVWHQFF\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryjzyueyqqhpil\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-19-2020-PRODSOUTHAFRICAWEST/providers/Microsoft.Compute/galleries/galleryjzyueyqqhpil\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southafricawest\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYJZYUEYQQHPIL\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryjqdethyiqazk\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-9-22-2020-PRODUAECENTRAL/providers/Microsoft.Compute/galleries/galleryjqdethyiqazk\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"uaecentral\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYJQDETHYIQAZK\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerywqtbjxzinvmg\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-19-2020-PRODGERMANYNORTH/providers/Microsoft.Compute/galleries/gallerywqtbjxzinvmg\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"germanynorth\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYWQTBJXZINVMG\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerygdhgvktbsoih\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-12-2020-PRODEASTUS2EUAP/providers/Microsoft.Compute/galleries/gallerygdhgvktbsoih\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYGDHGVKTBSOIH\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryllxtxrqndlpf\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-21-2020-PRODEASTUS2EUAP/providers/Microsoft.Compute/galleries/galleryllxtxrqndlpf\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYLLXTXRQNDLPF\"\r\n },\r\n \"provisioningState\": \"Failed\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerytbdvjdjernaf\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-10-22-2020-PRODEASTUS2EUAP/providers/Microsoft.Compute/galleries/gallerytbdvjdjernaf\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYTBDVJDJERNAF\"\r\n },\r\n \"provisioningState\": \"Failed\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerylfkshwrluerz\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-8-28-2020-PRODEASTUS2EUAP/providers/Microsoft.Compute/galleries/gallerylfkshwrluerz\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYLFKSHWRLUERZ\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerymwimjygfbnqs\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-8-28-2020-PRODEASTUS2EUAP/providers/Microsoft.Compute/galleries/gallerymwimjygfbnqs\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYMWIMJYGFBNQS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerytmxmixvwqcko\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-8-28-2020-PRODEASTUS2EUAP/providers/Microsoft.Compute/galleries/gallerytmxmixvwqcko\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYTMXMIXVWQCKO\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallerymnconpyfpgxw\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-9-16-2020-PRODEASTUS2EUAP/providers/Microsoft.Compute/galleries/gallerymnconpyfpgxw\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYMNCONPYFPGXW\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryznmufdqjjpkc\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-9-18-2020-PRODEASTUS2EUAP/providers/Microsoft.Compute/galleries/galleryznmufdqjjpkc\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYZNMUFDQJJPKC\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryalxhukvwtcxi\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-9-23-2020-PRODEASTUS2EUAP/providers/Microsoft.Compute/galleries/galleryalxhukvwtcxi\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYALXHUKVWTCXI\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery2975\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG3906/providers/Microsoft.Compute/galleries/galleryPsTestGallery2975\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY2975\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery8333\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG9881/providers/Microsoft.Compute/galleries/galleryPsTestGallery8333\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8333\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"longlivedgal\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERY/providers/Microsoft.Compute/galleries/longlivedgal\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"properties\": {\r\n \"description\": \"gallery used for e2e testing\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEDGAL\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"mygalleryForCrp97f7\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERY/providers/Microsoft.Compute/galleries/mygalleryForCrp97f7\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-MYGALLERYFORCRP97F7\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"mygalleryForCrpEastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERY/providers/Microsoft.Compute/galleries/mygalleryForCrpEastus2euap\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-MYGALLERYFORCRPEASTUS2EUAP\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"tireganTestGallery\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERY/providers/Microsoft.Compute/galleries/tireganTestGallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-TIREGANTESTGALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"TVMTestGallery\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDTRUSTEDVMRG/providers/Microsoft.Compute/galleries/TVMTestGallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"TrustedVM gallery test in Canary.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-TVMTESTGALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallery1euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/RGEUAP/providers/Microsoft.Compute/galleries/gallery1euap\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERY1EUAP\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"tempnewgallery\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/TEMPNEWRG/providers/Microsoft.Compute/galleries/tempnewgallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-TEMPNEWGALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"grlianTestGalleryUniqueName\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GRLIANRG/providers/Microsoft.Compute/galleries/grlianTestGalleryUniqueName\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"description\": \"My Private Gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GRLIANTESTGALLERYUNIQUENAME\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"grlianTestGalleryUniqueNameT15\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GRLIANRG/providers/Microsoft.Compute/galleries/grlianTestGalleryUniqueNameT15\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"description\": \"My Private Gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GRLIANTESTGALLERYUNIQUENAMET15\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"canarydrillsig\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/SIGCANARYDRDRILL/providers/Microsoft.Compute/galleries/canarydrillsig\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-CANARYDRILLSIG\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"longlivedgalwcus\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYWCUS/providers/Microsoft.Compute/galleries/longlivedgalwcus\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery used for e2e testing\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEDGALWCUS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gal1-with-dash\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/SIG1/providers/Microsoft.Compute/galleries/gal1-with-dash\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"description\": \"Shared Image Gallery for my ORG\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GAL1-WITH-DASH\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"newgal\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYSCUS/providers/Microsoft.Compute/galleries/newgal\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-NEWGAL\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery1396\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG1344/providers/Microsoft.Compute/galleries/galleryPsTestGallery1396\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY1396\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery2393\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG1498/providers/Microsoft.Compute/galleries/galleryPsTestGallery2393\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY2393\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery1299\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG3658/providers/Microsoft.Compute/galleries/galleryPsTestGallery1299\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY1299\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery1299New\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG3658NEW/providers/Microsoft.Compute/galleries/galleryPsTestGallery1299New\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY1299NEW\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery7877\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG3904/providers/Microsoft.Compute/galleries/galleryPsTestGallery7877\",\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-GALLERYPSTESTGALLERY7877\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery1060\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG4931/providers/Microsoft.Compute/galleries/galleryPsTestGallery1060\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY1060\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery4214\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG5385/providers/Microsoft.Compute/galleries/galleryPsTestGallery4214\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY4214\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery8723\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG5403/providers/Microsoft.Compute/galleries/galleryPsTestGallery8723\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8723\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery6594\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG6583/providers/Microsoft.Compute/galleries/galleryPsTestGallery6594\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY6594\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery1139\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG8162/providers/Microsoft.Compute/galleries/galleryPsTestGallery1139\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY1139\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery9002\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG861/providers/Microsoft.Compute/galleries/galleryPsTestGallery9002\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY9002\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery5754\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG9127/providers/Microsoft.Compute/galleries/galleryPsTestGallery5754\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY5754\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery2082\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG955/providers/Microsoft.Compute/galleries/galleryPsTestGallery2082\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY2082\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery8748\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG9611/providers/Microsoft.Compute/galleries/galleryPsTestGallery8748\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8748\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery5452\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG2221/providers/Microsoft.Compute/galleries/galleryPsTestGallery5452\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY5452\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery2813\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG2383/providers/Microsoft.Compute/galleries/galleryPsTestGallery2813\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY2813\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery1535\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG2561/providers/Microsoft.Compute/galleries/galleryPsTestGallery1535\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY1535\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery2290\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG3320/providers/Microsoft.Compute/galleries/galleryPsTestGallery2290\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY2290\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery7072\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG3950/providers/Microsoft.Compute/galleries/galleryPsTestGallery7072\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY7072\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery6097\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG5384/providers/Microsoft.Compute/galleries/galleryPsTestGallery6097\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY6097\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery6736\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG5735/providers/Microsoft.Compute/galleries/galleryPsTestGallery6736\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY6736\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery2697\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG5937/providers/Microsoft.Compute/galleries/galleryPsTestGallery2697\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY2697\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery4873\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG7379/providers/Microsoft.Compute/galleries/galleryPsTestGallery4873\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY4873\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery5395\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG7539/providers/Microsoft.Compute/galleries/galleryPsTestGallery5395\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY5395\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery9652\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG768/providers/Microsoft.Compute/galleries/galleryPsTestGallery9652\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY9652\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery4074\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG7763/providers/Microsoft.Compute/galleries/galleryPsTestGallery4074\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY4074\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery8638\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG7993/providers/Microsoft.Compute/galleries/galleryPsTestGallery8638\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8638\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery9035\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG8001/providers/Microsoft.Compute/galleries/galleryPsTestGallery9035\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY9035\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery5554\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG8037/providers/Microsoft.Compute/galleries/galleryPsTestGallery5554\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY5554\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery8307\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG8405/providers/Microsoft.Compute/galleries/galleryPsTestGallery8307\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8307\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery9682\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG8649/providers/Microsoft.Compute/galleries/galleryPsTestGallery9682\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY9682\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery8732\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG9198/providers/Microsoft.Compute/galleries/galleryPsTestGallery8732\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8732\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery3722\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG9909/providers/Microsoft.Compute/galleries/galleryPsTestGallery3722\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY3722\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery7310\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG9915/providers/Microsoft.Compute/galleries/galleryPsTestGallery7310\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY7310\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"sigtiptest\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYWESTUS/providers/Microsoft.Compute/galleries/sigtiptest\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-SIGTIPTEST\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"sig_test_aus\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/SIG_TEST/providers/Microsoft.Compute/galleries/sig_test_aus\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-SIG_TEST_AUS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"myGalleryHaHa20191004\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/TEMPRG2/providers/Microsoft.Compute/galleries/myGalleryHaHa20191004\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"description\": \"This is the gallery description.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-MYGALLERYHAHA20191004\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"DiskLonglivedGallerycanadacentral\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDSIGDISKRGINCANADACENTRAL/providers/Microsoft.Compute/galleries/DiskLonglivedGallerycanadacentral\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-DISKLONGLIVEDGALLERYCANADACENTRAL\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"disklonglivedgalleryIncanadacentral\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGRUNNINGRG-CANADACENTRAL/providers/Microsoft.Compute/galleries/disklonglivedgalleryIncanadacentral\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-DISKLONGLIVEDGALLERYINCANADACENTRAL\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"disklonglivedgalleryInukwest\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGRUNNINGRG-UKWEST/providers/Microsoft.Compute/galleries/disklonglivedgalleryInukwest\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"ukwest\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-DISKLONGLIVEDGALLERYINUKWEST\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"grlianTestGallery\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GRLIANRG/providers/Microsoft.Compute/galleries/grlianTestGallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GRLIANTESTGALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"longlivedgallery\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYAZURESUPPORTRG/providers/Microsoft.Compute/galleries/longlivedgallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"description\": \"My Private Gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEDGALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"disklonglivedgalleryIncanadaeast\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGRUNNINGRG-CANADAEAST/providers/Microsoft.Compute/galleries/disklonglivedgalleryIncanadaeast\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-DISKLONGLIVEDGALLERYINCANADAEAST\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"disklonglivedgalleryInaustraliasoutheast\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGRUNNINGRG-AUSTRALIASOUTHEAST/providers/Microsoft.Compute/galleries/disklonglivedgalleryInaustraliasoutheast\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-DISKLONGLIVEDGALLERYINAUSTRALIASOUTHEAST\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryruwvgxcnsire\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-3-29-2021-PRODUAECENTRAL/providers/Microsoft.Compute/galleries/galleryruwvgxcnsire\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"uaecentral\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYRUWVGXCNSIRE\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryjqdethyiqazk\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-9-22-2020-PRODUAECENTRAL/providers/Microsoft.Compute/galleries/galleryjqdethyiqazk\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"uaecentral\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYJQDETHYIQAZK\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery2975\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG3906/providers/Microsoft.Compute/galleries/galleryPsTestGallery2975\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY2975\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery8333\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG9881/providers/Microsoft.Compute/galleries/galleryPsTestGallery8333\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8333\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"longlivedgal\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERY/providers/Microsoft.Compute/galleries/longlivedgal\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"properties\": {\r\n \"description\": \"gallery used for e2e testing\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEDGAL\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"mygalleryForCrp97f7\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERY/providers/Microsoft.Compute/galleries/mygalleryForCrp97f7\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-MYGALLERYFORCRP97F7\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"mygalleryForCrpEastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERY/providers/Microsoft.Compute/galleries/mygalleryForCrpEastus2euap\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-MYGALLERYFORCRPEASTUS2EUAP\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"tireganGuestOSImage\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERY/providers/Microsoft.Compute/galleries/tireganGuestOSImage\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-TIREGANGUESTOSIMAGE\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"TVMTestGallery\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDTRUSTEDVMRG/providers/Microsoft.Compute/galleries/TVMTestGallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"TrustedVM gallery test in Canary.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-TVMTESTGALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallery1euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/RGEUAP/providers/Microsoft.Compute/galleries/gallery1euap\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERY1EUAP\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"tempnewgallery\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/TEMPNEWRG/providers/Microsoft.Compute/galleries/tempnewgallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-TEMPNEWGALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"grlianTestGalleryUniqueName\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GRLIANRG/providers/Microsoft.Compute/galleries/grlianTestGalleryUniqueName\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"description\": \"My Private Gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GRLIANTESTGALLERYUNIQUENAME\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"grlianTestGalleryUniqueNameT15\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GRLIANRG/providers/Microsoft.Compute/galleries/grlianTestGalleryUniqueNameT15\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"description\": \"My Private Gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GRLIANTESTGALLERYUNIQUENAMET15\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"longlivegalleryfojnvv\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYCENTRALUSEUAP/providers/Microsoft.Compute/galleries/longlivegalleryfojnvv\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"canarydrillsig\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/SIGCANARYDRDRILL/providers/Microsoft.Compute/galleries/canarydrillsig\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-CANARYDRILLSIG\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY2NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1NDQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3658/providers/Microsoft.Compute/galleries/galleryPsTestGallery1299?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTEyOTk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b66f3bac-3fd1-4640-97d1-615cf3c6fb71" + "b88dbf72-8b10-4878-87a1-3c0342e9af40" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1071,22 +1062,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a4c37762-d4c8-4bf9-8475-027c1c63d869?monitor=true&api-version=2020-09-30" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/d8eda5ed-05eb-4a0a-a15b-5095642ddbbf?monitor=true&api-version=2020-09-30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a4c37762-d4c8-4bf9-8475-027c1c63d869?api-version=2020-09-30" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/d8eda5ed-05eb-4a0a-a15b-5095642ddbbf?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;298" + "Microsoft.Compute/DeleteGallery3Min;48,Microsoft.Compute/DeleteGallery30Min;898" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "a4c37762-d4c8-4bf9-8475-027c1c63d869" + "d8eda5ed-05eb-4a0a-a15b-5095642ddbbf" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1096,16 +1087,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "d797b5a1-5628-448d-b653-2086a4630e04" + "3a37fb9b-d110-495f-bdf9-2e08275a19ce" ], "x-ms-routing-request-id": [ - "WESTUS:20201023T000529Z:d797b5a1-5628-448d-b653-2086a4630e04" + "WESTUS:20210330T010152Z:3a37fb9b-d110-495f-bdf9-2e08275a19ce" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 00:05:29 GMT" + "Tue, 30 Mar 2021 01:01:52 GMT" ], "Expires": [ "-1" @@ -1118,16 +1109,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a4c37762-d4c8-4bf9-8475-027c1c63d869?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hNGMzNzc2Mi1kNGM4LTRiZjktODQ3NS0wMjdjMWM2M2Q4Njk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/d8eda5ed-05eb-4a0a-a15b-5095642ddbbf?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9kOGVkYTVlZC0wNWViLTRhMGEtYTE1Yi01MDk1NjQyZGRiYmY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1138,35 +1129,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4179" + "Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4157" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "64620ed1-0be8-484c-8412-f7940405b5da" + "9b129d34-e176-41b4-b75d-ed4a110046fc" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11990" ], "x-ms-correlation-request-id": [ - "c83a389d-e40b-4eb7-a626-6f3244e5969d" + "a990651b-04fc-4ce3-8219-cfd828e71760" ], "x-ms-routing-request-id": [ - "WESTUS:20201023T000600Z:c83a389d-e40b-4eb7-a626-6f3244e5969d" + "WESTUS:20210330T010222Z:a990651b-04fc-4ce3-8219-cfd828e71760" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 00:05:59 GMT" + "Tue, 30 Mar 2021 01:02:22 GMT" ], "Content-Length": [ "184" @@ -1178,20 +1169,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T17:05:29.7231711-07:00\",\r\n \"endTime\": \"2020-10-22T17:05:29.8325421-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a4c37762-d4c8-4bf9-8475-027c1c63d869\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T18:01:52.7212346-07:00\",\r\n \"endTime\": \"2021-03-29T18:01:52.8462436-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d8eda5ed-05eb-4a0a-a15b-5095642ddbbf\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a4c37762-d4c8-4bf9-8475-027c1c63d869?monitor=true&api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hNGMzNzc2Mi1kNGM4LTRiZjktODQ3NS0wMjdjMWM2M2Q4Njk/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/d8eda5ed-05eb-4a0a-a15b-5095642ddbbf?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9kOGVkYTVlZC0wNWViLTRhMGEtYTE1Yi01MDk1NjQyZGRiYmY/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1202,35 +1193,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4178" + "Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4156" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "a671553f-8799-453b-8792-68a742dc378d" + "40ebfb8f-e99a-4c7c-989f-97e1e45b57c6" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11989" ], "x-ms-correlation-request-id": [ - "aa2b0eae-54bc-4f33-96a2-39a27af679fa" + "97c47cbf-1562-41de-8f84-4bb5bc48e131" ], "x-ms-routing-request-id": [ - "WESTUS:20201023T000600Z:aa2b0eae-54bc-4f33-96a2-39a27af679fa" + "WESTUS:20210330T010223Z:97c47cbf-1562-41de-8f84-4bb5bc48e131" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 00:05:59 GMT" + "Tue, 30 Mar 2021 01:02:23 GMT" ], "Expires": [ "-1" @@ -1243,22 +1234,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg6640New/providers/Microsoft.Compute/galleries/galleryPsTestGallery8544New?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzY2NDBOZXcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1NDROZXc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3658New/providers/Microsoft.Compute/galleries/galleryPsTestGallery1299New?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NThOZXcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTEyOTlOZXc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "72cfd543-6580-43d7-9b78-8242fca2e206" + "f029e0c0-74e5-43cc-b957-bb7db6637d25" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1269,22 +1260,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/9b68aa61-0523-4596-8ef2-cea5913627af?monitor=true&api-version=2020-09-30" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/be80655e-9c41-4c2f-8a34-8731e27659f8?monitor=true&api-version=2020-09-30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/9b68aa61-0523-4596-8ef2-cea5913627af?api-version=2020-09-30" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/be80655e-9c41-4c2f-8a34-8731e27659f8?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/DeleteGallery3Min;48,Microsoft.Compute/DeleteGallery30Min;297" + "Microsoft.Compute/DeleteGallery3Min;47,Microsoft.Compute/DeleteGallery30Min;897" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "9b68aa61-0523-4596-8ef2-cea5913627af" + "be80655e-9c41-4c2f-8a34-8731e27659f8" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1294,16 +1285,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "190ba0ef-3013-4799-ba29-4fbe9f47e563" + "57413bf0-aaa7-423b-9765-4047c83ac1d0" ], "x-ms-routing-request-id": [ - "WESTUS:20201023T000600Z:190ba0ef-3013-4799-ba29-4fbe9f47e563" + "WESTUS:20210330T010223Z:57413bf0-aaa7-423b-9765-4047c83ac1d0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 00:06:00 GMT" + "Tue, 30 Mar 2021 01:02:23 GMT" ], "Expires": [ "-1" @@ -1316,16 +1307,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/9b68aa61-0523-4596-8ef2-cea5913627af?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy85YjY4YWE2MS0wNTIzLTQ1OTYtOGVmMi1jZWE1OTEzNjI3YWY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/be80655e-9c41-4c2f-8a34-8731e27659f8?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iZTgwNjU1ZS05YzQxLTRjMmYtOGEzNC04NzMxZTI3NjU5Zjg/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1336,38 +1327,38 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4176" + "Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4154" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "12f8a94c-3522-426c-b424-538457fe26c4" + "05e32e41-ba21-41a1-8531-fa993dd9a1a4" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11988" ], "x-ms-correlation-request-id": [ - "ec36010a-4fba-424e-9979-5c13c54e02c1" + "8c1949c8-c7a4-44e8-9c32-bde239ba9dd7" ], "x-ms-routing-request-id": [ - "WESTUS:20201023T000630Z:ec36010a-4fba-424e-9979-5c13c54e02c1" + "WESTUS:20210330T010253Z:8c1949c8-c7a4-44e8-9c32-bde239ba9dd7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 00:06:30 GMT" + "Tue, 30 Mar 2021 01:02:53 GMT" ], "Content-Length": [ - "184" + "183" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1376,20 +1367,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-10-22T17:06:00.6606963-07:00\",\r\n \"endTime\": \"2020-10-22T17:06:00.7544529-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9b68aa61-0523-4596-8ef2-cea5913627af\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T18:02:23.332131-07:00\",\r\n \"endTime\": \"2021-03-29T18:02:23.4571399-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"be80655e-9c41-4c2f-8a34-8731e27659f8\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/9b68aa61-0523-4596-8ef2-cea5913627af?monitor=true&api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy85YjY4YWE2MS0wNTIzLTQ1OTYtOGVmMi1jZWE1OTEzNjI3YWY/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/be80655e-9c41-4c2f-8a34-8731e27659f8?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iZTgwNjU1ZS05YzQxLTRjMmYtOGEzNC04NzMxZTI3NjU5Zjg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29220.03", + "FxVersion/4.6.29812.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1400,35 +1391,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4175" + "Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4153" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875,1dd04696-ef54-4aec-bada-944b3b397491_132477024073565875" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "6ce2c8f9-95ee-496d-b5d1-70c295b0e4d7" + "6f5ba58a-e23f-47ef-90c7-87c09b915b30" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11987" ], "x-ms-correlation-request-id": [ - "a2e51954-b5d9-44b4-b42d-5bf0a10de600" + "1d846107-8c9d-4b04-b23e-8a497fe2408e" ], "x-ms-routing-request-id": [ - "WESTUS:20201023T000630Z:a2e51954-b5d9-44b4-b42d-5bf0a10de600" + "WESTUS:20210330T010253Z:1d846107-8c9d-4b04-b23e-8a497fe2408e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Oct 2020 00:06:30 GMT" + "Tue, 30 Mar 2021 01:02:53 GMT" ], "Expires": [ "-1" @@ -1443,11 +1434,11 @@ ], "Names": { "Gallery_CRUD_Tests": [ - "galleryPsTestRg6640", - "galleryPsTestGallery8544" + "galleryPsTestRg3658", + "galleryPsTestGallery1299" ] }, "Variables": { - "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871" + "SubscriptionId": "97f78232-382b-46a7-8a72-964d692c4f3f" } } \ No newline at end of file From f7e3bb1398ddb6e0c30c8256b21adcbe5820766c Mon Sep 17 00:00:00 2001 From: Theodore Chang Date: Wed, 14 Apr 2021 18:13:08 -0400 Subject: [PATCH 17/27] Cplat gallery build (#20407) * Creating nuget package for blob as source (#20127) * save the auto-generation work * add gallery application version update auto-generation * nit, add new line * update record json * update record json and add new tests for caps gallery with sharing profile and shared gallery * save work for gallery with sharing profile, caps side test * update blob as source code * uncheck shared gallery test which can not run right now * save * save * add shared gallery tests * generate files again * Revert "generate files again" This reverts commit 051be5469e1ceece14c9bd386de7a54607ce05c2. * update gallery * revert unnecessary change * update examples * Update Microsoft.Azure.Management.Compute.csproj Co-authored-by: kangsun-ctrl <69279251+kangsun-ctrl@users.noreply.github.com> --- .../src/Generated/ComputeManagementClient.cs | 24 + .../src/Generated/GalleriesOperations.cs | 23 +- .../GalleriesOperationsExtensions.cs | 16 +- .../GalleryApplicationVersionsOperations.cs | 10 +- .../GalleryApplicationsOperations.cs | 10 +- .../GalleryImageVersionsOperations.cs | 64 +- ...alleryImageVersionsOperationsExtensions.cs | 108 +- .../src/Generated/GalleryImagesOperations.cs | 38 +- .../GalleryImagesOperationsExtensions.cs | 56 +- .../GallerySharingProfileOperations.cs | 309 ++ ...llerySharingProfileOperationsExtensions.cs | 117 + .../src/Generated/IComputeManagementClient.cs | 19 + .../src/Generated/IGalleriesOperations.cs | 6 +- .../IGalleryImageVersionsOperations.cs | 54 +- .../src/Generated/IGalleryImagesOperations.cs | 28 +- .../IGallerySharingProfileOperations.cs | 83 + .../Generated/ISharedGalleriesOperations.cs | 100 + .../ISharedGalleryImageVersionsOperations.cs | 118 + .../ISharedGalleryImagesOperations.cs | 107 + .../src/Generated/Models/Gallery.cs | 8 +- ...leryApplicationVersionPublishingProfile.cs | 4 +- .../GalleryArtifactPublishingProfileBase.cs | 8 +- .../Models/GalleryArtifactVersionSource.cs | 18 +- .../src/Generated/Models/GalleryImage.cs | 32 +- .../Generated/Models/GalleryImageFeature.cs | 59 + .../Models/GalleryImageIdentifier.cs | 14 +- .../Generated/Models/GalleryImageUpdate.cs | 32 +- .../Generated/Models/GalleryImageVersion.cs | 6 +- .../GalleryImageVersionPublishingProfile.cs | 6 +- .../Models/GalleryImageVersionUpdate.cs | 6 +- .../Models/GallerySharingPermissionTypes.cs | 22 + .../src/Generated/Models/GalleryUpdate.cs | 8 +- .../src/Generated/Models/ImagePurchasePlan.cs | 2 +- .../src/Generated/Models/PirResource.cs | 59 + .../Models/PirSharedGalleryResource.cs | 58 + .../Models/RegionalReplicationStatus.cs | 4 +- .../src/Generated/Models/ReplicationStatus.cs | 2 +- .../src/Generated/Models/SelectPermissions.cs | 21 + .../src/Generated/Models/SharedGallery.cs | 48 + .../Generated/Models/SharedGalleryImage.cs | 157 + .../Models/SharedGalleryImageVersion.cs | 76 + .../src/Generated/Models/SharedToValues.cs | 21 + .../src/Generated/Models/SharingProfile.cs | 68 + .../Generated/Models/SharingProfileGroup.cs | 71 + .../Models/SharingProfileGroupTypes.cs | 22 + .../src/Generated/Models/SharingUpdate.cs | 85 + .../Models/SharingUpdateOperationTypes.cs | 23 + .../Generated/SharedGalleriesOperations.cs | 615 ++++ .../SharedGalleriesOperationsExtensions.cs | 141 + .../SharedGalleryImageVersionsOperations.cs | 656 ++++ ...alleryImageVersionsOperationsExtensions.cs | 175 + .../SharedGalleryImagesOperations.cs | 634 ++++ ...SharedGalleryImagesOperationsExtensions.cs | 155 + .../Microsoft.Azure.Management.Compute.csproj | 10 +- .../tests/ScenarioTests/GalleryTests.cs | 119 + .../tests/ScenarioTests/SharedGalleryTests.cs | 185 ++ .../GalleryApplicationVersion_CRUD_Tests.json | 990 +++--- .../GalleryApplication_CRUD_Tests.json | 336 +- .../GalleryImageVersion_CRUD_Tests.json | 2954 +++++++---------- .../GalleryTests/GalleryImage_CRUD_Tests.json | 662 ++-- .../GalleryTests/Gallery_CRUD_Tests.json | 545 +-- ...Gallery_WithSharingProfile_CRUD_Tests.json | 1032 ++++++ ...dGalleryImageVersion_GetAndList_Tests.json | 276 ++ .../SharedGalleryImage_GetAndList_Tests.json | 276 ++ .../SharedGallery_GetAndList_Tests.json | 276 ++ 65 files changed, 8971 insertions(+), 3296 deletions(-) create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GallerySharingProfileOperations.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GallerySharingProfileOperationsExtensions.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IGallerySharingProfileOperations.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ISharedGalleriesOperations.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ISharedGalleryImageVersionsOperations.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ISharedGalleryImagesOperations.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageFeature.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GallerySharingPermissionTypes.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PirResource.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PirSharedGalleryResource.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SelectPermissions.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGallery.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGalleryImage.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGalleryImageVersion.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedToValues.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingProfile.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingProfileGroup.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingProfileGroupTypes.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingUpdate.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingUpdateOperationTypes.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleriesOperations.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleriesOperationsExtensions.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleryImageVersionsOperations.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleryImageVersionsOperationsExtensions.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleryImagesOperations.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleryImagesOperationsExtensions.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/SharedGalleryTests.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_WithSharingProfile_CRUD_Tests.json create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/SharedGalleryTests/SharedGalleryImageVersion_GetAndList_Tests.json create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/SharedGalleryTests/SharedGalleryImage_GetAndList_Tests.json create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/SharedGalleryTests/SharedGallery_GetAndList_Tests.json diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ComputeManagementClient.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ComputeManagementClient.cs index 572e439590d2..0f1831c42403 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ComputeManagementClient.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ComputeManagementClient.cs @@ -237,6 +237,25 @@ public partial class ComputeManagementClient : ServiceClient + /// Gets the IGallerySharingProfileOperations. + /// + public virtual IGallerySharingProfileOperations GallerySharingProfile { get; private set; } + + /// + /// Gets the ISharedGalleriesOperations. + /// + public virtual ISharedGalleriesOperations SharedGalleries { get; private set; } + + /// + /// Gets the ISharedGalleryImagesOperations. + /// + public virtual ISharedGalleryImagesOperations SharedGalleryImages { get; private set; } + + /// + /// Gets the ISharedGalleryImageVersionsOperations. + /// + public virtual ISharedGalleryImageVersionsOperations SharedGalleryImageVersions { get; private set; } + /// Gets the ICloudServiceRoleInstancesOperations. /// public virtual ICloudServiceRoleInstancesOperations CloudServiceRoleInstances { get; private set; } @@ -535,11 +554,16 @@ private void Initialize() GalleryImageVersions = new GalleryImageVersionsOperations(this); GalleryApplications = new GalleryApplicationsOperations(this); GalleryApplicationVersions = new GalleryApplicationVersionsOperations(this); + GallerySharingProfile = new GallerySharingProfileOperations(this); + SharedGalleries = new SharedGalleriesOperations(this); + SharedGalleryImages = new SharedGalleryImagesOperations(this); + SharedGalleryImageVersions = new SharedGalleryImageVersionsOperations(this); CloudServiceRoleInstances = new CloudServiceRoleInstancesOperations(this); CloudServiceRoles = new CloudServiceRolesOperations(this); CloudServices = new CloudServicesOperations(this); CloudServicesUpdateDomain = new CloudServicesUpdateDomainOperations(this); CloudServiceOperatingSystems = new CloudServiceOperatingSystemsOperations(this); + BaseUri = new System.Uri("https://management.azure.com"); AcceptLanguage = "en-US"; LongRunningOperationRetryTimeout = 30; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleriesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleriesOperations.cs index 26c248d669a7..cd1041750010 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleriesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleriesOperations.cs @@ -113,6 +113,10 @@ internal GalleriesOperations(ComputeManagementClient client) /// /// The name of the Shared Image Gallery. /// + /// + /// The select expression to apply on the operation. Possible values include: + /// 'Permissions' + /// /// /// Headers that will be added to request. /// @@ -134,7 +138,7 @@ internal GalleriesOperations(ComputeManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName, string select = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -148,7 +152,7 @@ internal GalleriesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -159,6 +163,7 @@ internal GalleriesOperations(ComputeManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("galleryName", galleryName); tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("select", select); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } @@ -173,6 +178,10 @@ internal GalleriesOperations(ComputeManagementClient client) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } + if (select != null) + { + _queryParameters.Add(string.Format("$select={0}", System.Uri.EscapeDataString(select))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -357,7 +366,7 @@ internal GalleriesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -535,7 +544,7 @@ internal GalleriesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -738,7 +747,7 @@ internal GalleriesOperations(ComputeManagementClient client) { gallery.Validate(); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -984,7 +993,7 @@ internal GalleriesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "gallery"); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1182,7 +1191,7 @@ internal GalleriesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleriesOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleriesOperationsExtensions.cs index 200ecf5072b8..d5c55ace52ec 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleriesOperationsExtensions.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleriesOperationsExtensions.cs @@ -133,9 +133,13 @@ public static Gallery Update(this IGalleriesOperations operations, string resour /// /// The name of the Shared Image Gallery. /// - public static Gallery Get(this IGalleriesOperations operations, string resourceGroupName, string galleryName) + /// + /// The select expression to apply on the operation. Possible values include: + /// 'Permissions' + /// + public static Gallery Get(this IGalleriesOperations operations, string resourceGroupName, string galleryName, string select = default(string)) { - return operations.GetAsync(resourceGroupName, galleryName).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, galleryName, select).GetAwaiter().GetResult(); } /// @@ -150,12 +154,16 @@ public static Gallery Get(this IGalleriesOperations operations, string resourceG /// /// The name of the Shared Image Gallery. /// + /// + /// The select expression to apply on the operation. Possible values include: + /// 'Permissions' + /// /// /// The cancellation token. /// - public static async Task GetAsync(this IGalleriesOperations operations, string resourceGroupName, string galleryName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IGalleriesOperations operations, string resourceGroupName, string galleryName, string select = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, galleryName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, galleryName, select, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryApplicationVersionsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryApplicationVersionsOperations.cs index 5ee6cdad2a4f..7fee20b39f3c 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryApplicationVersionsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryApplicationVersionsOperations.cs @@ -187,7 +187,7 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryApplicationVersionName"); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -429,7 +429,7 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryApplicationName"); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -656,7 +656,7 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) { galleryApplicationVersion.Validate(); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -923,7 +923,7 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryApplicationVersion"); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1141,7 +1141,7 @@ internal GalleryApplicationVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryApplicationVersionName"); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryApplicationsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryApplicationsOperations.cs index 1d36b379d0e5..ee8bf60a5e4e 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryApplicationsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryApplicationsOperations.cs @@ -164,7 +164,7 @@ internal GalleryApplicationsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryApplicationName"); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -387,7 +387,7 @@ internal GalleryApplicationsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -602,7 +602,7 @@ internal GalleryApplicationsOperations(ComputeManagementClient client) { galleryApplication.Validate(); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -858,7 +858,7 @@ internal GalleryApplicationsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryApplication"); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1066,7 +1066,7 @@ internal GalleryApplicationsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryApplicationName"); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImageVersionsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImageVersionsOperations.cs index 69cb3fd8df8c..112a66063ee3 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImageVersionsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImageVersionsOperations.cs @@ -51,7 +51,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) public ComputeManagementClient Client { get; private set; } /// - /// Create or update a gallery Image Version. + /// Create or update a gallery image version. /// /// /// The name of the resource group. @@ -60,17 +60,17 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) /// The name of the Shared Image Gallery in which the Image Definition resides. /// /// - /// The name of the gallery Image Definition in which the Image Version is to + /// The name of the gallery image definition in which the Image Version is to /// be created. /// /// - /// The name of the gallery Image Version to be created. Needs to follow + /// The name of the gallery image version to be created. Needs to follow /// semantic version name pattern: The allowed characters are digit and period. /// Digits must be within the range of a 32-bit integer. Format: /// <MajorVersion>.<MinorVersion>.<Patch> /// /// - /// Parameters supplied to the create or update gallery Image Version + /// Parameters supplied to the create or update gallery image version /// operation. /// /// @@ -87,7 +87,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) } /// - /// Update a gallery Image Version. + /// Update a gallery image version. /// /// /// The name of the resource group. @@ -96,17 +96,17 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) /// The name of the Shared Image Gallery in which the Image Definition resides. /// /// - /// The name of the gallery Image Definition in which the Image Version is to + /// The name of the gallery image definition in which the Image Version is to /// be updated. /// /// - /// The name of the gallery Image Version to be updated. Needs to follow + /// The name of the gallery image version to be updated. Needs to follow /// semantic version name pattern: The allowed characters are digit and period. /// Digits must be within the range of a 32-bit integer. Format: /// <MajorVersion>.<MinorVersion>.<Patch> /// /// - /// Parameters supplied to the update gallery Image Version operation. + /// Parameters supplied to the update gallery image version operation. /// /// /// The headers that will be added to request. @@ -122,7 +122,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) } /// - /// Retrieves information about a gallery Image Version. + /// Retrieves information about a gallery image version. /// /// /// The name of the resource group. @@ -131,11 +131,11 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) /// The name of the Shared Image Gallery in which the Image Definition resides. /// /// - /// The name of the gallery Image Definition in which the Image Version + /// The name of the gallery image definition in which the Image Version /// resides. /// /// - /// The name of the gallery Image Version to be retrieved. + /// The name of the gallery image version to be retrieved. /// /// /// The expand expression to apply on the operation. Possible values include: @@ -184,7 +184,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageVersionName"); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -344,7 +344,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) } /// - /// Delete a gallery Image Version. + /// Delete a gallery image version. /// /// /// The name of the resource group. @@ -353,11 +353,11 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) /// The name of the Shared Image Gallery in which the Image Definition resides. /// /// - /// The name of the gallery Image Definition in which the Image Version + /// The name of the gallery image definition in which the Image Version /// resides. /// /// - /// The name of the gallery Image Version to be deleted. + /// The name of the gallery image version to be deleted. /// /// /// The headers that will be added to request. @@ -373,7 +373,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) } /// - /// List gallery Image Versions in a gallery Image Definition. + /// List gallery image versions in a gallery image definition. /// /// /// The name of the resource group. @@ -424,7 +424,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageName"); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -577,7 +577,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) } /// - /// Create or update a gallery Image Version. + /// Create or update a gallery image version. /// /// /// The name of the resource group. @@ -586,17 +586,17 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) /// The name of the Shared Image Gallery in which the Image Definition resides. /// /// - /// The name of the gallery Image Definition in which the Image Version is to + /// The name of the gallery image definition in which the Image Version is to /// be created. /// /// - /// The name of the gallery Image Version to be created. Needs to follow + /// The name of the gallery image version to be created. Needs to follow /// semantic version name pattern: The allowed characters are digit and period. /// Digits must be within the range of a 32-bit integer. Format: /// <MajorVersion>.<MinorVersion>.<Patch> /// /// - /// Parameters supplied to the create or update gallery Image Version + /// Parameters supplied to the create or update gallery image version /// operation. /// /// @@ -650,7 +650,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) { galleryImageVersion.Validate(); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -848,7 +848,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) } /// - /// Update a gallery Image Version. + /// Update a gallery image version. /// /// /// The name of the resource group. @@ -857,17 +857,17 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) /// The name of the Shared Image Gallery in which the Image Definition resides. /// /// - /// The name of the gallery Image Definition in which the Image Version is to + /// The name of the gallery image definition in which the Image Version is to /// be updated. /// /// - /// The name of the gallery Image Version to be updated. Needs to follow + /// The name of the gallery image version to be updated. Needs to follow /// semantic version name pattern: The allowed characters are digit and period. /// Digits must be within the range of a 32-bit integer. Format: /// <MajorVersion>.<MinorVersion>.<Patch> /// /// - /// Parameters supplied to the update gallery Image Version operation. + /// Parameters supplied to the update gallery image version operation. /// /// /// Headers that will be added to request. @@ -916,7 +916,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageVersion"); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1078,7 +1078,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) } /// - /// Delete a gallery Image Version. + /// Delete a gallery image version. /// /// /// The name of the resource group. @@ -1087,11 +1087,11 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) /// The name of the Shared Image Gallery in which the Image Definition resides. /// /// - /// The name of the gallery Image Definition in which the Image Version + /// The name of the gallery image definition in which the Image Version /// resides. /// /// - /// The name of the gallery Image Version to be deleted. + /// The name of the gallery image version to be deleted. /// /// /// Headers that will be added to request. @@ -1133,7 +1133,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageVersionName"); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1270,7 +1270,7 @@ internal GalleryImageVersionsOperations(ComputeManagementClient client) } /// - /// List gallery Image Versions in a gallery Image Definition. + /// List gallery image versions in a gallery image definition. /// /// /// The NextLink from the previous successful call to List operation. diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImageVersionsOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImageVersionsOperationsExtensions.cs index 7b915d62dfdf..f77ed912503e 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImageVersionsOperationsExtensions.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImageVersionsOperationsExtensions.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Management.Compute public static partial class GalleryImageVersionsOperationsExtensions { /// - /// Create or update a gallery Image Version. + /// Create or update a gallery image version. /// /// /// The operations group for this extension method. @@ -34,17 +34,17 @@ public static partial class GalleryImageVersionsOperationsExtensions /// The name of the Shared Image Gallery in which the Image Definition resides. /// /// - /// The name of the gallery Image Definition in which the Image Version is to + /// The name of the gallery image definition in which the Image Version is to /// be created. /// /// - /// The name of the gallery Image Version to be created. Needs to follow + /// The name of the gallery image version to be created. Needs to follow /// semantic version name pattern: The allowed characters are digit and period. /// Digits must be within the range of a 32-bit integer. Format: /// <MajorVersion>.<MinorVersion>.<Patch> /// /// - /// Parameters supplied to the create or update gallery Image Version + /// Parameters supplied to the create or update gallery image version /// operation. /// public static GalleryImageVersion CreateOrUpdate(this IGalleryImageVersionsOperations operations, string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, GalleryImageVersion galleryImageVersion) @@ -53,7 +53,7 @@ public static GalleryImageVersion CreateOrUpdate(this IGalleryImageVersionsOpera } /// - /// Create or update a gallery Image Version. + /// Create or update a gallery image version. /// /// /// The operations group for this extension method. @@ -65,17 +65,17 @@ public static GalleryImageVersion CreateOrUpdate(this IGalleryImageVersionsOpera /// The name of the Shared Image Gallery in which the Image Definition resides. /// /// - /// The name of the gallery Image Definition in which the Image Version is to + /// The name of the gallery image definition in which the Image Version is to /// be created. /// /// - /// The name of the gallery Image Version to be created. Needs to follow + /// The name of the gallery image version to be created. Needs to follow /// semantic version name pattern: The allowed characters are digit and period. /// Digits must be within the range of a 32-bit integer. Format: /// <MajorVersion>.<MinorVersion>.<Patch> /// /// - /// Parameters supplied to the create or update gallery Image Version + /// Parameters supplied to the create or update gallery image version /// operation. /// /// @@ -90,7 +90,7 @@ public static GalleryImageVersion CreateOrUpdate(this IGalleryImageVersionsOpera } /// - /// Update a gallery Image Version. + /// Update a gallery image version. /// /// /// The operations group for this extension method. @@ -102,17 +102,17 @@ public static GalleryImageVersion CreateOrUpdate(this IGalleryImageVersionsOpera /// The name of the Shared Image Gallery in which the Image Definition resides. /// /// - /// The name of the gallery Image Definition in which the Image Version is to + /// The name of the gallery image definition in which the Image Version is to /// be updated. /// /// - /// The name of the gallery Image Version to be updated. Needs to follow + /// The name of the gallery image version to be updated. Needs to follow /// semantic version name pattern: The allowed characters are digit and period. /// Digits must be within the range of a 32-bit integer. Format: /// <MajorVersion>.<MinorVersion>.<Patch> /// /// - /// Parameters supplied to the update gallery Image Version operation. + /// Parameters supplied to the update gallery image version operation. /// public static GalleryImageVersion Update(this IGalleryImageVersionsOperations operations, string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, GalleryImageVersionUpdate galleryImageVersion) { @@ -120,7 +120,7 @@ public static GalleryImageVersion Update(this IGalleryImageVersionsOperations op } /// - /// Update a gallery Image Version. + /// Update a gallery image version. /// /// /// The operations group for this extension method. @@ -132,17 +132,17 @@ public static GalleryImageVersion Update(this IGalleryImageVersionsOperations op /// The name of the Shared Image Gallery in which the Image Definition resides. /// /// - /// The name of the gallery Image Definition in which the Image Version is to + /// The name of the gallery image definition in which the Image Version is to /// be updated. /// /// - /// The name of the gallery Image Version to be updated. Needs to follow + /// The name of the gallery image version to be updated. Needs to follow /// semantic version name pattern: The allowed characters are digit and period. /// Digits must be within the range of a 32-bit integer. Format: /// <MajorVersion>.<MinorVersion>.<Patch> /// /// - /// Parameters supplied to the update gallery Image Version operation. + /// Parameters supplied to the update gallery image version operation. /// /// /// The cancellation token. @@ -156,7 +156,7 @@ public static GalleryImageVersion Update(this IGalleryImageVersionsOperations op } /// - /// Retrieves information about a gallery Image Version. + /// Retrieves information about a gallery image version. /// /// /// The operations group for this extension method. @@ -168,11 +168,11 @@ public static GalleryImageVersion Update(this IGalleryImageVersionsOperations op /// The name of the Shared Image Gallery in which the Image Definition resides. /// /// - /// The name of the gallery Image Definition in which the Image Version + /// The name of the gallery image definition in which the Image Version /// resides. /// /// - /// The name of the gallery Image Version to be retrieved. + /// The name of the gallery image version to be retrieved. /// /// /// The expand expression to apply on the operation. Possible values include: @@ -184,7 +184,7 @@ public static GalleryImageVersion Update(this IGalleryImageVersionsOperations op } /// - /// Retrieves information about a gallery Image Version. + /// Retrieves information about a gallery image version. /// /// /// The operations group for this extension method. @@ -196,11 +196,11 @@ public static GalleryImageVersion Update(this IGalleryImageVersionsOperations op /// The name of the Shared Image Gallery in which the Image Definition resides. /// /// - /// The name of the gallery Image Definition in which the Image Version + /// The name of the gallery image definition in which the Image Version /// resides. /// /// - /// The name of the gallery Image Version to be retrieved. + /// The name of the gallery image version to be retrieved. /// /// /// The expand expression to apply on the operation. Possible values include: @@ -218,7 +218,7 @@ public static GalleryImageVersion Update(this IGalleryImageVersionsOperations op } /// - /// Delete a gallery Image Version. + /// Delete a gallery image version. /// /// /// The operations group for this extension method. @@ -230,11 +230,11 @@ public static GalleryImageVersion Update(this IGalleryImageVersionsOperations op /// The name of the Shared Image Gallery in which the Image Definition resides. /// /// - /// The name of the gallery Image Definition in which the Image Version + /// The name of the gallery image definition in which the Image Version /// resides. /// /// - /// The name of the gallery Image Version to be deleted. + /// The name of the gallery image version to be deleted. /// public static void Delete(this IGalleryImageVersionsOperations operations, string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName) { @@ -242,7 +242,7 @@ public static void Delete(this IGalleryImageVersionsOperations operations, strin } /// - /// Delete a gallery Image Version. + /// Delete a gallery image version. /// /// /// The operations group for this extension method. @@ -254,11 +254,11 @@ public static void Delete(this IGalleryImageVersionsOperations operations, strin /// The name of the Shared Image Gallery in which the Image Definition resides. /// /// - /// The name of the gallery Image Definition in which the Image Version + /// The name of the gallery image definition in which the Image Version /// resides. /// /// - /// The name of the gallery Image Version to be deleted. + /// The name of the gallery image version to be deleted. /// /// /// The cancellation token. @@ -269,7 +269,7 @@ public static void Delete(this IGalleryImageVersionsOperations operations, strin } /// - /// List gallery Image Versions in a gallery Image Definition. + /// List gallery image versions in a gallery image definition. /// /// /// The operations group for this extension method. @@ -290,7 +290,7 @@ public static IPage ListByGalleryImage(this IGalleryImageVe } /// - /// List gallery Image Versions in a gallery Image Definition. + /// List gallery image versions in a gallery image definition. /// /// /// The operations group for this extension method. @@ -317,7 +317,7 @@ public static IPage ListByGalleryImage(this IGalleryImageVe } /// - /// Create or update a gallery Image Version. + /// Create or update a gallery image version. /// /// /// The operations group for this extension method. @@ -329,17 +329,17 @@ public static IPage ListByGalleryImage(this IGalleryImageVe /// The name of the Shared Image Gallery in which the Image Definition resides. /// /// - /// The name of the gallery Image Definition in which the Image Version is to + /// The name of the gallery image definition in which the Image Version is to /// be created. /// /// - /// The name of the gallery Image Version to be created. Needs to follow + /// The name of the gallery image version to be created. Needs to follow /// semantic version name pattern: The allowed characters are digit and period. /// Digits must be within the range of a 32-bit integer. Format: /// <MajorVersion>.<MinorVersion>.<Patch> /// /// - /// Parameters supplied to the create or update gallery Image Version + /// Parameters supplied to the create or update gallery image version /// operation. /// public static GalleryImageVersion BeginCreateOrUpdate(this IGalleryImageVersionsOperations operations, string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, GalleryImageVersion galleryImageVersion) @@ -348,7 +348,7 @@ public static GalleryImageVersion BeginCreateOrUpdate(this IGalleryImageVersions } /// - /// Create or update a gallery Image Version. + /// Create or update a gallery image version. /// /// /// The operations group for this extension method. @@ -360,17 +360,17 @@ public static GalleryImageVersion BeginCreateOrUpdate(this IGalleryImageVersions /// The name of the Shared Image Gallery in which the Image Definition resides. /// /// - /// The name of the gallery Image Definition in which the Image Version is to + /// The name of the gallery image definition in which the Image Version is to /// be created. /// /// - /// The name of the gallery Image Version to be created. Needs to follow + /// The name of the gallery image version to be created. Needs to follow /// semantic version name pattern: The allowed characters are digit and period. /// Digits must be within the range of a 32-bit integer. Format: /// <MajorVersion>.<MinorVersion>.<Patch> /// /// - /// Parameters supplied to the create or update gallery Image Version + /// Parameters supplied to the create or update gallery image version /// operation. /// /// @@ -385,7 +385,7 @@ public static GalleryImageVersion BeginCreateOrUpdate(this IGalleryImageVersions } /// - /// Update a gallery Image Version. + /// Update a gallery image version. /// /// /// The operations group for this extension method. @@ -397,17 +397,17 @@ public static GalleryImageVersion BeginCreateOrUpdate(this IGalleryImageVersions /// The name of the Shared Image Gallery in which the Image Definition resides. /// /// - /// The name of the gallery Image Definition in which the Image Version is to + /// The name of the gallery image definition in which the Image Version is to /// be updated. /// /// - /// The name of the gallery Image Version to be updated. Needs to follow + /// The name of the gallery image version to be updated. Needs to follow /// semantic version name pattern: The allowed characters are digit and period. /// Digits must be within the range of a 32-bit integer. Format: /// <MajorVersion>.<MinorVersion>.<Patch> /// /// - /// Parameters supplied to the update gallery Image Version operation. + /// Parameters supplied to the update gallery image version operation. /// public static GalleryImageVersion BeginUpdate(this IGalleryImageVersionsOperations operations, string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, GalleryImageVersionUpdate galleryImageVersion) { @@ -415,7 +415,7 @@ public static GalleryImageVersion BeginUpdate(this IGalleryImageVersionsOperatio } /// - /// Update a gallery Image Version. + /// Update a gallery image version. /// /// /// The operations group for this extension method. @@ -427,17 +427,17 @@ public static GalleryImageVersion BeginUpdate(this IGalleryImageVersionsOperatio /// The name of the Shared Image Gallery in which the Image Definition resides. /// /// - /// The name of the gallery Image Definition in which the Image Version is to + /// The name of the gallery image definition in which the Image Version is to /// be updated. /// /// - /// The name of the gallery Image Version to be updated. Needs to follow + /// The name of the gallery image version to be updated. Needs to follow /// semantic version name pattern: The allowed characters are digit and period. /// Digits must be within the range of a 32-bit integer. Format: /// <MajorVersion>.<MinorVersion>.<Patch> /// /// - /// Parameters supplied to the update gallery Image Version operation. + /// Parameters supplied to the update gallery image version operation. /// /// /// The cancellation token. @@ -451,7 +451,7 @@ public static GalleryImageVersion BeginUpdate(this IGalleryImageVersionsOperatio } /// - /// Delete a gallery Image Version. + /// Delete a gallery image version. /// /// /// The operations group for this extension method. @@ -463,11 +463,11 @@ public static GalleryImageVersion BeginUpdate(this IGalleryImageVersionsOperatio /// The name of the Shared Image Gallery in which the Image Definition resides. /// /// - /// The name of the gallery Image Definition in which the Image Version + /// The name of the gallery image definition in which the Image Version /// resides. /// /// - /// The name of the gallery Image Version to be deleted. + /// The name of the gallery image version to be deleted. /// public static void BeginDelete(this IGalleryImageVersionsOperations operations, string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName) { @@ -475,7 +475,7 @@ public static void BeginDelete(this IGalleryImageVersionsOperations operations, } /// - /// Delete a gallery Image Version. + /// Delete a gallery image version. /// /// /// The operations group for this extension method. @@ -487,11 +487,11 @@ public static void BeginDelete(this IGalleryImageVersionsOperations operations, /// The name of the Shared Image Gallery in which the Image Definition resides. /// /// - /// The name of the gallery Image Definition in which the Image Version + /// The name of the gallery image definition in which the Image Version /// resides. /// /// - /// The name of the gallery Image Version to be deleted. + /// The name of the gallery image version to be deleted. /// /// /// The cancellation token. @@ -502,7 +502,7 @@ public static void BeginDelete(this IGalleryImageVersionsOperations operations, } /// - /// List gallery Image Versions in a gallery Image Definition. + /// List gallery image versions in a gallery image definition. /// /// /// The operations group for this extension method. @@ -516,7 +516,7 @@ public static IPage ListByGalleryImageNext(this IGalleryIma } /// - /// List gallery Image Versions in a gallery Image Definition. + /// List gallery image versions in a gallery image definition. /// /// /// The operations group for this extension method. 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 f9021f2d57a9..02f11b8fd7ac 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImagesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImagesOperations.cs @@ -51,7 +51,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) public ComputeManagementClient Client { get; private set; } /// - /// Create or update a gallery Image Definition. + /// Create or update a gallery image definition. /// /// /// The name of the resource group. @@ -61,7 +61,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) /// created. /// /// - /// The name of the gallery Image Definition to be created or updated. The + /// The name of the gallery image definition to be created or updated. The /// allowed characters are alphabets and numbers with dots, dashes, and periods /// allowed in the middle. The maximum length is 80 characters. /// @@ -82,7 +82,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) } /// - /// Update a gallery Image Definition. + /// Update a gallery image definition. /// /// /// The name of the resource group. @@ -92,7 +92,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) /// updated. /// /// - /// The name of the gallery Image Definition to be updated. The allowed + /// The name of the gallery image definition to be updated. The allowed /// characters are alphabets and numbers with dots, dashes, and periods allowed /// in the middle. The maximum length is 80 characters. /// @@ -113,7 +113,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) } /// - /// Retrieves information about a gallery Image Definition. + /// Retrieves information about a gallery image definition. /// /// /// The name of the resource group. @@ -123,7 +123,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) /// to be retrieved. /// /// - /// The name of the gallery Image Definition to be retrieved. + /// The name of the gallery image definition to be retrieved. /// /// /// Headers that will be added to request. @@ -164,7 +164,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageName"); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -327,7 +327,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) /// deleted. /// /// - /// The name of the gallery Image Definition to be deleted. + /// The name of the gallery image definition to be deleted. /// /// /// The headers that will be added to request. @@ -343,7 +343,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) } /// - /// List gallery Image Definitions in a gallery. + /// List gallery image definitions in a gallery. /// /// /// The name of the resource group. @@ -387,7 +387,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryName"); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -538,7 +538,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) } /// - /// Create or update a gallery Image Definition. + /// Create or update a gallery image definition. /// /// /// The name of the resource group. @@ -548,7 +548,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) /// created. /// /// - /// The name of the gallery Image Definition to be created or updated. The + /// The name of the gallery image definition to be created or updated. The /// allowed characters are alphabets and numbers with dots, dashes, and periods /// allowed in the middle. The maximum length is 80 characters. /// @@ -602,7 +602,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) { galleryImage.Validate(); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -798,7 +798,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) } /// - /// Update a gallery Image Definition. + /// Update a gallery image definition. /// /// /// The name of the resource group. @@ -808,7 +808,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) /// updated. /// /// - /// The name of the gallery Image Definition to be updated. The allowed + /// The name of the gallery image definition to be updated. The allowed /// characters are alphabets and numbers with dots, dashes, and periods allowed /// in the middle. The maximum length is 80 characters. /// @@ -858,7 +858,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryImage"); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1028,7 +1028,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) /// deleted. /// /// - /// The name of the gallery Image Definition to be deleted. + /// The name of the gallery image definition to be deleted. /// /// /// Headers that will be added to request. @@ -1066,7 +1066,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageName"); } - string apiVersion = "2019-12-01"; + string apiVersion = "2020-09-30"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1201,7 +1201,7 @@ internal GalleryImagesOperations(ComputeManagementClient client) } /// - /// List gallery Image Definitions in a gallery. + /// List gallery image definitions in a gallery. /// /// /// The NextLink from the previous successful call to List operation. 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 0f2a873723dd..578c096bffa6 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImagesOperationsExtensions.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GalleryImagesOperationsExtensions.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Management.Compute public static partial class GalleryImagesOperationsExtensions { /// - /// Create or update a gallery Image Definition. + /// Create or update a gallery image definition. /// /// /// The operations group for this extension method. @@ -35,7 +35,7 @@ public static partial class GalleryImagesOperationsExtensions /// created. /// /// - /// The name of the gallery Image Definition to be created or updated. The + /// The name of the gallery image definition to be created or updated. The /// allowed characters are alphabets and numbers with dots, dashes, and periods /// allowed in the middle. The maximum length is 80 characters. /// @@ -48,7 +48,7 @@ public static GalleryImage CreateOrUpdate(this IGalleryImagesOperations operatio } /// - /// Create or update a gallery Image Definition. + /// Create or update a gallery image definition. /// /// /// The operations group for this extension method. @@ -61,7 +61,7 @@ public static GalleryImage CreateOrUpdate(this IGalleryImagesOperations operatio /// created. /// /// - /// The name of the gallery Image Definition to be created or updated. The + /// The name of the gallery image definition to be created or updated. The /// allowed characters are alphabets and numbers with dots, dashes, and periods /// allowed in the middle. The maximum length is 80 characters. /// @@ -80,7 +80,7 @@ public static GalleryImage CreateOrUpdate(this IGalleryImagesOperations operatio } /// - /// Update a gallery Image Definition. + /// Update a gallery image definition. /// /// /// The operations group for this extension method. @@ -93,7 +93,7 @@ public static GalleryImage CreateOrUpdate(this IGalleryImagesOperations operatio /// updated. /// /// - /// The name of the gallery Image Definition to be updated. The allowed + /// The name of the gallery image definition to be updated. The allowed /// characters are alphabets and numbers with dots, dashes, and periods allowed /// in the middle. The maximum length is 80 characters. /// @@ -106,7 +106,7 @@ public static GalleryImage Update(this IGalleryImagesOperations operations, stri } /// - /// Update a gallery Image Definition. + /// Update a gallery image definition. /// /// /// The operations group for this extension method. @@ -119,7 +119,7 @@ public static GalleryImage Update(this IGalleryImagesOperations operations, stri /// updated. /// /// - /// The name of the gallery Image Definition to be updated. The allowed + /// The name of the gallery image definition to be updated. The allowed /// characters are alphabets and numbers with dots, dashes, and periods allowed /// in the middle. The maximum length is 80 characters. /// @@ -138,7 +138,7 @@ public static GalleryImage Update(this IGalleryImagesOperations operations, stri } /// - /// Retrieves information about a gallery Image Definition. + /// Retrieves information about a gallery image definition. /// /// /// The operations group for this extension method. @@ -151,7 +151,7 @@ public static GalleryImage Update(this IGalleryImagesOperations operations, stri /// to be retrieved. /// /// - /// The name of the gallery Image Definition to be retrieved. + /// The name of the gallery image definition to be retrieved. /// public static GalleryImage Get(this IGalleryImagesOperations operations, string resourceGroupName, string galleryName, string galleryImageName) { @@ -159,7 +159,7 @@ public static GalleryImage Get(this IGalleryImagesOperations operations, string } /// - /// Retrieves information about a gallery Image Definition. + /// Retrieves information about a gallery image definition. /// /// /// The operations group for this extension method. @@ -172,7 +172,7 @@ public static GalleryImage Get(this IGalleryImagesOperations operations, string /// to be retrieved. /// /// - /// The name of the gallery Image Definition to be retrieved. + /// The name of the gallery image definition to be retrieved. /// /// /// The cancellation token. @@ -199,7 +199,7 @@ public static GalleryImage Get(this IGalleryImagesOperations operations, string /// deleted. /// /// - /// The name of the gallery Image Definition to be deleted. + /// The name of the gallery image definition to be deleted. /// public static void Delete(this IGalleryImagesOperations operations, string resourceGroupName, string galleryName, string galleryImageName) { @@ -220,7 +220,7 @@ public static void Delete(this IGalleryImagesOperations operations, string resou /// deleted. /// /// - /// The name of the gallery Image Definition to be deleted. + /// The name of the gallery image definition to be deleted. /// /// /// The cancellation token. @@ -231,7 +231,7 @@ public static void Delete(this IGalleryImagesOperations operations, string resou } /// - /// List gallery Image Definitions in a gallery. + /// List gallery image definitions in a gallery. /// /// /// The operations group for this extension method. @@ -249,7 +249,7 @@ public static IPage ListByGallery(this IGalleryImagesOperations op } /// - /// List gallery Image Definitions in a gallery. + /// List gallery image definitions in a gallery. /// /// /// The operations group for this extension method. @@ -273,7 +273,7 @@ public static IPage ListByGallery(this IGalleryImagesOperations op } /// - /// Create or update a gallery Image Definition. + /// Create or update a gallery image definition. /// /// /// The operations group for this extension method. @@ -286,7 +286,7 @@ public static IPage ListByGallery(this IGalleryImagesOperations op /// created. /// /// - /// The name of the gallery Image Definition to be created or updated. The + /// The name of the gallery image definition to be created or updated. The /// allowed characters are alphabets and numbers with dots, dashes, and periods /// allowed in the middle. The maximum length is 80 characters. /// @@ -299,7 +299,7 @@ public static GalleryImage BeginCreateOrUpdate(this IGalleryImagesOperations ope } /// - /// Create or update a gallery Image Definition. + /// Create or update a gallery image definition. /// /// /// The operations group for this extension method. @@ -312,7 +312,7 @@ public static GalleryImage BeginCreateOrUpdate(this IGalleryImagesOperations ope /// created. /// /// - /// The name of the gallery Image Definition to be created or updated. The + /// The name of the gallery image definition to be created or updated. The /// allowed characters are alphabets and numbers with dots, dashes, and periods /// allowed in the middle. The maximum length is 80 characters. /// @@ -331,7 +331,7 @@ public static GalleryImage BeginCreateOrUpdate(this IGalleryImagesOperations ope } /// - /// Update a gallery Image Definition. + /// Update a gallery image definition. /// /// /// The operations group for this extension method. @@ -344,7 +344,7 @@ public static GalleryImage BeginCreateOrUpdate(this IGalleryImagesOperations ope /// updated. /// /// - /// The name of the gallery Image Definition to be updated. The allowed + /// The name of the gallery image definition to be updated. The allowed /// characters are alphabets and numbers with dots, dashes, and periods allowed /// in the middle. The maximum length is 80 characters. /// @@ -357,7 +357,7 @@ public static GalleryImage BeginUpdate(this IGalleryImagesOperations operations, } /// - /// Update a gallery Image Definition. + /// Update a gallery image definition. /// /// /// The operations group for this extension method. @@ -370,7 +370,7 @@ public static GalleryImage BeginUpdate(this IGalleryImagesOperations operations, /// updated. /// /// - /// The name of the gallery Image Definition to be updated. The allowed + /// The name of the gallery image definition to be updated. The allowed /// characters are alphabets and numbers with dots, dashes, and periods allowed /// in the middle. The maximum length is 80 characters. /// @@ -402,7 +402,7 @@ public static GalleryImage BeginUpdate(this IGalleryImagesOperations operations, /// deleted. /// /// - /// The name of the gallery Image Definition to be deleted. + /// The name of the gallery image definition to be deleted. /// public static void BeginDelete(this IGalleryImagesOperations operations, string resourceGroupName, string galleryName, string galleryImageName) { @@ -423,7 +423,7 @@ public static void BeginDelete(this IGalleryImagesOperations operations, string /// deleted. /// /// - /// The name of the gallery Image Definition to be deleted. + /// The name of the gallery image definition to be deleted. /// /// /// The cancellation token. @@ -434,7 +434,7 @@ public static void BeginDelete(this IGalleryImagesOperations operations, string } /// - /// List gallery Image Definitions in a gallery. + /// List gallery image definitions in a gallery. /// /// /// The operations group for this extension method. @@ -448,7 +448,7 @@ public static IPage ListByGalleryNext(this IGalleryImagesOperation } /// - /// List gallery Image Definitions in a gallery. + /// List gallery image definitions in a gallery. /// /// /// The operations group for this extension method. diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GallerySharingProfileOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GallerySharingProfileOperations.cs new file mode 100644 index 000000000000..36d20e5f894b --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GallerySharingProfileOperations.cs @@ -0,0 +1,309 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// GallerySharingProfileOperations operations. + /// + internal partial class GallerySharingProfileOperations : IServiceOperations, IGallerySharingProfileOperations + { + /// + /// Initializes a new instance of the GallerySharingProfileOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal GallerySharingProfileOperations(ComputeManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the ComputeManagementClient + /// + public ComputeManagementClient Client { get; private set; } + + /// + /// Update sharing profile of a gallery. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// Parameters supplied to the update gallery sharing profile. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, SharingUpdate sharingUpdate, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, sharingUpdate, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Update sharing profile of a gallery. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// Parameters supplied to the update gallery sharing profile. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, SharingUpdate sharingUpdate, 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 (sharingUpdate == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "sharingUpdate"); + } + if (sharingUpdate != null) + { + sharingUpdate.Validate(); + } + string apiVersion = "2020-09-30"; + // 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("apiVersion", apiVersion); + tracingParameters.Add("sharingUpdate", sharingUpdate); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/share").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)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(sharingUpdate != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(sharingUpdate, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + // Deserialize Response + if ((int)_statusCode == 202) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GallerySharingProfileOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GallerySharingProfileOperationsExtensions.cs new file mode 100644 index 000000000000..9ab1747dd236 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/GallerySharingProfileOperationsExtensions.cs @@ -0,0 +1,117 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for GallerySharingProfileOperations. + /// + public static partial class GallerySharingProfileOperationsExtensions + { + /// + /// Update sharing profile of a gallery. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// Parameters supplied to the update gallery sharing profile. + /// + public static SharingUpdate Update(this IGallerySharingProfileOperations operations, string resourceGroupName, string galleryName, SharingUpdate sharingUpdate) + { + return operations.UpdateAsync(resourceGroupName, galleryName, sharingUpdate).GetAwaiter().GetResult(); + } + + /// + /// Update sharing profile of a gallery. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// Parameters supplied to the update gallery sharing profile. + /// + /// + /// The cancellation token. + /// + public static async Task UpdateAsync(this IGallerySharingProfileOperations operations, string resourceGroupName, string galleryName, SharingUpdate sharingUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, galleryName, sharingUpdate, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Update sharing profile of a gallery. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// Parameters supplied to the update gallery sharing profile. + /// + public static SharingUpdate BeginUpdate(this IGallerySharingProfileOperations operations, string resourceGroupName, string galleryName, SharingUpdate sharingUpdate) + { + return operations.BeginUpdateAsync(resourceGroupName, galleryName, sharingUpdate).GetAwaiter().GetResult(); + } + + /// + /// Update sharing profile of a gallery. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// Parameters supplied to the update gallery sharing profile. + /// + /// + /// The cancellation token. + /// + public static async Task BeginUpdateAsync(this IGallerySharingProfileOperations operations, string resourceGroupName, string galleryName, SharingUpdate sharingUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginUpdateWithHttpMessagesAsync(resourceGroupName, galleryName, sharingUpdate, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IComputeManagementClient.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IComputeManagementClient.cs index 06794fb3d0b5..ae3fee273b5a 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IComputeManagementClient.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IComputeManagementClient.cs @@ -232,6 +232,25 @@ public partial interface IComputeManagementClient : System.IDisposable IGalleryApplicationVersionsOperations GalleryApplicationVersions { get; } /// + /// Gets the IGallerySharingProfileOperations. + /// + IGallerySharingProfileOperations GallerySharingProfile { get; } + + /// + /// Gets the ISharedGalleriesOperations. + /// + ISharedGalleriesOperations SharedGalleries { get; } + + /// + /// Gets the ISharedGalleryImagesOperations. + /// + ISharedGalleryImagesOperations SharedGalleryImages { get; } + + /// + /// Gets the ISharedGalleryImageVersionsOperations. + /// + ISharedGalleryImageVersionsOperations SharedGalleryImageVersions { get; } + /// Gets the ICloudServiceRoleInstancesOperations. /// ICloudServiceRoleInstancesOperations CloudServiceRoleInstances { get; } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IGalleriesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IGalleriesOperations.cs index ca3cfebcee4c..2e17fe75814a 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IGalleriesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IGalleriesOperations.cs @@ -93,6 +93,10 @@ public partial interface IGalleriesOperations /// /// The name of the Shared Image Gallery. /// + /// + /// The select expression to apply on the operation. Possible values + /// include: 'Permissions' + /// /// /// The headers that will be added to request. /// @@ -108,7 +112,7 @@ public partial interface IGalleriesOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName, string select = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Delete a Shared Image Gallery. /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IGalleryImageVersionsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IGalleryImageVersionsOperations.cs index 48a1efb60205..60387a8991fe 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IGalleryImageVersionsOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IGalleryImageVersionsOperations.cs @@ -24,7 +24,7 @@ namespace Microsoft.Azure.Management.Compute public partial interface IGalleryImageVersionsOperations { /// - /// Create or update a gallery Image Version. + /// Create or update a gallery image version. /// /// /// The name of the resource group. @@ -34,18 +34,18 @@ public partial interface IGalleryImageVersionsOperations /// resides. /// /// - /// The name of the gallery Image Definition in which the Image Version + /// The name of the gallery image definition in which the Image Version /// is to be created. /// /// - /// The name of the gallery Image Version to be created. Needs to + /// The name of the gallery image version to be created. Needs to /// follow semantic version name pattern: The allowed characters are /// digit and period. Digits must be within the range of a 32-bit /// integer. Format: /// <MajorVersion>.<MinorVersion>.<Patch> /// /// - /// Parameters supplied to the create or update gallery Image Version + /// Parameters supplied to the create or update gallery image version /// operation. /// /// @@ -65,7 +65,7 @@ public partial interface IGalleryImageVersionsOperations /// Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, GalleryImageVersion galleryImageVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Update a gallery Image Version. + /// Update a gallery image version. /// /// /// The name of the resource group. @@ -75,18 +75,18 @@ public partial interface IGalleryImageVersionsOperations /// resides. /// /// - /// The name of the gallery Image Definition in which the Image Version + /// The name of the gallery image definition in which the Image Version /// is to be updated. /// /// - /// The name of the gallery Image Version to be updated. Needs to + /// The name of the gallery image version to be updated. Needs to /// follow semantic version name pattern: The allowed characters are /// digit and period. Digits must be within the range of a 32-bit /// integer. Format: /// <MajorVersion>.<MinorVersion>.<Patch> /// /// - /// Parameters supplied to the update gallery Image Version operation. + /// Parameters supplied to the update gallery image version operation. /// /// /// The headers that will be added to request. @@ -105,7 +105,7 @@ public partial interface IGalleryImageVersionsOperations /// Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, GalleryImageVersionUpdate galleryImageVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Retrieves information about a gallery Image Version. + /// Retrieves information about a gallery image version. /// /// /// The name of the resource group. @@ -115,11 +115,11 @@ public partial interface IGalleryImageVersionsOperations /// resides. /// /// - /// The name of the gallery Image Definition in which the Image Version + /// The name of the gallery image definition in which the Image Version /// resides. /// /// - /// The name of the gallery Image Version to be retrieved. + /// The name of the gallery image version to be retrieved. /// /// /// The expand expression to apply on the operation. Possible values @@ -142,7 +142,7 @@ public partial interface IGalleryImageVersionsOperations /// Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Delete a gallery Image Version. + /// Delete a gallery image version. /// /// /// The name of the resource group. @@ -152,11 +152,11 @@ public partial interface IGalleryImageVersionsOperations /// resides. /// /// - /// The name of the gallery Image Definition in which the Image Version + /// The name of the gallery image definition in which the Image Version /// resides. /// /// - /// The name of the gallery Image Version to be deleted. + /// The name of the gallery image version to be deleted. /// /// /// The headers that will be added to request. @@ -172,7 +172,7 @@ public partial interface IGalleryImageVersionsOperations /// Task DeleteWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// List gallery Image Versions in a gallery Image Definition. + /// List gallery image versions in a gallery image definition. /// /// /// The name of the resource group. @@ -202,7 +202,7 @@ public partial interface IGalleryImageVersionsOperations /// Task>> ListByGalleryImageWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Create or update a gallery Image Version. + /// Create or update a gallery image version. /// /// /// The name of the resource group. @@ -212,18 +212,18 @@ public partial interface IGalleryImageVersionsOperations /// resides. /// /// - /// The name of the gallery Image Definition in which the Image Version + /// The name of the gallery image definition in which the Image Version /// is to be created. /// /// - /// The name of the gallery Image Version to be created. Needs to + /// The name of the gallery image version to be created. Needs to /// follow semantic version name pattern: The allowed characters are /// digit and period. Digits must be within the range of a 32-bit /// integer. Format: /// <MajorVersion>.<MinorVersion>.<Patch> /// /// - /// Parameters supplied to the create or update gallery Image Version + /// Parameters supplied to the create or update gallery image version /// operation. /// /// @@ -243,7 +243,7 @@ public partial interface IGalleryImageVersionsOperations /// Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, GalleryImageVersion galleryImageVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Update a gallery Image Version. + /// Update a gallery image version. /// /// /// The name of the resource group. @@ -253,18 +253,18 @@ public partial interface IGalleryImageVersionsOperations /// resides. /// /// - /// The name of the gallery Image Definition in which the Image Version + /// The name of the gallery image definition in which the Image Version /// is to be updated. /// /// - /// The name of the gallery Image Version to be updated. Needs to + /// The name of the gallery image version to be updated. Needs to /// follow semantic version name pattern: The allowed characters are /// digit and period. Digits must be within the range of a 32-bit /// integer. Format: /// <MajorVersion>.<MinorVersion>.<Patch> /// /// - /// Parameters supplied to the update gallery Image Version operation. + /// Parameters supplied to the update gallery image version operation. /// /// /// The headers that will be added to request. @@ -283,7 +283,7 @@ public partial interface IGalleryImageVersionsOperations /// Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, GalleryImageVersionUpdate galleryImageVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Delete a gallery Image Version. + /// Delete a gallery image version. /// /// /// The name of the resource group. @@ -293,11 +293,11 @@ public partial interface IGalleryImageVersionsOperations /// resides. /// /// - /// The name of the gallery Image Definition in which the Image Version + /// The name of the gallery image definition in which the Image Version /// resides. /// /// - /// The name of the gallery Image Version to be deleted. + /// The name of the gallery image version to be deleted. /// /// /// The headers that will be added to request. @@ -313,7 +313,7 @@ public partial interface IGalleryImageVersionsOperations /// Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, string galleryImageVersionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// List gallery Image Versions in a gallery Image Definition. + /// List gallery image versions in a gallery image definition. /// /// /// The NextLink from the previous successful call to List operation. 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 523c2ffc9ffc..bfe8aaf91f55 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IGalleryImagesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IGalleryImagesOperations.cs @@ -24,7 +24,7 @@ namespace Microsoft.Azure.Management.Compute public partial interface IGalleryImagesOperations { /// - /// Create or update a gallery Image Definition. + /// Create or update a gallery image definition. /// /// /// The name of the resource group. @@ -34,7 +34,7 @@ public partial interface IGalleryImagesOperations /// is to be created. /// /// - /// The name of the gallery Image Definition to be created or updated. + /// The name of the gallery image definition to be created or updated. /// The allowed characters are alphabets and numbers with dots, dashes, /// and periods allowed in the middle. The maximum length is 80 /// characters. @@ -60,7 +60,7 @@ public partial interface IGalleryImagesOperations /// Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, GalleryImage galleryImage, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Update a gallery Image Definition. + /// Update a gallery image definition. /// /// /// The name of the resource group. @@ -70,7 +70,7 @@ public partial interface IGalleryImagesOperations /// is to be updated. /// /// - /// The name of the gallery Image Definition to be updated. The allowed + /// The name of the gallery image definition to be updated. The allowed /// characters are alphabets and numbers with dots, dashes, and periods /// allowed in the middle. The maximum length is 80 characters. /// @@ -94,7 +94,7 @@ public partial interface IGalleryImagesOperations /// Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, GalleryImageUpdate galleryImage, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Retrieves information about a gallery Image Definition. + /// Retrieves information about a gallery image definition. /// /// /// The name of the resource group. @@ -104,7 +104,7 @@ public partial interface IGalleryImagesOperations /// Definitions are to be retrieved. /// /// - /// The name of the gallery Image Definition to be retrieved. + /// The name of the gallery image definition to be retrieved. /// /// /// The headers that will be added to request. @@ -133,7 +133,7 @@ public partial interface IGalleryImagesOperations /// is to be deleted. /// /// - /// The name of the gallery Image Definition to be deleted. + /// The name of the gallery image definition to be deleted. /// /// /// The headers that will be added to request. @@ -149,7 +149,7 @@ public partial interface IGalleryImagesOperations /// Task DeleteWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// List gallery Image Definitions in a gallery. + /// List gallery image definitions in a gallery. /// /// /// The name of the resource group. @@ -175,7 +175,7 @@ public partial interface IGalleryImagesOperations /// Task>> ListByGalleryWithHttpMessagesAsync(string resourceGroupName, string galleryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Create or update a gallery Image Definition. + /// Create or update a gallery image definition. /// /// /// The name of the resource group. @@ -185,7 +185,7 @@ public partial interface IGalleryImagesOperations /// is to be created. /// /// - /// The name of the gallery Image Definition to be created or updated. + /// The name of the gallery image definition to be created or updated. /// The allowed characters are alphabets and numbers with dots, dashes, /// and periods allowed in the middle. The maximum length is 80 /// characters. @@ -211,7 +211,7 @@ public partial interface IGalleryImagesOperations /// Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, GalleryImage galleryImage, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Update a gallery Image Definition. + /// Update a gallery image definition. /// /// /// The name of the resource group. @@ -221,7 +221,7 @@ public partial interface IGalleryImagesOperations /// is to be updated. /// /// - /// The name of the gallery Image Definition to be updated. The allowed + /// The name of the gallery image definition to be updated. The allowed /// characters are alphabets and numbers with dots, dashes, and periods /// allowed in the middle. The maximum length is 80 characters. /// @@ -255,7 +255,7 @@ public partial interface IGalleryImagesOperations /// is to be deleted. /// /// - /// The name of the gallery Image Definition to be deleted. + /// The name of the gallery image definition to be deleted. /// /// /// The headers that will be added to request. @@ -271,7 +271,7 @@ public partial interface IGalleryImagesOperations /// Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string galleryName, string galleryImageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// List gallery Image Definitions in a gallery. + /// List gallery image definitions in a gallery. /// /// /// The NextLink from the previous successful call to List operation. diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IGallerySharingProfileOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IGallerySharingProfileOperations.cs new file mode 100644 index 000000000000..851857bc297a --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IGallerySharingProfileOperations.cs @@ -0,0 +1,83 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// GallerySharingProfileOperations operations. + /// + public partial interface IGallerySharingProfileOperations + { + /// + /// Update sharing profile of a gallery. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// Parameters supplied to the update gallery sharing profile. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, SharingUpdate sharingUpdate, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Update sharing profile of a gallery. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// Parameters supplied to the update gallery sharing profile. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string galleryName, SharingUpdate sharingUpdate, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ISharedGalleriesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ISharedGalleriesOperations.cs new file mode 100644 index 000000000000..369d638e16b0 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ISharedGalleriesOperations.cs @@ -0,0 +1,100 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// SharedGalleriesOperations operations. + /// + public partial interface ISharedGalleriesOperations + { + /// + /// List shared galleries by subscription id or tenant id. + /// + /// + /// Resource location. + /// + /// + /// The query parameter to decide what shared galleries to fetch when + /// doing listing operations. Possible values include: 'tenant' + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListWithHttpMessagesAsync(string location, string sharedTo = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Get a shared gallery by subscription id or tenant id. + /// + /// + /// Resource location. + /// + /// + /// The unique name of the Shared Gallery. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string location, string galleryUniqueName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List shared galleries by subscription id or tenant id. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ISharedGalleryImageVersionsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ISharedGalleryImageVersionsOperations.cs new file mode 100644 index 000000000000..f885944fb8f4 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ISharedGalleryImageVersionsOperations.cs @@ -0,0 +1,118 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// SharedGalleryImageVersionsOperations operations. + /// + public partial interface ISharedGalleryImageVersionsOperations + { + /// + /// List shared gallery image versions by subscription id or tenant id. + /// + /// + /// Resource location. + /// + /// + /// The unique name of the Shared Gallery. + /// + /// + /// The name of the Shared Gallery Image Definition from which the + /// Image Versions are to be listed. + /// + /// + /// The query parameter to decide what shared galleries to fetch when + /// doing listing operations. Possible values include: 'tenant' + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListWithHttpMessagesAsync(string location, string galleryUniqueName, string galleryImageName, string sharedTo = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Get a shared gallery image version by subscription id or tenant id. + /// + /// + /// Resource location. + /// + /// + /// The unique name of the Shared Gallery. + /// + /// + /// The name of the Shared Gallery Image Definition from which the + /// Image Versions are to be listed. + /// + /// + /// The name of the gallery image version to be created. Needs to + /// follow semantic version name pattern: The allowed characters are + /// digit and period. Digits must be within the range of a 32-bit + /// integer. Format: + /// <MajorVersion>.<MinorVersion>.<Patch> + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string location, string galleryUniqueName, string galleryImageName, string galleryImageVersionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List shared gallery image versions by subscription id or tenant id. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ISharedGalleryImagesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ISharedGalleryImagesOperations.cs new file mode 100644 index 000000000000..29684dfca5e7 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ISharedGalleryImagesOperations.cs @@ -0,0 +1,107 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// SharedGalleryImagesOperations operations. + /// + public partial interface ISharedGalleryImagesOperations + { + /// + /// List shared gallery images by subscription id or tenant id. + /// + /// + /// Resource location. + /// + /// + /// The unique name of the Shared Gallery. + /// + /// + /// The query parameter to decide what shared galleries to fetch when + /// doing listing operations. Possible values include: 'tenant' + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListWithHttpMessagesAsync(string location, string galleryUniqueName, string sharedTo = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Get a shared gallery image by subscription id or tenant id. + /// + /// + /// Resource location. + /// + /// + /// The unique name of the Shared Gallery. + /// + /// + /// The name of the Shared Gallery Image Definition from which the + /// Image Versions are to be listed. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string location, string galleryUniqueName, string galleryImageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List shared gallery images by subscription id or tenant id. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/Gallery.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/Gallery.cs index 3164fc5d8259..df6b6a84056c 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/Gallery.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/Gallery.cs @@ -44,12 +44,13 @@ public Gallery() /// Gallery resource. This property is updatable. /// The current state of the /// gallery. - public Gallery(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string description = default(string), GalleryIdentifier identifier = default(GalleryIdentifier), string provisioningState = default(string)) + public Gallery(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string description = default(string), GalleryIdentifier identifier = default(GalleryIdentifier), string provisioningState = default(string), SharingProfile sharingProfile = default(SharingProfile)) : base(location, id, name, type, tags) { Description = description; Identifier = identifier; ProvisioningState = provisioningState; + SharingProfile = sharingProfile; CustomInit(); } @@ -81,6 +82,11 @@ public Gallery() [JsonProperty(PropertyName = "properties.provisioningState")] public string ProvisioningState { get; private set; } + /// + /// + [JsonProperty(PropertyName = "properties.sharingProfile")] + public SharingProfile SharingProfile { get; set; } + /// /// Validate the object. /// 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 e24d7e174e0b..90a4c08c1c33 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 @@ -45,9 +45,9 @@ public GalleryApplicationVersionPublishingProfile() /// deployed from the latest version of the Image Definition won't use /// this Image Version. /// The timestamp for when the gallery - /// Image Version is published. + /// image version is published. /// The end of life date of the gallery - /// Image Version. This property can be used for decommissioning + /// image version. This property can be used for decommissioning /// purposes. This property is updatable. /// Specifies the storage account type /// to be used to store the image. This property is not updatable. diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryArtifactPublishingProfileBase.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryArtifactPublishingProfileBase.cs index 1b6b478f2b6b..8f21c927feef 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryArtifactPublishingProfileBase.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryArtifactPublishingProfileBase.cs @@ -44,9 +44,9 @@ public GalleryArtifactPublishingProfileBase() /// deployed from the latest version of the Image Definition won't use /// this Image Version. /// The timestamp for when the gallery - /// Image Version is published. + /// image version is published. /// The end of life date of the gallery - /// Image Version. This property can be used for decommissioning + /// image version. This property can be used for decommissioning /// purposes. This property is updatable. /// Specifies the storage account type /// to be used to store the image. This property is not updatable. @@ -93,13 +93,13 @@ public GalleryArtifactPublishingProfileBase() public bool? ExcludeFromLatest { get; set; } /// - /// Gets the timestamp for when the gallery Image Version is published. + /// Gets the timestamp for when the gallery image version is published. /// [JsonProperty(PropertyName = "publishedDate")] public System.DateTime? PublishedDate { get; private set; } /// - /// Gets or sets the end of life date of the gallery Image Version. + /// Gets or sets the end of life date of the gallery image version. /// This property can be used for decommissioning purposes. This /// property is updatable. /// 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 7617dbe21556..ebe95fdfc09b 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 @@ -32,10 +32,14 @@ public GalleryArtifactVersionSource() /// class. /// /// The id of the gallery artifact version source. Can - /// specify a disk uri, snapshot uri, or user image. - public GalleryArtifactVersionSource(string id = default(string)) + /// 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)) { Id = id; + Uri = uri; CustomInit(); } @@ -46,10 +50,18 @@ public GalleryArtifactVersionSource() /// /// Gets or sets the id of the gallery artifact version source. Can - /// specify a disk uri, snapshot uri, or user image. + /// specify a disk uri, snapshot uri, user image or storage account + /// resource. /// [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/GalleryImage.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImage.cs index 276cb3aeaae5..73b908e4e6db 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImage.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImage.cs @@ -18,7 +18,7 @@ namespace Microsoft.Azure.Management.Compute.Models using System.Linq; /// - /// Specifies information about the gallery Image Definition that you want + /// Specifies information about the gallery image definition that you want /// to create or update. /// [Rest.Serialization.JsonTransformation] @@ -49,10 +49,10 @@ public GalleryImage() /// Resource name /// Resource type /// Resource tags - /// The description of this gallery Image - /// Definition resource. This property is updatable. - /// The Eula agreement for the gallery Image - /// Definition. + /// The description of this gallery image + /// definition resource. This property is updatable. + /// The Eula agreement for the gallery image + /// definition. /// The privacy statement /// uri. /// The release note uri. @@ -60,11 +60,12 @@ public GalleryImage() /// Virtual Machine. Applicable to OS disks only. Possible values /// include: 'V1', 'V2' /// The end of life date of the gallery - /// Image Definition. This property can be used for decommissioning + /// image definition. This property can be used for decommissioning /// purposes. This property is updatable. /// The current state of the gallery - /// Image Definition. - public GalleryImage(string location, OperatingSystemTypes osType, OperatingSystemStateTypes osState, GalleryImageIdentifier identifier, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string description = default(string), string eula = default(string), string privacyStatementUri = default(string), string releaseNoteUri = default(string), string hyperVGeneration = default(string), System.DateTime? endOfLifeDate = default(System.DateTime?), RecommendedMachineConfiguration recommended = default(RecommendedMachineConfiguration), Disallowed disallowed = default(Disallowed), ImagePurchasePlan purchasePlan = default(ImagePurchasePlan), string provisioningState = default(string)) + /// image definition. + /// A list of gallery image features. + public GalleryImage(string location, OperatingSystemTypes osType, OperatingSystemStateTypes osState, GalleryImageIdentifier identifier, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string description = default(string), string eula = default(string), string privacyStatementUri = default(string), string releaseNoteUri = default(string), string hyperVGeneration = default(string), System.DateTime? endOfLifeDate = default(System.DateTime?), RecommendedMachineConfiguration recommended = default(RecommendedMachineConfiguration), Disallowed disallowed = default(Disallowed), ImagePurchasePlan purchasePlan = default(ImagePurchasePlan), string provisioningState = default(string), IList features = default(IList)) : base(location, id, name, type, tags) { Description = description; @@ -80,6 +81,7 @@ public GalleryImage() Disallowed = disallowed; PurchasePlan = purchasePlan; ProvisioningState = provisioningState; + Features = features; CustomInit(); } @@ -89,14 +91,14 @@ public GalleryImage() partial void CustomInit(); /// - /// Gets or sets the description of this gallery Image Definition + /// Gets or sets the description of this gallery image definition /// resource. This property is updatable. /// [JsonProperty(PropertyName = "properties.description")] public string Description { get; set; } /// - /// Gets or sets the Eula agreement for the gallery Image Definition. + /// Gets or sets the Eula agreement for the gallery image definition. /// [JsonProperty(PropertyName = "properties.eula")] public string Eula { get; set; } @@ -141,7 +143,7 @@ public GalleryImage() public string HyperVGeneration { get; set; } /// - /// Gets or sets the end of life date of the gallery Image Definition. + /// Gets or sets the end of life date of the gallery image definition. /// This property can be used for decommissioning purposes. This /// property is updatable. /// @@ -169,7 +171,7 @@ public GalleryImage() public ImagePurchasePlan PurchasePlan { get; set; } /// - /// Gets the current state of the gallery Image Definition. + /// Gets the current state of the gallery image definition. /// /// /// The provisioning state, which only appears in the response. @@ -179,6 +181,12 @@ public GalleryImage() [JsonProperty(PropertyName = "properties.provisioningState")] public string ProvisioningState { get; private set; } + /// + /// Gets or sets a list of gallery image features. + /// + [JsonProperty(PropertyName = "properties.features")] + public IList Features { get; set; } + /// /// Validate the object. /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageFeature.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageFeature.cs new file mode 100644 index 000000000000..2aa52c29b60b --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageFeature.cs @@ -0,0 +1,59 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// A feature for gallery image. + /// + public partial class GalleryImageFeature + { + /// + /// Initializes a new instance of the GalleryImageFeature class. + /// + public GalleryImageFeature() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the GalleryImageFeature class. + /// + /// The name of the gallery image feature. + /// The value of the gallery image feature. + public GalleryImageFeature(string name = default(string), string value = default(string)) + { + Name = name; + Value = value; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the name of the gallery image feature. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets the value of the gallery image feature. + /// + [JsonProperty(PropertyName = "value")] + public string Value { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageIdentifier.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageIdentifier.cs index b18ce093894f..5f3835b6879f 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageIdentifier.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageIdentifier.cs @@ -15,7 +15,7 @@ namespace Microsoft.Azure.Management.Compute.Models using System.Linq; /// - /// This is the gallery Image Definition identifier. + /// This is the gallery image definition identifier. /// public partial class GalleryImageIdentifier { @@ -30,11 +30,11 @@ public GalleryImageIdentifier() /// /// Initializes a new instance of the GalleryImageIdentifier class. /// - /// The name of the gallery Image Definition + /// The name of the gallery image definition /// publisher. - /// The name of the gallery Image Definition + /// The name of the gallery image definition /// offer. - /// The name of the gallery Image Definition + /// The name of the gallery image definition /// SKU. public GalleryImageIdentifier(string publisher, string offer, string sku) { @@ -50,19 +50,19 @@ public GalleryImageIdentifier(string publisher, string offer, string sku) partial void CustomInit(); /// - /// Gets or sets the name of the gallery Image Definition publisher. + /// Gets or sets the name of the gallery image definition publisher. /// [JsonProperty(PropertyName = "publisher")] public string Publisher { get; set; } /// - /// Gets or sets the name of the gallery Image Definition offer. + /// Gets or sets the name of the gallery image definition offer. /// [JsonProperty(PropertyName = "offer")] public string Offer { get; set; } /// - /// Gets or sets the name of the gallery Image Definition SKU. + /// Gets or sets the name of the gallery image definition SKU. /// [JsonProperty(PropertyName = "sku")] public string Sku { get; set; } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageUpdate.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageUpdate.cs index 4ac822d3c550..428379ec99f5 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageUpdate.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageUpdate.cs @@ -18,7 +18,7 @@ namespace Microsoft.Azure.Management.Compute.Models using System.Linq; /// - /// Specifies information about the gallery Image Definition that you want + /// Specifies information about the gallery image definition that you want /// to update. /// [Rest.Serialization.JsonTransformation] @@ -48,10 +48,10 @@ public GalleryImageUpdate() /// Resource name /// Resource type /// Resource tags - /// The description of this gallery Image - /// Definition resource. This property is updatable. - /// The Eula agreement for the gallery Image - /// Definition. + /// The description of this gallery image + /// definition resource. This property is updatable. + /// The Eula agreement for the gallery image + /// definition. /// The privacy statement /// uri. /// The release note uri. @@ -59,11 +59,12 @@ public GalleryImageUpdate() /// Virtual Machine. Applicable to OS disks only. Possible values /// include: 'V1', 'V2' /// The end of life date of the gallery - /// Image Definition. This property can be used for decommissioning + /// image definition. This property can be used for decommissioning /// purposes. This property is updatable. /// The current state of the gallery - /// Image Definition. - public GalleryImageUpdate(OperatingSystemTypes osType, OperatingSystemStateTypes osState, GalleryImageIdentifier identifier, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string description = default(string), string eula = default(string), string privacyStatementUri = default(string), string releaseNoteUri = default(string), string hyperVGeneration = default(string), System.DateTime? endOfLifeDate = default(System.DateTime?), RecommendedMachineConfiguration recommended = default(RecommendedMachineConfiguration), Disallowed disallowed = default(Disallowed), ImagePurchasePlan purchasePlan = default(ImagePurchasePlan), string provisioningState = default(string)) + /// image definition. + /// A list of gallery image features. + public GalleryImageUpdate(OperatingSystemTypes osType, OperatingSystemStateTypes osState, GalleryImageIdentifier identifier, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string description = default(string), string eula = default(string), string privacyStatementUri = default(string), string releaseNoteUri = default(string), string hyperVGeneration = default(string), System.DateTime? endOfLifeDate = default(System.DateTime?), RecommendedMachineConfiguration recommended = default(RecommendedMachineConfiguration), Disallowed disallowed = default(Disallowed), ImagePurchasePlan purchasePlan = default(ImagePurchasePlan), string provisioningState = default(string), IList features = default(IList)) : base(id, name, type, tags) { Description = description; @@ -79,6 +80,7 @@ public GalleryImageUpdate() Disallowed = disallowed; PurchasePlan = purchasePlan; ProvisioningState = provisioningState; + Features = features; CustomInit(); } @@ -88,14 +90,14 @@ public GalleryImageUpdate() partial void CustomInit(); /// - /// Gets or sets the description of this gallery Image Definition + /// Gets or sets the description of this gallery image definition /// resource. This property is updatable. /// [JsonProperty(PropertyName = "properties.description")] public string Description { get; set; } /// - /// Gets or sets the Eula agreement for the gallery Image Definition. + /// Gets or sets the Eula agreement for the gallery image definition. /// [JsonProperty(PropertyName = "properties.eula")] public string Eula { get; set; } @@ -140,7 +142,7 @@ public GalleryImageUpdate() public string HyperVGeneration { get; set; } /// - /// Gets or sets the end of life date of the gallery Image Definition. + /// Gets or sets the end of life date of the gallery image definition. /// This property can be used for decommissioning purposes. This /// property is updatable. /// @@ -168,7 +170,7 @@ public GalleryImageUpdate() public ImagePurchasePlan PurchasePlan { get; set; } /// - /// Gets the current state of the gallery Image Definition. + /// Gets the current state of the gallery image definition. /// /// /// The provisioning state, which only appears in the response. @@ -178,6 +180,12 @@ public GalleryImageUpdate() [JsonProperty(PropertyName = "properties.provisioningState")] public string ProvisioningState { get; private set; } + /// + /// Gets or sets a list of gallery image features. + /// + [JsonProperty(PropertyName = "properties.features")] + public IList Features { get; set; } + /// /// Validate the object. /// 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 a7ad1dea5fab..707a553ae2c5 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 @@ -18,7 +18,7 @@ namespace Microsoft.Azure.Management.Compute.Models using System.Linq; /// - /// Specifies information about the gallery Image Version that you want to + /// Specifies information about the gallery image version that you want to /// create or update. /// [Rest.Serialization.JsonTransformation] @@ -41,7 +41,7 @@ public GalleryImageVersion() /// Resource type /// Resource tags /// The current state of the gallery - /// Image Version. + /// image version. public GalleryImageVersion(string location, GalleryImageVersionStorageProfile storageProfile, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), GalleryImageVersionPublishingProfile publishingProfile = default(GalleryImageVersionPublishingProfile), string provisioningState = default(string), ReplicationStatus replicationStatus = default(ReplicationStatus)) : base(location, id, name, type, tags) { @@ -63,7 +63,7 @@ public GalleryImageVersion() public GalleryImageVersionPublishingProfile PublishingProfile { get; set; } /// - /// Gets the current state of the gallery Image Version. + /// Gets the current state of the gallery image version. /// /// /// The provisioning state, which only appears in the response. diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageVersionPublishingProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageVersionPublishingProfile.cs index 6881266310aa..d047e097275a 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageVersionPublishingProfile.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryImageVersionPublishingProfile.cs @@ -15,7 +15,7 @@ namespace Microsoft.Azure.Management.Compute.Models using System.Linq; /// - /// The publishing profile of a gallery Image Version. + /// The publishing profile of a gallery image Version. /// public partial class GalleryImageVersionPublishingProfile : GalleryArtifactPublishingProfileBase { @@ -43,9 +43,9 @@ public GalleryImageVersionPublishingProfile() /// deployed from the latest version of the Image Definition won't use /// this Image Version. /// The timestamp for when the gallery - /// Image Version is published. + /// image version is published. /// The end of life date of the gallery - /// Image Version. This property can be used for decommissioning + /// image version. This property can be used for decommissioning /// purposes. This property is updatable. /// Specifies the storage account type /// to be used to store the image. This property is not updatable. 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 95a7c06e84e8..174e5218e0fe 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 @@ -18,7 +18,7 @@ namespace Microsoft.Azure.Management.Compute.Models using System.Linq; /// - /// Specifies information about the gallery Image Version that you want to + /// Specifies information about the gallery image version that you want to /// update. /// [Rest.Serialization.JsonTransformation] @@ -40,7 +40,7 @@ public GalleryImageVersionUpdate() /// Resource type /// Resource tags /// The current state of the gallery - /// Image Version. + /// image version. public GalleryImageVersionUpdate(GalleryImageVersionStorageProfile storageProfile, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), GalleryImageVersionPublishingProfile publishingProfile = default(GalleryImageVersionPublishingProfile), string provisioningState = default(string), ReplicationStatus replicationStatus = default(ReplicationStatus)) : base(id, name, type, tags) { @@ -62,7 +62,7 @@ public GalleryImageVersionUpdate() public GalleryImageVersionPublishingProfile PublishingProfile { get; set; } /// - /// Gets the current state of the gallery Image Version. + /// Gets the current state of the gallery image version. /// /// /// The provisioning state, which only appears in the response. diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GallerySharingPermissionTypes.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GallerySharingPermissionTypes.cs new file mode 100644 index 000000000000..22f0125b9557 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GallerySharingPermissionTypes.cs @@ -0,0 +1,22 @@ +// +// 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 GallerySharingPermissionTypes. + /// + public static class GallerySharingPermissionTypes + { + public const string Private = "Private"; + public const string Groups = "Groups"; + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryUpdate.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryUpdate.cs index e46c769da8b3..23ea5f90f3c5 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryUpdate.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryUpdate.cs @@ -43,12 +43,13 @@ public GalleryUpdate() /// Gallery resource. This property is updatable. /// The current state of the /// gallery. - public GalleryUpdate(string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string description = default(string), GalleryIdentifier identifier = default(GalleryIdentifier), string provisioningState = default(string)) + public GalleryUpdate(string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string description = default(string), GalleryIdentifier identifier = default(GalleryIdentifier), string provisioningState = default(string), SharingProfile sharingProfile = default(SharingProfile)) : base(id, name, type, tags) { Description = description; Identifier = identifier; ProvisioningState = provisioningState; + SharingProfile = sharingProfile; CustomInit(); } @@ -80,5 +81,10 @@ public GalleryUpdate() [JsonProperty(PropertyName = "properties.provisioningState")] public string ProvisioningState { get; private set; } + /// + /// + [JsonProperty(PropertyName = "properties.sharingProfile")] + public SharingProfile SharingProfile { get; set; } + } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ImagePurchasePlan.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ImagePurchasePlan.cs index 8c15c2873d2e..491af12db0e4 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ImagePurchasePlan.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ImagePurchasePlan.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.Management.Compute.Models using System.Linq; /// - /// Describes the gallery Image Definition purchase plan. This is used by + /// Describes the gallery image definition purchase plan. This is used by /// marketplace images. /// public partial class ImagePurchasePlan diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PirResource.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PirResource.cs new file mode 100644 index 000000000000..7a1e494e0651 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PirResource.cs @@ -0,0 +1,59 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// The Resource model definition. + /// + public partial class PirResource + { + /// + /// Initializes a new instance of the PirResource class. + /// + public PirResource() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PirResource class. + /// + /// Resource name + /// Resource location + public PirResource(string name = default(string), string location = default(string)) + { + Name = name; + Location = location; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets resource name + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// + /// Gets resource location + /// + [JsonProperty(PropertyName = "location")] + public string Location { get; private set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PirSharedGalleryResource.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PirSharedGalleryResource.cs new file mode 100644 index 000000000000..1ee9785ad48c --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/PirSharedGalleryResource.cs @@ -0,0 +1,58 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Base information about the shared gallery resource in pir. + /// + [Rest.Serialization.JsonTransformation] + public partial class PirSharedGalleryResource : PirResource + { + /// + /// Initializes a new instance of the PirSharedGalleryResource class. + /// + public PirSharedGalleryResource() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PirSharedGalleryResource class. + /// + /// Resource name + /// Resource location + /// The unique id of this shared + /// gallery. + public PirSharedGalleryResource(string name = default(string), string location = default(string), string uniqueId = default(string)) + : base(name, location) + { + UniqueId = uniqueId; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the unique id of this shared gallery. + /// + [JsonProperty(PropertyName = "identifier.uniqueId")] + public string UniqueId { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RegionalReplicationStatus.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RegionalReplicationStatus.cs index 1723a9663fe3..a40af552a406 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RegionalReplicationStatus.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RegionalReplicationStatus.cs @@ -29,7 +29,7 @@ public RegionalReplicationStatus() /// /// Initializes a new instance of the RegionalReplicationStatus class. /// - /// The region to which the gallery Image Version + /// The region to which the gallery image version /// is being replicated to. /// This is the regional replication state. /// Possible values include: 'Unknown', 'Replicating', 'Completed', @@ -53,7 +53,7 @@ public RegionalReplicationStatus() partial void CustomInit(); /// - /// Gets the region to which the gallery Image Version is being + /// Gets the region to which the gallery image version is being /// replicated to. /// [JsonProperty(PropertyName = "region")] diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ReplicationStatus.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ReplicationStatus.cs index 17e4a4ad55a5..5263ab577613 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ReplicationStatus.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ReplicationStatus.cs @@ -16,7 +16,7 @@ namespace Microsoft.Azure.Management.Compute.Models using System.Linq; /// - /// This is the replication status of the gallery Image Version. + /// This is the replication status of the gallery image version. /// public partial class ReplicationStatus { diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SelectPermissions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SelectPermissions.cs new file mode 100644 index 000000000000..dcd358cd68e3 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SelectPermissions.cs @@ -0,0 +1,21 @@ +// +// 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 SelectPermissions. + /// + public static class SelectPermissions + { + public const string Permissions = "Permissions"; + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGallery.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGallery.cs new file mode 100644 index 000000000000..aef86d0b185c --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGallery.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; + + /// + /// Specifies information about the Shared Gallery that you want to create + /// or update. + /// + public partial class SharedGallery : PirSharedGalleryResource + { + /// + /// Initializes a new instance of the SharedGallery class. + /// + public SharedGallery() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the SharedGallery class. + /// + /// Resource name + /// Resource location + /// The unique id of this shared + /// gallery. + public SharedGallery(string name = default(string), string location = default(string), string uniqueId = default(string)) + : base(name, location, uniqueId) + { + 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/SharedGalleryImage.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGalleryImage.cs new file mode 100644 index 000000000000..e64cdf38245e --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGalleryImage.cs @@ -0,0 +1,157 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Specifies information about the gallery image definition that you want + /// to create or update. + /// + [Rest.Serialization.JsonTransformation] + public partial class SharedGalleryImage : PirSharedGalleryResource + { + /// + /// Initializes a new instance of the SharedGalleryImage class. + /// + public SharedGalleryImage() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the SharedGalleryImage class. + /// + /// This property allows you to specify the type + /// of the OS that is included in the disk when creating a VM from a + /// managed image. <br><br> Possible values are: + /// <br><br> **Windows** <br><br> **Linux**. + /// Possible values include: 'Windows', 'Linux' + /// This property allows the user to specify + /// whether the virtual machines created under this image are + /// 'Generalized' or 'Specialized'. Possible values include: + /// 'Generalized', 'Specialized' + /// Resource name + /// Resource location + /// The unique id of this shared + /// gallery. + /// The end of life date of the gallery + /// image definition. This property can be used for decommissioning + /// purposes. This property is updatable. + /// The hypervisor generation of the + /// Virtual Machine. Applicable to OS disks only. Possible values + /// include: 'V1', 'V2' + /// A list of gallery image features. + public SharedGalleryImage(OperatingSystemTypes osType, OperatingSystemStateTypes osState, GalleryImageIdentifier identifier, string name = default(string), string location = default(string), string uniqueId = default(string), System.DateTime? endOfLifeDate = default(System.DateTime?), RecommendedMachineConfiguration recommended = default(RecommendedMachineConfiguration), Disallowed disallowed = default(Disallowed), string hyperVGeneration = default(string), IList features = default(IList), ImagePurchasePlan purchasePlan = default(ImagePurchasePlan)) + : base(name, location, uniqueId) + { + OsType = osType; + OsState = osState; + EndOfLifeDate = endOfLifeDate; + Identifier = identifier; + Recommended = recommended; + Disallowed = disallowed; + HyperVGeneration = hyperVGeneration; + Features = features; + PurchasePlan = purchasePlan; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets this property allows you to specify the type of the OS + /// that is included in the disk when creating a VM from a managed + /// image. &lt;br&gt;&lt;br&gt; Possible values are: + /// &lt;br&gt;&lt;br&gt; **Windows** + /// &lt;br&gt;&lt;br&gt; **Linux**. Possible values + /// include: 'Windows', 'Linux' + /// + [JsonProperty(PropertyName = "properties.osType")] + public OperatingSystemTypes OsType { get; set; } + + /// + /// Gets or sets this property allows the user to specify whether the + /// virtual machines created under this image are 'Generalized' or + /// 'Specialized'. Possible values include: 'Generalized', + /// 'Specialized' + /// + [JsonProperty(PropertyName = "properties.osState")] + public OperatingSystemStateTypes OsState { get; set; } + + /// + /// Gets or sets the end of life date of the gallery image definition. + /// This property can be used for decommissioning purposes. This + /// property is updatable. + /// + [JsonProperty(PropertyName = "properties.endOfLifeDate")] + public System.DateTime? EndOfLifeDate { get; set; } + + /// + /// + [JsonProperty(PropertyName = "properties.identifier")] + public GalleryImageIdentifier Identifier { get; set; } + + /// + /// + [JsonProperty(PropertyName = "properties.recommended")] + public RecommendedMachineConfiguration Recommended { get; set; } + + /// + /// + [JsonProperty(PropertyName = "properties.disallowed")] + public Disallowed Disallowed { get; set; } + + /// + /// Gets or sets the hypervisor generation of the Virtual Machine. + /// Applicable to OS disks only. Possible values include: 'V1', 'V2' + /// + [JsonProperty(PropertyName = "properties.hyperVGeneration")] + public string HyperVGeneration { get; set; } + + /// + /// Gets or sets a list of gallery image features. + /// + [JsonProperty(PropertyName = "properties.features")] + public IList Features { get; set; } + + /// + /// + [JsonProperty(PropertyName = "properties.purchasePlan")] + public ImagePurchasePlan PurchasePlan { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Identifier == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Identifier"); + } + if (Identifier != null) + { + Identifier.Validate(); + } + } + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGalleryImageVersion.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGalleryImageVersion.cs new file mode 100644 index 000000000000..b51fcbd0b480 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedGalleryImageVersion.cs @@ -0,0 +1,76 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Specifies information about the gallery image version that you want to + /// create or update. + /// + [Rest.Serialization.JsonTransformation] + public partial class SharedGalleryImageVersion : PirSharedGalleryResource + { + /// + /// Initializes a new instance of the SharedGalleryImageVersion class. + /// + public SharedGalleryImageVersion() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the SharedGalleryImageVersion class. + /// + /// Resource name + /// Resource location + /// The unique id of this shared + /// gallery. + /// The published date of the gallery image + /// version Definition. This property can be used for decommissioning + /// purposes. This property is updatable. + /// The end of life date of the gallery + /// image version Definition. This property can be used for + /// decommissioning purposes. This property is updatable. + public SharedGalleryImageVersion(string name = default(string), string location = default(string), string uniqueId = default(string), System.DateTime? publishedDate = default(System.DateTime?), System.DateTime? endOfLifeDate = default(System.DateTime?)) + : base(name, location, uniqueId) + { + PublishedDate = publishedDate; + EndOfLifeDate = endOfLifeDate; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the published date of the gallery image version + /// Definition. This property can be used for decommissioning purposes. + /// This property is updatable. + /// + [JsonProperty(PropertyName = "properties.publishedDate")] + public System.DateTime? PublishedDate { get; set; } + + /// + /// Gets or sets the end of life date of the gallery image version + /// Definition. This property can be used for decommissioning purposes. + /// This property is updatable. + /// + [JsonProperty(PropertyName = "properties.endOfLifeDate")] + public System.DateTime? EndOfLifeDate { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedToValues.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedToValues.cs new file mode 100644 index 000000000000..463c15183c04 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharedToValues.cs @@ -0,0 +1,21 @@ +// +// 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 SharedToValues. + /// + public static class SharedToValues + { + public const string Tenant = "tenant"; + } +} 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 new file mode 100644 index 000000000000..772a9e641f95 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingProfile.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.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Profile for gallery sharing to subscription or tenant + /// + public partial class SharingProfile + { + /// + /// Initializes a new instance of the SharingProfile class. + /// + public SharingProfile() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the SharingProfile class. + /// + /// This property allows you to specify the + /// permission of sharing gallery. <br><br> Possible values + /// are: <br><br> **Private** <br><br> + /// **Groups**. Possible values include: 'Private', 'Groups' + /// A list of sharing profile groups. + public SharingProfile(string permissions = default(string), IList groups = default(IList)) + { + Permissions = permissions; + Groups = groups; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets this property allows you to specify the permission of + /// sharing gallery. &lt;br&gt;&lt;br&gt; Possible + /// values are: &lt;br&gt;&lt;br&gt; **Private** + /// &lt;br&gt;&lt;br&gt; **Groups**. Possible values + /// include: 'Private', 'Groups' + /// + [JsonProperty(PropertyName = "permissions")] + public string Permissions { get; set; } + + /// + /// Gets a list of sharing profile groups. + /// + [JsonProperty(PropertyName = "groups")] + public IList Groups { get; private set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingProfileGroup.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingProfileGroup.cs new file mode 100644 index 000000000000..7a8e4df6262c --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingProfileGroup.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; + + /// + /// Group of the gallery sharing profile + /// + public partial class SharingProfileGroup + { + /// + /// Initializes a new instance of the SharingProfileGroup class. + /// + public SharingProfileGroup() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the SharingProfileGroup class. + /// + /// This property allows you to specify the type of + /// sharing group. <br><br> Possible values are: + /// <br><br> **Subscriptions** <br><br> + /// **AADTenants**. Possible values include: 'Subscriptions', + /// 'AADTenants' + /// A list of subscription/tenant ids the gallery is + /// aimed to be shared to. + public SharingProfileGroup(string type = default(string), IList ids = default(IList)) + { + Type = type; + Ids = ids; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets this property allows you to specify the type of + /// sharing group. &lt;br&gt;&lt;br&gt; Possible values + /// are: &lt;br&gt;&lt;br&gt; **Subscriptions** + /// &lt;br&gt;&lt;br&gt; **AADTenants**. Possible + /// values include: 'Subscriptions', 'AADTenants' + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; set; } + + /// + /// Gets or sets a list of subscription/tenant ids the gallery is aimed + /// to be shared to. + /// + [JsonProperty(PropertyName = "ids")] + public IList Ids { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingProfileGroupTypes.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingProfileGroupTypes.cs new file mode 100644 index 000000000000..1f1724bed836 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingProfileGroupTypes.cs @@ -0,0 +1,22 @@ +// +// 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 SharingProfileGroupTypes. + /// + public static class SharingProfileGroupTypes + { + public const string Subscriptions = "Subscriptions"; + public const string AADTenants = "AADTenants"; + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingUpdate.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingUpdate.cs new file mode 100644 index 000000000000..a51aa0ad30dc --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingUpdate.cs @@ -0,0 +1,85 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Specifies information about the gallery sharing profile update. + /// + public partial class SharingUpdate : IResource + { + /// + /// Initializes a new instance of the SharingUpdate class. + /// + public SharingUpdate() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the SharingUpdate class. + /// + /// This property allows you to specify the + /// operation type of gallery sharing update. <br><br> + /// Possible values are: <br><br> **Add** + /// <br><br> **Remove** <br><br> **Reset**. + /// Possible values include: 'Add', 'Remove', 'Reset' + /// A list of sharing profile groups. + public SharingUpdate(string operationType, IList groups = default(IList)) + { + OperationType = operationType; + Groups = groups; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets this property allows you to specify the operation type + /// of gallery sharing update. &lt;br&gt;&lt;br&gt; + /// Possible values are: &lt;br&gt;&lt;br&gt; **Add** + /// &lt;br&gt;&lt;br&gt; **Remove** + /// &lt;br&gt;&lt;br&gt; **Reset**. Possible values + /// include: 'Add', 'Remove', 'Reset' + /// + [JsonProperty(PropertyName = "operationType")] + public string OperationType { get; set; } + + /// + /// Gets or sets a list of sharing profile groups. + /// + [JsonProperty(PropertyName = "groups")] + public IList Groups { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (OperationType == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "OperationType"); + } + } + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingUpdateOperationTypes.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingUpdateOperationTypes.cs new file mode 100644 index 000000000000..821acf46873f --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/SharingUpdateOperationTypes.cs @@ -0,0 +1,23 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + + /// + /// Defines values for SharingUpdateOperationTypes. + /// + public static class SharingUpdateOperationTypes + { + public const string Add = "Add"; + public const string Remove = "Remove"; + public const string Reset = "Reset"; + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleriesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleriesOperations.cs new file mode 100644 index 000000000000..409b39892dba --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleriesOperations.cs @@ -0,0 +1,615 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// SharedGalleriesOperations operations. + /// + internal partial class SharedGalleriesOperations : IServiceOperations, ISharedGalleriesOperations + { + /// + /// Initializes a new instance of the SharedGalleriesOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal SharedGalleriesOperations(ComputeManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the ComputeManagementClient + /// + public ComputeManagementClient Client { get; private set; } + + /// + /// List shared galleries by subscription id or tenant id. + /// + /// + /// Resource location. + /// + /// + /// The query parameter to decide what shared galleries to fetch when doing + /// listing operations. Possible values include: 'tenant' + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListWithHttpMessagesAsync(string location, string sharedTo = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "location"); + } + string apiVersion = "2020-09-30"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("location", location); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("sharedTo", sharedTo); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/sharedGalleries").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (sharedTo != null) + { + _queryParameters.Add(string.Format("sharedTo={0}", System.Uri.EscapeDataString(sharedTo))); + } + 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; + } + + /// + /// Get a shared gallery by subscription id or tenant id. + /// + /// + /// Resource location. + /// + /// + /// The unique name of the Shared Gallery. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string location, string galleryUniqueName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "location"); + } + if (galleryUniqueName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "galleryUniqueName"); + } + string apiVersion = "2020-09-30"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("location", location); + tracingParameters.Add("galleryUniqueName", galleryUniqueName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/sharedGalleries/{galleryUniqueName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); + _url = _url.Replace("{galleryUniqueName}", System.Uri.EscapeDataString(galleryUniqueName)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// List shared galleries by subscription id or tenant id. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleriesOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleriesOperationsExtensions.cs new file mode 100644 index 000000000000..fbc46821ac94 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleriesOperationsExtensions.cs @@ -0,0 +1,141 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for SharedGalleriesOperations. + /// + public static partial class SharedGalleriesOperationsExtensions + { + /// + /// List shared galleries by subscription id or tenant id. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Resource location. + /// + /// + /// The query parameter to decide what shared galleries to fetch when doing + /// listing operations. Possible values include: 'tenant' + /// + public static IPage List(this ISharedGalleriesOperations operations, string location, string sharedTo = default(string)) + { + return operations.ListAsync(location, sharedTo).GetAwaiter().GetResult(); + } + + /// + /// List shared galleries by subscription id or tenant id. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Resource location. + /// + /// + /// The query parameter to decide what shared galleries to fetch when doing + /// listing operations. Possible values include: 'tenant' + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this ISharedGalleriesOperations operations, string location, string sharedTo = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(location, sharedTo, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Get a shared gallery by subscription id or tenant id. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Resource location. + /// + /// + /// The unique name of the Shared Gallery. + /// + public static SharedGallery Get(this ISharedGalleriesOperations operations, string location, string galleryUniqueName) + { + return operations.GetAsync(location, galleryUniqueName).GetAwaiter().GetResult(); + } + + /// + /// Get a shared gallery by subscription id or tenant id. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Resource location. + /// + /// + /// The unique name of the Shared Gallery. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this ISharedGalleriesOperations operations, string location, string galleryUniqueName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(location, galleryUniqueName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// List shared galleries by subscription id or tenant id. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this ISharedGalleriesOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// List shared galleries by subscription id or tenant id. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListNextAsync(this ISharedGalleriesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleryImageVersionsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleryImageVersionsOperations.cs new file mode 100644 index 000000000000..f86e48b89e02 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleryImageVersionsOperations.cs @@ -0,0 +1,656 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// SharedGalleryImageVersionsOperations operations. + /// + internal partial class SharedGalleryImageVersionsOperations : IServiceOperations, ISharedGalleryImageVersionsOperations + { + /// + /// Initializes a new instance of the SharedGalleryImageVersionsOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal SharedGalleryImageVersionsOperations(ComputeManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the ComputeManagementClient + /// + public ComputeManagementClient Client { get; private set; } + + /// + /// List shared gallery image versions by subscription id or tenant id. + /// + /// + /// Resource location. + /// + /// + /// The unique name of the Shared Gallery. + /// + /// + /// The name of the Shared Gallery Image Definition from which the Image + /// Versions are to be listed. + /// + /// + /// The query parameter to decide what shared galleries to fetch when doing + /// listing operations. Possible values include: 'tenant' + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListWithHttpMessagesAsync(string location, string galleryUniqueName, string galleryImageName, string sharedTo = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "location"); + } + if (galleryUniqueName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "galleryUniqueName"); + } + if (galleryImageName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageName"); + } + string apiVersion = "2020-09-30"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("location", location); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("galleryUniqueName", galleryUniqueName); + tracingParameters.Add("galleryImageName", galleryImageName); + tracingParameters.Add("sharedTo", sharedTo); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/sharedGalleries/{galleryUniqueName}/images/{galleryImageName}/versions").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); + _url = _url.Replace("{galleryUniqueName}", System.Uri.EscapeDataString(galleryUniqueName)); + _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 (sharedTo != null) + { + _queryParameters.Add(string.Format("sharedTo={0}", System.Uri.EscapeDataString(sharedTo))); + } + 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; + } + + /// + /// Get a shared gallery image version by subscription id or tenant id. + /// + /// + /// Resource location. + /// + /// + /// The unique name of the Shared Gallery. + /// + /// + /// The name of the Shared Gallery Image Definition from which the Image + /// Versions are to be listed. + /// + /// + /// The name of the gallery image version to be created. Needs to follow + /// semantic version name pattern: The allowed characters are digit and period. + /// Digits must be within the range of a 32-bit integer. Format: + /// <MajorVersion>.<MinorVersion>.<Patch> + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string location, string galleryUniqueName, string galleryImageName, string galleryImageVersionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "location"); + } + if (galleryUniqueName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "galleryUniqueName"); + } + if (galleryImageName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageName"); + } + if (galleryImageVersionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageVersionName"); + } + string apiVersion = "2020-09-30"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("location", location); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("galleryUniqueName", galleryUniqueName); + tracingParameters.Add("galleryImageName", galleryImageName); + tracingParameters.Add("galleryImageVersionName", galleryImageVersionName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/sharedGalleries/{galleryUniqueName}/images/{galleryImageName}/versions/{galleryImageVersionName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); + _url = _url.Replace("{galleryUniqueName}", System.Uri.EscapeDataString(galleryUniqueName)); + _url = _url.Replace("{galleryImageName}", System.Uri.EscapeDataString(galleryImageName)); + _url = _url.Replace("{galleryImageVersionName}", System.Uri.EscapeDataString(galleryImageVersionName)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// List shared gallery image versions by subscription id or tenant id. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleryImageVersionsOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleryImageVersionsOperationsExtensions.cs new file mode 100644 index 000000000000..30ce93c9da32 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleryImageVersionsOperationsExtensions.cs @@ -0,0 +1,175 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for SharedGalleryImageVersionsOperations. + /// + public static partial class SharedGalleryImageVersionsOperationsExtensions + { + /// + /// List shared gallery image versions by subscription id or tenant id. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Resource location. + /// + /// + /// The unique name of the Shared Gallery. + /// + /// + /// The name of the Shared Gallery Image Definition from which the Image + /// Versions are to be listed. + /// + /// + /// The query parameter to decide what shared galleries to fetch when doing + /// listing operations. Possible values include: 'tenant' + /// + public static IPage List(this ISharedGalleryImageVersionsOperations operations, string location, string galleryUniqueName, string galleryImageName, string sharedTo = default(string)) + { + return operations.ListAsync(location, galleryUniqueName, galleryImageName, sharedTo).GetAwaiter().GetResult(); + } + + /// + /// List shared gallery image versions by subscription id or tenant id. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Resource location. + /// + /// + /// The unique name of the Shared Gallery. + /// + /// + /// The name of the Shared Gallery Image Definition from which the Image + /// Versions are to be listed. + /// + /// + /// The query parameter to decide what shared galleries to fetch when doing + /// listing operations. Possible values include: 'tenant' + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this ISharedGalleryImageVersionsOperations operations, string location, string galleryUniqueName, string galleryImageName, string sharedTo = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(location, galleryUniqueName, galleryImageName, sharedTo, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Get a shared gallery image version by subscription id or tenant id. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Resource location. + /// + /// + /// The unique name of the Shared Gallery. + /// + /// + /// The name of the Shared Gallery Image Definition from which the Image + /// Versions are to be listed. + /// + /// + /// The name of the gallery image version to be created. Needs to follow + /// semantic version name pattern: The allowed characters are digit and period. + /// Digits must be within the range of a 32-bit integer. Format: + /// <MajorVersion>.<MinorVersion>.<Patch> + /// + public static SharedGalleryImageVersion Get(this ISharedGalleryImageVersionsOperations operations, string location, string galleryUniqueName, string galleryImageName, string galleryImageVersionName) + { + return operations.GetAsync(location, galleryUniqueName, galleryImageName, galleryImageVersionName).GetAwaiter().GetResult(); + } + + /// + /// Get a shared gallery image version by subscription id or tenant id. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Resource location. + /// + /// + /// The unique name of the Shared Gallery. + /// + /// + /// The name of the Shared Gallery Image Definition from which the Image + /// Versions are to be listed. + /// + /// + /// The name of the gallery image version to be created. Needs to follow + /// semantic version name pattern: The allowed characters are digit and period. + /// Digits must be within the range of a 32-bit integer. Format: + /// <MajorVersion>.<MinorVersion>.<Patch> + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this ISharedGalleryImageVersionsOperations operations, string location, string galleryUniqueName, string galleryImageName, string galleryImageVersionName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(location, galleryUniqueName, galleryImageName, galleryImageVersionName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// List shared gallery image versions by subscription id or tenant id. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this ISharedGalleryImageVersionsOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// List shared gallery image versions by subscription id or tenant id. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListNextAsync(this ISharedGalleryImageVersionsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleryImagesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleryImagesOperations.cs new file mode 100644 index 000000000000..e6d129ddf34d --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleryImagesOperations.cs @@ -0,0 +1,634 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// SharedGalleryImagesOperations operations. + /// + internal partial class SharedGalleryImagesOperations : IServiceOperations, ISharedGalleryImagesOperations + { + /// + /// Initializes a new instance of the SharedGalleryImagesOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal SharedGalleryImagesOperations(ComputeManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the ComputeManagementClient + /// + public ComputeManagementClient Client { get; private set; } + + /// + /// List shared gallery images by subscription id or tenant id. + /// + /// + /// Resource location. + /// + /// + /// The unique name of the Shared Gallery. + /// + /// + /// The query parameter to decide what shared galleries to fetch when doing + /// listing operations. Possible values include: 'tenant' + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListWithHttpMessagesAsync(string location, string galleryUniqueName, string sharedTo = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "location"); + } + if (galleryUniqueName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "galleryUniqueName"); + } + string apiVersion = "2020-09-30"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("location", location); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("galleryUniqueName", galleryUniqueName); + tracingParameters.Add("sharedTo", sharedTo); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/sharedGalleries/{galleryUniqueName}/images").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); + _url = _url.Replace("{galleryUniqueName}", System.Uri.EscapeDataString(galleryUniqueName)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (sharedTo != null) + { + _queryParameters.Add(string.Format("sharedTo={0}", System.Uri.EscapeDataString(sharedTo))); + } + 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; + } + + /// + /// Get a shared gallery image by subscription id or tenant id. + /// + /// + /// Resource location. + /// + /// + /// The unique name of the Shared Gallery. + /// + /// + /// The name of the Shared Gallery Image Definition from which the Image + /// Versions are to be listed. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string location, string galleryUniqueName, string galleryImageName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "location"); + } + if (galleryUniqueName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "galleryUniqueName"); + } + if (galleryImageName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "galleryImageName"); + } + string apiVersion = "2020-09-30"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("location", location); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("galleryUniqueName", galleryUniqueName); + tracingParameters.Add("galleryImageName", galleryImageName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/sharedGalleries/{galleryUniqueName}/images/{galleryImageName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); + _url = _url.Replace("{galleryUniqueName}", System.Uri.EscapeDataString(galleryUniqueName)); + _url = _url.Replace("{galleryImageName}", System.Uri.EscapeDataString(galleryImageName)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// List shared gallery images by subscription id or tenant id. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleryImagesOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleryImagesOperationsExtensions.cs new file mode 100644 index 000000000000..6f7b97ca6e91 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SharedGalleryImagesOperationsExtensions.cs @@ -0,0 +1,155 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for SharedGalleryImagesOperations. + /// + public static partial class SharedGalleryImagesOperationsExtensions + { + /// + /// List shared gallery images by subscription id or tenant id. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Resource location. + /// + /// + /// The unique name of the Shared Gallery. + /// + /// + /// The query parameter to decide what shared galleries to fetch when doing + /// listing operations. Possible values include: 'tenant' + /// + public static IPage List(this ISharedGalleryImagesOperations operations, string location, string galleryUniqueName, string sharedTo = default(string)) + { + return operations.ListAsync(location, galleryUniqueName, sharedTo).GetAwaiter().GetResult(); + } + + /// + /// List shared gallery images by subscription id or tenant id. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Resource location. + /// + /// + /// The unique name of the Shared Gallery. + /// + /// + /// The query parameter to decide what shared galleries to fetch when doing + /// listing operations. Possible values include: 'tenant' + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this ISharedGalleryImagesOperations operations, string location, string galleryUniqueName, string sharedTo = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(location, galleryUniqueName, sharedTo, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Get a shared gallery image by subscription id or tenant id. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Resource location. + /// + /// + /// The unique name of the Shared Gallery. + /// + /// + /// The name of the Shared Gallery Image Definition from which the Image + /// Versions are to be listed. + /// + public static SharedGalleryImage Get(this ISharedGalleryImagesOperations operations, string location, string galleryUniqueName, string galleryImageName) + { + return operations.GetAsync(location, galleryUniqueName, galleryImageName).GetAwaiter().GetResult(); + } + + /// + /// Get a shared gallery image by subscription id or tenant id. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Resource location. + /// + /// + /// The unique name of the Shared Gallery. + /// + /// + /// The name of the Shared Gallery Image Definition from which the Image + /// Versions are to be listed. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this ISharedGalleryImagesOperations operations, string location, string galleryUniqueName, string galleryImageName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(location, galleryUniqueName, galleryImageName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// List shared gallery images by subscription id or tenant id. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this ISharedGalleryImagesOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// List shared gallery images by subscription id or tenant id. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListNextAsync(this ISharedGalleryImagesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Microsoft.Azure.Management.Compute.csproj b/sdk/compute/Microsoft.Azure.Management.Compute/src/Microsoft.Azure.Management.Compute.csproj index c33fe8c3d81e..0553d95dcc82 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Microsoft.Azure.Management.Compute.csproj +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Microsoft.Azure.Management.Compute.csproj @@ -9,18 +9,12 @@ Provides developers with libraries for the updated compute platform under Azure Resource manager to deploy virtual machine, virtual machine extensions and availability set management capabilities. Launch, restart, scale, capture and manage VMs, VM Extensions and more. Note: This client library is for Virtual Machines under Azure Resource Manager. Development of this library has shifted focus to the Azure Unified SDK. The future development will be focused on "Azure.ResourceManager.Compute" (https://www.nuget.org/packages/Azure.ResourceManager.Compute/). Please see the package changelog for more information. - 45.0.0.1 + 46.0.0.0-gallery-preview Microsoft.Azure.Management.Compute management;virtual machine;compute; 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 02dae25d9f82..d181113821b2 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/GalleryTests.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/GalleryTests.cs @@ -345,6 +345,76 @@ public void GalleryApplicationVersion_CRUD_Tests() } } + + [Fact] + public void Gallery_WithSharingProfile_CRUD_Tests() + { + using (MockContext context = MockContext.Start(this.GetType())) + { + EnsureClientsInitialized(context); + string rgName = ComputeManagementTestUtilities.GenerateName(ResourceGroupPrefix); + + m_ResourcesClient.ResourceGroups.CreateOrUpdate(rgName, new ResourceGroup { Location = galleryHomeLocation }); + Trace.TraceInformation("Created the resource group: " + rgName); + + string galleryName = ComputeManagementTestUtilities.GenerateName(GalleryNamePrefix); + Gallery galleryIn = GetTestInputSharedGallery(); + m_CrpClient.Galleries.CreateOrUpdate(rgName, galleryName, galleryIn); + Trace.TraceInformation(string.Format("Created the shared gallery: {0} in resource group: {1} with sharing profile permission: {2}", + galleryName, rgName, galleryIn.SharingProfile.Permissions)); + + Gallery galleryOut = m_CrpClient.Galleries.Get(rgName, galleryName); + Trace.TraceInformation("Got the gallery."); + Assert.NotNull(galleryOut); + ValidateGallery(galleryIn, galleryOut); + + Trace.TraceInformation("Update the sharing profile via post, add the sharing profile groups."); + string newTenantId = "583d66a9-0041-4999-8838-75baece101d5"; + SharingProfileGroup tenantGroups = new SharingProfileGroup() + { + Type = "AADTenants", + Ids = new List { newTenantId } + + }; + + string newSubId = "640c5810-13bf-4b82-b94d-f38c2565e3bc"; + SharingProfileGroup subGroups = new SharingProfileGroup() + { + Type = "Subscriptions", + Ids = new List { newSubId } + + }; + + List groups = new List { tenantGroups, subGroups }; + SharingUpdate sharingUpdate = new SharingUpdate() + { + OperationType = "Add", + Groups = groups + }; + + m_CrpClient.GallerySharingProfile.Update(rgName, galleryName,sharingUpdate); + + Gallery galleryOutWithSharingProfile = m_CrpClient.Galleries.Get(rgName, galleryName, SelectPermissions.Permissions); + Trace.TraceInformation("Got the gallery"); + Assert.NotNull(galleryOut); + + ValidateSharingProfile(galleryIn, galleryOutWithSharingProfile, groups); + + Trace.TraceInformation("Reset this gallery to private before deleting it."); + SharingUpdate resetPrivateUpdate = new SharingUpdate() + { + OperationType = "ResetToPrivate", + Groups = null + }; + + m_CrpClient.GallerySharingProfile.Update(rgName, galleryName, resetPrivateUpdate); + + Trace.TraceInformation("Deleting this gallery."); + m_CrpClient.Galleries.Delete(rgName, galleryName); + // resource groups cleanup is taken cared by MockContext.Dispose() method. + } + } + private void ValidateGallery(Gallery galleryIn, Gallery galleryOut) { Assert.False(string.IsNullOrEmpty(galleryOut.ProvisioningState)); @@ -365,6 +435,42 @@ private void ValidateGallery(Gallery galleryIn, Gallery galleryOut) Assert.False(string.IsNullOrEmpty(galleryOut?.Identifier?.UniqueName)); } + private void ValidateSharingProfile(Gallery galleryIn, Gallery galleryOut, List groups) + { + if(galleryIn.SharingProfile != null) + { + Assert.Equal(galleryIn.SharingProfile.Permissions, galleryOut.SharingProfile.Permissions); + Assert.Equal(groups.Count, galleryOut.SharingProfile.Groups.Count); + + foreach (SharingProfileGroup sharingProfileGroup in galleryOut.SharingProfile.Groups) + { + if (sharingProfileGroup.Ids != null) + { + List outIds = sharingProfileGroup.Ids as List; + List inIds = null; + + foreach(SharingProfileGroup inGroup in groups) + { + if(inGroup.Type == sharingProfileGroup.Type) + { + inIds = inGroup.Ids as List; + break; + } + } + + Assert.NotNull(inIds); + Assert.Equal(inIds.Count, outIds.Count); + + for(int i = 0; i < inIds.Count; i++) + { + Assert.Equal(outIds[i], inIds[i]); + } + + } + } + } + } + private void ValidateGalleryImage(GalleryImage imageIn, GalleryImage imageOut) { Assert.False(string.IsNullOrEmpty(imageOut.ProvisioningState)); @@ -428,6 +534,19 @@ private Gallery GetTestInputGallery() }; } + private Gallery GetTestInputSharedGallery() + { + return new Gallery + { + Location = galleryHomeLocation, + Description = "This is a sample gallery description", + SharingProfile = new SharingProfile + { + Permissions = "Groups" + } + }; + } + private GalleryImage GetTestInputGalleryImage() { return new GalleryImage diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/SharedGalleryTests.cs b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/SharedGalleryTests.cs new file mode 100644 index 000000000000..f1160c5dad35 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/SharedGalleryTests.cs @@ -0,0 +1,185 @@ +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using System; +using System.Collections.Generic; +using System.Text; +using Xunit; +using Microsoft.Azure.Management.ResourceManager.Models; +using Microsoft.Azure.Management.ResourceManager; +using System.Diagnostics; +using Microsoft.Azure.Management.Compute.Models; +using Microsoft.Rest.Azure; +using System.Linq; +using Microsoft.Azure.Management.Compute; + + +namespace Compute.Tests +{ + public class SharedGalleryTests : VMTestBase + { + // these needs to be decided and created, especially subscription. + // two gallery shared to the tenant, but only one gallery shared to the sub + protected const string GalleryUniqueName = "97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV"; + protected const string GalleryImageName = "jmaesscc"; + protected const string GalleryImageVersionName = "1.0.0"; + + private string galleryAccessLocation = "eastus2euap"; + + [Fact] + public void SharedGallery_GetAndList_Tests() + { + using (MockContext context = MockContext.Start(this.GetType())) + { + EnsureClientsInitialized(context); + + SharedGallery sharedGalleryOut = m_CrpClient.SharedGalleries.Get(galleryAccessLocation, GalleryUniqueName); + Trace.TraceInformation("Got the shared gallery {0} which is shared to current subscription.", GalleryUniqueName); + Assert.NotNull(sharedGalleryOut); + ValidateSharedGallery(sharedGalleryOut); + + + IPage sharedGalleriesList = m_CrpClient.SharedGalleries.List(galleryAccessLocation, "tenant"); + Trace.TraceInformation("Got the shared galleries which are shared to tenant of current subscription."); + + int count = sharedGalleriesList.Count(); + Assert.Equal(1, count); + + foreach(SharedGallery gallery in sharedGalleriesList) + { + if(gallery.Name == GalleryUniqueName) + { + ValidateSharedGallery(gallery); + break; + } + } + + sharedGalleriesList = m_CrpClient.SharedGalleries.List(galleryAccessLocation); + + count = sharedGalleriesList.Count(); + Assert.Equal(1, count); + Trace.TraceInformation("Got the shared gallery {0} which is shared to current subscription.", GalleryUniqueName); + + ValidateSharedGallery(sharedGalleriesList.First()); + + sharedGalleriesList = m_CrpClient.SharedGalleries.List(galleryAccessLocation, sharedTo: SharedToValues.Tenant); + + count = sharedGalleriesList.Count(); + Assert.Equal(1, count); + Trace.TraceInformation("Got the shared gallery {0} which is shared to current tenant.", GalleryUniqueName); + + ValidateSharedGallery(sharedGalleriesList.First()); + + } + } + + [Fact] + public void SharedGalleryImage_GetAndList_Tests() + { + using (MockContext context = MockContext.Start(this.GetType())) + { + EnsureClientsInitialized(context); + + SharedGalleryImage sharedGalleryImageOut = m_CrpClient.SharedGalleryImages.Get(galleryAccessLocation, GalleryUniqueName, GalleryImageName); + Trace.TraceInformation("Got the shared gallery image {0} which is shared to current subscription.", GalleryImageName); + Assert.NotNull(sharedGalleryImageOut); + + ValidateSharedGalleryImage(sharedGalleryImageOut); + + + IPage sharedGalleryImagesList = m_CrpClient.SharedGalleryImages.List(galleryAccessLocation, GalleryUniqueName, "tenant"); + Trace.TraceInformation("Got the shared gallery images which are shared to tenant of current subscription."); + + int count = sharedGalleryImagesList.Count(); + Assert.Equal(1, count); + + foreach (SharedGalleryImage galleryImage in sharedGalleryImagesList) + { + if (galleryImage.Name == GalleryImageName) + { + ValidateSharedGalleryImage(galleryImage); + break; + } + } + + sharedGalleryImagesList = m_CrpClient.SharedGalleryImages.List(galleryAccessLocation, GalleryUniqueName); + + count = sharedGalleryImagesList.Count(); + Assert.Equal(1, count); + Trace.TraceInformation("Got the shared gallery {0} which is shared to current subscription.", GalleryUniqueName); + + ValidateSharedGalleryImage(sharedGalleryImagesList.First()); + + sharedGalleryImagesList = m_CrpClient.SharedGalleryImages.List(galleryAccessLocation, GalleryUniqueName, sharedTo: SharedToValues.Tenant); + + count = sharedGalleryImagesList.Count(); + Assert.Equal(1, count); + Trace.TraceInformation("Got the shared gallery {0} which is shared to current tenant.", GalleryUniqueName); + + ValidateSharedGalleryImage(sharedGalleryImagesList.First()); + } + } + + [Fact] + public void SharedGalleryImageVersion_GetAndList_Tests() + { + using (MockContext context = MockContext.Start(this.GetType())) + { + EnsureClientsInitialized(context); + + SharedGalleryImageVersion sharedGalleryImageVersionOut = m_CrpClient.SharedGalleryImageVersions.Get(galleryAccessLocation, GalleryUniqueName, GalleryImageName, GalleryImageVersionName); + Trace.TraceInformation("Got the shared gallery image name {0} which is shared to current subscription.", GalleryImageVersionName); + Assert.NotNull(sharedGalleryImageVersionOut); + ValidateSharedGalleryImageVersion(sharedGalleryImageVersionOut); + + IPage sharedGalleryImageVersionsList = m_CrpClient.SharedGalleryImageVersions.List(galleryAccessLocation, GalleryUniqueName, GalleryImageName, "tenant"); + Trace.TraceInformation("Got the shared gallery image versions which are shared to tenant of current subscription."); + + int count = sharedGalleryImageVersionsList.Count(); + Assert.Equal(1, count); + + foreach (SharedGalleryImageVersion galleryImageVersion in sharedGalleryImageVersionsList) + { + if (galleryImageVersion.Name == GalleryImageVersionName) + { + ValidateSharedGalleryImageVersion(galleryImageVersion); + break; + } + } + + sharedGalleryImageVersionsList = m_CrpClient.SharedGalleryImageVersions.List(galleryAccessLocation, GalleryUniqueName, GalleryImageName); + + count = sharedGalleryImageVersionsList.Count(); + Assert.Equal(1, count); + Trace.TraceInformation("Got the shared gallery {0} which is shared to current subscription.", GalleryUniqueName); + + ValidateSharedGalleryImageVersion(sharedGalleryImageVersionsList.First()); + + sharedGalleryImageVersionsList = m_CrpClient.SharedGalleryImageVersions.List(galleryAccessLocation, GalleryUniqueName, GalleryImageName, + sharedTo: SharedToValues.Tenant); + + count = sharedGalleryImageVersionsList.Count(); + Assert.Equal(1, count); + Trace.TraceInformation("Got the shared gallery {0} which is shared to current tenant.", GalleryUniqueName); + + ValidateSharedGalleryImageVersion(sharedGalleryImageVersionsList.First()); + } + } + + private void ValidateSharedGallery(SharedGallery sharedGallery) + { + string expectedId = "/SharedGalleries/" + GalleryUniqueName; + Assert.Equal(expectedId, sharedGallery.UniqueId); + } + + private void ValidateSharedGalleryImage(SharedGalleryImage sharedGalleryImage) + { + string expectedId = "/SharedGalleries/" + GalleryUniqueName + "/Images/" + GalleryImageName; + Assert.Equal(expectedId, sharedGalleryImage.UniqueId); + } + + private void ValidateSharedGalleryImageVersion(SharedGalleryImageVersion sharedGalleryImageVersion) + { + string expectedId = "/SharedGalleries/" + GalleryUniqueName + "/Images/" + GalleryImageName + "/Versions/" + GalleryImageVersionName; + Assert.Equal(expectedId, sharedGalleryImageVersion.UniqueId); + } + } +} 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 69323cc6aebd..b288095d3088 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryApplicationVersion_CRUD_Tests.json +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryApplicationVersion_CRUD_Tests.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/galleryPsTestRg210?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzIxMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg9624?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk2MjQ/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"galleryPsTestRg210\": \"2021-02-04 22:19:01Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"galleryPsTestRg9624\": \"2021-02-08 19:22:52Z\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "72ddd29e-09d0-4593-b53f-0463af476e4d" + "4c88c81e-d934-47a5-bb83-d10b54fcc381" ], "Accept-Language": [ "en-US" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "12a0c5c0-6577-4893-8dae-d666d5cbe2a9" + "c2c60004-05a4-420c-bdea-97d2426d2de5" ], "x-ms-correlation-request-id": [ - "12a0c5c0-6577-4893-8dae-d666d5cbe2a9" + "c2c60004-05a4-420c-bdea-97d2426d2de5" ], "x-ms-routing-request-id": [ - "EASTUS2:20210204T221905Z:12a0c5c0-6577-4893-8dae-d666d5cbe2a9" + "WESTUS:20210208T192255Z:c2c60004-05a4-420c-bdea-97d2426d2de5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Thu, 04 Feb 2021 22:19:04 GMT" + "Mon, 08 Feb 2021 19:22:54 GMT" ], "Content-Length": [ "249" @@ -63,17 +63,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg210\",\r\n \"name\": \"galleryPsTestRg210\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"galleryPsTestRg210\": \"2021-02-04 22:19:01Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624\",\r\n \"name\": \"galleryPsTestRg9624\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"galleryPsTestRg9624\": \"2021-02-08 19:22:52Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg210/providers/Microsoft.Storage/storageAccounts/saforgallery9738?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzIxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3NhZm9yZ2FsbGVyeTk3Mzg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Storage/storageAccounts/saforgallery2295?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnkyMjk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5ab2f408-bbe6-4de6-a509-5b7f8b61e18c" + "42999a72-43da-44a6-b103-3db3330ea427" ], "Accept-Language": [ "en-US" @@ -99,13 +99,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/50870a7a-9863-463d-8335-40fb91fd7040?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/2989c957-ea6b-4b74-95ab-37ef908d9873?monitor=true&api-version=2015-06-15" ], "Retry-After": [ "17" ], "x-ms-request-id": [ - "50870a7a-9863-463d-8335-40fb91fd7040" + "2989c957-ea6b-4b74-95ab-37ef908d9873" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,16 +117,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "0398d14c-a53b-4c2f-8a16-ea58dda37366" + "2f680037-514c-498f-8d12-11a5ce8c1fdd" ], "x-ms-routing-request-id": [ - "EASTUS2:20210204T221915Z:0398d14c-a53b-4c2f-8a16-ea58dda37366" + "WESTUS:20210208T192303Z:2f680037-514c-498f-8d12-11a5ce8c1fdd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 04 Feb 2021 22:19:14 GMT" + "Mon, 08 Feb 2021 19:23:02 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -142,8 +142,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/50870a7a-9863-463d-8335-40fb91fd7040?monitor=true&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvNTA4NzBhN2EtOTg2My00NjNkLTgzMzUtNDBmYjkxZmQ3MDQwP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/2989c957-ea6b-4b74-95ab-37ef908d9873?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvMjk4OWM5NTctZWE2Yi00Yjc0LTk1YWItMzdlZjkwOGQ5ODczP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -162,7 +162,7 @@ "no-cache" ], "x-ms-request-id": [ - "583128a2-4a68-48fd-86d6-0b5a6ba00daf" + "1b37223b-3c2b-4287-9ddc-f750dcb3ae0e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -174,16 +174,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "9264a454-2483-4fd8-a7ee-943665a9c71f" + "4194b7e7-88cf-4ffd-a20b-523f358020d2" ], "x-ms-routing-request-id": [ - "EASTUS2:20210204T221932Z:9264a454-2483-4fd8-a7ee-943665a9c71f" + "WESTUS:20210208T192321Z:4194b7e7-88cf-4ffd-a20b-523f358020d2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 04 Feb 2021 22:19:32 GMT" + "Mon, 08 Feb 2021 19:23:21 GMT" ], "Content-Length": [ "95" @@ -199,13 +199,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg210/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzIxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4cc0d46e-9a41-4227-8e97-7ad3555ea77b" + "6e1c19fe-06a2-4fcd-bbfd-3ee57d10e78c" ], "Accept-Language": [ "en-US" @@ -225,7 +225,7 @@ "no-cache" ], "x-ms-request-id": [ - "129ff67a-b611-4c14-9ae8-085fa2b90db7" + "08fe4ffb-eaaa-4876-bc45-2673b5a9ee15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,16 +237,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "65e61839-11ce-4ab1-9b07-3be535a57004" + "3c5eaadf-7421-4014-8c14-f73633a5e00b" ], "x-ms-routing-request-id": [ - "EASTUS2:20210204T221942Z:65e61839-11ce-4ab1-9b07-3be535a57004" + "WESTUS:20210208T192331Z:3c5eaadf-7421-4014-8c14-f73633a5e00b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 04 Feb 2021 22:19:42 GMT" + "Mon, 08 Feb 2021 19:23:31 GMT" ], "Content-Length": [ "775" @@ -258,17 +258,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg210/providers/Microsoft.Storage/storageAccounts/saforgallery9738\",\r\n \"name\": \"saforgallery9738\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-04T22:19:13.8941502Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery9738.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery9738.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery9738.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery9738.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Storage/storageAccounts/saforgallery2295\",\r\n \"name\": \"saforgallery2295\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-08T19:23:01.9718059Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery2295.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery2295.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery2295.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery2295.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg210/providers/Microsoft.Storage/storageAccounts/saforgallery9738?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzIxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3NhZm9yZ2FsbGVyeTk3Mzg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Storage/storageAccounts/saforgallery2295?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnkyMjk1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "985225ad-7580-4438-80d9-67c6dd597c0e" + "864568ce-c4aa-487e-a175-522894596052" ], "Accept-Language": [ "en-US" @@ -288,7 +288,7 @@ "no-cache" ], "x-ms-request-id": [ - "6cf302af-5789-4310-9def-13ba3c29894a" + "8acc40d9-742b-4948-ab76-c3461d958325" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -300,16 +300,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "df483584-2282-4f47-a434-90bdf840e048" + "fab52b4e-e0f1-4d1d-8759-16a402643e2a" ], "x-ms-routing-request-id": [ - "EASTUS2:20210204T221943Z:df483584-2282-4f47-a434-90bdf840e048" + "WESTUS:20210208T192331Z:fab52b4e-e0f1-4d1d-8759-16a402643e2a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 04 Feb 2021 22:19:42 GMT" + "Mon, 08 Feb 2021 19:23:31 GMT" ], "Content-Length": [ "763" @@ -321,17 +321,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg210/providers/Microsoft.Storage/storageAccounts/saforgallery9738\",\r\n \"name\": \"saforgallery9738\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-04T22:19:13.8941502Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery9738.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery9738.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery9738.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery9738.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Storage/storageAccounts/saforgallery2295\",\r\n \"name\": \"saforgallery2295\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-08T19:23:01.9718059Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery2295.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery2295.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery2295.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery2295.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg210/providers/Microsoft.Storage/storageAccounts/saforgallery9738/listKeys?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzIxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3NhZm9yZ2FsbGVyeTk3MzgvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Storage/storageAccounts/saforgallery2295/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnkyMjk1L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "33b67c84-aab4-43ab-ab39-0dfa9aa74259" + "ee2e137f-42a4-4c8a-9b30-7ba0480d92dc" ], "Accept-Language": [ "en-US" @@ -351,7 +351,7 @@ "no-cache" ], "x-ms-request-id": [ - "f1fe87c7-6775-472d-8c9c-26dbe51c54db" + "a85b88a0-8aa6-43d6-9070-2f0dff9ef0d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -363,16 +363,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "baf199b1-dfa1-4ece-b788-581c6c5ca030" + "8377464c-9bc3-49db-bd87-ddc0e49b7b58" ], "x-ms-routing-request-id": [ - "EASTUS2:20210204T221943Z:baf199b1-dfa1-4ece-b788-581c6c5ca030" + "WESTUS:20210208T192332Z:8377464c-9bc3-49db-bd87-ddc0e49b7b58" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 04 Feb 2021 22:19:42 GMT" + "Mon, 08 Feb 2021 19:23:32 GMT" ], "Content-Length": [ "197" @@ -384,17 +384,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"key1\": \"VEyso8UqMtYUv9JTylSG42t97l3DNnQAR6jak2iwsNP0LkdkebqE3KiRSNyIJ8MYkhCT6+F0ziWo0/YCTmjVow==\",\r\n \"key2\": \"u8o0/dPLf6Z2rnBJPUXSES8xPdFdFzMdxNDRkm0d2ynKxTNb9HZ0B4JmXv/Plu1HZlsUOjBAI8nwz/qym8HBfQ==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"CmtYFQXTnq9i/fGy0wZ6+srnkWEkv/101ArxDZFO+aoSEvBlxWqDQW9ojXXQdwlMPGWj9r5zmpnGlU7JrkXJ1Q==\",\r\n \"key2\": \"siKyGGTACI/P8ZUmzsCd6nBqnBcH7nZ95MIqJBKWuilzdxbNZHgzIe4J3fKn3WLun991wKkxFpuKGPNp0ZpRtQ==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg210/providers/Microsoft.Compute/galleries/galleryPsTestGallery8379?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzIxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODM3OT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1OTA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\"\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "71ccd155-b974-4e76-a47d-611b3795ed89" + "65955a5f-1f2f-42b4-90eb-92b4ea99fc63" ], "Accept-Language": [ "en-US" @@ -402,8 +402,8 @@ "User-Agent": [ "FxVersion/4.6.29518.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.1" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -420,7 +420,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/02b24b5f-632a-4ba8-be0b-31e2655acdcc?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/fba9c352-7905-41db-9385-dfdceb7a7991?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299" @@ -429,10 +429,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "02b24b5f-632a-4ba8-be0b-31e2655acdcc" + "fba9c352-7905-41db-9385-dfdceb7a7991" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -442,19 +442,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "3ca867ef-adb6-4ec7-932b-3f29b72992c2" + "fd2f9540-bf31-466e-b5ea-d3c858b27610" ], "x-ms-routing-request-id": [ - "EASTUS2:20210204T221955Z:3ca867ef-adb6-4ec7-932b-3f29b72992c2" + "WESTUS:20210208T192342Z:fd2f9540-bf31-466e-b5ea-d3c858b27610" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 04 Feb 2021 22:19:54 GMT" + "Mon, 08 Feb 2021 19:23:42 GMT" ], "Content-Length": [ - "513" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -463,20 +463,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8379\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg210/providers/Microsoft.Compute/galleries/galleryPsTestGallery8379\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY8379\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8590\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8590\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Private\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/02b24b5f-632a-4ba8-be0b-31e2655acdcc?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wMmIyNGI1Zi02MzJhLTRiYTgtYmUwYi0zMWUyNjU1YWNkY2M/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/fba9c352-7905-41db-9385-dfdceb7a7991?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9mYmE5YzM1Mi03OTA1LTQxZGItOTM4NS1kZmRjZWI3YTc5OTE/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29518.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.1" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -487,35 +487,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4198" + "Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4153" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "0236d6c6-f3ba-4d53-add6-a3aab4db4c6e" + "4aa6c219-4454-4f4e-86af-1382da0ff15d" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-correlation-request-id": [ - "d4c57097-4465-443d-9b8e-dad4e3e87fe1" + "d289ac04-20ef-447c-a0e8-7b81d67f6685" ], "x-ms-routing-request-id": [ - "EASTUS2:20210204T222025Z:d4c57097-4465-443d-9b8e-dad4e3e87fe1" + "WESTUS:20210208T192413Z:d289ac04-20ef-447c-a0e8-7b81d67f6685" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 04 Feb 2021 22:20:25 GMT" + "Mon, 08 Feb 2021 19:24:12 GMT" ], "Content-Length": [ "183" @@ -527,20 +527,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-02-04T22:19:52.5193491+00:00\",\r\n \"endTime\": \"2021-02-04T22:19:57.097562+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"02b24b5f-632a-4ba8-be0b-31e2655acdcc\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-02-08T11:23:40.6072646-08:00\",\r\n \"endTime\": \"2021-02-08T11:23:41.4822639-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"fba9c352-7905-41db-9385-dfdceb7a7991\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg210/providers/Microsoft.Compute/galleries/galleryPsTestGallery8379?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzIxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODM3OT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1OTA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29518.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.1" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -557,29 +557,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "6d8e1382-f0f6-4de8-85bc-7e471d497602" + "b6097bf3-025d-4c52-8d1a-0b7faf5d5f04" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "bf0c2470-f17a-42e1-b7d4-e089e1457177" + "945f0877-d31b-45d6-ab82-8f470cdb988b" ], "x-ms-routing-request-id": [ - "EASTUS2:20210204T222025Z:bf0c2470-f17a-42e1-b7d4-e089e1457177" + "WESTUS:20210208T192413Z:945f0877-d31b-45d6-ab82-8f470cdb988b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 04 Feb 2021 22:20:25 GMT" + "Mon, 08 Feb 2021 19:24:12 GMT" ], "Content-Length": [ "514" @@ -591,17 +591,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8379\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg210/providers/Microsoft.Compute/galleries/galleryPsTestGallery8379\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY8379\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery8590\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8590\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg210/providers/Microsoft.Compute/galleries/galleryPsTestGallery8379/applications/galleryPsTestGalleryApplication2025?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzIxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODM3OS9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjIwMjU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590/applications/galleryPsTestGalleryApplication8184?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1OTAvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb244MTg0P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\",\r\n \"supportedOSType\": \"Windows\"\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cdc09d57-a21b-4613-bdb7-802bc5946314" + "524c8028-9ea5-498b-95c2-f179ae8a26de" ], "Accept-Language": [ "en-US" @@ -609,8 +609,8 @@ "User-Agent": [ "FxVersion/4.6.29518.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.1" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -633,10 +633,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "16d52740-d538-456b-87ef-dd2e986b8a45" + "a6ac87b9-2f8e-42c6-8f00-3816f2349e3c" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -646,16 +646,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "4dedb706-8cd2-4252-8faa-1a2fe0c63454" + "dbb88ee8-bee0-4cd3-97b4-5d609c419958" ], "x-ms-routing-request-id": [ - "EASTUS2:20210204T222026Z:4dedb706-8cd2-4252-8faa-1a2fe0c63454" + "WESTUS:20210208T192413Z:dbb88ee8-bee0-4cd3-97b4-5d609c419958" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 04 Feb 2021 22:20:25 GMT" + "Mon, 08 Feb 2021 19:24:13 GMT" ], "Content-Length": [ "633" @@ -667,20 +667,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication2025\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg210/providers/Microsoft.Compute/galleries/galleryPsTestGallery8379/applications/galleryPsTestGalleryApplication2025\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication8184\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590/applications/galleryPsTestGalleryApplication8184\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg210/providers/Microsoft.Compute/galleries/galleryPsTestGallery8379/applications/galleryPsTestGalleryApplication2025?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzIxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODM3OS9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjIwMjU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590/applications/galleryPsTestGalleryApplication8184?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1OTAvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb244MTg0P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29518.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.1" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -697,29 +697,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "c849f950-25e0-4b1b-8154-6a468d02ad67" + "df5ca3d9-2459-4297-b8a4-d7fc453d5bf0" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-correlation-request-id": [ - "3bc33eb7-312a-48d0-8edf-3ffeba406511" + "064dcd99-4255-40f6-a435-6eaa3e2b0453" ], "x-ms-routing-request-id": [ - "EASTUS2:20210204T222056Z:3bc33eb7-312a-48d0-8edf-3ffeba406511" + "WESTUS:20210208T192444Z:064dcd99-4255-40f6-a435-6eaa3e2b0453" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 04 Feb 2021 22:20:56 GMT" + "Mon, 08 Feb 2021 19:24:43 GMT" ], "Content-Length": [ "633" @@ -731,17 +731,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication2025\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg210/providers/Microsoft.Compute/galleries/galleryPsTestGallery8379/applications/galleryPsTestGalleryApplication2025\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication8184\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590/applications/galleryPsTestGalleryApplication8184\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg210/providers/Microsoft.Compute/galleries/galleryPsTestGallery8379/applications/galleryPsTestGalleryApplication2025/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzIxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODM3OS9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjIwMjUvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590/applications/galleryPsTestGalleryApplication8184/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1OTAvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb244MTg0L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery9738.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=KB7lkpRJZ%2BNbjI8RUWjePth3aALbjRqp%2F5MdZ%2FjSkB4%3D&st=2021-02-03T22%3A19%3A44Z&se=2021-02-06T22%3A19%3A44Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"SoutheastAsia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"endOfLifeDate\": \"2021-02-14T00:00:00Z\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery2295.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=i%2FZftR0%2BcZaW%2FHqx6GCytHdp9rHt%2BodyL8wMxu0XyPk%3D&st=2021-02-07T19%3A23%3A34Z&se=2021-02-10T19%3A23%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 \"targetRegions\": [\r\n {\r\n \"name\": \"SoutheastAsia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"endOfLifeDate\": \"2021-02-18T08:00:00Z\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "868f40a6-a644-4413-8753-b9eaf7f465db" + "81ff979c-cd2c-4327-95d6-89c2d4f249f1" ], "Accept-Language": [ "en-US" @@ -749,14 +749,14 @@ "User-Agent": [ "FxVersion/4.6.29518.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.1" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "833" + "835" ] }, "ResponseHeaders": { @@ -767,7 +767,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/05a1c1ee-3afd-40a5-a2ba-177f76da77cb?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/c70badaa-9b94-49d9-86f0-8385a8304e5e?api-version=2020-09-30" ], "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": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "05a1c1ee-3afd-40a5-a2ba-177f76da77cb" + "c70badaa-9b94-49d9-86f0-8385a8304e5e" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -789,19 +789,19 @@ "1197" ], "x-ms-correlation-request-id": [ - "37cb8d89-9312-46f0-8e7e-e186d92155d4" + "e7f3bd03-475a-47b3-98d5-c469c47fa859" ], "x-ms-routing-request-id": [ - "EASTUS2:20210204T222057Z:37cb8d89-9312-46f0-8e7e-e186d92155d4" + "WESTUS:20210208T192445Z:e7f3bd03-475a-47b3-98d5-c469c47fa859" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 04 Feb 2021 22:20:56 GMT" + "Mon, 08 Feb 2021 19:24:44 GMT" ], "Content-Length": [ - "1316" + "1319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -810,17 +810,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg210/providers/Microsoft.Compute/galleries/galleryPsTestGallery8379/applications/galleryPsTestGalleryApplication2025/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery9738.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=KB7lkpRJZ%2BNbjI8RUWjePth3aALbjRqp%2F5MdZ%2FjSkB4%3D&st=2021-02-03T22%3A19%3A44Z&se=2021-02-06T22%3A19%3A44Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-04T22:20:56.832647+00:00\",\r\n \"endOfLifeDate\": \"2021-02-14T00:00:00+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590/applications/galleryPsTestGalleryApplication8184/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery2295.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=i%2FZftR0%2BcZaW%2FHqx6GCytHdp9rHt%2BodyL8wMxu0XyPk%3D&st=2021-02-07T19%3A23%3A34Z&se=2021-02-10T19%3A23%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 \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-08T11:24:44.513999-08:00\",\r\n \"endOfLifeDate\": \"2021-02-18T00:00:00-08:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg210/providers/Microsoft.Compute/galleries/galleryPsTestGallery8379/applications/galleryPsTestGalleryApplication2025/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzIxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODM3OS9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjIwMjUvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590/applications/galleryPsTestGalleryApplication8184/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1OTAvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb244MTg0L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery9738.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=KB7lkpRJZ%2BNbjI8RUWjePth3aALbjRqp%2F5MdZ%2FjSkB4%3D&st=2021-02-03T22%3A19%3A44Z&se=2021-02-06T22%3A19%3A44Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"SoutheastAsia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"endOfLifeDate\": \"2021-05-15T00:00:00Z\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery2295.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=i%2FZftR0%2BcZaW%2FHqx6GCytHdp9rHt%2BodyL8wMxu0XyPk%3D&st=2021-02-07T19%3A23%3A34Z&se=2021-02-10T19%3A23%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 \"targetRegions\": [\r\n {\r\n \"name\": \"SoutheastAsia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"endOfLifeDate\": \"2021-05-19T07:00:00Z\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2fea3e88-4070-4f67-986e-31c1493d8211" + "abfb47f8-1186-49dc-9153-f4de20b02f3f" ], "Accept-Language": [ "en-US" @@ -828,14 +828,14 @@ "User-Agent": [ "FxVersion/4.6.29518.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.1" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "833" + "835" ] }, "ResponseHeaders": { @@ -846,7 +846,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/8d8caca9-68db-4963-9bba-9cc9184ced05?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/cc35f8ed-c7ef-456f-b0b7-6521ed722d7f?api-version=2020-09-30" ], "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": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "8d8caca9-68db-4963-9bba-9cc9184ced05" + "cc35f8ed-c7ef-456f-b0b7-6521ed722d7f" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -868,19 +868,19 @@ "1196" ], "x-ms-correlation-request-id": [ - "314361db-bcab-407b-88cf-829d498ce849" + "ec8b521d-ee36-4730-b628-e70ca9c7d175" ], "x-ms-routing-request-id": [ - "EASTUS2:20210204T222531Z:314361db-bcab-407b-88cf-829d498ce849" + "WESTUS:20210208T192918Z:ec8b521d-ee36-4730-b628-e70ca9c7d175" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 04 Feb 2021 22:25:31 GMT" + "Mon, 08 Feb 2021 19:29:17 GMT" ], "Content-Length": [ - "1316" + "1319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -889,20 +889,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg210/providers/Microsoft.Compute/galleries/galleryPsTestGallery8379/applications/galleryPsTestGalleryApplication2025/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery9738.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=KB7lkpRJZ%2BNbjI8RUWjePth3aALbjRqp%2F5MdZ%2FjSkB4%3D&st=2021-02-03T22%3A19%3A44Z&se=2021-02-06T22%3A19%3A44Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-04T22:20:56.832647+00:00\",\r\n \"endOfLifeDate\": \"2021-05-15T00:00:00+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590/applications/galleryPsTestGalleryApplication8184/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery2295.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=i%2FZftR0%2BcZaW%2FHqx6GCytHdp9rHt%2BodyL8wMxu0XyPk%3D&st=2021-02-07T19%3A23%3A34Z&se=2021-02-10T19%3A23%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 \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-08T11:24:44.513999-08:00\",\r\n \"endOfLifeDate\": \"2021-05-19T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/05a1c1ee-3afd-40a5-a2ba-177f76da77cb?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wNWExYzFlZS0zYWZkLTQwYTUtYTJiYS0xNzdmNzZkYTc3Y2I/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/c70badaa-9b94-49d9-86f0-8385a8304e5e?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9jNzBiYWRhYS05Yjk0LTQ5ZDktODZmMC04Mzg1YTgzMDRlNWU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29518.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.1" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -913,35 +913,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4196" + "Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4148" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "7ccdccd4-11be-4ca1-afe3-3963217f7b23" + "71a5217b-4daf-4f25-ab61-4f17d11bbcb4" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-correlation-request-id": [ - "36cb13ac-f7b4-4f8b-82b3-d2988a62e7da" + "50588786-a4ea-48f8-a5dd-51317f788c6a" ], "x-ms-routing-request-id": [ - "EASTUS2:20210204T222127Z:36cb13ac-f7b4-4f8b-82b3-d2988a62e7da" + "WESTUS:20210208T192515Z:50588786-a4ea-48f8-a5dd-51317f788c6a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 04 Feb 2021 22:21:26 GMT" + "Mon, 08 Feb 2021 19:25:14 GMT" ], "Content-Length": [ "134" @@ -953,20 +953,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-02-04T22:20:56.7232768+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"05a1c1ee-3afd-40a5-a2ba-177f76da77cb\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-02-08T11:24:44.4671096-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c70badaa-9b94-49d9-86f0-8385a8304e5e\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/05a1c1ee-3afd-40a5-a2ba-177f76da77cb?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wNWExYzFlZS0zYWZkLTQwYTUtYTJiYS0xNzdmNzZkYTc3Y2I/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/c70badaa-9b94-49d9-86f0-8385a8304e5e?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9jNzBiYWRhYS05Yjk0LTQ5ZDktODZmMC04Mzg1YTgzMDRlNWU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29518.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.1" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -977,35 +977,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4193" + "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4143" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "0bce1408-a274-489d-ae73-7f74f650b9f1" + "c1d31e22-2bd3-43f4-851e-e60aeea89223" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-correlation-request-id": [ - "93f186c7-6db9-47df-898a-3f41ba632979" + "acf5a5fb-b550-4d0b-aecb-e1cf093b0c6a" ], "x-ms-routing-request-id": [ - "EASTUS2:20210204T222157Z:93f186c7-6db9-47df-898a-3f41ba632979" + "WESTUS:20210208T192545Z:acf5a5fb-b550-4d0b-aecb-e1cf093b0c6a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 04 Feb 2021 22:21:56 GMT" + "Mon, 08 Feb 2021 19:25:45 GMT" ], "Content-Length": [ "134" @@ -1017,20 +1017,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-02-04T22:20:56.7232768+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"05a1c1ee-3afd-40a5-a2ba-177f76da77cb\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-02-08T11:24:44.4671096-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c70badaa-9b94-49d9-86f0-8385a8304e5e\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/05a1c1ee-3afd-40a5-a2ba-177f76da77cb?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wNWExYzFlZS0zYWZkLTQwYTUtYTJiYS0xNzdmNzZkYTc3Y2I/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/c70badaa-9b94-49d9-86f0-8385a8304e5e?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9jNzBiYWRhYS05Yjk0LTQ5ZDktODZmMC04Mzg1YTgzMDRlNWU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29518.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.1" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -1041,35 +1041,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4190" + "Microsoft.Compute/GetOperationStatus3Min;1181,Microsoft.Compute/GetOperationStatus30Min;4138" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "74404788-cac0-4043-a39e-ca97f6a8110c" + "cba29e0c-be95-4bbc-8dbd-425d3e861131" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-correlation-request-id": [ - "30867b09-84b7-473f-a229-8ec7727d5277" + "15702a80-66d1-4b82-a2ce-639b461d43ea" ], "x-ms-routing-request-id": [ - "EASTUS2:20210204T222228Z:30867b09-84b7-473f-a229-8ec7727d5277" + "WESTUS:20210208T192615Z:15702a80-66d1-4b82-a2ce-639b461d43ea" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 04 Feb 2021 22:22:27 GMT" + "Mon, 08 Feb 2021 19:26:15 GMT" ], "Content-Length": [ "134" @@ -1081,20 +1081,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-02-04T22:20:56.7232768+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"05a1c1ee-3afd-40a5-a2ba-177f76da77cb\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-02-08T11:24:44.4671096-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c70badaa-9b94-49d9-86f0-8385a8304e5e\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/05a1c1ee-3afd-40a5-a2ba-177f76da77cb?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wNWExYzFlZS0zYWZkLTQwYTUtYTJiYS0xNzdmNzZkYTc3Y2I/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/c70badaa-9b94-49d9-86f0-8385a8304e5e?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9jNzBiYWRhYS05Yjk0LTQ5ZDktODZmMC04Mzg1YTgzMDRlNWU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29518.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.1" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -1105,35 +1105,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4187" + "Microsoft.Compute/GetOperationStatus3Min;1179,Microsoft.Compute/GetOperationStatus30Min;4134" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "6cf79ea3-d9bc-42fa-a4ba-5a4ceded4794" + "342ea252-49f7-4c59-b4d9-836b350302ac" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-correlation-request-id": [ - "f1eaee7b-9e46-4990-b426-b7d6bd2cd165" + "8b890e0c-7524-4a28-a84a-dfe1ff1a42b7" ], "x-ms-routing-request-id": [ - "EASTUS2:20210204T222258Z:f1eaee7b-9e46-4990-b426-b7d6bd2cd165" + "WESTUS:20210208T192645Z:8b890e0c-7524-4a28-a84a-dfe1ff1a42b7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 04 Feb 2021 22:22:58 GMT" + "Mon, 08 Feb 2021 19:26:45 GMT" ], "Content-Length": [ "134" @@ -1145,20 +1145,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-02-04T22:20:56.7232768+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"05a1c1ee-3afd-40a5-a2ba-177f76da77cb\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-02-08T11:24:44.4671096-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c70badaa-9b94-49d9-86f0-8385a8304e5e\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/05a1c1ee-3afd-40a5-a2ba-177f76da77cb?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wNWExYzFlZS0zYWZkLTQwYTUtYTJiYS0xNzdmNzZkYTc3Y2I/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/c70badaa-9b94-49d9-86f0-8385a8304e5e?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9jNzBiYWRhYS05Yjk0LTQ5ZDktODZmMC04Mzg1YTgzMDRlNWU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29518.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.1" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -1169,35 +1169,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;4184" + "Microsoft.Compute/GetOperationStatus3Min;1177,Microsoft.Compute/GetOperationStatus30Min;4129" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "891d6cda-c4c5-44a1-9f4b-072966d09f80" + "83ca1b7f-3c5a-4475-af45-045acf365f82" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-correlation-request-id": [ - "4a56c7af-c903-484f-baf6-1fcd23d8ded8" + "f5b0ec1f-d372-4ce0-a61e-c6c54d4bc5c2" ], "x-ms-routing-request-id": [ - "EASTUS2:20210204T222328Z:4a56c7af-c903-484f-baf6-1fcd23d8ded8" + "WESTUS:20210208T192716Z:f5b0ec1f-d372-4ce0-a61e-c6c54d4bc5c2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 04 Feb 2021 22:23:28 GMT" + "Mon, 08 Feb 2021 19:27:15 GMT" ], "Content-Length": [ "134" @@ -1209,20 +1209,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-02-04T22:20:56.7232768+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"05a1c1ee-3afd-40a5-a2ba-177f76da77cb\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-02-08T11:24:44.4671096-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c70badaa-9b94-49d9-86f0-8385a8304e5e\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/05a1c1ee-3afd-40a5-a2ba-177f76da77cb?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wNWExYzFlZS0zYWZkLTQwYTUtYTJiYS0xNzdmNzZkYTc3Y2I/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/c70badaa-9b94-49d9-86f0-8385a8304e5e?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9jNzBiYWRhYS05Yjk0LTQ5ZDktODZmMC04Mzg1YTgzMDRlNWU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29518.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.1" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -1233,35 +1233,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4181" + "Microsoft.Compute/GetOperationStatus3Min;1174,Microsoft.Compute/GetOperationStatus30Min;4125" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "ec744ba7-537f-4121-a820-a5d6c57bee59" + "a2edaefa-6d98-4f69-8bdc-ac4412b3ad21" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11990" ], "x-ms-correlation-request-id": [ - "489e8ebd-a279-4e39-8548-32e3867f0606" + "9195da53-4633-4dcf-856c-9fbe9d4c948b" ], "x-ms-routing-request-id": [ - "EASTUS2:20210204T222358Z:489e8ebd-a279-4e39-8548-32e3867f0606" + "WESTUS:20210208T192746Z:9195da53-4633-4dcf-856c-9fbe9d4c948b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 04 Feb 2021 22:23:58 GMT" + "Mon, 08 Feb 2021 19:27:46 GMT" ], "Content-Length": [ "134" @@ -1273,20 +1273,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-02-04T22:20:56.7232768+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"05a1c1ee-3afd-40a5-a2ba-177f76da77cb\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-02-08T11:24:44.4671096-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c70badaa-9b94-49d9-86f0-8385a8304e5e\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/05a1c1ee-3afd-40a5-a2ba-177f76da77cb?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wNWExYzFlZS0zYWZkLTQwYTUtYTJiYS0xNzdmNzZkYTc3Y2I/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/c70badaa-9b94-49d9-86f0-8385a8304e5e?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9jNzBiYWRhYS05Yjk0LTQ5ZDktODZmMC04Mzg1YTgzMDRlNWU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29518.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.1" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -1297,35 +1297,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4179" + "Microsoft.Compute/GetOperationStatus3Min;1175,Microsoft.Compute/GetOperationStatus30Min;4121" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "6fc0b8e7-0c6f-4d55-9086-f687a7888adc" + "d9b3976d-f83d-4f45-8a0b-55bfcd71cdac" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11989" ], "x-ms-correlation-request-id": [ - "fa9741e2-7930-4d5b-b7e3-301590a397bf" + "c05e7874-8f51-4ce7-bbb9-e4a6355f2328" ], "x-ms-routing-request-id": [ - "EASTUS2:20210204T222428Z:fa9741e2-7930-4d5b-b7e3-301590a397bf" + "WESTUS:20210208T192816Z:c05e7874-8f51-4ce7-bbb9-e4a6355f2328" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 04 Feb 2021 22:24:28 GMT" + "Mon, 08 Feb 2021 19:28:16 GMT" ], "Content-Length": [ "134" @@ -1337,20 +1337,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-02-04T22:20:56.7232768+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"05a1c1ee-3afd-40a5-a2ba-177f76da77cb\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-02-08T11:24:44.4671096-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c70badaa-9b94-49d9-86f0-8385a8304e5e\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/05a1c1ee-3afd-40a5-a2ba-177f76da77cb?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wNWExYzFlZS0zYWZkLTQwYTUtYTJiYS0xNzdmNzZkYTc3Y2I/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/c70badaa-9b94-49d9-86f0-8385a8304e5e?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9jNzBiYWRhYS05Yjk0LTQ5ZDktODZmMC04Mzg1YTgzMDRlNWU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29518.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.1" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -1361,35 +1361,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4176" + "Microsoft.Compute/GetOperationStatus3Min;1175,Microsoft.Compute/GetOperationStatus30Min;4117" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "95ab9d4b-b914-4a32-8e56-7d90963749cd" + "f8614f51-5d37-485f-9ba3-5d75afc14fb6" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11988" ], "x-ms-correlation-request-id": [ - "8460e8d4-540b-4eaf-8b4a-d2ac702f85a6" + "83c07451-1006-4eb2-8a4f-62c5f69b3e49" ], "x-ms-routing-request-id": [ - "EASTUS2:20210204T222459Z:8460e8d4-540b-4eaf-8b4a-d2ac702f85a6" + "WESTUS:20210208T192846Z:83c07451-1006-4eb2-8a4f-62c5f69b3e49" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 04 Feb 2021 22:24:58 GMT" + "Mon, 08 Feb 2021 19:28:46 GMT" ], "Content-Length": [ "134" @@ -1401,20 +1401,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-02-04T22:20:56.7232768+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"05a1c1ee-3afd-40a5-a2ba-177f76da77cb\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-02-08T11:24:44.4671096-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c70badaa-9b94-49d9-86f0-8385a8304e5e\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/05a1c1ee-3afd-40a5-a2ba-177f76da77cb?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wNWExYzFlZS0zYWZkLTQwYTUtYTJiYS0xNzdmNzZkYTc3Y2I/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/c70badaa-9b94-49d9-86f0-8385a8304e5e?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9jNzBiYWRhYS05Yjk0LTQ5ZDktODZmMC04Mzg1YTgzMDRlNWU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29518.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.1" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -1425,35 +1425,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4173" + "Microsoft.Compute/GetOperationStatus3Min;1176,Microsoft.Compute/GetOperationStatus30Min;4113" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "d05ea746-2cdd-4a46-90ec-689b51fc5eaa" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "df51e33b-b6e3-4550-9804-f52e7cec7079" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], "x-ms-correlation-request-id": [ - "b3850eca-43aa-481c-b3ef-b5095de6912b" + "4686a73d-dff8-4b38-9834-ac759d8683d9" ], "x-ms-routing-request-id": [ - "EASTUS2:20210204T222529Z:b3850eca-43aa-481c-b3ef-b5095de6912b" + "WESTUS:20210208T192917Z:4686a73d-dff8-4b38-9834-ac759d8683d9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 04 Feb 2021 22:25:29 GMT" + "Mon, 08 Feb 2021 19:29:16 GMT" ], "Content-Length": [ "184" @@ -1465,20 +1465,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-02-04T22:20:56.7232768+00:00\",\r\n \"endTime\": \"2021-02-04T22:25:27.1795883+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"05a1c1ee-3afd-40a5-a2ba-177f76da77cb\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-02-08T11:24:44.4671096-08:00\",\r\n \"endTime\": \"2021-02-08T11:29:14.8132594-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c70badaa-9b94-49d9-86f0-8385a8304e5e\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg210/providers/Microsoft.Compute/galleries/galleryPsTestGallery8379/applications/galleryPsTestGalleryApplication2025/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzIxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODM3OS9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjIwMjUvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590/applications/galleryPsTestGalleryApplication8184/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1OTAvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb244MTg0L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29518.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.1" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -1495,32 +1495,32 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "a6be852d-1ef0-43bf-94b6-84bf4364ab06" + "506fcc8c-7264-46e3-81af-2645b43fedc7" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11986" ], "x-ms-correlation-request-id": [ - "471641ed-b417-423d-89f5-1aaa9ef319d3" + "e15e48d0-94ab-4b16-984a-99432f5ecce5" ], "x-ms-routing-request-id": [ - "EASTUS2:20210204T222530Z:471641ed-b417-423d-89f5-1aaa9ef319d3" + "WESTUS:20210208T192917Z:e15e48d0-94ab-4b16-984a-99432f5ecce5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 04 Feb 2021 22:25:30 GMT" + "Mon, 08 Feb 2021 19:29:16 GMT" ], "Content-Length": [ - "1317" + "1320" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1529,17 +1529,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg210/providers/Microsoft.Compute/galleries/galleryPsTestGallery8379/applications/galleryPsTestGalleryApplication2025/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery9738.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=KB7lkpRJZ%2BNbjI8RUWjePth3aALbjRqp%2F5MdZ%2FjSkB4%3D&st=2021-02-03T22%3A19%3A44Z&se=2021-02-06T22%3A19%3A44Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-04T22:20:56.832647+00:00\",\r\n \"endOfLifeDate\": \"2021-02-14T00:00:00+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590/applications/galleryPsTestGalleryApplication8184/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery2295.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=i%2FZftR0%2BcZaW%2FHqx6GCytHdp9rHt%2BodyL8wMxu0XyPk%3D&st=2021-02-07T19%3A23%3A34Z&se=2021-02-10T19%3A23%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 \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-08T11:24:44.513999-08:00\",\r\n \"endOfLifeDate\": \"2021-02-18T00:00:00-08:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg210/providers/Microsoft.Compute/galleries/galleryPsTestGallery8379/applications/galleryPsTestGalleryApplication2025/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzIxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODM3OS9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjIwMjUvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590/applications/galleryPsTestGalleryApplication8184/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1OTAvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb244MTg0L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe54a990-7faa-46a3-a5fd-3ff6676c267f" + "fd08c2d2-be1b-4a60-bec8-04398238b727" ], "Accept-Language": [ "en-US" @@ -1547,8 +1547,8 @@ "User-Agent": [ "FxVersion/4.6.29518.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.1" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -1565,32 +1565,32 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "f52d5039-0dea-410b-9b6f-af6ccb719479" + "738a29c5-063c-43a4-aa49-c8a2d07798f0" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11985" ], "x-ms-correlation-request-id": [ - "7b0f2473-bf73-4f1a-bc1d-d9251b2e14d8" + "5a0f4cec-a3ee-430c-98a9-5930012b65b9" ], "x-ms-routing-request-id": [ - "EASTUS2:20210204T222530Z:7b0f2473-bf73-4f1a-bc1d-d9251b2e14d8" + "WESTUS:20210208T192917Z:5a0f4cec-a3ee-430c-98a9-5930012b65b9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 04 Feb 2021 22:25:30 GMT" + "Mon, 08 Feb 2021 19:29:16 GMT" ], "Content-Length": [ - "1317" + "1320" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1599,20 +1599,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg210/providers/Microsoft.Compute/galleries/galleryPsTestGallery8379/applications/galleryPsTestGalleryApplication2025/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery9738.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=KB7lkpRJZ%2BNbjI8RUWjePth3aALbjRqp%2F5MdZ%2FjSkB4%3D&st=2021-02-03T22%3A19%3A44Z&se=2021-02-06T22%3A19%3A44Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-04T22:20:56.832647+00:00\",\r\n \"endOfLifeDate\": \"2021-02-14T00:00:00+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590/applications/galleryPsTestGalleryApplication8184/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery2295.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=i%2FZftR0%2BcZaW%2FHqx6GCytHdp9rHt%2BodyL8wMxu0XyPk%3D&st=2021-02-07T19%3A23%3A34Z&se=2021-02-10T19%3A23%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 \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-08T11:24:44.513999-08:00\",\r\n \"endOfLifeDate\": \"2021-02-18T00:00:00-08:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg210/providers/Microsoft.Compute/galleries/galleryPsTestGallery8379/applications/galleryPsTestGalleryApplication2025/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzIxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODM3OS9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjIwMjUvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590/applications/galleryPsTestGalleryApplication8184/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1OTAvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb244MTg0L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29518.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.1" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -1629,32 +1629,32 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "49a81307-7557-4e88-af4b-0e284ec67706" + "9ceb3ee0-c482-4f2e-90a7-bd723524df97" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11977" ], "x-ms-correlation-request-id": [ - "6102372c-8b10-4c73-9325-a4827f397641" + "2c75b41b-9939-43e9-a4fe-0e77e6d5a207" ], "x-ms-routing-request-id": [ - "EASTUS2:20210204T222833Z:6102372c-8b10-4c73-9325-a4827f397641" + "WESTUS:20210208T193220Z:2c75b41b-9939-43e9-a4fe-0e77e6d5a207" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 04 Feb 2021 22:28:32 GMT" + "Mon, 08 Feb 2021 19:32:20 GMT" ], "Content-Length": [ - "1317" + "1320" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1663,17 +1663,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg210/providers/Microsoft.Compute/galleries/galleryPsTestGallery8379/applications/galleryPsTestGalleryApplication2025/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery9738.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=KB7lkpRJZ%2BNbjI8RUWjePth3aALbjRqp%2F5MdZ%2FjSkB4%3D&st=2021-02-03T22%3A19%3A44Z&se=2021-02-06T22%3A19%3A44Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-04T22:20:56.832647+00:00\",\r\n \"endOfLifeDate\": \"2021-05-15T00:00:00+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590/applications/galleryPsTestGalleryApplication8184/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery2295.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=i%2FZftR0%2BcZaW%2FHqx6GCytHdp9rHt%2BodyL8wMxu0XyPk%3D&st=2021-02-07T19%3A23%3A34Z&se=2021-02-10T19%3A23%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 \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-08T11:24:44.513999-08:00\",\r\n \"endOfLifeDate\": \"2021-05-19T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg210/providers/Microsoft.Compute/galleries/galleryPsTestGallery8379/applications/galleryPsTestGalleryApplication2025/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzIxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODM3OS9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjIwMjUvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590/applications/galleryPsTestGalleryApplication8184/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1OTAvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb244MTg0L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5cc2fe46-0e1a-4e6f-ade4-aa7a7f0a3184" + "76203de8-516d-4904-858e-cc1d08733371" ], "Accept-Language": [ "en-US" @@ -1681,8 +1681,8 @@ "User-Agent": [ "FxVersion/4.6.29518.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.1" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -1699,32 +1699,32 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "4fd44c76-1e88-4e52-aa59-bab2cb0ec8b2" + "261e3101-3d65-48e0-ae74-a0d92d303d87" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11976" ], "x-ms-correlation-request-id": [ - "6af1f28d-5622-4179-944a-f8f88e757b03" + "7986a7f9-ec7e-4160-940f-2f04120ec76b" ], "x-ms-routing-request-id": [ - "EASTUS2:20210204T222833Z:6af1f28d-5622-4179-944a-f8f88e757b03" + "WESTUS:20210208T193220Z:7986a7f9-ec7e-4160-940f-2f04120ec76b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 04 Feb 2021 22:28:33 GMT" + "Mon, 08 Feb 2021 19:32:20 GMT" ], "Content-Length": [ - "1317" + "1320" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1733,17 +1733,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg210/providers/Microsoft.Compute/galleries/galleryPsTestGallery8379/applications/galleryPsTestGalleryApplication2025/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery9738.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=KB7lkpRJZ%2BNbjI8RUWjePth3aALbjRqp%2F5MdZ%2FjSkB4%3D&st=2021-02-03T22%3A19%3A44Z&se=2021-02-06T22%3A19%3A44Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-04T22:20:56.832647+00:00\",\r\n \"endOfLifeDate\": \"2021-05-15T00:00:00+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590/applications/galleryPsTestGalleryApplication8184/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery2295.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=i%2FZftR0%2BcZaW%2FHqx6GCytHdp9rHt%2BodyL8wMxu0XyPk%3D&st=2021-02-07T19%3A23%3A34Z&se=2021-02-10T19%3A23%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 \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-08T11:24:44.513999-08:00\",\r\n \"endOfLifeDate\": \"2021-05-19T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg210/providers/Microsoft.Compute/galleries/galleryPsTestGallery8379/applications/galleryPsTestGalleryApplication2025/versions/1.0.0?$expand=ReplicationStatus&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzIxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODM3OS9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjIwMjUvdmVyc2lvbnMvMS4wLjA/JGV4cGFuZD1SZXBsaWNhdGlvblN0YXR1cyZhcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590/applications/galleryPsTestGalleryApplication8184/versions/1.0.0?$expand=ReplicationStatus&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1OTAvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb244MTg0L3ZlcnNpb25zLzEuMC4wPyRleHBhbmQ9UmVwbGljYXRpb25TdGF0dXMmYXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d63478c6-6dd0-4466-b492-b90e1e51cdea" + "e9a29d70-7cd0-4dd3-8df8-cbc8959b4e6a" ], "Accept-Language": [ "en-US" @@ -1751,8 +1751,8 @@ "User-Agent": [ "FxVersion/4.6.29518.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.1" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -1769,32 +1769,32 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "871d5b75-69e4-4b7a-96d6-2e4907966a05" + "2b9c8b96-552a-42cb-9916-95a6f8cbd124" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11984" ], "x-ms-correlation-request-id": [ - "0515ca3d-8246-4b81-a5eb-4b6fbbb3711a" + "f36b1446-dda3-452b-a457-42562345c47d" ], "x-ms-routing-request-id": [ - "EASTUS2:20210204T222531Z:0515ca3d-8246-4b81-a5eb-4b6fbbb3711a" + "WESTUS:20210208T192917Z:f36b1446-dda3-452b-a457-42562345c47d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 04 Feb 2021 22:25:30 GMT" + "Mon, 08 Feb 2021 19:29:17 GMT" ], "Content-Length": [ - "1541" + "1544" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1803,20 +1803,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg210/providers/Microsoft.Compute/galleries/galleryPsTestGallery8379/applications/galleryPsTestGalleryApplication2025/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery9738.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=KB7lkpRJZ%2BNbjI8RUWjePth3aALbjRqp%2F5MdZ%2FjSkB4%3D&st=2021-02-03T22%3A19%3A44Z&se=2021-02-06T22%3A19%3A44Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-04T22:20:56.832647+00:00\",\r\n \"endOfLifeDate\": \"2021-02-14T00:00:00+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"replicationStatus\": {\r\n \"aggregatedState\": \"Completed\",\r\n \"summary\": [\r\n {\r\n \"region\": \"southeastasia\",\r\n \"state\": \"Completed\",\r\n \"progress\": 100\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/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590/applications/galleryPsTestGalleryApplication8184/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery2295.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=i%2FZftR0%2BcZaW%2FHqx6GCytHdp9rHt%2BodyL8wMxu0XyPk%3D&st=2021-02-07T19%3A23%3A34Z&se=2021-02-10T19%3A23%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 \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-08T11:24:44.513999-08:00\",\r\n \"endOfLifeDate\": \"2021-02-18T00:00:00-08:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"replicationStatus\": {\r\n \"aggregatedState\": \"Completed\",\r\n \"summary\": [\r\n {\r\n \"region\": \"southeastasia\",\r\n \"state\": \"Completed\",\r\n \"progress\": 100\r\n }\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/8d8caca9-68db-4963-9bba-9cc9184ced05?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy84ZDhjYWNhOS02OGRiLTQ5NjMtOWJiYS05Y2M5MTg0Y2VkMDU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/cc35f8ed-c7ef-456f-b0b7-6521ed722d7f?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9jYzM1ZjhlZC1jN2VmLTQ1NmYtYjBiNy02NTIxZWQ3MjJkN2Y/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29518.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.1" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -1827,35 +1827,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;4170" + "Microsoft.Compute/GetOperationStatus3Min;1175,Microsoft.Compute/GetOperationStatus30Min;4108" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "62274e9b-d174-4286-8e72-c7e23842df4f" + "cc1bf115-cda0-4fbc-af3a-6d3c8f04118b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" - ], "x-ms-correlation-request-id": [ - "305e2390-51f9-4d05-972f-a3e2b1e91f9b" + "47e1bc94-8ee0-4829-b002-419ee842c470" ], "x-ms-routing-request-id": [ - "EASTUS2:20210204T222601Z:305e2390-51f9-4d05-972f-a3e2b1e91f9b" + "WESTUS:20210208T192948Z:47e1bc94-8ee0-4829-b002-419ee842c470" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 04 Feb 2021 22:26:01 GMT" + "Mon, 08 Feb 2021 19:29:47 GMT" ], "Content-Length": [ "134" @@ -1867,20 +1867,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-02-04T22:25:31.2734009+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8d8caca9-68db-4963-9bba-9cc9184ced05\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-02-08T11:29:18.1569617-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cc35f8ed-c7ef-456f-b0b7-6521ed722d7f\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/8d8caca9-68db-4963-9bba-9cc9184ced05?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy84ZDhjYWNhOS02OGRiLTQ5NjMtOWJiYS05Y2M5MTg0Y2VkMDU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/cc35f8ed-c7ef-456f-b0b7-6521ed722d7f?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9jYzM1ZjhlZC1jN2VmLTQ1NmYtYjBiNy02NTIxZWQ3MjJkN2Y/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29518.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.1" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -1891,35 +1891,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;4167" + "Microsoft.Compute/GetOperationStatus3Min;1175,Microsoft.Compute/GetOperationStatus30Min;4103" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "78298dc8-eb48-4a8c-9ffe-2d7684928a7a" + "60877ad8-4a88-4379-9b6c-ed0b5e439590" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11982" ], "x-ms-correlation-request-id": [ - "1d5aa1f2-2d43-4138-87d3-a53337d804b7" + "482c2357-37a0-42a5-9893-e72dc116cf9d" ], "x-ms-routing-request-id": [ - "EASTUS2:20210204T222632Z:1d5aa1f2-2d43-4138-87d3-a53337d804b7" + "WESTUS:20210208T193019Z:482c2357-37a0-42a5-9893-e72dc116cf9d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 04 Feb 2021 22:26:31 GMT" + "Mon, 08 Feb 2021 19:30:19 GMT" ], "Content-Length": [ "134" @@ -1931,20 +1931,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-02-04T22:25:31.2734009+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8d8caca9-68db-4963-9bba-9cc9184ced05\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-02-08T11:29:18.1569617-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cc35f8ed-c7ef-456f-b0b7-6521ed722d7f\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/8d8caca9-68db-4963-9bba-9cc9184ced05?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy84ZDhjYWNhOS02OGRiLTQ5NjMtOWJiYS05Y2M5MTg0Y2VkMDU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/cc35f8ed-c7ef-456f-b0b7-6521ed722d7f?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9jYzM1ZjhlZC1jN2VmLTQ1NmYtYjBiNy02NTIxZWQ3MjJkN2Y/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29518.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.1" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -1955,35 +1955,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1186,Microsoft.Compute/GetOperationStatus30Min;4164" + "Microsoft.Compute/GetOperationStatus3Min;1174,Microsoft.Compute/GetOperationStatus30Min;4099" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "b608b17d-346e-4978-bf06-dc8f8f7343fd" + "86432e65-2c3d-4aaa-b016-62b74cbb9be3" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11981" ], "x-ms-correlation-request-id": [ - "ddb2d135-c013-4438-93fa-50568b70d7c7" + "02277262-f456-4f7e-a98e-13bb1259b766" ], "x-ms-routing-request-id": [ - "EASTUS2:20210204T222702Z:ddb2d135-c013-4438-93fa-50568b70d7c7" + "WESTUS:20210208T193049Z:02277262-f456-4f7e-a98e-13bb1259b766" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 04 Feb 2021 22:27:01 GMT" + "Mon, 08 Feb 2021 19:30:49 GMT" ], "Content-Length": [ "134" @@ -1995,20 +1995,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-02-04T22:25:31.2734009+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8d8caca9-68db-4963-9bba-9cc9184ced05\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-02-08T11:29:18.1569617-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cc35f8ed-c7ef-456f-b0b7-6521ed722d7f\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/8d8caca9-68db-4963-9bba-9cc9184ced05?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy84ZDhjYWNhOS02OGRiLTQ5NjMtOWJiYS05Y2M5MTg0Y2VkMDU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/cc35f8ed-c7ef-456f-b0b7-6521ed722d7f?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9jYzM1ZjhlZC1jN2VmLTQ1NmYtYjBiNy02NTIxZWQ3MjJkN2Y/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29518.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.1" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -2019,35 +2019,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4161" + "Microsoft.Compute/GetOperationStatus3Min;1174,Microsoft.Compute/GetOperationStatus30Min;4094" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "ab733408-d6ef-4948-bab3-f7c1504dfbf9" + "017355e9-2e18-49a1-b2c9-4c0bfb92b31c" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11980" ], "x-ms-correlation-request-id": [ - "dbaec1bb-d46d-4ddf-8ffa-31dcd8d136d2" + "bc7cce41-a27a-46f3-825d-3bb92964ff73" ], "x-ms-routing-request-id": [ - "EASTUS2:20210204T222732Z:dbaec1bb-d46d-4ddf-8ffa-31dcd8d136d2" + "WESTUS:20210208T193120Z:bc7cce41-a27a-46f3-825d-3bb92964ff73" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 04 Feb 2021 22:27:32 GMT" + "Mon, 08 Feb 2021 19:31:19 GMT" ], "Content-Length": [ "134" @@ -2059,20 +2059,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-02-04T22:25:31.2734009+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8d8caca9-68db-4963-9bba-9cc9184ced05\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-02-08T11:29:18.1569617-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cc35f8ed-c7ef-456f-b0b7-6521ed722d7f\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/8d8caca9-68db-4963-9bba-9cc9184ced05?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy84ZDhjYWNhOS02OGRiLTQ5NjMtOWJiYS05Y2M5MTg0Y2VkMDU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/cc35f8ed-c7ef-456f-b0b7-6521ed722d7f?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9jYzM1ZjhlZC1jN2VmLTQ1NmYtYjBiNy02NTIxZWQ3MjJkN2Y/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29518.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.1" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -2083,35 +2083,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4158" + "Microsoft.Compute/GetOperationStatus3Min;1174,Microsoft.Compute/GetOperationStatus30Min;4090" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "5a08a389-3dcf-403e-b346-0b174cab38f6" + "4b4d0380-272e-4882-a02a-f31f9fcafaf7" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11979" ], "x-ms-correlation-request-id": [ - "9e038583-285b-4f5f-8e1f-0457a5c35afd" + "34fd2c20-49c0-418f-b15a-bf92586551e6" ], "x-ms-routing-request-id": [ - "EASTUS2:20210204T222802Z:9e038583-285b-4f5f-8e1f-0457a5c35afd" + "WESTUS:20210208T193150Z:34fd2c20-49c0-418f-b15a-bf92586551e6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 04 Feb 2021 22:28:02 GMT" + "Mon, 08 Feb 2021 19:31:49 GMT" ], "Content-Length": [ "134" @@ -2123,20 +2123,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-02-04T22:25:31.2734009+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8d8caca9-68db-4963-9bba-9cc9184ced05\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-02-08T11:29:18.1569617-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cc35f8ed-c7ef-456f-b0b7-6521ed722d7f\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/8d8caca9-68db-4963-9bba-9cc9184ced05?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy84ZDhjYWNhOS02OGRiLTQ5NjMtOWJiYS05Y2M5MTg0Y2VkMDU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/cc35f8ed-c7ef-456f-b0b7-6521ed722d7f?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9jYzM1ZjhlZC1jN2VmLTQ1NmYtYjBiNy02NTIxZWQ3MjJkN2Y/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29518.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.1" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -2147,35 +2147,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4155" + "Microsoft.Compute/GetOperationStatus3Min;1174,Microsoft.Compute/GetOperationStatus30Min;4085" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "da8fe1ab-5df1-4077-8658-840ff9b3a9b1" + "bd14c71d-8659-48ab-aa07-86a4389a0a7b" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11978" ], "x-ms-correlation-request-id": [ - "14570740-f354-4588-9224-e9bd71f2244c" + "98fdef4f-fc9b-4bf3-9e91-41ffee0a1c9f" ], "x-ms-routing-request-id": [ - "EASTUS2:20210204T222833Z:14570740-f354-4588-9224-e9bd71f2244c" + "WESTUS:20210208T193220Z:98fdef4f-fc9b-4bf3-9e91-41ffee0a1c9f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 04 Feb 2021 22:28:32 GMT" + "Mon, 08 Feb 2021 19:32:20 GMT" ], "Content-Length": [ "184" @@ -2187,17 +2187,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-02-04T22:25:31.2734009+00:00\",\r\n \"endTime\": \"2021-02-04T22:28:31.4315932+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8d8caca9-68db-4963-9bba-9cc9184ced05\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-02-08T11:29:18.1569617-08:00\",\r\n \"endTime\": \"2021-02-08T11:32:18.2987964-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"cc35f8ed-c7ef-456f-b0b7-6521ed722d7f\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg210/providers/Microsoft.Compute/galleries/galleryPsTestGallery8379/applications/galleryPsTestGalleryApplication2025/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzIxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODM3OS9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjIwMjUvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590/applications/galleryPsTestGalleryApplication8184/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1OTAvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb244MTg0L3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2341b45-de1c-42e0-acc7-55f6fb40e7c6" + "ca6342dc-4947-41e7-aeb4-5116ad78d017" ], "Accept-Language": [ "en-US" @@ -2205,8 +2205,8 @@ "User-Agent": [ "FxVersion/4.6.29518.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.1" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -2217,10 +2217,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/ba21c145-9b37-4dea-ad55-a0809ed54215?monitor=true&api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/73b0e9a3-8362-4262-81ec-c0a3768997bd?monitor=true&api-version=2020-09-30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/ba21c145-9b37-4dea-ad55-a0809ed54215?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/73b0e9a3-8362-4262-81ec-c0a3768997bd?api-version=2020-09-30" ], "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": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "ba21c145-9b37-4dea-ad55-a0809ed54215" + "73b0e9a3-8362-4262-81ec-c0a3768997bd" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2242,16 +2242,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "ffb38a49-df1a-4dab-b747-4c67a299ec93" + "6fc11401-c0aa-4b85-a085-37e7aa174838" ], "x-ms-routing-request-id": [ - "EASTUS2:20210204T222833Z:ffb38a49-df1a-4dab-b747-4c67a299ec93" + "WESTUS:20210208T193221Z:6fc11401-c0aa-4b85-a085-37e7aa174838" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 04 Feb 2021 22:28:33 GMT" + "Mon, 08 Feb 2021 19:32:21 GMT" ], "Expires": [ "-1" @@ -2264,16 +2264,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/ba21c145-9b37-4dea-ad55-a0809ed54215?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9iYTIxYzE0NS05YjM3LTRkZWEtYWQ1NS1hMDgwOWVkNTQyMTU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/73b0e9a3-8362-4262-81ec-c0a3768997bd?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy83M2IwZTlhMy04MzYyLTQyNjItODFlYy1jMGEzNzY4OTk3YmQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29518.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.1" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -2284,35 +2284,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4152" + "Microsoft.Compute/GetOperationStatus3Min;1174,Microsoft.Compute/GetOperationStatus30Min;4081" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "3747b2bd-1aea-4937-9935-bc22c6107b51" + "28fe8198-4b89-4791-ad2d-2b572c95566f" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11975" ], "x-ms-correlation-request-id": [ - "0b67cae0-8cc7-4a93-8000-178dc04ea51a" + "9f0232ed-f4c8-4296-8bf7-7505c2f969b1" ], "x-ms-routing-request-id": [ - "EASTUS2:20210204T222904Z:0b67cae0-8cc7-4a93-8000-178dc04ea51a" + "WESTUS:20210208T193251Z:9f0232ed-f4c8-4296-8bf7-7505c2f969b1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 04 Feb 2021 22:29:03 GMT" + "Mon, 08 Feb 2021 19:32:51 GMT" ], "Content-Length": [ "134" @@ -2324,20 +2324,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-02-04T22:28:33.7909791+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ba21c145-9b37-4dea-ad55-a0809ed54215\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-02-08T11:32:21.1581909-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"73b0e9a3-8362-4262-81ec-c0a3768997bd\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/ba21c145-9b37-4dea-ad55-a0809ed54215?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9iYTIxYzE0NS05YjM3LTRkZWEtYWQ1NS1hMDgwOWVkNTQyMTU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/73b0e9a3-8362-4262-81ec-c0a3768997bd?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy83M2IwZTlhMy04MzYyLTQyNjItODFlYy1jMGEzNzY4OTk3YmQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29518.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.1" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -2348,35 +2348,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4149" + "Microsoft.Compute/GetOperationStatus3Min;1174,Microsoft.Compute/GetOperationStatus30Min;4076" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "601a851c-86ee-40f5-adaf-5a7a1ef925c1" + "7d1f5734-7677-4e80-9774-d72dfa3d523b" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11974" ], "x-ms-correlation-request-id": [ - "5222d240-b6c4-41bf-86b5-8e31fea9a817" + "db2e4e52-2083-444a-a1bd-c12e6221f888" ], "x-ms-routing-request-id": [ - "EASTUS2:20210204T222934Z:5222d240-b6c4-41bf-86b5-8e31fea9a817" + "WESTUS:20210208T193321Z:db2e4e52-2083-444a-a1bd-c12e6221f888" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 04 Feb 2021 22:29:33 GMT" + "Mon, 08 Feb 2021 19:33:21 GMT" ], "Content-Length": [ "134" @@ -2388,20 +2388,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-02-04T22:28:33.7909791+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ba21c145-9b37-4dea-ad55-a0809ed54215\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-02-08T11:32:21.1581909-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"73b0e9a3-8362-4262-81ec-c0a3768997bd\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/ba21c145-9b37-4dea-ad55-a0809ed54215?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9iYTIxYzE0NS05YjM3LTRkZWEtYWQ1NS1hMDgwOWVkNTQyMTU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/73b0e9a3-8362-4262-81ec-c0a3768997bd?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy83M2IwZTlhMy04MzYyLTQyNjItODFlYy1jMGEzNzY4OTk3YmQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29518.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.1" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -2412,38 +2412,38 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1184,Microsoft.Compute/GetOperationStatus30Min;4146" + "Microsoft.Compute/GetOperationStatus3Min;1174,Microsoft.Compute/GetOperationStatus30Min;4072" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "72a54d1a-cafd-4ee7-854b-e5e05d99f920" + "06344c00-4f60-437c-87a9-7632874c44e4" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11973" ], "x-ms-correlation-request-id": [ - "2c7a4ef7-a1a0-4c3d-bed8-806bccd59fbd" + "9e43c6fa-6960-4aff-b447-a55b0294ba77" ], "x-ms-routing-request-id": [ - "EASTUS2:20210204T223004Z:2c7a4ef7-a1a0-4c3d-bed8-806bccd59fbd" + "WESTUS:20210208T193352Z:9e43c6fa-6960-4aff-b447-a55b0294ba77" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 04 Feb 2021 22:30:04 GMT" + "Mon, 08 Feb 2021 19:33:51 GMT" ], "Content-Length": [ - "184" + "183" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2452,20 +2452,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-02-04T22:28:33.7909791+00:00\",\r\n \"endTime\": \"2021-02-04T22:30:04.0732794+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ba21c145-9b37-4dea-ad55-a0809ed54215\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-02-08T11:32:21.1581909-08:00\",\r\n \"endTime\": \"2021-02-08T11:33:51.424434-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"73b0e9a3-8362-4262-81ec-c0a3768997bd\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/ba21c145-9b37-4dea-ad55-a0809ed54215?monitor=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9iYTIxYzE0NS05YjM3LTRkZWEtYWQ1NS1hMDgwOWVkNTQyMTU/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/73b0e9a3-8362-4262-81ec-c0a3768997bd?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy83M2IwZTlhMy04MzYyLTQyNjItODFlYy1jMGEzNzY4OTk3YmQ/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29518.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.1" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -2476,35 +2476,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4145" + "Microsoft.Compute/GetOperationStatus3Min;1173,Microsoft.Compute/GetOperationStatus30Min;4071" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "683a4d69-70fe-4b37-b365-bb37273b647a" + "77cd5542-fad5-4218-a5e0-5de015c404e9" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11972" ], "x-ms-correlation-request-id": [ - "2127f9e3-1414-4760-8659-5f18b9382e75" + "3cc82f2b-e263-490a-b662-951841dea810" ], "x-ms-routing-request-id": [ - "EASTUS2:20210204T223005Z:2127f9e3-1414-4760-8659-5f18b9382e75" + "WESTUS:20210208T193352Z:3cc82f2b-e263-490a-b662-951841dea810" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 04 Feb 2021 22:30:04 GMT" + "Mon, 08 Feb 2021 19:33:51 GMT" ], "Expires": [ "-1" @@ -2517,13 +2517,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg210/providers/Microsoft.Compute/galleries/galleryPsTestGallery8379/applications/galleryPsTestGalleryApplication2025?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzIxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODM3OS9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjIwMjU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590/applications/galleryPsTestGalleryApplication8184?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1OTAvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb244MTg0P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d9ba671-fdf0-401b-b9b1-8abf1b8efbdc" + "cd307ffb-28f2-4af4-b7ba-867a004750d9" ], "Accept-Language": [ "en-US" @@ -2531,8 +2531,8 @@ "User-Agent": [ "FxVersion/4.6.29518.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.1" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -2549,10 +2549,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "a80f7a08-5a33-476b-a2d2-bcf2a41e3558" + "5ec5144e-92c0-4700-bef1-514852a6fb69" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2562,16 +2562,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "f674d341-13f5-4254-81c2-8a8e0eb6e89d" + "9e0cde8c-6771-49c8-ae52-ba37ca1362c7" ], "x-ms-routing-request-id": [ - "EASTUS2:20210204T223005Z:f674d341-13f5-4254-81c2-8a8e0eb6e89d" + "WESTUS:20210208T193352Z:9e0cde8c-6771-49c8-ae52-ba37ca1362c7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 04 Feb 2021 22:30:05 GMT" + "Mon, 08 Feb 2021 19:33:51 GMT" ], "Expires": [ "-1" @@ -2584,13 +2584,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg210/providers/Microsoft.Compute/galleries/galleryPsTestGallery8379?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzIxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5ODM3OT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg9624/providers/Microsoft.Compute/galleries/galleryPsTestGallery8590?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzk2MjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTg1OTA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45012cb9-27d9-4ff4-aef6-3b24b75b223d" + "fa83fe19-3829-46d6-bc03-aadae83fac89" ], "Accept-Language": [ "en-US" @@ -2598,8 +2598,8 @@ "User-Agent": [ "FxVersion/4.6.29518.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.1" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -2610,22 +2610,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/d207ac44-f76d-4c2e-ad39-ad9b58841364?monitor=true&api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/1c0d3f22-7bed-4649-98d7-ee78c6592faf?monitor=true&api-version=2020-09-30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/d207ac44-f76d-4c2e-ad39-ad9b58841364?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/1c0d3f22-7bed-4649-98d7-ee78c6592faf?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;299" + "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;847" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "d207ac44-f76d-4c2e-ad39-ad9b58841364" + "1c0d3f22-7bed-4649-98d7-ee78c6592faf" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2635,16 +2635,16 @@ "14997" ], "x-ms-correlation-request-id": [ - "4cfbb89c-267a-4233-98ce-a71d0319c3f7" + "2a80e253-af19-4f20-a565-4f1efc8b0c21" ], "x-ms-routing-request-id": [ - "EASTUS2:20210204T223008Z:4cfbb89c-267a-4233-98ce-a71d0319c3f7" + "WESTUS:20210208T193353Z:2a80e253-af19-4f20-a565-4f1efc8b0c21" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 04 Feb 2021 22:30:08 GMT" + "Mon, 08 Feb 2021 19:33:53 GMT" ], "Expires": [ "-1" @@ -2657,16 +2657,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/d207ac44-f76d-4c2e-ad39-ad9b58841364?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9kMjA3YWM0NC1mNzZkLTRjMmUtYWQzOS1hZDliNTg4NDEzNjQ/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/1c0d3f22-7bed-4649-98d7-ee78c6592faf?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xYzBkM2YyMi03YmVkLTQ2NDktOThkNy1lZTc4YzY1OTJmYWY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29518.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.1" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -2677,35 +2677,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4142" + "Microsoft.Compute/GetOperationStatus3Min;1173,Microsoft.Compute/GetOperationStatus30Min;4066" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "9ec8e753-903e-40c3-ad82-94c1ba49d301" + "5ebe96a4-f151-470f-a85a-9fb9bad57583" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11971" ], "x-ms-correlation-request-id": [ - "ba9b8331-b264-4729-bea6-31adc0e46e01" + "ff580130-214a-4189-a2f1-a89f14604445" ], "x-ms-routing-request-id": [ - "EASTUS2:20210204T223038Z:ba9b8331-b264-4729-bea6-31adc0e46e01" + "WESTUS:20210208T193423Z:ff580130-214a-4189-a2f1-a89f14604445" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 04 Feb 2021 22:30:37 GMT" + "Mon, 08 Feb 2021 19:34:23 GMT" ], "Content-Length": [ "184" @@ -2717,20 +2717,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-02-04T22:30:06.7451868+00:00\",\r\n \"endTime\": \"2021-02-04T22:30:09.1045865+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d207ac44-f76d-4c2e-ad39-ad9b58841364\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-02-08T11:33:53.6119587-08:00\",\r\n \"endTime\": \"2021-02-08T11:33:54.3463112-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1c0d3f22-7bed-4649-98d7-ee78c6592faf\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/d207ac44-f76d-4c2e-ad39-ad9b58841364?monitor=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9kMjA3YWM0NC1mNzZkLTRjMmUtYWQzOS1hZDliNTg4NDEzNjQ/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/1c0d3f22-7bed-4649-98d7-ee78c6592faf?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xYzBkM2YyMi03YmVkLTQ2NDktOThkNy1lZTc4YzY1OTJmYWY/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29518.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/43.0.0.1" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" ] }, "ResponseHeaders": { @@ -2741,35 +2741,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1182,Microsoft.Compute/GetOperationStatus30Min;4141" + "Microsoft.Compute/GetOperationStatus3Min;1172,Microsoft.Compute/GetOperationStatus30Min;4065" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132455689784305581" + "060de95e-c116-496e-9451-1806a389aa56_132514796471520745,060de95e-c116-496e-9451-1806a389aa56_132514796471520745" ], "x-ms-request-id": [ - "a8e68a6d-cdea-42dc-a27b-e19abc60bb71" + "596e3af0-f613-4ee1-a262-b2398629e782" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11970" ], "x-ms-correlation-request-id": [ - "f1fd3607-929c-49f3-83e2-ab74888086cb" + "9a916cb1-4235-465c-b077-8ddeef573712" ], "x-ms-routing-request-id": [ - "EASTUS2:20210204T223038Z:f1fd3607-929c-49f3-83e2-ab74888086cb" + "WESTUS:20210208T193424Z:9a916cb1-4235-465c-b077-8ddeef573712" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 04 Feb 2021 22:30:38 GMT" + "Mon, 08 Feb 2021 19:34:23 GMT" ], "Expires": [ "-1" @@ -2784,17 +2784,17 @@ ], "Names": { "GalleryApplicationVersion_CRUD_Tests": [ - "galleryPsTestRg210", - "psTestSourceApplication8404", - "galleryPsTestGallery8379", - "galleryPsTestGalleryApplication2025" + "galleryPsTestRg9624", + "psTestSourceApplication1861", + "galleryPsTestGallery8590", + "galleryPsTestGalleryApplication8184" ], "CreateApplicationMediaLink": [ - "saforgallery9738", - "asforgallery2532" + "saforgallery2295", + "asforgallery2247" ] }, "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/GalleryApplication_CRUD_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryApplication_CRUD_Tests.json index 3e0cb9eae1a8..c1ae13c4abc6 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/galleryPsTestRg8010?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzgwMTA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg581?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9a02ddd8-bd77-4030-bda3-34d56b563987" + "b3e689bb-5a03-4c2e-b6ad-62a751feef96" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "ab2f2ee3-8430-4320-a282-0f3486e4e7c8" + "68187e8d-9b77-47f7-af46-ae161143b334" ], "x-ms-correlation-request-id": [ - "ab2f2ee3-8430-4320-a282-0f3486e4e7c8" + "68187e8d-9b77-47f7-af46-ae161143b334" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T233721Z:ab2f2ee3-8430-4320-a282-0f3486e4e7c8" + "WESTCENTRALUS:20210330T003304Z:68187e8d-9b77-47f7-af46-ae161143b334" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:37:21 GMT" + "Tue, 30 Mar 2021 00:33:03 GMT" ], "Content-Length": [ - "198" + "196" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8010\",\r\n \"name\": \"galleryPsTestRg8010\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg581\",\r\n \"name\": \"galleryPsTestRg581\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8010/providers/Microsoft.Compute/galleries/galleryPsTestGallery3521?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzgwMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM1MjE/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg581/providers/Microsoft.Compute/galleries/galleryPsTestGallery4899?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NDg5OT9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\"\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "44e0b70a-aaea-4f49-a3bb-383be4e1ea78" + "eaeb2444-c2df-4a1f-a63e-7c30bbeb912e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,7 +99,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/20b9476c-15c2-4463-a12f-6626b70c6318?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/bcf1cfa3-a935-452e-a6e8-f8e4279a0eb8?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299" @@ -108,10 +108,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132494674941394909,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132494674941394909" + "060de95e-c116-496e-9451-1806a389aa56_132573019786508288,060de95e-c116-496e-9451-1806a389aa56_132573019786508288" ], "x-ms-request-id": [ - "20b9476c-15c2-4463-a12f-6626b70c6318" + "bcf1cfa3-a935-452e-a6e8-f8e4279a0eb8" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -121,19 +121,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "b75be299-c34b-4cdd-9090-4819ec213762" + "a6ef7ebc-0601-4471-b7fd-ba41266da851" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T233855Z:b75be299-c34b-4cdd-9090-4819ec213762" + "WESTCENTRALUS:20210330T003312Z:a6ef7ebc-0601-4471-b7fd-ba41266da851" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:38:55 GMT" + "Tue, 30 Mar 2021 00:33:12 GMT" ], "Content-Length": [ - "514" + "578" ], "Content-Type": [ "application/json; charset=utf-8" @@ -142,20 +142,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery3521\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8010/providers/Microsoft.Compute/galleries/galleryPsTestGallery3521\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY3521\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery4899\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg581/providers/Microsoft.Compute/galleries/galleryPsTestGallery4899\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY4899\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Private\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/20b9476c-15c2-4463-a12f-6626b70c6318?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8yMGI5NDc2Yy0xNWMyLTQ0NjMtYTEyZi02NjI2YjcwYzYzMTg/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/bcf1cfa3-a935-452e-a6e8-f8e4279a0eb8?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9iY2YxY2ZhMy1hOTM1LTQ1MmUtYTZlOC1mOGU0Mjc5YTBlYjg/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -172,10 +172,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132494674941394909,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132494674941394909" + "060de95e-c116-496e-9451-1806a389aa56_132573019786508288,060de95e-c116-496e-9451-1806a389aa56_132573019786508288" ], "x-ms-request-id": [ - "9d4bfff8-1b02-469a-a8cf-a5eed4ecb8f8" + "8246d725-f1e9-4466-b6ce-7e0f48acc751" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -185,16 +185,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "6d1ff207-c1f4-48f6-b7d9-48a24e750f53" + "561d379f-df4b-4696-ba8c-f7e5f0e61549" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234008Z:6d1ff207-c1f4-48f6-b7d9-48a24e750f53" + "WESTCENTRALUS:20210330T003343Z:561d379f-df4b-4696-ba8c-f7e5f0e61549" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:40:08 GMT" + "Tue, 30 Mar 2021 00:33:42 GMT" ], "Content-Length": [ "184" @@ -206,20 +206,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-29T23:38:53.0568604+00:00\",\r\n \"endTime\": \"2020-12-29T23:38:53.9787548+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"20b9476c-15c2-4463-a12f-6626b70c6318\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:33:11.0763732-07:00\",\r\n \"endTime\": \"2021-03-29T17:33:11.9826422-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"bcf1cfa3-a935-452e-a6e8-f8e4279a0eb8\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8010/providers/Microsoft.Compute/galleries/galleryPsTestGallery3521?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzgwMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM1MjE/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg581/providers/Microsoft.Compute/galleries/galleryPsTestGallery4899?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NDg5OT9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -230,16 +230,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;345,Microsoft.Compute/GetGallery30Min;2495" + "Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2496" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132494674941394909,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132494674941394909" + "060de95e-c116-496e-9451-1806a389aa56_132573019786508288,060de95e-c116-496e-9451-1806a389aa56_132573019786508288" ], "x-ms-request-id": [ - "15793772-c2fe-4197-a774-7b2be61e30e2" + "c660b8f4-e132-42b2-81f6-6f4fdbc25237" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -249,19 +249,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "cc6baf7d-04bd-43ba-9d20-2355b4ca7475" + "7e8f5a79-7190-4f64-ad16-7ce6e59ee038" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234042Z:cc6baf7d-04bd-43ba-9d20-2355b4ca7475" + "WESTCENTRALUS:20210330T003343Z:7e8f5a79-7190-4f64-ad16-7ce6e59ee038" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:40:42 GMT" + "Tue, 30 Mar 2021 00:33:42 GMT" ], "Content-Length": [ - "515" + "514" ], "Content-Type": [ "application/json; charset=utf-8" @@ -270,26 +270,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery3521\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8010/providers/Microsoft.Compute/galleries/galleryPsTestGallery3521\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY3521\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery4899\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg581/providers/Microsoft.Compute/galleries/galleryPsTestGallery4899\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY4899\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8010/providers/Microsoft.Compute/galleries/galleryPsTestGallery3521/applications/galleryPsTestGalleryApplication3293?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzgwMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM1MjEvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24zMjkzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg581/providers/Microsoft.Compute/galleries/galleryPsTestGallery4899/applications/galleryPsTestGalleryApplication5395?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NDg5OS9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjUzOTU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\",\r\n \"supportedOSType\": \"Windows\"\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4af21b3f-ecd1-416b-9209-17ed15fc348f" + "45293549-c092-4976-9ba2-adcf63807446" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -312,32 +312,32 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132494674941394909,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132494674941394909" + "060de95e-c116-496e-9451-1806a389aa56_132573019786508288,060de95e-c116-496e-9451-1806a389aa56_132573019786508288" ], "x-ms-request-id": [ - "2fc00f34-7739-4210-8992-f58011ca5c79" + "525a09a9-feb0-4653-b0ae-f09e12d44933" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "3c617e63-3c9e-4d1c-acf6-3fdc02e3733f" + "588dced9-67bd-4088-8f95-cdf9ac3d14d2" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234133Z:3c617e63-3c9e-4d1c-acf6-3fdc02e3733f" + "WESTCENTRALUS:20210330T003343Z:588dced9-67bd-4088-8f95-cdf9ac3d14d2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:41:32 GMT" + "Tue, 30 Mar 2021 00:33:43 GMT" ], "Content-Length": [ - "634" + "633" ], "Content-Type": [ "application/json; charset=utf-8" @@ -346,26 +346,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication3293\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8010/providers/Microsoft.Compute/galleries/galleryPsTestGallery3521/applications/galleryPsTestGalleryApplication3293\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication5395\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg581/providers/Microsoft.Compute/galleries/galleryPsTestGallery4899/applications/galleryPsTestGalleryApplication5395\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8010/providers/Microsoft.Compute/galleries/galleryPsTestGallery3521/applications/galleryPsTestGalleryApplication3293?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzgwMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM1MjEvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24zMjkzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg581/providers/Microsoft.Compute/galleries/galleryPsTestGallery4899/applications/galleryPsTestGalleryApplication5395?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NDg5OS9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjUzOTU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"Updated description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\",\r\n \"supportedOSType\": \"Windows\"\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "dc2a70ff-7add-496a-bce9-b770e5c2594f" + "bdaa94c2-4067-4175-96d1-9b99928e5226" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -388,32 +388,32 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132494674941394909,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132494674941394909" + "060de95e-c116-496e-9451-1806a389aa56_132573019786508288,060de95e-c116-496e-9451-1806a389aa56_132573019786508288" ], "x-ms-request-id": [ - "000b4e8e-0925-4ea3-9eac-c6734214c47d" + "688db625-2e80-4ee1-b4da-8c972250c3d3" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "f7724ba8-2a2a-4c2f-aae7-12c745e904e0" + "173221b2-12bd-48a8-9258-f9535ef16ffd" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234203Z:f7724ba8-2a2a-4c2f-aae7-12c745e904e0" + "WESTCENTRALUS:20210330T003414Z:173221b2-12bd-48a8-9258-f9535ef16ffd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:42:03 GMT" + "Tue, 30 Mar 2021 00:34:14 GMT" ], "Content-Length": [ - "610" + "609" ], "Content-Type": [ "application/json; charset=utf-8" @@ -422,20 +422,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication3293\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8010/providers/Microsoft.Compute/galleries/galleryPsTestGallery3521/applications/galleryPsTestGalleryApplication3293\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"Updated description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication5395\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg581/providers/Microsoft.Compute/galleries/galleryPsTestGallery4899/applications/galleryPsTestGalleryApplication5395\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"Updated description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8010/providers/Microsoft.Compute/galleries/galleryPsTestGallery3521/applications/galleryPsTestGalleryApplication3293?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzgwMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM1MjEvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24zMjkzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg581/providers/Microsoft.Compute/galleries/galleryPsTestGallery4899/applications/galleryPsTestGalleryApplication5395?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NDg5OS9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjUzOTU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -452,10 +452,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132494674941394909,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132494674941394909" + "060de95e-c116-496e-9451-1806a389aa56_132573019786508288,060de95e-c116-496e-9451-1806a389aa56_132573019786508288" ], "x-ms-request-id": [ - "a0e51d44-4aaf-412e-b793-23f38b53079e" + "06051a85-b957-4d45-b6fc-8cdd2465cba2" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -465,19 +465,19 @@ "11997" ], "x-ms-correlation-request-id": [ - "2e657f3d-d43f-4f4a-a5d9-dfe0760c8058" + "49f419ae-2b71-4c05-a8e0-03568f518a3c" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234203Z:2e657f3d-d43f-4f4a-a5d9-dfe0760c8058" + "WESTCENTRALUS:20210330T003414Z:49f419ae-2b71-4c05-a8e0-03568f518a3c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:42:02 GMT" + "Tue, 30 Mar 2021 00:34:13 GMT" ], "Content-Length": [ - "634" + "633" ], "Content-Type": [ "application/json; charset=utf-8" @@ -486,26 +486,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication3293\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8010/providers/Microsoft.Compute/galleries/galleryPsTestGallery3521/applications/galleryPsTestGalleryApplication3293\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication5395\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg581/providers/Microsoft.Compute/galleries/galleryPsTestGallery4899/applications/galleryPsTestGalleryApplication5395\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8010/providers/Microsoft.Compute/galleries/galleryPsTestGallery3521/applications/galleryPsTestGalleryApplication3293?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzgwMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM1MjEvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24zMjkzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg581/providers/Microsoft.Compute/galleries/galleryPsTestGallery4899/applications/galleryPsTestGalleryApplication5395?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NDg5OS9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjUzOTU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6b7e6fd-f880-4f7a-915d-06e6df2e5a97" + "471d6ca3-fdc9-4760-8830-05b9f66658c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -522,10 +522,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132494674941394909,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132494674941394909" + "060de95e-c116-496e-9451-1806a389aa56_132573019786508288,060de95e-c116-496e-9451-1806a389aa56_132573019786508288" ], "x-ms-request-id": [ - "f852f84e-a270-466c-91e8-ef492d0c2eac" + "ffd5ea9b-6091-4c73-b135-c8756a23433a" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -535,19 +535,19 @@ "11996" ], "x-ms-correlation-request-id": [ - "e5c8242a-3c0f-4200-9236-780c141f81cc" + "a83d1c58-a4c4-4012-ab65-1b4face6a322" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234203Z:e5c8242a-3c0f-4200-9236-780c141f81cc" + "WESTCENTRALUS:20210330T003414Z:a83d1c58-a4c4-4012-ab65-1b4face6a322" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:42:02 GMT" + "Tue, 30 Mar 2021 00:34:13 GMT" ], "Content-Length": [ - "634" + "633" ], "Content-Type": [ "application/json; charset=utf-8" @@ -556,26 +556,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication3293\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8010/providers/Microsoft.Compute/galleries/galleryPsTestGallery3521/applications/galleryPsTestGalleryApplication3293\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication5395\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg581/providers/Microsoft.Compute/galleries/galleryPsTestGallery4899/applications/galleryPsTestGalleryApplication5395\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8010/providers/Microsoft.Compute/galleries/galleryPsTestGallery3521/applications/galleryPsTestGalleryApplication3293?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzgwMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM1MjEvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24zMjkzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg581/providers/Microsoft.Compute/galleries/galleryPsTestGallery4899/applications/galleryPsTestGalleryApplication5395?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NDg5OS9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjUzOTU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b3fe1340-c25a-4845-ac11-da0fef057a5c" + "311cbecb-abad-423a-bbad-f2d58e2bae4a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -592,10 +592,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132494674941394909,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132494674941394909" + "060de95e-c116-496e-9451-1806a389aa56_132573019786508288,060de95e-c116-496e-9451-1806a389aa56_132573019786508288" ], "x-ms-request-id": [ - "b901edb0-554c-4cc6-9e75-b03eb6078334" + "d267568c-f2e7-4368-8041-77145ad45525" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -605,19 +605,19 @@ "11995" ], "x-ms-correlation-request-id": [ - "18f6d7a4-6647-4c43-a918-c3156aa4410a" + "6aaebe1b-0944-4b89-b771-e0dc70b2da78" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234204Z:18f6d7a4-6647-4c43-a918-c3156aa4410a" + "WESTCENTRALUS:20210330T003414Z:6aaebe1b-0944-4b89-b771-e0dc70b2da78" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:42:03 GMT" + "Tue, 30 Mar 2021 00:34:14 GMT" ], "Content-Length": [ - "610" + "609" ], "Content-Type": [ "application/json; charset=utf-8" @@ -626,26 +626,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication3293\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8010/providers/Microsoft.Compute/galleries/galleryPsTestGallery3521/applications/galleryPsTestGalleryApplication3293\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"Updated description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication5395\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg581/providers/Microsoft.Compute/galleries/galleryPsTestGallery4899/applications/galleryPsTestGalleryApplication5395\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"Updated description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8010/providers/Microsoft.Compute/galleries/galleryPsTestGallery3521/applications/galleryPsTestGalleryApplication3293?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzgwMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM1MjEvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24zMjkzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg581/providers/Microsoft.Compute/galleries/galleryPsTestGallery4899/applications/galleryPsTestGalleryApplication5395?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NDg5OS9hcHBsaWNhdGlvbnMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlBcHBsaWNhdGlvbjUzOTU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f1a12d03-2b89-4cf0-aa12-bea89769c2aa" + "5c6302a6-1e1c-41bb-aec9-173d4d334aa5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -662,10 +662,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132494674941394909,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132494674941394909" + "060de95e-c116-496e-9451-1806a389aa56_132573019786508288,060de95e-c116-496e-9451-1806a389aa56_132573019786508288" ], "x-ms-request-id": [ - "0d8b8c78-1546-44cb-9a09-3747065b56bd" + "cbe602ca-947a-457a-b3d5-810ada530ae5" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -675,16 +675,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "2cde3625-1bdd-4049-acc7-6956070cba71" + "04b0e9f7-a911-46e7-9e84-0107fd01d0aa" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234204Z:2cde3625-1bdd-4049-acc7-6956070cba71" + "WESTCENTRALUS:20210330T003415Z:04b0e9f7-a911-46e7-9e84-0107fd01d0aa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:42:03 GMT" + "Tue, 30 Mar 2021 00:34:14 GMT" ], "Expires": [ "-1" @@ -697,22 +697,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8010/providers/Microsoft.Compute/galleries/galleryPsTestGallery3521?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzgwMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM1MjE/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg581/providers/Microsoft.Compute/galleries/galleryPsTestGallery4899?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NDg5OT9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4caeef53-4fcb-49b3-ad6b-db181a1660a9" + "876a9764-6c8e-480d-b4f1-3145f23c3437" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -723,22 +723,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/9f8859b8-81b6-48a5-abae-602f73e9de62?monitor=true&api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/160b0f51-0401-4e6b-bc23-a07c7ab52937?monitor=true&api-version=2020-09-30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/9f8859b8-81b6-48a5-abae-602f73e9de62?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/160b0f51-0401-4e6b-bc23-a07c7ab52937?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;299" + "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;899" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132494674941394909,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132494674941394909" + "060de95e-c116-496e-9451-1806a389aa56_132573019786508288,060de95e-c116-496e-9451-1806a389aa56_132573019786508288" ], "x-ms-request-id": [ - "9f8859b8-81b6-48a5-abae-602f73e9de62" + "160b0f51-0401-4e6b-bc23-a07c7ab52937" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -748,16 +748,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "a7ed0622-0a3c-4969-a5fb-5a8d8d1d307f" + "2ba9e383-4b16-4566-9ce8-9b2f0f2697dd" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234205Z:a7ed0622-0a3c-4969-a5fb-5a8d8d1d307f" + "WESTCENTRALUS:20210330T003416Z:2ba9e383-4b16-4566-9ce8-9b2f0f2697dd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:42:05 GMT" + "Tue, 30 Mar 2021 00:34:15 GMT" ], "Expires": [ "-1" @@ -770,16 +770,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/9f8859b8-81b6-48a5-abae-602f73e9de62?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy85Zjg4NTliOC04MWI2LTQ4YTUtYWJhZS02MDJmNzNlOWRlNjI/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/160b0f51-0401-4e6b-bc23-a07c7ab52937?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xNjBiMGY1MS0wNDAxLTRlNmItYmMyMy1hMDdjN2FiNTI5Mzc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -790,16 +790,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4196" + "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4196" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132494674941394909,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132494674941394909" + "060de95e-c116-496e-9451-1806a389aa56_132573019786508288,060de95e-c116-496e-9451-1806a389aa56_132573019786508288" ], "x-ms-request-id": [ - "0e57ddcd-edd2-4439-924f-b6dd70377039" + "a87417f1-ceb8-43e1-aa82-379a42802a0e" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -809,16 +809,16 @@ "11994" ], "x-ms-correlation-request-id": [ - "a31b35d3-80de-4a1d-b27e-5e6e235ce31e" + "8733e8a3-ba22-46fc-85c6-938f66367dd5" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234236Z:a31b35d3-80de-4a1d-b27e-5e6e235ce31e" + "WESTCENTRALUS:20210330T003446Z:8733e8a3-ba22-46fc-85c6-938f66367dd5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:42:36 GMT" + "Tue, 30 Mar 2021 00:34:45 GMT" ], "Content-Length": [ "184" @@ -830,20 +830,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-29T23:42:05.7607852+00:00\",\r\n \"endTime\": \"2020-12-29T23:42:06.4639173+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9f8859b8-81b6-48a5-abae-602f73e9de62\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:34:15.8580901-07:00\",\r\n \"endTime\": \"2021-03-29T17:34:16.1550054-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"160b0f51-0401-4e6b-bc23-a07c7ab52937\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/southeastasia/capsOperations/9f8859b8-81b6-48a5-abae-602f73e9de62?monitor=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy85Zjg4NTliOC04MWI2LTQ4YTUtYWJhZS02MDJmNzNlOWRlNjI/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/160b0f51-0401-4e6b-bc23-a07c7ab52937?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xNjBiMGY1MS0wNDAxLTRlNmItYmMyMy1hMDdjN2FiNTI5Mzc/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -854,16 +854,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4195" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4195" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132494674941394909,adca2259-35bd-4fa3-8e2f-6c63ec822b0d_132494674941394909" + "060de95e-c116-496e-9451-1806a389aa56_132573019786508288,060de95e-c116-496e-9451-1806a389aa56_132573019786508288" ], "x-ms-request-id": [ - "26373249-3296-4738-ad3a-88c7a31aefd4" + "22449719-0535-4b90-b10d-8b3f5c1cc351" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -873,16 +873,16 @@ "11993" ], "x-ms-correlation-request-id": [ - "438dd96d-c14a-4919-9e71-e663c4c8347c" + "772155e1-ee94-4bc4-9160-38d2318d95f9" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234236Z:438dd96d-c14a-4919-9e71-e663c4c8347c" + "WESTCENTRALUS:20210330T003446Z:772155e1-ee94-4bc4-9160-38d2318d95f9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:42:36 GMT" + "Tue, 30 Mar 2021 00:34:45 GMT" ], "Expires": [ "-1" @@ -897,12 +897,12 @@ ], "Names": { "GalleryApplication_CRUD_Tests": [ - "galleryPsTestRg8010", - "galleryPsTestGallery3521", - "galleryPsTestGalleryApplication3293" + "galleryPsTestRg581", + "galleryPsTestGallery4899", + "galleryPsTestGalleryApplication5395" ] }, "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 27b0dd563487..ec0741bacfe7 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryImageVersion_CRUD_Tests.json +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryImageVersion_CRUD_Tests.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "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=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7dbe446-3b95-4dd7-a82e-a23a3f6f0b64" + "73465510-f472-43b5-bdce-53bf7e0585b5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -26,33 +26,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43999" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "19a6b8e7-2f9b-4b25-aea4-718323f85895_132490221280846781" + "19a6b8e7-2f9b-4b25-aea4-718323f85895_132573950891713657" ], "x-ms-request-id": [ - "312c4f1c-c9c5-41e6-a311-239d0bc9b439" + "047fa7b1-ba0f-4c50-88ea-041849c4156e" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11987" ], "x-ms-correlation-request-id": [ - "d9aaea15-4e75-4b5b-86ea-385c9636b8ea" + "807bda28-87c0-4964-b627-847d84397d59" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234242Z:d9aaea15-4e75-4b5b-86ea-385c9636b8ea" + "WESTCENTRALUS:20210330T003452Z:807bda28-87c0-4964-b627-847d84397d59" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:42:41 GMT" + "Tue, 30 Mar 2021 00:34:51 GMT" ], "Content-Length": [ "309" @@ -64,32 +67,32 @@ "-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/galleryPsTestRg3456?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0NTY/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg184?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4ND9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg3456\": \"2020-12-29 23:42:42Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg184\": \"2021-03-30 00:34:52Z\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "74df70c6-60c1-4d49-83f6-57ed2164683c" + "421e3516-4772-46ed-a9dc-a3a032658853" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "99" + "98" ] }, "ResponseHeaders": { @@ -103,13 +106,13 @@ "1199" ], "x-ms-request-id": [ - "a9ca63b9-e546-4359-9e4d-c2a141a3ffd7" + "0e92a003-3ac9-49f7-8dc4-1b33667133de" ], "x-ms-correlation-request-id": [ - "a9ca63b9-e546-4359-9e4d-c2a141a3ffd7" + "0e92a003-3ac9-49f7-8dc4-1b33667133de" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234242Z:a9ca63b9-e546-4359-9e4d-c2a141a3ffd7" + "WESTCENTRALUS:20210330T003453Z:0e92a003-3ac9-49f7-8dc4-1b33667133de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -118,10 +121,10 @@ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:42:41 GMT" + "Tue, 30 Mar 2021 00:34:52 GMT" ], "Content-Length": [ - "246" + "243" ], "Content-Type": [ "application/json; charset=utf-8" @@ -130,32 +133,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456\",\r\n \"name\": \"galleryPsTestRg3456\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg3456\": \"2020-12-29 23:42:42Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184\",\r\n \"name\": \"galleryPsTestRg184\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg184\": \"2021-03-30 00:34:52Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/galleryPsTestRg3456?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0NTY/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg184?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4ND9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg3456\": \"2020-12-29 23:43:10Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg184\": \"2021-03-30 00:35:27Z\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1620b2bd-d48e-4492-a695-473c38d766f3" + "3cedbef1-10ad-40cc-b10d-a29d6dbc8fb0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "99" + "98" ] }, "ResponseHeaders": { @@ -169,13 +172,13 @@ "1198" ], "x-ms-request-id": [ - "5b3e0983-b882-4270-b6f3-fe28427029f8" + "98315546-ff98-4f54-9200-ccdbc8ee781e" ], "x-ms-correlation-request-id": [ - "5b3e0983-b882-4270-b6f3-fe28427029f8" + "98315546-ff98-4f54-9200-ccdbc8ee781e" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234310Z:5b3e0983-b882-4270-b6f3-fe28427029f8" + "WESTCENTRALUS:20210330T003527Z:98315546-ff98-4f54-9200-ccdbc8ee781e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -184,10 +187,10 @@ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:43:10 GMT" + "Tue, 30 Mar 2021 00:35:27 GMT" ], "Content-Length": [ - "246" + "243" ], "Content-Type": [ "application/json; charset=utf-8" @@ -196,25 +199,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456\",\r\n \"name\": \"galleryPsTestRg3456\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg3456\": \"2020-12-29 23:43:10Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184\",\r\n \"name\": \"galleryPsTestRg184\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"galleryPsTestRg184\": \"2021-03-30 00:35:27Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Storage/storageAccounts/saforgallery1318?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnkxMzE4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Storage/storageAccounts/saforgallery1715?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3NhZm9yZ2FsbGVyeTE3MTU/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": [ - "9f960c4e-b8fb-4550-8222-ee9fcb87b220" + "c000ba66-2808-408a-99cf-162e2aeb69a8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ], "Content-Type": [ @@ -232,13 +235,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Storage/locations/eastus2/asyncoperations/5ea4289e-f349-4dfd-ba88-cd85f37a6766?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Storage/locations/eastus2/asyncoperations/2f3f6ce5-7a2a-44c1-ac05-1d100c398686?monitor=true&api-version=2015-06-15" ], "Retry-After": [ "17" ], "x-ms-request-id": [ - "5ea4289e-f349-4dfd-ba88-cd85f37a6766" + "2f3f6ce5-7a2a-44c1-ac05-1d100c398686" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -250,16 +253,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "f77fa898-25be-45f2-bb02-0858fa7f837e" + "834a4dfa-7694-47c6-b849-b53ca5ddf178" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234243Z:f77fa898-25be-45f2-bb02-0858fa7f837e" + "WESTCENTRALUS:20210330T003459Z:834a4dfa-7694-47c6-b849-b53ca5ddf178" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:42:42 GMT" + "Tue, 30 Mar 2021 00:34:58 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -275,15 +278,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Storage/locations/eastus2/asyncoperations/5ea4289e-f349-4dfd-ba88-cd85f37a6766?monitor=true&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMi9hc3luY29wZXJhdGlvbnMvNWVhNDI4OWUtZjM0OS00ZGZkLWJhODgtY2Q4NWYzN2E2NzY2P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Storage/locations/eastus2/asyncoperations/2f3f6ce5-7a2a-44c1-ac05-1d100c398686?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMi9hc3luY29wZXJhdGlvbnMvMmYzZjZjZTUtN2EyYS00NGMxLWFjMDUtMWQxMDBjMzk4Njg2P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ] }, @@ -295,7 +298,7 @@ "no-cache" ], "x-ms-request-id": [ - "fb4cab53-bd56-4189-b3a3-5da8b7725199" + "06c8f2bd-5860-491a-8131-1bff27087912" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -307,16 +310,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "f9f7fa73-5193-4499-b810-dab69c34f06e" + "9c0560cf-51f0-4425-993c-2b6c3742f727" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234300Z:f9f7fa73-5193-4499-b810-dab69c34f06e" + "WESTCENTRALUS:20210330T003516Z:9c0560cf-51f0-4425-993c-2b6c3742f727" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:43:00 GMT" + "Tue, 30 Mar 2021 00:35:15 GMT" ], "Content-Length": [ "89" @@ -332,21 +335,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cda1783b-54e6-4f9a-ae49-5647c60addd1" + "4754f62b-d4b2-4ce6-ae30-9238bda64df0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ] }, @@ -358,7 +361,7 @@ "no-cache" ], "x-ms-request-id": [ - "99e94d5f-ab79-4a61-8061-e198eb94c374" + "d2c324a9-8b49-4da0-9f46-e178c7796f91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -370,19 +373,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "ad9e4560-1a39-43cb-93c7-3f64ad77544a" + "1f9d438d-aa97-4acf-96fd-986b0197fcac" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234310Z:ad9e4560-1a39-43cb-93c7-3f64ad77544a" + "WESTCENTRALUS:20210330T003526Z:1f9d438d-aa97-4acf-96fd-986b0197fcac" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:43:10 GMT" + "Tue, 30 Mar 2021 00:35:26 GMT" ], "Content-Length": [ - "765" + "764" ], "Content-Type": [ "application/json" @@ -391,25 +394,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Storage/storageAccounts/saforgallery1318\",\r\n \"name\": \"saforgallery1318\",\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\": \"2020-12-29T23:42:42.9923549Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery1318.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery1318.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery1318.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery1318.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/galleryPsTestRg184/providers/Microsoft.Storage/storageAccounts/saforgallery1715\",\r\n \"name\": \"saforgallery1715\",\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\": \"2021-03-30T00:34:55.778176Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery1715.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery1715.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery1715.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery1715.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/galleryPsTestRg3456/providers/Microsoft.Storage/storageAccounts/saforgallery1318?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnkxMzE4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Storage/storageAccounts/saforgallery1715?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3NhZm9yZ2FsbGVyeTE3MTU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "322241be-19cb-4e56-ae3b-3c36e42b6baf" + "af3962c8-fe4b-474d-9b6c-f4f634f5df56" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" ] }, @@ -421,7 +424,7 @@ "no-cache" ], "x-ms-request-id": [ - "abe052d5-c2f9-4a92-ae9d-a85bb733b754" + "bb4a167e-ef12-4b01-a082-e0d4be994788" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -433,19 +436,19 @@ "11997" ], "x-ms-correlation-request-id": [ - "83d052ae-1a8a-41a4-ad13-69033bde410b" + "743b5f1e-3fca-4d3a-8313-a4ff0510326a" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234310Z:83d052ae-1a8a-41a4-ad13-69033bde410b" + "WESTCENTRALUS:20210330T003526Z:743b5f1e-3fca-4d3a-8313-a4ff0510326a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:43:10 GMT" + "Tue, 30 Mar 2021 00:35:26 GMT" ], "Content-Length": [ - "753" + "752" ], "Content-Type": [ "application/json" @@ -454,25 +457,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Storage/storageAccounts/saforgallery1318\",\r\n \"name\": \"saforgallery1318\",\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\": \"2020-12-29T23:42:42.9923549Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery1318.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery1318.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery1318.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery1318.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/galleryPsTestRg184/providers/Microsoft.Storage/storageAccounts/saforgallery1715\",\r\n \"name\": \"saforgallery1715\",\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\": \"2021-03-30T00:34:55.778176Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery1715.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery1715.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery1715.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery1715.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/galleryPsTestRg3456/providers/Microsoft.Network/publicIPAddresses/pip216?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIxNj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/publicIPAddresses/pip6852?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwNjg1Mj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn1668\"\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\": \"dn5334\"\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": [ - "8797a666-b3d3-412c-b365-4edc3514f5bc" + "b49e2923-635d-43c7-aa8f-171f6c035eb6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ], "Content-Type": [ @@ -493,19 +496,19 @@ "1" ], "x-ms-request-id": [ - "34dc82ac-f610-4a90-9b98-e1eac417ac9e" + "4e20b2cd-e8a9-4592-a64f-4744da29bd6b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/eastus2/operations/34dc82ac-f610-4a90-9b98-e1eac417ac9e?api-version=2019-09-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Network/locations/eastus2/operations/4e20b2cd-e8a9-4592-a64f-4744da29bd6b?api-version=2019-09-01" ], "x-ms-correlation-request-id": [ - "21a3a71c-e57a-4480-8a4d-9e18bd172ba4" + "8a94f563-2e78-4311-8483-87bb3eaf73fe" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "a21ecac6-05ac-4fa7-9e45-c7de9361a195" + "3ced8896-f4e7-4fb9-b712-c6114a40f669" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -518,16 +521,16 @@ "1199" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234311Z:21a3a71c-e57a-4480-8a4d-9e18bd172ba4" + "WESTCENTRALUS:20210330T003531Z:8a94f563-2e78-4311-8483-87bb3eaf73fe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:43:10 GMT" + "Tue, 30 Mar 2021 00:35:30 GMT" ], "Content-Length": [ - "761" + "762" ], "Content-Type": [ "application/json; charset=utf-8" @@ -536,19 +539,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pip216\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Network/publicIPAddresses/pip216\",\r\n \"etag\": \"W/\\\"19405c34-0540-470a-ab7b-79a6bf265a9a\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ab3e032e-25c8-4808-bd9a-93b80d6bd212\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn1668\",\r\n \"fqdn\": \"dn1668.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\": \"pip6852\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/publicIPAddresses/pip6852\",\r\n \"etag\": \"W/\\\"f2dc6d82-ff26-4c63-a745-6491cf2a180b\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"39669029-b2be-4fd2-9639-da0258fb62d8\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5334\",\r\n \"fqdn\": \"dn5334.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/34dc82ac-f610-4a90-9b98-e1eac417ac9e?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzM0ZGM4MmFjLWY2MTAtNGE5MC05Yjk4LWUxZWFjNDE3YWM5ZT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Network/locations/eastus2/operations/4e20b2cd-e8a9-4592-a64f-4744da29bd6b?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzRlMjBiMmNkLWU4YTktNDU5Mi1hNjRmLTQ3NDRkYTI5YmQ2Yj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ] }, @@ -559,14 +562,17 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "2" + ], "x-ms-request-id": [ - "d7a9ac88-749b-4fa8-9d16-6bf496ba83e4" + "5c3bc8d1-ecbc-4244-b3d7-ce4a1472ccbb" ], "x-ms-correlation-request-id": [ - "3cdd3dab-9b60-4c52-a948-1c27b6e0564e" + "61660eb2-ac3f-4607-8c78-fb3977453120" ], "x-ms-arm-service-request-id": [ - "85d6aad9-95cd-4b63-9cc8-ecf04e884d9b" + "ebda1a2c-d40d-4beb-8cd0-6926be1b99b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -579,13 +585,74 @@ "11999" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234312Z:3cdd3dab-9b60-4c52-a948-1c27b6e0564e" + "WESTCENTRALUS:20210330T003532Z:61660eb2-ac3f-4607-8c78-fb3977453120" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 30 Mar 2021 00:35:31 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Network/locations/eastus2/operations/4e20b2cd-e8a9-4592-a64f-4744da29bd6b?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzRlMjBiMmNkLWU4YTktNDU5Mi1hNjRmLTQ3NDRkYTI5YmQ2Yj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d10fe274-1589-41c4-b918-ca7f7e3bafda" + ], + "x-ms-correlation-request-id": [ + "494bcc37-1202-462c-84b6-ec958f9559db" + ], + "x-ms-arm-service-request-id": [ + "bebfcb80-4081-4d85-a0fd-f0761a733c5e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210330T003534Z:494bcc37-1202-462c-84b6-ec958f9559db" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:43:11 GMT" + "Tue, 30 Mar 2021 00:35:33 GMT" ], "Content-Length": [ "29" @@ -601,15 +668,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Network/publicIPAddresses/pip216?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIxNj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/publicIPAddresses/pip6852?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwNjg1Mj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ] }, @@ -621,16 +688,16 @@ "no-cache" ], "ETag": [ - "W/\"0cca0118-63af-4698-90ca-48ff79d8036a\"" + "W/\"8674ee42-d091-466e-8fb4-26eab3839b8b\"" ], "x-ms-request-id": [ - "b9ec6f77-7b87-4730-9597-7625da9d0f1d" + "5aeb8c04-c5ae-4147-8274-97f09b17f87a" ], "x-ms-correlation-request-id": [ - "a0dd04f9-0ba9-435c-913a-5892864a8ea2" + "65da5833-abd3-46d7-bb79-e5752f903c77" ], "x-ms-arm-service-request-id": [ - "51312bde-20c9-4012-a691-7284e0032de9" + "4d41aef0-fe94-4bdd-9edd-93623fa89ff0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -640,19 +707,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234312Z:a0dd04f9-0ba9-435c-913a-5892864a8ea2" + "WESTCENTRALUS:20210330T003534Z:65da5833-abd3-46d7-bb79-e5752f903c77" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:43:11 GMT" + "Tue, 30 Mar 2021 00:35:33 GMT" ], "Content-Length": [ - "762" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -661,25 +728,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pip216\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Network/publicIPAddresses/pip216\",\r\n \"etag\": \"W/\\\"0cca0118-63af-4698-90ca-48ff79d8036a\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ab3e032e-25c8-4808-bd9a-93b80d6bd212\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn1668\",\r\n \"fqdn\": \"dn1668.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\": \"pip6852\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/publicIPAddresses/pip6852\",\r\n \"etag\": \"W/\\\"8674ee42-d091-466e-8fb4-26eab3839b8b\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"39669029-b2be-4fd2-9639-da0258fb62d8\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5334\",\r\n \"fqdn\": \"dn5334.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/galleryPsTestRg3456/providers/Microsoft.Network/publicIPAddresses/pip216?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIxNj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/publicIPAddresses/pip6852?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwNjg1Mj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99b25544-51ad-4db3-b541-2447df4cefbd" + "decf3401-4390-40d1-a0cd-b910fa5f34df" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ] }, @@ -691,16 +758,16 @@ "no-cache" ], "ETag": [ - "W/\"0cca0118-63af-4698-90ca-48ff79d8036a\"" + "W/\"8674ee42-d091-466e-8fb4-26eab3839b8b\"" ], "x-ms-request-id": [ - "76b2bf02-b948-4435-a3e3-17c783b3466d" + "318452b3-8aaf-4c0b-9508-1fbec10dbfd8" ], "x-ms-correlation-request-id": [ - "24221121-400d-4a5a-a35e-3082205da368" + "619e1fbc-6c0b-4c7f-8622-7c2e4e789ed6" ], "x-ms-arm-service-request-id": [ - "85f86a22-7ed4-40c5-9bb8-3abbbdad5fd0" + "7470b26a-3d69-4c76-8778-73b0e3fd3ac0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -710,19 +777,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234312Z:24221121-400d-4a5a-a35e-3082205da368" + "WESTCENTRALUS:20210330T003534Z:619e1fbc-6c0b-4c7f-8622-7c2e4e789ed6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:43:12 GMT" + "Tue, 30 Mar 2021 00:35:33 GMT" ], "Content-Length": [ - "762" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -731,32 +798,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"pip216\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Network/publicIPAddresses/pip216\",\r\n \"etag\": \"W/\\\"0cca0118-63af-4698-90ca-48ff79d8036a\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ab3e032e-25c8-4808-bd9a-93b80d6bd212\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn1668\",\r\n \"fqdn\": \"dn1668.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\": \"pip6852\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/publicIPAddresses/pip6852\",\r\n \"etag\": \"W/\\\"8674ee42-d091-466e-8fb4-26eab3839b8b\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"39669029-b2be-4fd2-9639-da0258fb62d8\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5334\",\r\n \"fqdn\": \"dn5334.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/galleryPsTestRg3456/providers/Microsoft.Network/virtualNetworks/vn1856?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE4NTY/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/virtualNetworks/vn2860?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMjg2MD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "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\": \"sn9850\"\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\": \"sn62\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "923e2803-fc7a-49ec-8c88-5cc50795556c" + "df557e7b-2f11-4c1a-96ba-b7b354363912" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "396" + "394" ] }, "ResponseHeaders": { @@ -770,19 +837,19 @@ "3" ], "x-ms-request-id": [ - "7c1cade0-fbe5-42e9-ba41-04282d585864" + "5420b46d-77eb-415a-b147-9d51132cf268" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/eastus2/operations/7c1cade0-fbe5-42e9-ba41-04282d585864?api-version=2019-09-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Network/locations/eastus2/operations/5420b46d-77eb-415a-b147-9d51132cf268?api-version=2019-09-01" ], "x-ms-correlation-request-id": [ - "fd345e35-3f78-4fb6-a253-553b6d3979f0" + "dd04da60-c467-4363-b390-d9f8d02b7d6f" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "1b0a6726-1595-4fa9-8d3f-dc163869a7ae" + "66c9d9c0-1b67-46d3-848c-8fcb852df5d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -795,16 +862,16 @@ "1198" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234313Z:fd345e35-3f78-4fb6-a253-553b6d3979f0" + "WESTCENTRALUS:20210330T003536Z:dd04da60-c467-4363-b390-d9f8d02b7d6f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:43:12 GMT" + "Tue, 30 Mar 2021 00:35:35 GMT" ], "Content-Length": [ - "1361" + "1321" ], "Content-Type": [ "application/json; charset=utf-8" @@ -813,19 +880,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vn1856\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Network/virtualNetworks/vn1856\",\r\n \"etag\": \"W/\\\"df060142-47b8-4c97-9d21-7b7e6184e16a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"8e0e4797-8cab-4bf2-a58c-4a5e3b90c757\",\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\": \"sn9850\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Network/virtualNetworks/vn1856/subnets/sn9850\",\r\n \"etag\": \"W/\\\"df060142-47b8-4c97-9d21-7b7e6184e16a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vn2860\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/virtualNetworks/vn2860\",\r\n \"etag\": \"W/\\\"602cb3e9-fa80-4e7d-bc2b-e3f7e2e04273\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"cad3fc27-466b-4e39-ab01-4aa4f114bf61\",\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\": \"sn62\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/virtualNetworks/vn2860/subnets/sn62\",\r\n \"etag\": \"W/\\\"602cb3e9-fa80-4e7d-bc2b-e3f7e2e04273\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/eastus2/operations/7c1cade0-fbe5-42e9-ba41-04282d585864?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzdjMWNhZGUwLWZiZTUtNDJlOS1iYTQxLTA0MjgyZDU4NTg2ND9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Network/locations/eastus2/operations/5420b46d-77eb-415a-b147-9d51132cf268?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzU0MjBiNDZkLTc3ZWItNDE1YS1iMTQ3LTlkNTExMzJjZjI2OD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ] }, @@ -837,13 +904,13 @@ "no-cache" ], "x-ms-request-id": [ - "6db88a8f-dc18-4449-a12e-6707cfd39be7" + "6d397363-c694-403f-830e-7501d2a21f25" ], "x-ms-correlation-request-id": [ - "e80574e0-2f23-46b5-8ea9-e0534fa89d83" + "6840688e-ca49-42ec-ad11-4d962a2d6d1a" ], "x-ms-arm-service-request-id": [ - "6c50c3d0-b4dc-4380-a4a9-b6f2046e5238" + "b03e3bfd-1612-48a9-ae54-19f0af734597" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -853,16 +920,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234316Z:e80574e0-2f23-46b5-8ea9-e0534fa89d83" + "WESTCENTRALUS:20210330T003539Z:6840688e-ca49-42ec-ad11-4d962a2d6d1a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:43:15 GMT" + "Tue, 30 Mar 2021 00:35:38 GMT" ], "Content-Length": [ "29" @@ -878,15 +945,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Network/virtualNetworks/vn1856?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE4NTY/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/virtualNetworks/vn2860?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMjg2MD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ] }, @@ -898,16 +965,16 @@ "no-cache" ], "ETag": [ - "W/\"acaf2aa3-8c38-4256-9492-e75345d48aea\"" + "W/\"7ef882e9-155c-4980-9f4a-d36b1851f8de\"" ], "x-ms-request-id": [ - "1d3f6f7c-e56b-4b8a-8003-5a33a62d2a7a" + "a6262256-98ac-4189-9df5-d9af2bc3d335" ], "x-ms-correlation-request-id": [ - "7b87deae-ea2b-4112-b272-eef3d94a9eeb" + "b0c07e79-5501-4ce6-8c77-dc268e776ac6" ], "x-ms-arm-service-request-id": [ - "a36c7d19-89d2-4827-840e-9edd00d65ae5" + "5f279d08-cbd7-4b7e-82a2-1ffede7e1c78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -917,19 +984,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234316Z:7b87deae-ea2b-4112-b272-eef3d94a9eeb" + "WESTCENTRALUS:20210330T003539Z:b0c07e79-5501-4ce6-8c77-dc268e776ac6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:43:15 GMT" + "Tue, 30 Mar 2021 00:35:38 GMT" ], "Content-Length": [ - "1363" + "1323" ], "Content-Type": [ "application/json; charset=utf-8" @@ -938,25 +1005,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vn1856\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Network/virtualNetworks/vn1856\",\r\n \"etag\": \"W/\\\"acaf2aa3-8c38-4256-9492-e75345d48aea\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8e0e4797-8cab-4bf2-a58c-4a5e3b90c757\",\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\": \"sn9850\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Network/virtualNetworks/vn1856/subnets/sn9850\",\r\n \"etag\": \"W/\\\"acaf2aa3-8c38-4256-9492-e75345d48aea\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vn2860\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/virtualNetworks/vn2860\",\r\n \"etag\": \"W/\\\"7ef882e9-155c-4980-9f4a-d36b1851f8de\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cad3fc27-466b-4e39-ab01-4aa4f114bf61\",\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\": \"sn62\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/virtualNetworks/vn2860/subnets/sn62\",\r\n \"etag\": \"W/\\\"7ef882e9-155c-4980-9f4a-d36b1851f8de\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Network/virtualNetworks/vn1856/subnets/sn9850?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE4NTYvc3VibmV0cy9zbjk4NTA/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/virtualNetworks/vn2860/subnets/sn62?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMjg2MC9zdWJuZXRzL3NuNjI/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58ef9c89-0c5d-4ea6-946d-cd17eefa0d39" + "7fe2e7e6-6ff2-46c2-a255-84b6ec2e7f3b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ] }, @@ -968,16 +1035,16 @@ "no-cache" ], "ETag": [ - "W/\"acaf2aa3-8c38-4256-9492-e75345d48aea\"" + "W/\"7ef882e9-155c-4980-9f4a-d36b1851f8de\"" ], "x-ms-request-id": [ - "36ccfd39-2997-4505-87ba-870d862f42a3" + "539db42b-47fa-46a7-b3a8-b60ac8452463" ], "x-ms-correlation-request-id": [ - "6a8f3c7d-0bed-4524-b97f-88dff57f1e33" + "5cf1f27e-3def-48d0-8ccc-e93764410b16" ], "x-ms-arm-service-request-id": [ - "f8d6e6da-1cad-49a6-bfe1-0cab4abafa83" + "29b87132-ec47-4f78-8507-1e3bc05ae118" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -987,19 +1054,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234316Z:6a8f3c7d-0bed-4524-b97f-88dff57f1e33" + "WESTCENTRALUS:20210330T003539Z:5cf1f27e-3def-48d0-8ccc-e93764410b16" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:43:15 GMT" + "Tue, 30 Mar 2021 00:35:38 GMT" ], "Content-Length": [ - "529" + "524" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1008,32 +1075,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"sn9850\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Network/virtualNetworks/vn1856/subnets/sn9850\",\r\n \"etag\": \"W/\\\"acaf2aa3-8c38-4256-9492-e75345d48aea\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"sn62\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/virtualNetworks/vn2860/subnets/sn62\",\r\n \"etag\": \"W/\\\"7ef882e9-155c-4980-9f4a-d36b1851f8de\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Network/networkInterfaces/nic8164?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgxNjQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/networkInterfaces/nic5370?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTM3MD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"sn9850\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Network/virtualNetworks/vn1856/subnets/sn9850\"\r\n }\r\n },\r\n \"name\": \"ip4131\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"sn62\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/virtualNetworks/vn2860/subnets/sn62\"\r\n }\r\n },\r\n \"name\": \"ip3834\"\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": [ - "fd019c76-7ab4-4f4b-80c7-360d26d4236a" + "1813232f-f54f-4edd-bc4d-781b5bfbfddd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "748" + "743" ] }, "ResponseHeaders": { @@ -1044,19 +1111,19 @@ "no-cache" ], "x-ms-request-id": [ - "17cc2e2b-c0d5-4330-8c3c-b2981f1f3b44" + "9b5418dd-a6db-421f-8615-b6c36db8b1fe" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Network/locations/eastus2/operations/17cc2e2b-c0d5-4330-8c3c-b2981f1f3b44?api-version=2019-09-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Network/locations/eastus2/operations/9b5418dd-a6db-421f-8615-b6c36db8b1fe?api-version=2019-09-01" ], "x-ms-correlation-request-id": [ - "621cfcef-2d32-45ae-93b4-6971dbed7c2b" + "a6603648-97c0-4d5d-a751-3917cf623f26" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "214c8d3d-b5b6-421e-81ed-047be51a4e15" + "9ad719a3-a80b-4349-b6e7-a5f82a015eee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1069,16 +1136,16 @@ "1197" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234316Z:621cfcef-2d32-45ae-93b4-6971dbed7c2b" + "WESTCENTRALUS:20210330T003541Z:a6603648-97c0-4d5d-a751-3917cf623f26" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:43:16 GMT" + "Tue, 30 Mar 2021 00:35:40 GMT" ], "Content-Length": [ - "1643" + "1638" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1087,19 +1154,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"nic8164\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Network/networkInterfaces/nic8164\",\r\n \"etag\": \"W/\\\"f3ef3fee-ab5f-41b1-b785-23c7d3a066eb\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"aeb8576b-4afd-419e-b6fb-60e265a94695\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip4131\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Network/networkInterfaces/nic8164/ipConfigurations/ip4131\",\r\n \"etag\": \"W/\\\"f3ef3fee-ab5f-41b1-b785-23c7d3a066eb\\\"\",\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/galleryPsTestRg3456/providers/Microsoft.Network/virtualNetworks/vn1856/subnets/sn9850\"\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\": \"s3dq3dvlrtzexjmmjjpdxeghkh.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic5370\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/networkInterfaces/nic5370\",\r\n \"etag\": \"W/\\\"4617c98c-eff8-4222-bcca-6889d90f72c9\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"16b954dc-0a13-4082-a8c7-2428003526e5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3834\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/networkInterfaces/nic5370/ipConfigurations/ip3834\",\r\n \"etag\": \"W/\\\"4617c98c-eff8-4222-bcca-6889d90f72c9\\\"\",\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/galleryPsTestRg184/providers/Microsoft.Network/virtualNetworks/vn2860/subnets/sn62\"\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\": \"e54nhstliy2u3kybjkspcff5mb.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Network/networkInterfaces/nic8164?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgxNjQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/networkInterfaces/nic5370?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTM3MD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ] }, @@ -1111,16 +1178,16 @@ "no-cache" ], "ETag": [ - "W/\"f3ef3fee-ab5f-41b1-b785-23c7d3a066eb\"" + "W/\"4617c98c-eff8-4222-bcca-6889d90f72c9\"" ], "x-ms-request-id": [ - "bc47e961-dfa5-477b-b82e-041fd2c767cd" + "39ae8e02-d54c-41b0-a224-8a099b7f53ae" ], "x-ms-correlation-request-id": [ - "a99d858e-17b0-4530-a4a3-a64389ae888d" + "fdd86278-535d-4748-9b56-eeffe886d391" ], "x-ms-arm-service-request-id": [ - "8b099dae-576c-4c54-a815-f6aef257f053" + "fc9f891c-7f89-4df2-bc28-57b3b4ab174d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1130,19 +1197,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234316Z:a99d858e-17b0-4530-a4a3-a64389ae888d" + "WESTCENTRALUS:20210330T003541Z:fdd86278-535d-4748-9b56-eeffe886d391" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:43:16 GMT" + "Tue, 30 Mar 2021 00:35:40 GMT" ], "Content-Length": [ - "1643" + "1638" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1151,25 +1218,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"nic8164\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Network/networkInterfaces/nic8164\",\r\n \"etag\": \"W/\\\"f3ef3fee-ab5f-41b1-b785-23c7d3a066eb\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"aeb8576b-4afd-419e-b6fb-60e265a94695\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip4131\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Network/networkInterfaces/nic8164/ipConfigurations/ip4131\",\r\n \"etag\": \"W/\\\"f3ef3fee-ab5f-41b1-b785-23c7d3a066eb\\\"\",\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/galleryPsTestRg3456/providers/Microsoft.Network/virtualNetworks/vn1856/subnets/sn9850\"\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\": \"s3dq3dvlrtzexjmmjjpdxeghkh.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic5370\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/networkInterfaces/nic5370\",\r\n \"etag\": \"W/\\\"4617c98c-eff8-4222-bcca-6889d90f72c9\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"16b954dc-0a13-4082-a8c7-2428003526e5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3834\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/networkInterfaces/nic5370/ipConfigurations/ip3834\",\r\n \"etag\": \"W/\\\"4617c98c-eff8-4222-bcca-6889d90f72c9\\\"\",\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/galleryPsTestRg184/providers/Microsoft.Network/virtualNetworks/vn2860/subnets/sn62\"\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\": \"e54nhstliy2u3kybjkspcff5mb.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Network/networkInterfaces/nic8164?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgxNjQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/networkInterfaces/nic5370?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTM3MD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6f0a65d9-6d33-45fa-a442-ffd0a705fe79" + "21d5ebb9-58be-4a25-b1d9-3d05985f815b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" ] }, @@ -1181,16 +1248,16 @@ "no-cache" ], "ETag": [ - "W/\"f3ef3fee-ab5f-41b1-b785-23c7d3a066eb\"" + "W/\"4617c98c-eff8-4222-bcca-6889d90f72c9\"" ], "x-ms-request-id": [ - "ce29b587-4cb8-465a-b885-30aceec4e7af" + "c1105b89-6707-4ab7-8c64-0833104fa684" ], "x-ms-correlation-request-id": [ - "98c99a15-2d7f-4924-9302-1a082f683f75" + "2c5801f8-e579-45e9-854d-13bfd7636ad8" ], "x-ms-arm-service-request-id": [ - "02c0ade4-cbaf-4681-92e7-123f4924d5eb" + "24d98a07-ef30-4a9a-8cec-c819aa2547fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1200,19 +1267,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234316Z:98c99a15-2d7f-4924-9302-1a082f683f75" + "WESTCENTRALUS:20210330T003541Z:2c5801f8-e579-45e9-854d-13bfd7636ad8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:43:16 GMT" + "Tue, 30 Mar 2021 00:35:40 GMT" ], "Content-Length": [ - "1643" + "1638" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1221,26 +1288,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"nic8164\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Network/networkInterfaces/nic8164\",\r\n \"etag\": \"W/\\\"f3ef3fee-ab5f-41b1-b785-23c7d3a066eb\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"aeb8576b-4afd-419e-b6fb-60e265a94695\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip4131\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Network/networkInterfaces/nic8164/ipConfigurations/ip4131\",\r\n \"etag\": \"W/\\\"f3ef3fee-ab5f-41b1-b785-23c7d3a066eb\\\"\",\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/galleryPsTestRg3456/providers/Microsoft.Network/virtualNetworks/vn1856/subnets/sn9850\"\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\": \"s3dq3dvlrtzexjmmjjpdxeghkh.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic5370\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/networkInterfaces/nic5370\",\r\n \"etag\": \"W/\\\"4617c98c-eff8-4222-bcca-6889d90f72c9\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"16b954dc-0a13-4082-a8c7-2428003526e5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3834\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/networkInterfaces/nic5370/ipConfigurations/ip3834\",\r\n \"etag\": \"W/\\\"4617c98c-eff8-4222-bcca-6889d90f72c9\\\"\",\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/galleryPsTestRg184/providers/Microsoft.Network/virtualNetworks/vn2860/subnets/sn62\"\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\": \"e54nhstliy2u3kybjkspcff5mb.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/availabilitySets/asforgallery7657?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXNmb3JnYWxsZXJ5NzY1Nz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/availabilitySets/asforgallery8439?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXZhaWxhYmlsaXR5U2V0cy9hc2ZvcmdhbGxlcnk4NDM5P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", "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": [ - "7f079ac0-3d75-4e1e-8dd5-a61fdd27ffed" + "bc1d3aa7-7da9-4496-ba95-9109c604eb7a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1263,7 +1330,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f391a74f-f0c4-44c5-9406-b08f7080ee32" + "626ff073-1365-4eb8-8606-f3f7f73ba28b" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1273,19 +1340,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "635bc121-05a2-4167-8c56-090ddaabe547" + "f8e02b1e-31e6-4811-9138-d35b1b57684f" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234317Z:635bc121-05a2-4167-8c56-090ddaabe547" + "WESTCENTRALUS:20210330T003544Z:f8e02b1e-31e6-4811-9138-d35b1b57684f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:43:16 GMT" + "Tue, 30 Mar 2021 00:35:44 GMT" ], "Content-Length": [ - "464" + "463" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1294,32 +1361,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"asforgallery7657\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/availabilitySets/asforgallery7657\",\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\": \"asforgallery8439\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/availabilitySets/asforgallery8439\",\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/galleryPsTestRg3456/providers/Microsoft.Compute/virtualMachines/vm6476?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY0NzY/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/virtualMachines/vm6537?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtNjUzNz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "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://saforgallery1318.blob.core.windows.net/crptestar1538/oscrptestar3673.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/galleryPsTestRg3456/providers/Microsoft.Network/networkInterfaces/nic8164\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/availabilitySets/asforgallery7657\"\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://saforgallery1715.blob.core.windows.net/crptestar9300/oscrptestar8986.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/galleryPsTestRg184/providers/Microsoft.Network/networkInterfaces/nic5370\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/availabilitySets/asforgallery8439\"\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": [ - "38088b0f-e98c-47a6-a709-46cc282cc07a" + "07ba0ca5-fa64-4f58-85b3-0ff5ca4321a1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1239" + "1237" ] }, "ResponseHeaders": { @@ -1333,7 +1400,7 @@ "10" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/e8226df0-b0af-44d2-b59e-9858b68a34fe?api-version=2020-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/b6904e8d-f1ae-4ae1-94ad-34efac2d8331?api-version=2020-12-01" ], "Azure-AsyncNotification": [ "Enabled" @@ -1345,7 +1412,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e8226df0-b0af-44d2-b59e-9858b68a34fe" + "b6904e8d-f1ae-4ae1-94ad-34efac2d8331" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1355,19 +1422,19 @@ "1198" ], "x-ms-correlation-request-id": [ - "a21d84d2-673a-481a-9b00-cb9eb4698cdc" + "814e4562-3eda-4c3d-928f-99652e86cf07" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234318Z:a21d84d2-673a-481a-9b00-cb9eb4698cdc" + "WESTCENTRALUS:20210330T003546Z:814e4562-3eda-4c3d-928f-99652e86cf07" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:43:17 GMT" + "Tue, 30 Mar 2021 00:35:46 GMT" ], "Content-Length": [ - "1853" + "1968" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1376,20 +1443,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vm6476\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/virtualMachines/vm6476\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"5a9331a4-2832-47a0-adac-a4b763648c02\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY7657\"\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://saforgallery1318.blob.core.windows.net/crptestar1538/oscrptestar3673.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Network/networkInterfaces/nic8164\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vm6537\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/virtualMachines/vm6537\",\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\": \"dcb840be-2ab4-4156-b04a-7ef28a1ced09\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY8439\"\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://saforgallery1715.blob.core.windows.net/crptestar9300/oscrptestar8986.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/networkInterfaces/nic5370\"\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/operations/e8226df0-b0af-44d2-b59e-9858b68a34fe?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2U4MjI2ZGYwLWIwYWYtNDRkMi1iNTllLTk4NThiNjhhMzRmZT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/b6904e8d-f1ae-4ae1-94ad-34efac2d8331?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2I2OTA0ZThkLWYxYWUtNGFlMS05NGFkLTM0ZWZhYzJkODMzMT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1403,96 +1470,35 @@ "50" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "08953334-422e-4708-97c2-f175303241ab" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-correlation-request-id": [ - "9d47da7f-d9ef-4ebc-9d3a-ee66f8515f72" - ], - "x-ms-routing-request-id": [ - "EASTUS2:20201229T234328Z:9d47da7f-d9ef-4ebc-9d3a-ee66f8515f72" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 29 Dec 2020 23:43:27 GMT" - ], - "Content-Length": [ - "133" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-29T23:43:17.714223+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e8226df0-b0af-44d2-b59e-9858b68a34fe\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/e8226df0-b0af-44d2-b59e-9858b68a34fe?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2U4MjI2ZGYwLWIwYWYtNDRkMi1iNTllLTk4NThiNjhhMzRmZT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998" + "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29996" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "46b7d981-509d-4d1d-8b31-4791f5d330a3" + "d0261339-d4ca-4a99-bbec-c73f4e191f17" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11986" ], "x-ms-correlation-request-id": [ - "dfa4a073-6a17-4536-a0a4-3c8bf9af2dad" + "57c81df2-896d-4dd0-84aa-924684bc4fc6" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234418Z:dfa4a073-6a17-4536-a0a4-3c8bf9af2dad" + "WESTCENTRALUS:20210330T003556Z:57c81df2-896d-4dd0-84aa-924684bc4fc6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:44:18 GMT" + "Tue, 30 Mar 2021 00:35:56 GMT" ], "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1501,20 +1507,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-29T23:43:17.714223+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e8226df0-b0af-44d2-b59e-9858b68a34fe\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:35:45.6338616-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6904e8d-f1ae-4ae1-94ad-34efac2d8331\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/e8226df0-b0af-44d2-b59e-9858b68a34fe?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2U4MjI2ZGYwLWIwYWYtNDRkMi1iNTllLTk4NThiNjhhMzRmZT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/b6904e8d-f1ae-4ae1-94ad-34efac2d8331?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2I2OTA0ZThkLWYxYWUtNGFlMS05NGFkLTM0ZWZhYzJkODMzMT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1525,35 +1531,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29997" + "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29995" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ea8b9648-1108-46c8-9f48-205d17c2fe72" + "f1a26458-edf3-4df2-9b68-c67655d5f210" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11984" ], "x-ms-correlation-request-id": [ - "c5251b59-b6a1-4b8d-a6ed-1da5babdb994" + "5e2f7248-72d8-4439-87a5-bd24ba0aaefe" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234508Z:c5251b59-b6a1-4b8d-a6ed-1da5babdb994" + "WESTCENTRALUS:20210330T003646Z:5e2f7248-72d8-4439-87a5-bd24ba0aaefe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:45:07 GMT" + "Tue, 30 Mar 2021 00:36:46 GMT" ], "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1562,20 +1568,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-29T23:43:17.714223+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e8226df0-b0af-44d2-b59e-9858b68a34fe\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:35:45.6338616-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6904e8d-f1ae-4ae1-94ad-34efac2d8331\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/e8226df0-b0af-44d2-b59e-9858b68a34fe?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2U4MjI2ZGYwLWIwYWYtNDRkMi1iNTllLTk4NThiNjhhMzRmZT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/b6904e8d-f1ae-4ae1-94ad-34efac2d8331?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2I2OTA0ZThkLWYxYWUtNGFlMS05NGFkLTM0ZWZhYzJkODMzMT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1586,35 +1592,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29995" + "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29994" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4cd5b431-1c39-4f9c-9612-d4f9b0f9814a" + "7f03b02a-e109-4d9e-b02b-c9cfefcdd7a5" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11983" ], "x-ms-correlation-request-id": [ - "a7a46b81-8c29-4005-aae0-52504cbe42a8" + "0708cdec-c6a7-4d94-9aad-ef564adbf0d9" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234558Z:a7a46b81-8c29-4005-aae0-52504cbe42a8" + "WESTCENTRALUS:20210330T003736Z:0708cdec-c6a7-4d94-9aad-ef564adbf0d9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:45:57 GMT" + "Tue, 30 Mar 2021 00:37:36 GMT" ], "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1623,20 +1629,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-29T23:43:17.714223+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e8226df0-b0af-44d2-b59e-9858b68a34fe\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:35:45.6338616-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6904e8d-f1ae-4ae1-94ad-34efac2d8331\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/e8226df0-b0af-44d2-b59e-9858b68a34fe?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2U4MjI2ZGYwLWIwYWYtNDRkMi1iNTllLTk4NThiNjhhMzRmZT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/b6904e8d-f1ae-4ae1-94ad-34efac2d8331?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2I2OTA0ZThkLWYxYWUtNGFlMS05NGFkLTM0ZWZhYzJkODMzMT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1647,35 +1653,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29993" + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29991" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5f84f741-ba02-4b5f-aebb-0d4d629a3f1e" + "3a8a1f2f-9f9a-4fcd-ad28-8c6d11d1ccd4" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11982" ], "x-ms-correlation-request-id": [ - "d74c803b-478b-48e0-868c-2d529c3f28fd" + "00b0b76c-f188-4f9e-8ce8-583f2d0920a7" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234648Z:d74c803b-478b-48e0-868c-2d529c3f28fd" + "WESTCENTRALUS:20210330T003827Z:00b0b76c-f188-4f9e-8ce8-583f2d0920a7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:46:47 GMT" + "Tue, 30 Mar 2021 00:38:26 GMT" ], "Content-Length": [ - "183" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1684,20 +1690,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-29T23:43:17.714223+00:00\",\r\n \"endTime\": \"2020-12-29T23:46:32.5280297+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e8226df0-b0af-44d2-b59e-9858b68a34fe\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:35:45.6338616-07:00\",\r\n \"endTime\": \"2021-03-29T17:38:22.8218451-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b6904e8d-f1ae-4ae1-94ad-34efac2d8331\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/virtualMachines/vm6476?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY0NzY/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/virtualMachines/vm6537?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtNjUzNz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1708,35 +1714,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31997" + "Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31938" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fb146809-8f71-4645-b9fe-851b4b83217d" + "8c09460b-673f-4705-96cb-38c7beaa74f1" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11981" ], "x-ms-correlation-request-id": [ - "0d5c1846-fc9b-494d-a9ca-dc6c5d1c379f" + "9b2e8993-5893-4b46-8476-96fcf5b3916d" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234648Z:0d5c1846-fc9b-494d-a9ca-dc6c5d1c379f" + "WESTCENTRALUS:20210330T003827Z:9b2e8993-5893-4b46-8476-96fcf5b3916d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:46:47 GMT" + "Tue, 30 Mar 2021 00:38:26 GMT" ], "Content-Length": [ - "1882" + "1997" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1745,26 +1751,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vm6476\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/virtualMachines/vm6476\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"5a9331a4-2832-47a0-adac-a4b763648c02\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY7657\"\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://saforgallery1318.blob.core.windows.net/crptestar1538/oscrptestar3673.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Network/networkInterfaces/nic8164\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vm6537\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/virtualMachines/vm6537\",\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\": \"dcb840be-2ab4-4156-b04a-7ef28a1ced09\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY8439\"\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://saforgallery1715.blob.core.windows.net/crptestar9300/oscrptestar8986.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/networkInterfaces/nic5370\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/virtualMachines/vm6476?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY0NzY/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/virtualMachines/vm6537?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtNjUzNz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fdf7ee60-1cf1-4103-b3fb-3123eccfca0f" + "8802c738-8ba1-4520-b526-b0e16a7fc6d4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1775,35 +1781,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31996" + "Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31937" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6b50f6b3-c9d9-44a7-9084-9d223bdd578a" + "0fa403bd-36dd-470e-b4c3-e147e746b322" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11980" ], "x-ms-correlation-request-id": [ - "aec3e857-d5a6-49e0-93fc-61d3c77b9601" + "30efde36-76ec-4e5f-83b6-35e0fba715af" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234648Z:aec3e857-d5a6-49e0-93fc-61d3c77b9601" + "WESTCENTRALUS:20210330T003827Z:30efde36-76ec-4e5f-83b6-35e0fba715af" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:46:47 GMT" + "Tue, 30 Mar 2021 00:38:26 GMT" ], "Content-Length": [ - "1882" + "1997" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1812,26 +1818,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vm6476\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/virtualMachines/vm6476\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"5a9331a4-2832-47a0-adac-a4b763648c02\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY7657\"\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://saforgallery1318.blob.core.windows.net/crptestar1538/oscrptestar3673.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Network/networkInterfaces/nic8164\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vm6537\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/virtualMachines/vm6537\",\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\": \"dcb840be-2ab4-4156-b04a-7ef28a1ced09\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/availabilitySets/ASFORGALLERY8439\"\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://saforgallery1715.blob.core.windows.net/crptestar9300/oscrptestar8986.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Network/networkInterfaces/nic5370\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/images/psTestSourceImage6907?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTY5MDc/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/images/psTestSourceImage5220?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaW1hZ2VzL3BzVGVzdFNvdXJjZUltYWdlNTIyMD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"osState\": \"Generalized\",\r\n \"blobUri\": \"https://saforgallery1318.blob.core.windows.net/crptestar1538/oscrptestar3673.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://saforgallery1715.blob.core.windows.net/crptestar9300/oscrptestar8986.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": [ - "6043b1fb-5473-4aab-bb32-03a9342c6ed6" + "4d6140f6-4fe0-4153-88c0-8051d88da1c8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1848,7 +1854,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/e2d1def6-7df3-4c5e-9d0f-66b33365248b?api-version=2020-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/3287f8bb-ebcc-4302-a2a5-70f9248b0055?api-version=2020-12-01" ], "Azure-AsyncNotification": [ "Enabled" @@ -1860,7 +1866,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e2d1def6-7df3-4c5e-9d0f-66b33365248b" + "3287f8bb-ebcc-4302-a2a5-70f9248b0055" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1870,19 +1876,19 @@ "1197" ], "x-ms-correlation-request-id": [ - "2a059683-1532-4c3b-860b-a2dfb168fecc" + "e33cd110-40c6-42e6-90f7-d0453c9f2218" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234653Z:2a059683-1532-4c3b-860b-a2dfb168fecc" + "WESTCENTRALUS:20210330T003834Z:e33cd110-40c6-42e6-90f7-d0453c9f2218" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:46:52 GMT" + "Tue, 30 Mar 2021 00:38:33 GMT" ], "Content-Length": [ - "767" + "766" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1891,20 +1897,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"psTestSourceImage6907\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/images/psTestSourceImage6907\",\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://saforgallery1318.blob.core.windows.net/crptestar1538/oscrptestar3673.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\": \"psTestSourceImage5220\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/images/psTestSourceImage5220\",\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://saforgallery1715.blob.core.windows.net/crptestar9300/oscrptestar8986.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/e2d1def6-7df3-4c5e-9d0f-66b33365248b?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2UyZDFkZWY2LTdkZjMtNGM1ZS05ZDBmLTY2YjMzMzY1MjQ4Yj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/3287f8bb-ebcc-4302-a2a5-70f9248b0055?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzMyODdmOGJiLWViY2MtNDMwMi1hMmE1LTcwZjkyNDhiMDA1NT9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1915,35 +1921,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29991" + "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29989" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "37a7345d-f416-47a9-a07f-c5f7b8b8a0f4" + "06594650-fe58-4002-96e9-450fac89284b" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11979" ], "x-ms-correlation-request-id": [ - "c14d7838-0f2b-42ae-8125-b7cbbb9b38bd" + "a011678c-bfb4-444e-9fef-8d24d0e780a8" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234723Z:c14d7838-0f2b-42ae-8125-b7cbbb9b38bd" + "WESTCENTRALUS:20210330T003904Z:a011678c-bfb4-444e-9fef-8d24d0e780a8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:47:23 GMT" + "Tue, 30 Mar 2021 00:39:03 GMT" ], "Content-Length": [ - "183" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1952,20 +1958,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-29T23:46:48.6218945+00:00\",\r\n \"endTime\": \"2020-12-29T23:46:58.856326+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e2d1def6-7df3-4c5e-9d0f-66b33365248b\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:38:28.6343477-07:00\",\r\n \"endTime\": \"2021-03-29T17:38:38.8531906-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3287f8bb-ebcc-4302-a2a5-70f9248b0055\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/images/psTestSourceImage6907?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTY5MDc/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/images/psTestSourceImage5220?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaW1hZ2VzL3BzVGVzdFNvdXJjZUltYWdlNTIyMD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1982,29 +1988,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "50fa16d0-60fe-4fda-af62-748671cb3861" + "6ecc1b7a-87d8-49e3-8f70-a0e3f1560b70" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11978" ], "x-ms-correlation-request-id": [ - "d71881ef-5623-4db8-aa8c-0ecb645912f6" + "1dc2b275-ae35-49de-a83a-cb02f47dda62" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234723Z:d71881ef-5623-4db8-aa8c-0ecb645912f6" + "WESTCENTRALUS:20210330T003904Z:1dc2b275-ae35-49de-a83a-cb02f47dda62" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:47:23 GMT" + "Tue, 30 Mar 2021 00:39:03 GMT" ], "Content-Length": [ - "796" + "795" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2013,26 +2019,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"psTestSourceImage6907\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/images/psTestSourceImage6907\",\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://saforgallery1318.blob.core.windows.net/crptestar1538/oscrptestar3673.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\": \"psTestSourceImage5220\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/images/psTestSourceImage5220\",\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://saforgallery1715.blob.core.windows.net/crptestar9300/oscrptestar8986.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/galleryPsTestRg3456/providers/Microsoft.Compute/images/psTestSourceImage6907?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTY5MDc/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/images/psTestSourceImage5220?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaW1hZ2VzL3BzVGVzdFNvdXJjZUltYWdlNTIyMD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "10ca0e44-6299-468a-b145-b5a6a23f3064" + "fe013f24-e3aa-4ef0-b1c1-580205fda648" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -2049,29 +2055,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "be44d774-e92d-433a-8a8e-bb3d4a35d8c5" + "8b64171d-b524-4223-81a1-1c759f2df97a" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11977" ], "x-ms-correlation-request-id": [ - "20ab7cff-0016-4b34-9d7a-e15114a89220" + "94dafbd9-ee95-4038-9dce-959b786a44c5" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234723Z:20ab7cff-0016-4b34-9d7a-e15114a89220" + "WESTCENTRALUS:20210330T003904Z:94dafbd9-ee95-4038-9dce-959b786a44c5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:47:23 GMT" + "Tue, 30 Mar 2021 00:39:04 GMT" ], "Content-Length": [ - "796" + "795" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2080,26 +2086,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"psTestSourceImage6907\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/images/psTestSourceImage6907\",\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://saforgallery1318.blob.core.windows.net/crptestar1538/oscrptestar3673.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\": \"psTestSourceImage5220\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/images/psTestSourceImage5220\",\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://saforgallery1715.blob.core.windows.net/crptestar9300/oscrptestar8986.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/galleryPsTestRg3456/providers/Microsoft.Compute/galleries/galleryPsTestGallery4558?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ1NTg/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzMzNj9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", "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": [ - "d56697f1-b536-4f30-bc35-4a8d0b63a17f" + "9611021c-61be-4593-a945-9a44a094d5e2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2116,7 +2122,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/d4e16266-689e-4284-9286-e96993d51ca0?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/239e5b85-c319-405a-a0e4-7d66df5d4785?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;298" @@ -2125,10 +2131,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "d4e16266-689e-4284-9286-e96993d51ca0" + "239e5b85-c319-405a-a0e4-7d66df5d4785" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2138,19 +2144,19 @@ "1196" ], "x-ms-correlation-request-id": [ - "751d921b-c2ed-4869-8611-f23520ddee7b" + "71a70e2e-0a98-4258-8613-79401c9c622a" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234724Z:751d921b-c2ed-4869-8611-f23520ddee7b" + "WESTCENTRALUS:20210330T003906Z:71a70e2e-0a98-4258-8613-79401c9c622a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:47:24 GMT" + "Tue, 30 Mar 2021 00:39:05 GMT" ], "Content-Length": [ - "508" + "572" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2159,20 +2165,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery4558\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/galleries/galleryPsTestGallery4558\",\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-GALLERYPSTESTGALLERY4558\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery7336\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336\",\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-GALLERYPSTESTGALLERY7336\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Private\"\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/d4e16266-689e-4284-9286-e96993d51ca0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9kNGUxNjI2Ni02ODllLTQyODQtOTI4Ni1lOTY5OTNkNTFjYTA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/239e5b85-c319-405a-a0e4-7d66df5d4785?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yMzllNWI4NS1jMzE5LTQwNWEtYTBlNC03ZDY2ZGY1ZDQ3ODU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -2189,29 +2195,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "015cb1ad-22fd-4683-b2d1-04ba5d2ff0e2" + "c00183ce-7d9c-4e63-9049-3cf0e33b18f9" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11976" ], "x-ms-correlation-request-id": [ - "ae832ed9-c675-4730-973d-8b65cf12713e" + "f00c96fa-2440-4bdc-a2a5-d92a6360cdcd" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234754Z:ae832ed9-c675-4730-973d-8b65cf12713e" + "WESTCENTRALUS:20210330T003936Z:f00c96fa-2440-4bdc-a2a5-d92a6360cdcd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:47:54 GMT" + "Tue, 30 Mar 2021 00:39:35 GMT" ], "Content-Length": [ "184" @@ -2223,20 +2229,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-29T23:47:24.1682296+00:00\",\r\n \"endTime\": \"2020-12-29T23:47:24.3869715+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d4e16266-689e-4284-9286-e96993d51ca0\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:39:05.9664537-07:00\",\r\n \"endTime\": \"2021-03-29T17:39:06.2164623-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"239e5b85-c319-405a-a0e4-7d66df5d4785\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/galleries/galleryPsTestGallery4558?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ1NTg/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzMzNj9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -2247,38 +2253,38 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;345,Microsoft.Compute/GetGallery30Min;2489" + "Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2489" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "f0cc0211-ed45-486b-9626-9d9ea7401d60" + "aed17cbd-f93e-4efa-834a-27a47a0e22ea" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11975" ], "x-ms-correlation-request-id": [ - "a7fdb04a-dd48-47e4-a688-84563efd81a9" + "7aa9bdda-1f56-42d3-8413-8b1e500b8785" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234754Z:a7fdb04a-dd48-47e4-a688-84563efd81a9" + "WESTCENTRALUS:20210330T003936Z:7aa9bdda-1f56-42d3-8413-8b1e500b8785" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:47:54 GMT" + "Tue, 30 Mar 2021 00:39:35 GMT" ], "Content-Length": [ - "509" + "508" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2287,26 +2293,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery4558\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/galleries/galleryPsTestGallery4558\",\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-GALLERYPSTESTGALLERY4558\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery7336\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336\",\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-GALLERYPSTESTGALLERY7336\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/galleries/galleryPsTestGallery4558/images/galleryPsTestGalleryImage8450?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ1NTgvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4NDUwP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzMzNi9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTE4MjE/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "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": [ - "34291d96-7e96-4ac7-9053-c61a5999eb09" + "b1e35076-98b2-4ea7-8455-d882e56cf67b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2323,7 +2329,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/56c10767-d40b-431c-b0df-132ab45bf663?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/bc54027c-b599-4b1b-921c-6425dddd7d5e?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;747" @@ -2332,10 +2338,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "56c10767-d40b-431c-b0df-132ab45bf663" + "bc54027c-b599-4b1b-921c-6425dddd7d5e" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2345,19 +2351,19 @@ "1195" ], "x-ms-correlation-request-id": [ - "f27e0e30-fa5d-4d44-9d54-2dc28707e180" + "ae05fe0e-0825-4c87-a809-6968353457d2" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234754Z:f27e0e30-fa5d-4d44-9d54-2dc28707e180" + "WESTCENTRALUS:20210330T003938Z:ae05fe0e-0825-4c87-a809-6968353457d2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:47:54 GMT" + "Tue, 30 Mar 2021 00:39:37 GMT" ], "Content-Length": [ - "646" + "645" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2366,20 +2372,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage8450\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/galleries/galleryPsTestGallery4558/images/galleryPsTestGalleryImage8450\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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\": \"galleryPsTestGalleryImage1821\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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/56c10767-d40b-431c-b0df-132ab45bf663?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy81NmMxMDc2Ny1kNDBiLTQzMWMtYjBkZi0xMzJhYjQ1YmY2NjM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/bc54027c-b599-4b1b-921c-6425dddd7d5e?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iYzU0MDI3Yy1iNTk5LTRiMWItOTIxYy02NDI1ZGRkZDdkNWU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -2396,32 +2402,32 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "0c1599d3-1e25-4452-b038-4b9f4b48c3b0" + "44a3665e-4780-4621-bdf6-5b6dc6956e13" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11974" ], "x-ms-correlation-request-id": [ - "46f19806-ab81-468d-9c18-0c294ccf55b7" + "101b265d-b1b3-413a-9eab-d041a5fa2e54" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234824Z:46f19806-ab81-468d-9c18-0c294ccf55b7" + "WESTCENTRALUS:20210330T004008Z:101b265d-b1b3-413a-9eab-d041a5fa2e54" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:48:24 GMT" + "Tue, 30 Mar 2021 00:40:08 GMT" ], "Content-Length": [ - "184" + "183" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2430,20 +2436,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-29T23:47:54.5746535+00:00\",\r\n \"endTime\": \"2020-12-29T23:47:54.6684079+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"56c10767-d40b-431c-b0df-132ab45bf663\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:39:37.5773501-07:00\",\r\n \"endTime\": \"2021-03-29T17:39:37.717982-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"bc54027c-b599-4b1b-921c-6425dddd7d5e\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/galleries/galleryPsTestGallery4558/images/galleryPsTestGalleryImage8450?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ1NTgvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4NDUwP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzMzNi9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTE4MjE/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -2454,38 +2460,38 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImage3Min;594,Microsoft.Compute/GetGalleryImage30Min;2981" + "Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2983" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "b7a7b344-dfab-4b77-96ef-6a3842febf41" + "e4d9d0d0-1dd5-4ffe-b0b0-10df4c6f17ee" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11973" ], "x-ms-correlation-request-id": [ - "2e144ff7-8b98-411c-80c7-3b847f5a21c4" + "5061a076-9f4c-4170-bd1c-12c76c33b1f5" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234824Z:2e144ff7-8b98-411c-80c7-3b847f5a21c4" + "WESTCENTRALUS:20210330T004008Z:5061a076-9f4c-4170-bd1c-12c76c33b1f5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:48:24 GMT" + "Tue, 30 Mar 2021 00:40:08 GMT" ], "Content-Length": [ - "647" + "646" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2494,32 +2500,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage8450\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/galleries/galleryPsTestGallery4558/images/galleryPsTestGalleryImage8450\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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\": \"galleryPsTestGalleryImage1821\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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/galleryPsTestRg3456/providers/Microsoft.Compute/galleries/galleryPsTestGallery4558/images/galleryPsTestGalleryImage8450/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ1NTgvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4NDUwL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzMzNi9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTE4MjEvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "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\": \"2021-01-08T00: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/galleryPsTestRg3456/providers/Microsoft.Compute/images/psTestSourceImage6907\"\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\": \"2021-04-08T07: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/galleryPsTestRg184/providers/Microsoft.Compute/images/psTestSourceImage5220\"\r\n }\r\n }\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f18e2c06-35ea-407d-a48a-9ab4bcd3bd1f" + "c64be93c-95e0-4bbe-8cb0-1b89bb7d608d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "603" + "602" ] }, "ResponseHeaders": { @@ -2533,7 +2539,7 @@ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/5ce55a4f-d509-4c2b-a050-811305a4b1c6?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/82e09f14-222f-4754-bb6a-a531b5026f3d?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1199" @@ -2542,10 +2548,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "5ce55a4f-d509-4c2b-a050-811305a4b1c6" + "82e09f14-222f-4754-bb6a-a531b5026f3d" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2555,19 +2561,19 @@ "1194" ], "x-ms-correlation-request-id": [ - "4ea9e746-f0ed-4ec4-b644-efb42d52b445" + "a49bb406-bac1-4373-96be-9757f1de0a83" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234825Z:4ea9e746-f0ed-4ec4-b644-efb42d52b445" + "WESTCENTRALUS:20210330T004009Z:a49bb406-bac1-4373-96be-9757f1de0a83" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:48:24 GMT" + "Tue, 30 Mar 2021 00:40:09 GMT" ], "Content-Length": [ - "1036" + "1034" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2576,32 +2582,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/galleries/galleryPsTestGallery4558/images/galleryPsTestGalleryImage8450/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\": \"2020-12-29T23:48:25.0279844+00:00\",\r\n \"endOfLifeDate\": \"2021-01-08T00:00:00+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/images/psTestSourceImage6907\"\r\n }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821/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\": \"2021-03-29T17:40:09.0320568-07:00\",\r\n \"endOfLifeDate\": \"2021-04-08T00: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/galleryPsTestRg184/providers/Microsoft.Compute/images/psTestSourceImage5220\"\r\n }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/galleries/galleryPsTestGallery4558/images/galleryPsTestGalleryImage8450/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ1NTgvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4NDUwL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzMzNi9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTE4MjEvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "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\": \"2021-04-09T00: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/galleryPsTestRg3456/providers/Microsoft.Compute/images/psTestSourceImage6907\"\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\": \"2021-07-07T07: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/galleryPsTestRg184/providers/Microsoft.Compute/images/psTestSourceImage5220\"\r\n }\r\n }\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "594d06c9-c272-4319-9036-a04abf501cbf" + "6694425e-98ee-4837-af7e-edfbce31a682" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "603" + "602" ] }, "ResponseHeaders": { @@ -2615,7 +2621,7 @@ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/21d6ba07-b268-4d59-a7dd-0ad6522a9235?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/771470a3-3857-40c0-86c0-36e74515495f?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1198" @@ -2624,10 +2630,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "21d6ba07-b268-4d59-a7dd-0ad6522a9235" + "771470a3-3857-40c0-86c0-36e74515495f" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2637,19 +2643,19 @@ "1193" ], "x-ms-correlation-request-id": [ - "5d328092-bfc0-42ea-8271-4c4d29ec6f17" + "d6c3b571-8017-417c-9052-d6ad62ca4c30" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T000526Z:5d328092-bfc0-42ea-8271-4c4d29ec6f17" + "WESTCENTRALUS:20210330T004812Z:d6c3b571-8017-417c-9052-d6ad62ca4c30" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:05:25 GMT" + "Tue, 30 Mar 2021 00:48:12 GMT" ], "Content-Length": [ - "1150" + "1148" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2658,20 +2664,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/galleries/galleryPsTestGallery4558/images/galleryPsTestGalleryImage8450/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\": \"2020-12-29T23:48:25.0279844+00:00\",\r\n \"endOfLifeDate\": \"2021-04-09T00:00:00+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/images/psTestSourceImage6907\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821/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\": \"2021-03-29T17:40:09.0320568-07:00\",\r\n \"endOfLifeDate\": \"2021-07-07T00: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/galleryPsTestRg184/providers/Microsoft.Compute/images/psTestSourceImage5220\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/5ce55a4f-d509-4c2b-a050-811305a4b1c6?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy81Y2U1NWE0Zi1kNTA5LTRjMmItYTA1MC04MTEzMDVhNGIxYzY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/82e09f14-222f-4754-bb6a-a531b5026f3d?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy84MmUwOWYxNC0yMjJmLTQ3NTQtYmI2YS1hNTMxYjUwMjZmM2Q/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -2691,29 +2697,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "f347a5a4-fcf8-47ce-8c8d-2aef65f62eed" + "5d2c4b54-6191-4a08-9fb6-c2f290e45980" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11972" ], "x-ms-correlation-request-id": [ - "acbd62b9-833c-49cc-9a81-3ab97a3c23e9" + "d9d63729-c342-47f4-b397-9ad2f0574eae" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T234925Z:acbd62b9-833c-49cc-9a81-3ab97a3c23e9" + "WESTCENTRALUS:20210330T004110Z:d9d63729-c342-47f4-b397-9ad2f0574eae" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:49:24 GMT" + "Tue, 30 Mar 2021 00:41:09 GMT" ], "Content-Length": [ "134" @@ -2725,20 +2731,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-29T23:48:25.0279844+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5ce55a4f-d509-4c2b-a050-811305a4b1c6\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:40:09.0320568-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"82e09f14-222f-4754-bb6a-a531b5026f3d\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/5ce55a4f-d509-4c2b-a050-811305a4b1c6?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy81Y2U1NWE0Zi1kNTA5LTRjMmItYTA1MC04MTEzMDVhNGIxYzY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/82e09f14-222f-4754-bb6a-a531b5026f3d?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy84MmUwOWYxNC0yMjJmLTQ3NTQtYmI2YS1hNTMxYjUwMjZmM2Q/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -2752,35 +2758,35 @@ "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4181" + "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4181" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "06c50a95-b697-4e0a-be15-a867503d7f49" + "3ce56025-3f81-425c-93b8-136de17ca9cc" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11971" ], "x-ms-correlation-request-id": [ - "cde11155-1520-41af-86bf-ca1d1578cd31" + "037f7d40-ce09-4f8b-9cfc-8690b48ffb7c" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T235025Z:cde11155-1520-41af-86bf-ca1d1578cd31" + "WESTCENTRALUS:20210330T004210Z:037f7d40-ce09-4f8b-9cfc-8690b48ffb7c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:50:25 GMT" + "Tue, 30 Mar 2021 00:42:10 GMT" ], "Content-Length": [ "134" @@ -2792,20 +2798,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-29T23:48:25.0279844+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5ce55a4f-d509-4c2b-a050-811305a4b1c6\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:40:09.0320568-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"82e09f14-222f-4754-bb6a-a531b5026f3d\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/5ce55a4f-d509-4c2b-a050-811305a4b1c6?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy81Y2U1NWE0Zi1kNTA5LTRjMmItYTA1MC04MTEzMDVhNGIxYzY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/82e09f14-222f-4754-bb6a-a531b5026f3d?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy84MmUwOWYxNC0yMjJmLTQ3NTQtYmI2YS1hNTMxYjUwMjZmM2Q/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -2825,29 +2831,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "7c229263-caaf-4102-9870-ffe5cef15947" + "22387701-ca1a-40bf-854e-fd109b5c9c4a" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11970" ], "x-ms-correlation-request-id": [ - "3aa16909-d9dd-451c-86d2-3a384ddc43cf" + "b36783ef-c75c-46eb-b450-b4711612292b" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T235125Z:3aa16909-d9dd-451c-86d2-3a384ddc43cf" + "WESTCENTRALUS:20210330T004310Z:b36783ef-c75c-46eb-b450-b4711612292b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:51:24 GMT" + "Tue, 30 Mar 2021 00:43:09 GMT" ], "Content-Length": [ "134" @@ -2859,20 +2865,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-29T23:48:25.0279844+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5ce55a4f-d509-4c2b-a050-811305a4b1c6\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:40:09.0320568-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"82e09f14-222f-4754-bb6a-a531b5026f3d\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/5ce55a4f-d509-4c2b-a050-811305a4b1c6?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy81Y2U1NWE0Zi1kNTA5LTRjMmItYTA1MC04MTEzMDVhNGIxYzY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/82e09f14-222f-4754-bb6a-a531b5026f3d?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy84MmUwOWYxNC0yMjJmLTQ3NTQtYmI2YS1hNTMxYjUwMjZmM2Q/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -2892,29 +2898,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "5ef711c2-71b5-484f-870d-1253abc84920" + "d395bce7-c80f-42e0-908b-717b986371e1" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11969" ], "x-ms-correlation-request-id": [ - "8f2a8762-8350-44f8-bf44-7d236729f3e8" + "2ccf64e2-c9a8-40d0-a056-6c5bfb2d72a9" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T235225Z:8f2a8762-8350-44f8-bf44-7d236729f3e8" + "WESTCENTRALUS:20210330T004410Z:2ccf64e2-c9a8-40d0-a056-6c5bfb2d72a9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:52:25 GMT" + "Tue, 30 Mar 2021 00:44:10 GMT" ], "Content-Length": [ "134" @@ -2926,20 +2932,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-29T23:48:25.0279844+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5ce55a4f-d509-4c2b-a050-811305a4b1c6\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:40:09.0320568-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"82e09f14-222f-4754-bb6a-a531b5026f3d\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/5ce55a4f-d509-4c2b-a050-811305a4b1c6?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy81Y2U1NWE0Zi1kNTA5LTRjMmItYTA1MC04MTEzMDVhNGIxYzY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/82e09f14-222f-4754-bb6a-a531b5026f3d?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy84MmUwOWYxNC0yMjJmLTQ3NTQtYmI2YS1hNTMxYjUwMjZmM2Q/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -2959,29 +2965,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "b63b55a8-34a4-4ed7-9d5c-90e2f1be6eeb" + "e781504a-4553-40d3-aa37-c26a33d4fe73" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11968" ], "x-ms-correlation-request-id": [ - "09e83ad1-cce0-44d3-bfe8-e68112b88fa9" + "bb14fa95-d226-4391-a4ae-4dc7f7297895" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T235325Z:09e83ad1-cce0-44d3-bfe8-e68112b88fa9" + "WESTCENTRALUS:20210330T004511Z:bb14fa95-d226-4391-a4ae-4dc7f7297895" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:53:24 GMT" + "Tue, 30 Mar 2021 00:45:10 GMT" ], "Content-Length": [ "134" @@ -2993,20 +2999,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-29T23:48:25.0279844+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5ce55a4f-d509-4c2b-a050-811305a4b1c6\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:40:09.0320568-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"82e09f14-222f-4754-bb6a-a531b5026f3d\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/5ce55a4f-d509-4c2b-a050-811305a4b1c6?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy81Y2U1NWE0Zi1kNTA5LTRjMmItYTA1MC04MTEzMDVhNGIxYzY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/82e09f14-222f-4754-bb6a-a531b5026f3d?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy84MmUwOWYxNC0yMjJmLTQ3NTQtYmI2YS1hNTMxYjUwMjZmM2Q/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -3026,29 +3032,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "7a2b0e71-c908-43d0-b448-82278a47ce22" + "1b586c2d-ca10-4a08-9a5e-5e6847b714ea" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11967" ], "x-ms-correlation-request-id": [ - "33934445-7f8e-469d-8eb0-afa2e2b44fcd" + "bc655927-d8f7-49e2-bcd7-bf3f70b9d1d8" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T235425Z:33934445-7f8e-469d-8eb0-afa2e2b44fcd" + "WESTCENTRALUS:20210330T004611Z:bc655927-d8f7-49e2-bcd7-bf3f70b9d1d8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:54:25 GMT" + "Tue, 30 Mar 2021 00:46:10 GMT" ], "Content-Length": [ "134" @@ -3060,20 +3066,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-29T23:48:25.0279844+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5ce55a4f-d509-4c2b-a050-811305a4b1c6\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:40:09.0320568-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"82e09f14-222f-4754-bb6a-a531b5026f3d\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/5ce55a4f-d509-4c2b-a050-811305a4b1c6?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy81Y2U1NWE0Zi1kNTA5LTRjMmItYTA1MC04MTEzMDVhNGIxYzY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/82e09f14-222f-4754-bb6a-a531b5026f3d?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy84MmUwOWYxNC0yMjJmLTQ3NTQtYmI2YS1hNTMxYjUwMjZmM2Q/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -3093,29 +3099,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "d80314eb-dca2-4096-a1f1-0a6ae2cfeb04" + "0577ecf9-f758-4df0-8419-7e861a0376eb" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11966" ], "x-ms-correlation-request-id": [ - "84c3b496-c02b-4778-84c9-d43671474d6f" + "837011dd-0237-4929-b76b-b2d1f37b58f0" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T235525Z:84c3b496-c02b-4778-84c9-d43671474d6f" + "WESTCENTRALUS:20210330T004711Z:837011dd-0237-4929-b76b-b2d1f37b58f0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:55:24 GMT" + "Tue, 30 Mar 2021 00:47:10 GMT" ], "Content-Length": [ "134" @@ -3127,20 +3133,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-29T23:48:25.0279844+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5ce55a4f-d509-4c2b-a050-811305a4b1c6\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:40:09.0320568-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"82e09f14-222f-4754-bb6a-a531b5026f3d\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/5ce55a4f-d509-4c2b-a050-811305a4b1c6?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy81Y2U1NWE0Zi1kNTA5LTRjMmItYTA1MC04MTEzMDVhNGIxYzY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/82e09f14-222f-4754-bb6a-a531b5026f3d?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy84MmUwOWYxNC0yMjJmLTQ3NTQtYmI2YS1hNTMxYjUwMjZmM2Q/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -3150,9 +3156,6 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "60" - ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4169" ], @@ -3160,32 +3163,32 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "0afd0246-714a-45f1-99a0-00610a6457ce" + "6bfb0fe7-3cd2-4dc4-8473-d5d390dac249" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11965" ], "x-ms-correlation-request-id": [ - "e3237c6e-9ac5-4496-be41-166791d27b09" + "5472d2ac-2193-446d-b747-2e941bb0e92f" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T235625Z:e3237c6e-9ac5-4496-be41-166791d27b09" + "WESTCENTRALUS:20210330T004811Z:5472d2ac-2193-446d-b747-2e941bb0e92f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:56:25 GMT" + "Tue, 30 Mar 2021 00:48:11 GMT" ], "Content-Length": [ - "134" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3194,20 +3197,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-29T23:48:25.0279844+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5ce55a4f-d509-4c2b-a050-811305a4b1c6\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:40:09.0320568-07:00\",\r\n \"endTime\": \"2021-03-29T17:47:39.9451295-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"82e09f14-222f-4754-bb6a-a531b5026f3d\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/5ce55a4f-d509-4c2b-a050-811305a4b1c6?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy81Y2U1NWE0Zi1kNTA5LTRjMmItYTA1MC04MTEzMDVhNGIxYzY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzMzNi9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTE4MjEvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -3217,42 +3220,39 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "60" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4167" + "Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9997" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "f79b90f7-811c-4b14-9a19-6b9715dd9349" + "0ffbcd9a-e0f3-467d-93ed-f8b38a2b56e7" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11964" ], "x-ms-correlation-request-id": [ - "1539a0b4-2522-4177-8397-c675adc050c5" + "8c264555-f4d2-4e22-a6e5-1625cd6885f9" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T235725Z:1539a0b4-2522-4177-8397-c675adc050c5" + "WESTCENTRALUS:20210330T004812Z:8c264555-f4d2-4e22-a6e5-1625cd6885f9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:57:25 GMT" + "Tue, 30 Mar 2021 00:48:11 GMT" ], "Content-Length": [ - "134" + "1149" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3261,20 +3261,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-29T23:48:25.0279844+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5ce55a4f-d509-4c2b-a050-811305a4b1c6\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821/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\": \"2021-03-29T17:40:09.0320568-07:00\",\r\n \"endOfLifeDate\": \"2021-04-08T00: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/galleryPsTestRg184/providers/Microsoft.Compute/images/psTestSourceImage5220\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/5ce55a4f-d509-4c2b-a050-811305a4b1c6?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy81Y2U1NWE0Zi1kNTA5LTRjMmItYTA1MC04MTEzMDVhNGIxYzY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzMzNi9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTE4MjEvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "5e12b366-a924-4c31-b80d-3ab295b65ce5" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -3284,42 +3290,39 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "60" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4165" + "Microsoft.Compute/GetGalleryImageVersion3Min;1998,Microsoft.Compute/GetGalleryImageVersion30Min;9996" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "d0f1b8c7-419f-4984-9c5a-28236dba323d" + "9a2117bc-358d-4997-9159-502e3abef6bf" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11963" ], "x-ms-correlation-request-id": [ - "a2e6d87b-d467-4c60-b91d-f1f87e6e55fd" + "1e6ba88a-ab1f-4f18-a38a-4ca431eb61ce" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T235825Z:a2e6d87b-d467-4c60-b91d-f1f87e6e55fd" + "WESTCENTRALUS:20210330T004812Z:1e6ba88a-ab1f-4f18-a38a-4ca431eb61ce" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:58:25 GMT" + "Tue, 30 Mar 2021 00:48:11 GMT" ], "Content-Length": [ - "134" + "1149" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3328,20 +3331,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-29T23:48:25.0279844+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5ce55a4f-d509-4c2b-a050-811305a4b1c6\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821/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\": \"2021-03-29T17:40:09.0320568-07:00\",\r\n \"endOfLifeDate\": \"2021-04-08T00: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/galleryPsTestRg184/providers/Microsoft.Compute/images/psTestSourceImage5220\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/5ce55a4f-d509-4c2b-a050-811305a4b1c6?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy81Y2U1NWE0Zi1kNTA5LTRjMmItYTA1MC04MTEzMDVhNGIxYzY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzMzNi9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTE4MjEvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -3351,42 +3354,39 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "60" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4163" + "Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9991" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "48fe48f7-e23f-477c-aac6-5f2bd27edbbb" + "4585b92f-6bf2-463d-a50d-416b8be4c204" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11957" ], "x-ms-correlation-request-id": [ - "0832f326-2bef-47dc-a47f-daccd7d094bf" + "201e8294-da7c-4d90-9546-5dbd70e9d0d0" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T235925Z:0832f326-2bef-47dc-a47f-daccd7d094bf" + "WESTCENTRALUS:20210330T005113Z:201e8294-da7c-4d90-9546-5dbd70e9d0d0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:59:25 GMT" + "Tue, 30 Mar 2021 00:51:13 GMT" ], "Content-Length": [ - "134" + "1149" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3395,20 +3395,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-29T23:48:25.0279844+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5ce55a4f-d509-4c2b-a050-811305a4b1c6\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821/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\": \"2021-03-29T17:40:09.0320568-07:00\",\r\n \"endOfLifeDate\": \"2021-07-07T00: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/galleryPsTestRg184/providers/Microsoft.Compute/images/psTestSourceImage5220\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/5ce55a4f-d509-4c2b-a050-811305a4b1c6?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy81Y2U1NWE0Zi1kNTA5LTRjMmItYTA1MC04MTEzMDVhNGIxYzY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzMzNi9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTE4MjEvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "2e6ff09a-db54-4ab6-b518-a62f8e4c6da9" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -3418,42 +3424,39 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "60" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4161" + "Microsoft.Compute/GetGalleryImageVersion3Min;1998,Microsoft.Compute/GetGalleryImageVersion30Min;9990" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "8838d11b-c283-486b-908f-f8f054e8d139" + "cfa5c826-2c69-445c-97a8-8bc4d9e98648" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11956" ], "x-ms-correlation-request-id": [ - "baa34559-3991-4f38-bafb-0d0d46e90622" + "9cee09e0-5011-482e-b90f-c92fb01d3a97" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T000025Z:baa34559-3991-4f38-bafb-0d0d46e90622" + "WESTCENTRALUS:20210330T005113Z:9cee09e0-5011-482e-b90f-c92fb01d3a97" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:00:25 GMT" + "Tue, 30 Mar 2021 00:51:13 GMT" ], "Content-Length": [ - "134" + "1149" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3462,20 +3465,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-29T23:48:25.0279844+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5ce55a4f-d509-4c2b-a050-811305a4b1c6\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821/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\": \"2021-03-29T17:40:09.0320568-07:00\",\r\n \"endOfLifeDate\": \"2021-07-07T00: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/galleryPsTestRg184/providers/Microsoft.Compute/images/psTestSourceImage5220\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/5ce55a4f-d509-4c2b-a050-811305a4b1c6?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy81Y2U1NWE0Zi1kNTA5LTRjMmItYTA1MC04MTEzMDVhNGIxYzY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821/versions/1.0.0?$expand=ReplicationStatus&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzMzNi9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTE4MjEvdmVyc2lvbnMvMS4wLjA/JGV4cGFuZD1SZXBsaWNhdGlvblN0YXR1cyZhcGktdmVyc2lvbj0yMDIwLTA5LTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "66283d14-f3ec-4e12-bd21-fc4433b0092d" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -3485,42 +3494,39 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "60" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4159" + "Microsoft.Compute/GetGalleryImageVersion3Min;1997,Microsoft.Compute/GetGalleryImageVersion30Min;9995" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "e44728c1-2f24-4fd8-96da-2ea3591e35a7" + "1a605b2d-e664-4757-aa94-ff26116cbdc8" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11962" ], "x-ms-correlation-request-id": [ - "43daabac-ba9a-45e2-ad1f-a1c75fe8bbbd" + "5fc7d112-b129-4601-b348-090b750775ce" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T000125Z:43daabac-ba9a-45e2-ad1f-a1c75fe8bbbd" + "WESTCENTRALUS:20210330T004812Z:5fc7d112-b129-4601-b348-090b750775ce" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:01:25 GMT" + "Tue, 30 Mar 2021 00:48:11 GMT" ], "Content-Length": [ - "134" + "1367" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3529,20 +3535,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-29T23:48:25.0279844+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5ce55a4f-d509-4c2b-a050-811305a4b1c6\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821/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\": \"2021-03-29T17:40:09.0320568-07:00\",\r\n \"endOfLifeDate\": \"2021-04-08T00: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/galleryPsTestRg184/providers/Microsoft.Compute/images/psTestSourceImage5220\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"replicationStatus\": {\r\n \"aggregatedState\": \"Completed\",\r\n \"summary\": [\r\n {\r\n \"region\": \"eastus2\",\r\n \"state\": \"Completed\",\r\n \"progress\": 100\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/5ce55a4f-d509-4c2b-a050-811305a4b1c6?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy81Y2U1NWE0Zi1kNTA5LTRjMmItYTA1MC04MTEzMDVhNGIxYzY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/771470a3-3857-40c0-86c0-36e74515495f?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83NzE0NzBhMy0zODU3LTQwYzAtODZjMC0zNmU3NDUxNTQ5NWY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -3556,38 +3562,38 @@ "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4157" + "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4166" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "152943ae-4efc-4823-adfd-23d147dfc8af" + "a97735af-a714-433e-b5f9-8d608f8c32b2" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11960" ], "x-ms-correlation-request-id": [ - "dfd42034-748a-43db-bdf5-40efbdbe89d1" + "1dd98996-2c6e-42ab-9379-479b5b722523" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T000225Z:dfd42034-748a-43db-bdf5-40efbdbe89d1" + "WESTCENTRALUS:20210330T004912Z:1dd98996-2c6e-42ab-9379-479b5b722523" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:02:25 GMT" + "Tue, 30 Mar 2021 00:49:12 GMT" ], "Content-Length": [ - "134" + "132" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3596,20 +3602,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-29T23:48:25.0279844+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5ce55a4f-d509-4c2b-a050-811305a4b1c6\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:48:12.49366-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"771470a3-3857-40c0-86c0-36e74515495f\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/5ce55a4f-d509-4c2b-a050-811305a4b1c6?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy81Y2U1NWE0Zi1kNTA5LTRjMmItYTA1MC04MTEzMDVhNGIxYzY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/771470a3-3857-40c0-86c0-36e74515495f?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83NzE0NzBhMy0zODU3LTQwYzAtODZjMC0zNmU3NDUxNTQ5NWY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -3623,38 +3629,38 @@ "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4155" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4165" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "fa0c86bc-17cb-4eb3-861f-63f80d7cfc71" + "9536e0d6-29d4-40fc-a5b7-772008c1eadb" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11959" ], "x-ms-correlation-request-id": [ - "2173c8ab-7ac4-4c4e-ad1c-f82b05d3f400" + "aab1b4fd-34e3-446f-b091-fe04befcfe28" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T000325Z:2173c8ab-7ac4-4c4e-ad1c-f82b05d3f400" + "WESTCENTRALUS:20210330T005013Z:aab1b4fd-34e3-446f-b091-fe04befcfe28" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:03:25 GMT" + "Tue, 30 Mar 2021 00:50:12 GMT" ], "Content-Length": [ - "134" + "132" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3663,20 +3669,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-29T23:48:25.0279844+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5ce55a4f-d509-4c2b-a050-811305a4b1c6\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:48:12.49366-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"771470a3-3857-40c0-86c0-36e74515495f\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/5ce55a4f-d509-4c2b-a050-811305a4b1c6?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy81Y2U1NWE0Zi1kNTA5LTRjMmItYTA1MC04MTEzMDVhNGIxYzY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/771470a3-3857-40c0-86c0-36e74515495f?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83NzE0NzBhMy0zODU3LTQwYzAtODZjMC0zNmU3NDUxNTQ5NWY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -3686,42 +3692,39 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "60" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4153" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4163" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "a1a483db-8a2b-4517-b07b-5d76a4ab47d2" + "b466853e-4600-4271-b547-1d38d5598938" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11958" ], "x-ms-correlation-request-id": [ - "2eba5283-9751-4570-80cf-1b20a4dc4d45" + "6e0d4d9f-055e-4f27-89fe-252afbcd7bb6" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T000425Z:2eba5283-9751-4570-80cf-1b20a4dc4d45" + "WESTCENTRALUS:20210330T005113Z:6e0d4d9f-055e-4f27-89fe-252afbcd7bb6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:04:25 GMT" + "Tue, 30 Mar 2021 00:51:13 GMT" ], "Content-Length": [ - "134" + "181" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3730,20 +3733,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-29T23:48:25.0279844+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5ce55a4f-d509-4c2b-a050-811305a4b1c6\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:48:12.49366-07:00\",\r\n \"endTime\": \"2021-03-29T17:50:42.673053-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"771470a3-3857-40c0-86c0-36e74515495f\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/5ce55a4f-d509-4c2b-a050-811305a4b1c6?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy81Y2U1NWE0Zi1kNTA5LTRjMmItYTA1MC04MTEzMDVhNGIxYzY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821/versions?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzMzNi9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTE4MjEvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b4bb00d2-56ad-4a5c-96ff-580bc5d7b8d8" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -3753,660 +3762,69 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4163" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-original-request-ids": [ + "91ddd66a-2d90-497f-8f9d-b9095a91e201", + "90faba52-f65f-442b-9f1f-c29e2166cd36", + "ea31edc6-5a54-46a3-9184-f1394cb12636", + "9c1e8d25-3af7-425b-9d89-aaabfe74b19a", + "2f199568-d017-46a4-a4a3-10defe78a6e5", + "a468e87d-5095-4bb9-973c-a9c693c576b4", + "7ed2a8cd-2f1f-4ac9-838f-29ec238e7c12", + "5e579bb5-08a5-4cea-8684-4d5e8eb5f611", + "876f6c2b-df83-44a7-ae08-d360011b928a", + "73343bee-8995-4dec-83d0-bf3c34f96334", + "83a2e3eb-5d0e-4939-a3ad-01fa1cdf8c23", + "b1d3c0c0-e28b-4689-80d6-ff7468c8a30b", + "74dbd1df-bc61-4f2f-97b5-e2c8c2f50228", + "d0852742-6d3e-4fa3-bac0-7cddceb28232", + "2d4ac9ee-8e2f-4956-becf-816c5d6ba7fc", + "0df3b4ce-64ee-4c4b-8464-6352249ff510", + "72e7489b-fdc2-47e7-90d2-cdfef16763fb", + "20150a9a-394a-40d9-8f52-74afb2e52ef4", + "e55767ed-8f78-4f03-92f5-605f6f58fc17", + "fa662831-90cc-4428-83b0-7e7af9a52b33", + "3b988eab-a0e5-4b39-8c84-54d5bd4d0c00", + "4f4594c8-db06-4fb1-ae77-3876c9ab191a", + "d5ecd06c-9025-4b9a-9fa6-4603bbabd4d4", + "acee1951-7e78-4dfe-8173-1d10572e3f9b", + "8499dba7-f2f3-4d8b-9666-0d4d62b6c41a", + "54f8461e-6613-441f-93e1-b50611273e3a", + "ab038cb3-e7a1-46a5-b95e-d090037d0abc", + "9d7a956d-24fa-48b6-b871-2aee48855374", + "52f36638-2b7c-425d-a68a-1cc20c7db7ad", + "56335b49-9726-4236-968b-32c3d4729025", + "765e454a-7446-495d-8d45-a319c9cf97af", + "b78ac503-977a-452a-a613-52cf48b37021", + "a345b7a9-a014-418e-954c-2232f606b8bd", + "c7119e19-73e0-4f77-a86f-6b6deed839d8", + "6cbe060b-c961-4eda-801e-51ec387828bd", + "a74bbbf9-1bde-4dd9-8afc-4aa4b2436ef4", + "0c494131-525b-4911-b4da-d3253584f139", + "7568325e-0117-4146-a1e6-c2e600f042c8", + "03334dfb-e9f9-4d52-9e8e-9f2612fc2e23", + "8a8d8f06-873d-4969-b440-63b83121f46f", + "c5833d90-01f7-4912-85e9-8354b0eb00a6", + "af3df702-b746-4825-b26b-fdb292498862", + "da42899d-1fcc-471b-b1db-91f865cb0ad2", + "ac5c55ab-421d-46bf-adae-ecac9bf15114", + "6b42783c-b865-4fa3-994f-80c9a2c53000", + "36bb7770-26c0-4a39-8177-71f19ad62021", + "4df41766-8586-448a-8d41-bc8ff4b60614", + "d5464538-37cb-4f18-8bf1-13866dd50dac", + "c9709a98-3e74-4313-b4d5-3939f4e09494", + "d4751b47-07f9-4fb0-a81e-fb7d8a034a4a" ], - "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" ], "x-ms-request-id": [ - "063559ad-348e-479b-adee-85711c4aef6e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" - ], - "x-ms-correlation-request-id": [ - "241ddc51-1f1d-43a9-9347-25653277933d" - ], - "x-ms-routing-request-id": [ - "EASTUS2:20201230T000526Z:241ddc51-1f1d-43a9-9347-25653277933d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 30 Dec 2020 00:05:25 GMT" - ], - "Content-Length": [ - "182" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-29T23:48:25.0279844+00:00\",\r\n \"endTime\": \"2020-12-30T00:04:55.70622+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5ce55a4f-d509-4c2b-a050-811305a4b1c6\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/galleries/galleryPsTestGallery4558/images/galleryPsTestGalleryImage8450/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ1NTgvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4NDUwL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9997" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" - ], - "x-ms-request-id": [ - "e0a32e0c-1319-4323-bc5d-0123f12607f6" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" - ], - "x-ms-correlation-request-id": [ - "b6bf33d6-a61f-4f58-ab5f-d3eff11b7cb8" - ], - "x-ms-routing-request-id": [ - "EASTUS2:20201230T000526Z:b6bf33d6-a61f-4f58-ab5f-d3eff11b7cb8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 30 Dec 2020 00:05:25 GMT" - ], - "Content-Length": [ - "1151" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/galleries/galleryPsTestGallery4558/images/galleryPsTestGalleryImage8450/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\": \"2020-12-29T23:48:25.0279844+00:00\",\r\n \"endOfLifeDate\": \"2021-01-08T00:00:00+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/images/psTestSourceImage6907\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/galleries/galleryPsTestGallery4558/images/galleryPsTestGalleryImage8450/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ1NTgvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4NDUwL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bed35fd6-6d11-4dbc-8a09-c4519b314bd9" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImageVersion3Min;1998,Microsoft.Compute/GetGalleryImageVersion30Min;9996" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" - ], - "x-ms-request-id": [ - "6bb791cb-d91b-482a-b9a7-215127cd3cd0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" - ], - "x-ms-correlation-request-id": [ - "44ac6269-1fb1-449a-ad11-8ef2cc5460d8" - ], - "x-ms-routing-request-id": [ - "EASTUS2:20201230T000526Z:44ac6269-1fb1-449a-ad11-8ef2cc5460d8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 30 Dec 2020 00:05:25 GMT" - ], - "Content-Length": [ - "1151" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/galleries/galleryPsTestGallery4558/images/galleryPsTestGalleryImage8450/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\": \"2020-12-29T23:48:25.0279844+00:00\",\r\n \"endOfLifeDate\": \"2021-01-08T00:00:00+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/images/psTestSourceImage6907\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/galleries/galleryPsTestGallery4558/images/galleryPsTestGalleryImage8450/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ1NTgvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4NDUwL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImageVersion3Min;1997,Microsoft.Compute/GetGalleryImageVersion30Min;9991" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" - ], - "x-ms-request-id": [ - "b1317f67-7aa7-481b-8e1c-fb83f76c5e09" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" - ], - "x-ms-correlation-request-id": [ - "6cddd302-78e0-4f93-b9d4-6e4589b56454" - ], - "x-ms-routing-request-id": [ - "EASTUS2:20201230T000826Z:6cddd302-78e0-4f93-b9d4-6e4589b56454" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 30 Dec 2020 00:08:26 GMT" - ], - "Content-Length": [ - "1151" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/galleries/galleryPsTestGallery4558/images/galleryPsTestGalleryImage8450/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\": \"2020-12-29T23:48:25.0279844+00:00\",\r\n \"endOfLifeDate\": \"2021-04-09T00:00:00+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/images/psTestSourceImage6907\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/galleries/galleryPsTestGallery4558/images/galleryPsTestGalleryImage8450/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ1NTgvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4NDUwL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "652fcb82-4d61-4bb8-957c-4a7e4f4ad4bb" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImageVersion3Min;1996,Microsoft.Compute/GetGalleryImageVersion30Min;9990" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" - ], - "x-ms-request-id": [ - "3fea76c5-c69c-418e-b7d4-1aac8a4b69d7" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" - ], - "x-ms-correlation-request-id": [ - "4e17fc41-3e49-4d5f-8f92-426354e0762d" - ], - "x-ms-routing-request-id": [ - "EASTUS2:20201230T000826Z:4e17fc41-3e49-4d5f-8f92-426354e0762d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 30 Dec 2020 00:08:26 GMT" - ], - "Content-Length": [ - "1151" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/galleries/galleryPsTestGallery4558/images/galleryPsTestGalleryImage8450/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\": \"2020-12-29T23:48:25.0279844+00:00\",\r\n \"endOfLifeDate\": \"2021-04-09T00:00:00+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/images/psTestSourceImage6907\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/galleries/galleryPsTestGallery4558/images/galleryPsTestGalleryImage8450/versions/1.0.0?$expand=ReplicationStatus&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ1NTgvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4NDUwL3ZlcnNpb25zLzEuMC4wPyRleHBhbmQ9UmVwbGljYXRpb25TdGF0dXMmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ea28505d-0601-48c5-8c70-9a4937361e09" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImageVersion3Min;1997,Microsoft.Compute/GetGalleryImageVersion30Min;9995" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" - ], - "x-ms-request-id": [ - "b583de3c-fbf8-4f49-9ce4-7f7715c54909" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" - ], - "x-ms-correlation-request-id": [ - "d7d72ec4-7b3d-4460-94fd-39289a6ec7eb" - ], - "x-ms-routing-request-id": [ - "EASTUS2:20201230T000526Z:d7d72ec4-7b3d-4460-94fd-39289a6ec7eb" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 30 Dec 2020 00:05:25 GMT" - ], - "Content-Length": [ - "1369" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/galleries/galleryPsTestGallery4558/images/galleryPsTestGalleryImage8450/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\": \"2020-12-29T23:48:25.0279844+00:00\",\r\n \"endOfLifeDate\": \"2021-01-08T00:00:00+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/images/psTestSourceImage6907\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"replicationStatus\": {\r\n \"aggregatedState\": \"Completed\",\r\n \"summary\": [\r\n {\r\n \"region\": \"eastus2\",\r\n \"state\": \"Completed\",\r\n \"progress\": 100\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/21d6ba07-b268-4d59-a7dd-0ad6522a9235?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yMWQ2YmEwNy1iMjY4LTRkNTktYTdkZC0wYWQ2NTIyYTkyMzU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4160" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" - ], - "x-ms-request-id": [ - "f1091653-a552-428b-a360-c7d21610168a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" - ], - "x-ms-correlation-request-id": [ - "444db810-61e2-4a0e-82ee-452462438ab0" - ], - "x-ms-routing-request-id": [ - "EASTUS2:20201230T000626Z:444db810-61e2-4a0e-82ee-452462438ab0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 30 Dec 2020 00:06:26 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-30T00:05:26.4095475+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"21d6ba07-b268-4d59-a7dd-0ad6522a9235\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/21d6ba07-b268-4d59-a7dd-0ad6522a9235?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yMWQ2YmEwNy1iMjY4LTRkNTktYTdkZC0wYWQ2NTIyYTkyMzU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "60" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4159" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" - ], - "x-ms-request-id": [ - "eaec4ed3-e973-443e-b525-8c7e132961a1" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" - ], - "x-ms-correlation-request-id": [ - "acde2369-c3e9-4da6-a98b-a77c7cede228" - ], - "x-ms-routing-request-id": [ - "EASTUS2:20201230T000726Z:acde2369-c3e9-4da6-a98b-a77c7cede228" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 30 Dec 2020 00:07:25 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-30T00:05:26.4095475+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"21d6ba07-b268-4d59-a7dd-0ad6522a9235\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/21d6ba07-b268-4d59-a7dd-0ad6522a9235?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8yMWQ2YmEwNy1iMjY4LTRkNTktYTdkZC0wYWQ2NTIyYTkyMzU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4157" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" - ], - "x-ms-request-id": [ - "2ee22a02-540c-4617-a772-8f3ae853b2ae" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" - ], - "x-ms-correlation-request-id": [ - "e2611874-dbd5-495f-a37b-cac4be3184d4" - ], - "x-ms-routing-request-id": [ - "EASTUS2:20201230T000826Z:e2611874-dbd5-495f-a37b-cac4be3184d4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 30 Dec 2020 00:08:26 GMT" - ], - "Content-Length": [ - "184" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-30T00:05:26.4095475+00:00\",\r\n \"endTime\": \"2020-12-30T00:07:56.5511276+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"21d6ba07-b268-4d59-a7dd-0ad6522a9235\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/galleries/galleryPsTestGallery4558/images/galleryPsTestGalleryImage8450/versions?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ1NTgvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4NDUwL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "53a0c67a-0306-43cc-9b3d-266f294b40dd" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-original-request-ids": [ - "7dd9c212-9464-4bc3-b473-12212cecd456", - "af24d48c-c23d-4782-a34c-e15c157ffbd9", - "5604249a-df4c-4e41-bd3c-288380cd0c03", - "19825a25-0f57-4d0d-ac88-33ee9cc22d36", - "996eab24-9a4c-49fe-a097-5132e6814d42", - "a9bf44cb-0123-433c-9ab8-2de8e3e10813", - "f5b5dedd-4394-4fc6-ad45-0df55de41b52", - "0a15d5a4-a178-4b80-966f-2551d6ced7e8", - "dffd0f24-aa85-48e7-a247-8ac04b3005fb", - "b11b32c4-5673-4713-8b48-15a0b094127b", - "44c4865c-86a1-4d42-b1ab-2080c5a865d5", - "04f6f92c-4e79-4992-b483-ac82460fec38", - "139e344e-c7bc-4c2f-a726-cde0caceb1a0", - "9a8e4c15-77bb-4d49-afaa-c55a4ae07a65", - "28abf03b-3fde-408f-8fae-0c31b4f834c4", - "d2e9c77d-de5b-42ce-bc3c-48067ea894b2", - "5914b20e-ea50-474c-9311-2dfb121796d1", - "fa39ca41-2fa8-47ac-bf32-c803154db4a9", - "e1264ea8-17b9-4e13-94f1-ec749aeee008", - "3edc188c-40ab-4099-9d42-3b08283c37a7", - "ab4b26c6-691e-4fd3-8236-1a3dd21baeb6", - "1146dfa4-dfbb-448a-b494-710d48943121", - "9950c54b-defb-4703-a1ea-0e0e4254f390", - "4f7c76e9-68db-4d20-9623-6d766a2a3258", - "d4bf08fc-a6c9-4f11-8935-f60f7b5de7d0", - "c0649881-26c8-4ba5-ab64-a141f5357377", - "780842da-573e-439c-a396-956d653422a4", - "96e0e38b-0707-433a-b743-42f7ef5ba4d9", - "2c671cd3-83da-458b-bf78-101805305344", - "0556f560-1466-4c41-8c12-2cfb924ffb2d", - "267646c3-a9a2-4e38-95e0-ea848d111c24", - "223e119a-38e7-44e4-a151-8343e64f9b1e", - "59cce149-3a78-4807-88cb-448bc2cc8622", - "33174218-ff67-4056-b7af-80f3c706e6a3", - "d7e76c57-4786-47f3-9194-9e67e1cd17eb" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" - ], - "x-ms-request-id": [ - "d1c1ebb7-c9f3-4fe1-9f73-9a8b2f9fee6f" + "f6944d91-d99c-4851-af73-bb48e504e563" ], "x-ms-correlation-request-id": [ - "d1c1ebb7-c9f3-4fe1-9f73-9a8b2f9fee6f" + "f6944d91-d99c-4851-af73-bb48e504e563" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T000827Z:d1c1ebb7-c9f3-4fe1-9f73-9a8b2f9fee6f" + "WESTCENTRALUS:20210330T005115Z:f6944d91-d99c-4851-af73-bb48e504e563" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4415,7 +3833,7 @@ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:08:27 GMT" + "Tue, 30 Mar 2021 00:51:14 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4424,29 +3842,29 @@ "-1" ], "Content-Length": [ - "900" + "898" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/galleries/galleryPsTestGallery4558/images/galleryPsTestGalleryImage8450/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\": \"2020-12-29T23:48:25.0279844+00:00\",\r\n \"endOfLifeDate\": \"2021-04-09T00:00:00+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/images/psTestSourceImage6907\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821/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\": \"2021-03-29T17:40:09.0320568-07:00\",\r\n \"endOfLifeDate\": \"2021-07-07T00: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/galleryPsTestRg184/providers/Microsoft.Compute/images/psTestSourceImage5220\"\r\n },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 127,\r\n \"hostCaching\": \"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/galleries/galleryPsTestGallery4558/images/galleryPsTestGalleryImage8450/versions?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ1NTgvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4NDUwL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821/versions?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzMzNi9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTE4MjEvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6fcf9f7d-a1d9-4f57-a72b-855fdc810861" + "4b880ad6-1330-48e7-a6c9-b620b616337d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -4457,53 +3875,68 @@ "no-cache" ], "x-ms-original-request-ids": [ - "2840b33a-a30d-465d-8af0-85fe7bb6da97", - "20b456d0-5d85-4ec0-b39a-da2d10d57919", - "43811165-5c74-49c5-9a0d-357435f89bdc", - "3f6132df-564c-4469-8079-42804d7482b2", - "d90202bd-27c5-442c-9411-9e87affbeb56", - "c8a28768-3d91-4613-ad17-a2ee8f16ed4b", - "89157d40-346c-4b1a-af4d-1b3535821b1e", - "075699b8-9181-4777-848b-cae5ab597e6e", - "290cb0f4-7012-4010-9f5d-dc9148f43538", - "179c91f0-3156-4d5a-a93c-f53629a91135", - "4e03f72b-7867-4f12-b042-1571b0c8543b", - "6d0b9f19-480d-4f6a-8f78-2436b60d98c9", - "370e3eb1-2825-4058-8935-0c9b2b5ef951", - "c4aa99fc-69b1-48c7-a637-7c4b149e3ad9", - "6103c668-554a-4334-9131-2ffabb326d56", - "1febc4ff-52b1-4079-aa34-f29969d6af39", - "52ebe286-0e03-4f5f-b9c5-d7d93392a10b", - "61a8d4c0-7ea8-4c8f-9377-63050a8809ad", - "67d6b104-9b70-4ebe-b04c-486c67cee0e8", - "331683cf-acf1-4521-8523-a2f72510eb86", - "a020479c-c64f-4b82-b0e4-4cd77233a019", - "9c48cc16-d46f-4a12-947b-97f058229bb0", - "406be3bb-ac9c-422f-ad3a-923e594c3d48", - "dd737028-2010-4690-bae7-e9f9555670c1", - "180cfef4-f094-477a-b1bb-5b5e8f405290", - "93c5d512-6df3-412e-8b98-cd4c4384ecf3", - "e1810760-0200-45cf-b974-9f1b7b546d33", - "2faaaa07-d5c7-4696-a1fa-b7b5685b0198", - "fa018643-f308-4bed-962f-55db3600b265", - "8e7a817f-990f-43c4-9fae-ff94810c62f2", - "7ca4fa7e-5962-47d3-89b4-4143d5051ef3", - "309d2f5a-c555-46e7-8954-7d01b3382b42", - "e4164c7e-a88f-40c7-91b5-dada423a3445", - "f705ef3e-2856-4778-956a-07a3b77494f2", - "50e5f578-7540-42a1-9963-c634fc185eb5" + "06c0c42d-06ef-4c1c-bed1-7ff07016ea0f", + "f264b21b-abca-4ff7-8bbf-d8e7bb154b29", + "ff19fc1a-05d0-496f-a224-17112d2d006d", + "63a3c3c4-d008-45bc-a099-2d6812bf1b4a", + "5f7aebae-c913-4664-ba44-fc187bda525c", + "a9856cf6-b4d1-4b68-afc3-6f144f682937", + "716c6c17-23d7-4264-a6ce-3e7c91c7b123", + "1ee1f46a-e4f1-456a-baf6-e7ab686d5588", + "7e8bfd8d-d0ec-4dbb-a02a-e5ccc83002ed", + "9e29b633-f6f9-4e8c-a8f4-02eab56aadb2", + "3b8bd67e-e471-4866-982b-c98bc7ab2b08", + "85fe9947-4e20-4a89-ad71-8e7dc145fa7a", + "07268a4c-c2e5-4288-a4cf-aff74ae51bf3", + "066b830a-60a1-4b96-9e41-53893e4e9d2c", + "3cb249a6-30af-49b4-9cb1-c569f3e22931", + "8bdd943f-aa03-47e9-b904-d2a5467a1ae3", + "a3971dc9-01ae-45f1-9f97-5152b1de3369", + "0667eb92-60fa-42de-b546-f26e9f51f7cf", + "8be7dfb3-713b-47f0-9ac1-1a8aa5bfe95d", + "659e862d-94dc-45e2-a48c-a0910520ddd3", + "d6162d61-898c-4467-a575-1015248d00cd", + "5f30ee0a-a8f3-4910-9bd2-c011d400bcec", + "d2b05000-441d-446d-bbe6-ce5aeadd4d50", + "47999664-033f-4556-8b87-5fc22f1858f6", + "9f248a30-ec60-45f6-8669-f0d9920dde20", + "643665fb-67ab-4e4a-9ff2-66f58efffce3", + "d316c096-d4eb-4465-aa37-0e78f116972d", + "74fac789-01fa-41d3-ae4c-4319f3a97eeb", + "6730044e-2c58-41e8-95cc-bdaf13c8a4d5", + "33815a9d-6a1b-4b6c-a74f-761027a7a1e8", + "17e7c4fc-d10f-49d2-8cb0-b6646add7884", + "bf499909-6acb-45dc-867b-29db914689f0", + "f4dd49ac-1b9d-4bbc-a9fd-db7a4a748129", + "c23778cb-81bf-47ee-99df-57a9758d62d7", + "b6cd24a2-c717-4583-b0ed-0824ac845e88", + "440c4611-d899-4cf7-907e-0ff150e03c7a", + "6460d98c-0d82-4951-94ad-e986d5bf5449", + "4845e974-d3bd-42bb-b3ef-76eaff408701", + "637632f6-0f70-415e-a2fd-03d6adfcda63", + "490c760f-46d9-4a6d-9b32-116e9120ea83", + "bc06ead3-6aea-41a2-b6c3-ce2b0b833b91", + "6f465e98-a8ac-4aa7-870a-4d98097b3203", + "07141745-13f2-4686-af61-a04cd7fa76b9", + "4fa499ef-3815-45f5-962f-9dbc23929744", + "fb788512-4da3-4199-b44e-ce15683ce5c8", + "d950c3c5-ae2f-45ac-901c-7bdb0099fb8d", + "8a1f75bd-a82d-44cd-be63-d80b3600495b", + "9095300e-8dad-49e9-8b57-238e19c622a5", + "76740775-4085-4ba0-a9c6-2bd063d7ebef", + "2532e76d-c212-4c25-ac95-338d809cbf14" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11951" ], "x-ms-request-id": [ - "13b37548-b61a-43ac-a265-e03c17755b98" + "dc07964d-78c8-45b7-a1d4-67ca26ac8203" ], "x-ms-correlation-request-id": [ - "13b37548-b61a-43ac-a265-e03c17755b98" + "dc07964d-78c8-45b7-a1d4-67ca26ac8203" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T001029Z:13b37548-b61a-43ac-a265-e03c17755b98" + "WESTCENTRALUS:20210330T005316Z:dc07964d-78c8-45b7-a1d4-67ca26ac8203" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4512,7 +3945,7 @@ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:10:28 GMT" + "Tue, 30 Mar 2021 00:53:15 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4528,22 +3961,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/galleries/galleryPsTestGallery4558/images/galleryPsTestGalleryImage8450/versions/1.0.0?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ1NTgvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4NDUwL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzMzNi9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTE4MjEvdmVyc2lvbnMvMS4wLjA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "11f32edf-53c6-4809-83c4-052d1502130a" + "48172619-e2c5-4a41-b373-2dd2c4e2d7ef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -4554,13 +3987,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/e84fc24e-fa9c-4a7e-a5f2-8f61b0603800?monitor=true&api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/03f88459-aa29-4790-b1d0-44d22d67b744?monitor=true&api-version=2020-09-30" ], "Retry-After": [ "60" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/e84fc24e-fa9c-4a7e-a5f2-8f61b0603800?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/03f88459-aa29-4790-b1d0-44d22d67b744?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/DeleteGalleryImageVersion3Min;149,Microsoft.Compute/DeleteGalleryImageVersion30Min;999" @@ -4569,10 +4002,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "e84fc24e-fa9c-4a7e-a5f2-8f61b0603800" + "03f88459-aa29-4790-b1d0-44d22d67b744" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4582,16 +4015,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "0ea7969a-e673-4f90-af9d-91d7a3d10c2b" + "f0b6a164-0de2-4398-b15a-2e7b69f291a3" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T000827Z:0ea7969a-e673-4f90-af9d-91d7a3d10c2b" + "WESTCENTRALUS:20210330T005115Z:f0b6a164-0de2-4398-b15a-2e7b69f291a3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:08:27 GMT" + "Tue, 30 Mar 2021 00:51:15 GMT" ], "Expires": [ "-1" @@ -4604,16 +4037,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/e84fc24e-fa9c-4a7e-a5f2-8f61b0603800?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lODRmYzI0ZS1mYTljLTRhN2UtYTVmMi04ZjYxYjA2MDM4MDA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/03f88459-aa29-4790-b1d0-44d22d67b744?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wM2Y4ODQ1OS1hYTI5LTQ3OTAtYjFkMC00NGQyMmQ2N2I3NDQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -4627,35 +4060,35 @@ "60" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4155" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4161" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "7d4accea-ea35-4b25-9f62-00125a4af138" + "1d4a4ecc-21ed-4572-8d8f-e5f252716045" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11954" ], "x-ms-correlation-request-id": [ - "97901cb6-a397-4cc6-86a9-d76bd6d51c0b" + "db2cf31d-6ed8-41dd-9aa7-1098a5aaf1f9" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T000927Z:97901cb6-a397-4cc6-86a9-d76bd6d51c0b" + "WESTCENTRALUS:20210330T005215Z:db2cf31d-6ed8-41dd-9aa7-1098a5aaf1f9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:09:27 GMT" + "Tue, 30 Mar 2021 00:52:14 GMT" ], "Content-Length": [ "134" @@ -4667,20 +4100,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-30T00:08:27.8950824+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e84fc24e-fa9c-4a7e-a5f2-8f61b0603800\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:51:15.2527556-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"03f88459-aa29-4790-b1d0-44d22d67b744\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/e84fc24e-fa9c-4a7e-a5f2-8f61b0603800?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lODRmYzI0ZS1mYTljLTRhN2UtYTVmMi04ZjYxYjA2MDM4MDA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/03f88459-aa29-4790-b1d0-44d22d67b744?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wM2Y4ODQ1OS1hYTI5LTQ3OTAtYjFkMC00NGQyMmQ2N2I3NDQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -4691,35 +4124,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4153" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4159" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "a36e2b2a-50fd-495c-a460-a5865d6150ff" + "2a44645f-fc75-4119-9b08-4e6304c97ac0" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11953" ], "x-ms-correlation-request-id": [ - "a49354aa-a2b5-4991-a792-f7cc3b9da4aa" + "1c114005-42db-4a8d-932f-6bd27ec7fb0e" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T001028Z:a49354aa-a2b5-4991-a792-f7cc3b9da4aa" + "WESTCENTRALUS:20210330T005315Z:1c114005-42db-4a8d-932f-6bd27ec7fb0e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:10:27 GMT" + "Tue, 30 Mar 2021 00:53:15 GMT" ], "Content-Length": [ "184" @@ -4731,20 +4164,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-30T00:08:27.8950824+00:00\",\r\n \"endTime\": \"2020-12-30T00:09:58.1144169+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e84fc24e-fa9c-4a7e-a5f2-8f61b0603800\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:51:15.2527556-07:00\",\r\n \"endTime\": \"2021-03-29T17:52:45.4758353-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"03f88459-aa29-4790-b1d0-44d22d67b744\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/e84fc24e-fa9c-4a7e-a5f2-8f61b0603800?monitor=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lODRmYzI0ZS1mYTljLTRhN2UtYTVmMi04ZjYxYjA2MDM4MDA/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/03f88459-aa29-4790-b1d0-44d22d67b744?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wM2Y4ODQ1OS1hYTI5LTQ3OTAtYjFkMC00NGQyMmQ2N2I3NDQ/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -4755,35 +4188,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4152" + "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4158" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "8a7f6ed7-fecd-422f-8268-c73c10e70a24" + "ceec3f40-53c6-44ea-bc49-255a5205affa" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11952" ], "x-ms-correlation-request-id": [ - "84ecf812-a8f8-4f39-9629-c43b25dda176" + "b08c9310-5080-4643-afc1-b39d8a1e96b5" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T001028Z:84ecf812-a8f8-4f39-9629-c43b25dda176" + "WESTCENTRALUS:20210330T005315Z:b08c9310-5080-4643-afc1-b39d8a1e96b5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:10:27 GMT" + "Tue, 30 Mar 2021 00:53:15 GMT" ], "Expires": [ "-1" @@ -4796,22 +4229,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/images/psTestSourceImage6907?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTY5MDc/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/images/psTestSourceImage5220?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaW1hZ2VzL3BzVGVzdFNvdXJjZUltYWdlNTIyMD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c51d337f-e4a7-4787-adaf-22e72ce72b89" + "a5a56ca6-6f2b-48a0-863f-c5310a8b5cbc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -4822,10 +4255,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/e386c191-40ee-4e26-9478-b50658ffba1d?monitor=true&api-version=2020-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/80d3eb80-d334-4059-b0ef-5047e6873d92?monitor=true&api-version=2020-12-01" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/e386c191-40ee-4e26-9478-b50658ffba1d?api-version=2020-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/80d3eb80-d334-4059-b0ef-5047e6873d92?api-version=2020-12-01" ], "Azure-AsyncNotification": [ "Enabled" @@ -4837,7 +4270,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e386c191-40ee-4e26-9478-b50658ffba1d" + "80d3eb80-d334-4059-b0ef-5047e6873d92" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4847,16 +4280,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "5950e199-a6e7-4f09-9cc1-76f81aa075b7" + "0b0976c8-d141-49b4-9dc5-4fe32e21b0f0" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T001529Z:5950e199-a6e7-4f09-9cc1-76f81aa075b7" + "WESTCENTRALUS:20210330T005816Z:0b0976c8-d141-49b4-9dc5-4fe32e21b0f0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:15:29 GMT" + "Tue, 30 Mar 2021 00:58:16 GMT" ], "Expires": [ "-1" @@ -4869,22 +4302,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/images/psTestSourceImage6907?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2ltYWdlcy9wc1Rlc3RTb3VyY2VJbWFnZTY5MDc/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/images/psTestSourceImage5220?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaW1hZ2VzL3BzVGVzdFNvdXJjZUltYWdlNTIyMD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f22342e7-8f16-4c24-b5fa-16e0264da132" + "771bbe26-10bd-4c5d-ad49-6e87f108d764" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -4898,13 +4331,13 @@ "14994" ], "x-ms-request-id": [ - "c3022d88-b7c6-45e8-a317-d22fc1e60dd9" + "b0975df0-4833-4a68-9ce9-1f6326a746e4" ], "x-ms-correlation-request-id": [ - "c3022d88-b7c6-45e8-a317-d22fc1e60dd9" + "b0975df0-4833-4a68-9ce9-1f6326a746e4" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T001810Z:c3022d88-b7c6-45e8-a317-d22fc1e60dd9" + "WESTCENTRALUS:20210330T010028Z:b0975df0-4833-4a68-9ce9-1f6326a746e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4913,7 +4346,7 @@ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:18:09 GMT" + "Tue, 30 Mar 2021 01:00:28 GMT" ], "Expires": [ "-1" @@ -4923,16 +4356,16 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/e386c191-40ee-4e26-9478-b50658ffba1d?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2UzODZjMTkxLTQwZWUtNGUyNi05NDc4LWI1MDY1OGZmYmExZD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/80d3eb80-d334-4059-b0ef-5047e6873d92?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzgwZDNlYjgwLWQzMzQtNDA1OS1iMGVmLTUwNDdlNjg3M2Q5Mj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -4943,13 +4376,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29986" + "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29972" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "797a274a-5cbb-44ee-8d93-f987b44aac6e" + "809320a9-21a0-4647-b37a-e77ecbc39d30" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4959,16 +4392,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "c4d80123-7de5-4376-8e68-6e2e065c64f8" + "6a49486b-b7c3-41af-81f9-14e040201754" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T001559Z:c4d80123-7de5-4376-8e68-6e2e065c64f8" + "WESTCENTRALUS:20210330T005846Z:6a49486b-b7c3-41af-81f9-14e040201754" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:15:59 GMT" + "Tue, 30 Mar 2021 00:58:45 GMT" ], "Content-Length": [ "184" @@ -4980,20 +4413,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-30T00:15:29.5080304+00:00\",\r\n \"endTime\": \"2020-12-30T00:15:34.6330717+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e386c191-40ee-4e26-9478-b50658ffba1d\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:58:16.5000741-07:00\",\r\n \"endTime\": \"2021-03-29T17:58:21.5626011-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"80d3eb80-d334-4059-b0ef-5047e6873d92\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/e386c191-40ee-4e26-9478-b50658ffba1d?monitor=true&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2UzODZjMTkxLTQwZWUtNGUyNi05NDc4LWI1MDY1OGZmYmExZD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/80d3eb80-d334-4059-b0ef-5047e6873d92?monitor=true&api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzgwZDNlYjgwLWQzMzQtNDA1OS1iMGVmLTUwNDdlNjg3M2Q5Mj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -5004,13 +4437,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29985" + "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29971" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "86e534f0-547b-4c25-bd73-1206ecdd8618" + "959d08de-73b6-49d6-8cba-6bf6cee686c3" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -5020,16 +4453,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "01afbb3b-0716-46b2-9d04-0ed66e0de8ec" + "91baa7ef-d6cf-42a0-92ba-3c5d12af54ba" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T001559Z:01afbb3b-0716-46b2-9d04-0ed66e0de8ec" + "WESTCENTRALUS:20210330T005846Z:91baa7ef-d6cf-42a0-92ba-3c5d12af54ba" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:15:59 GMT" + "Tue, 30 Mar 2021 00:58:46 GMT" ], "Expires": [ "-1" @@ -5042,22 +4475,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/virtualMachines/vm6476?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY0NzY/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/virtualMachines/vm6537?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtNjUzNz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e58ae474-5f4d-4608-8442-a74c336ddbcc" + "e453b337-fbed-46b5-8ac6-98d150c65a12" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -5068,13 +4501,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/fca3f835-45e6-47dd-8234-cb79db28c44f?monitor=true&api-version=2020-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/7d31d2ce-431d-4e8d-8415-e97da4afb64c?monitor=true&api-version=2020-12-01" ], "Retry-After": [ "10" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/fca3f835-45e6-47dd-8234-cb79db28c44f?api-version=2020-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/7d31d2ce-431d-4e8d-8415-e97da4afb64c?api-version=2020-12-01" ], "Azure-AsyncNotification": [ "Enabled" @@ -5086,7 +4519,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fca3f835-45e6-47dd-8234-cb79db28c44f" + "7d31d2ce-431d-4e8d-8415-e97da4afb64c" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -5096,16 +4529,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "c73b0aad-65db-4480-bf03-0026627295e0" + "21159874-2c95-4bcc-a269-873b82c5e912" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T001559Z:c73b0aad-65db-4480-bf03-0026627295e0" + "WESTCENTRALUS:20210330T005847Z:21159874-2c95-4bcc-a269-873b82c5e912" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:15:59 GMT" + "Tue, 30 Mar 2021 00:58:46 GMT" ], "Expires": [ "-1" @@ -5118,22 +4551,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/virtualMachines/vm6476?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY0NzY/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/virtualMachines/vm6537?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtNjUzNz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "15f7caef-c3f4-4036-ac84-e14beff455f0" + "d05fd9ca-58df-4c9d-a0ce-42ab55e35e72" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -5147,13 +4580,13 @@ "14995" ], "x-ms-request-id": [ - "84392efe-8295-4359-bb2c-03a9cfe814fd" + "7b411995-4b66-4ea6-9e60-989063efc618" ], "x-ms-correlation-request-id": [ - "84392efe-8295-4359-bb2c-03a9cfe814fd" + "7b411995-4b66-4ea6-9e60-989063efc618" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T001810Z:84392efe-8295-4359-bb2c-03a9cfe814fd" + "WESTCENTRALUS:20210330T010028Z:7b411995-4b66-4ea6-9e60-989063efc618" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5162,7 +4595,7 @@ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:18:09 GMT" + "Tue, 30 Mar 2021 01:00:28 GMT" ], "Expires": [ "-1" @@ -5172,16 +4605,16 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/fca3f835-45e6-47dd-8234-cb79db28c44f?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2ZjYTNmODM1LTQ1ZTYtNDdkZC04MjM0LWNiNzlkYjI4YzQ0Zj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/7d31d2ce-431d-4e8d-8415-e97da4afb64c?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzdkMzFkMmNlLTQzMWQtNGU4ZC04NDE1LWU5N2RhNGFmYjY0Yz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -5195,13 +4628,13 @@ "30" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29984" + "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29970" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9854cc26-9d50-41d1-94ff-df3bf5c7bd66" + "80d144de-af6f-4505-ba6d-43ee619104f1" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -5211,16 +4644,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "7c481160-8d5a-44ef-909b-eb56bd7211db" + "e26d6b1a-3258-49bb-931b-e1b4ce352387" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T001609Z:7c481160-8d5a-44ef-909b-eb56bd7211db" + "WESTCENTRALUS:20210330T005857Z:e26d6b1a-3258-49bb-931b-e1b4ce352387" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:16:09 GMT" + "Tue, 30 Mar 2021 00:58:56 GMT" ], "Content-Length": [ "134" @@ -5232,20 +4665,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-30T00:15:59.6644906+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fca3f835-45e6-47dd-8234-cb79db28c44f\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:58:46.9534636-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7d31d2ce-431d-4e8d-8415-e97da4afb64c\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/fca3f835-45e6-47dd-8234-cb79db28c44f?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2ZjYTNmODM1LTQ1ZTYtNDdkZC04MjM0LWNiNzlkYjI4YzQ0Zj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/7d31d2ce-431d-4e8d-8415-e97da4afb64c?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzdkMzFkMmNlLTQzMWQtNGU4ZC04NDE1LWU5N2RhNGFmYjY0Yz9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -5256,13 +4689,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29983" + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29968" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c0bc9d1c-4b76-42fb-a196-dbe8b9d4bba4" + "11f184e8-aee2-4944-a066-2fa46a049a4a" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -5272,77 +4705,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "74d30413-179e-4266-8139-8a76835d9d8b" - ], - "x-ms-routing-request-id": [ - "EASTUS2:20201230T001639Z:74d30413-179e-4266-8139-8a76835d9d8b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 30 Dec 2020 00:16:38 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-30T00:15:59.6644906+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fca3f835-45e6-47dd-8234-cb79db28c44f\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/fca3f835-45e6-47dd-8234-cb79db28c44f?api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2ZjYTNmODM1LTQ1ZTYtNDdkZC04MjM0LWNiNzlkYjI4YzQ0Zj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29981" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "8da7832e-230e-489f-b56b-e5efcc47c320" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-correlation-request-id": [ - "f096a6e3-7fe7-4245-bd1e-28de992034d8" + "e2a9993f-ffa4-48a8-a017-4985542181d4" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T001709Z:f096a6e3-7fe7-4245-bd1e-28de992034d8" + "WESTCENTRALUS:20210330T005927Z:e2a9993f-ffa4-48a8-a017-4985542181d4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:17:09 GMT" + "Tue, 30 Mar 2021 00:59:26 GMT" ], "Content-Length": [ "184" @@ -5354,20 +4726,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-30T00:15:59.6644906+00:00\",\r\n \"endTime\": \"2020-12-30T00:16:59.1336332+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"fca3f835-45e6-47dd-8234-cb79db28c44f\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:58:46.9534636-07:00\",\r\n \"endTime\": \"2021-03-29T17:59:20.4536236-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7d31d2ce-431d-4e8d-8415-e97da4afb64c\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/operations/fca3f835-45e6-47dd-8234-cb79db28c44f?monitor=true&api-version=2020-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2ZjYTNmODM1LTQ1ZTYtNDdkZC04MjM0LWNiNzlkYjI4YzQ0Zj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/operations/7d31d2ce-431d-4e8d-8415-e97da4afb64c?monitor=true&api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzdkMzFkMmNlLTQzMWQtNGU4ZC04NDE1LWU5N2RhNGFmYjY0Yz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -5378,32 +4750,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29980" + "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29967" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fa0eb9a9-4971-483b-8d59-d5b529433c3e" + "2c9a8c08-ef0d-445e-939e-49b6e49aaa67" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11995" ], "x-ms-correlation-request-id": [ - "51764428-a4ce-43ba-8a51-f13249d8733d" + "3a5d198d-0240-43b4-b568-cc9f93d7e464" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T001709Z:51764428-a4ce-43ba-8a51-f13249d8733d" + "WESTCENTRALUS:20210330T005927Z:3a5d198d-0240-43b4-b568-cc9f93d7e464" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:17:09 GMT" + "Tue, 30 Mar 2021 00:59:26 GMT" ], "Expires": [ "-1" @@ -5416,22 +4788,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/galleries/galleryPsTestGallery4558/images/galleryPsTestGalleryImage8450?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ1NTgvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2U4NDUwP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336/images/galleryPsTestGalleryImage1821?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzMzNi9pbWFnZXMvZ2FsbGVyeVBzVGVzdEdhbGxlcnlJbWFnZTE4MjE/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ddf4af1f-a7b1-4c94-bc54-94a6eb7fd714" + "aa40cf79-a27c-4a97-a711-97c9920ab66f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -5442,22 +4814,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/fd91c908-1217-4841-be30-9cedcb1fd359?monitor=true&api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fc9e26d6-2109-48fb-8c6d-f73a6095c760?monitor=true&api-version=2020-09-30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/fd91c908-1217-4841-be30-9cedcb1fd359?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fc9e26d6-2109-48fb-8c6d-f73a6095c760?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/DeleteGalleryImage3Min;49,Microsoft.Compute/DeleteGalleryImage30Min;299" + "Microsoft.Compute/DeleteGalleryImage3Min;49,Microsoft.Compute/DeleteGalleryImage30Min;298" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "fd91c908-1217-4841-be30-9cedcb1fd359" + "fc9e26d6-2109-48fb-8c6d-f73a6095c760" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -5467,16 +4839,16 @@ "14997" ], "x-ms-correlation-request-id": [ - "7441e6c6-1b7a-4c28-b2cf-8319da0de87b" + "43bab369-0bcc-4817-a492-6f691f7fd441" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T001709Z:7441e6c6-1b7a-4c28-b2cf-8319da0de87b" + "WESTCENTRALUS:20210330T005927Z:43bab369-0bcc-4817-a492-6f691f7fd441" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:17:09 GMT" + "Tue, 30 Mar 2021 00:59:27 GMT" ], "Expires": [ "-1" @@ -5489,16 +4861,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/fd91c908-1217-4841-be30-9cedcb1fd359?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mZDkxYzkwOC0xMjE3LTQ4NDEtYmUzMC05Y2VkY2IxZmQzNTk/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fc9e26d6-2109-48fb-8c6d-f73a6095c760?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mYzllMjZkNi0yMTA5LTQ4ZmItOGM2ZC1mNzNhNjA5NWM3NjA/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -5515,29 +4887,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "6706bfc5-15f0-4baa-8847-4e6d1facd350" + "e5aafe2b-22ba-4b05-9a40-b9f2483b6ca5" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11994" ], "x-ms-correlation-request-id": [ - "8351ce75-6896-4980-9edf-5d8befd8ce29" + "700420f7-37a2-4c26-a9ae-405ddcdf2596" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T001740Z:8351ce75-6896-4980-9edf-5d8befd8ce29" + "WESTCENTRALUS:20210330T005957Z:700420f7-37a2-4c26-a9ae-405ddcdf2596" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:17:39 GMT" + "Tue, 30 Mar 2021 00:59:56 GMT" ], "Content-Length": [ "184" @@ -5549,20 +4921,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-30T00:17:09.9454866+00:00\",\r\n \"endTime\": \"2020-12-30T00:17:10.1954854+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"fd91c908-1217-4841-be30-9cedcb1fd359\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:59:27.6983467-07:00\",\r\n \"endTime\": \"2021-03-29T17:59:27.9483586-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"fc9e26d6-2109-48fb-8c6d-f73a6095c760\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/fd91c908-1217-4841-be30-9cedcb1fd359?monitor=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mZDkxYzkwOC0xMjE3LTQ4NDEtYmUzMC05Y2VkY2IxZmQzNTk/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/fc9e26d6-2109-48fb-8c6d-f73a6095c760?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mYzllMjZkNi0yMTA5LTQ4ZmItOGM2ZC1mNzNhNjA5NWM3NjA/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -5579,29 +4951,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "3b5e3c30-e0f4-48be-b8df-d299c268595f" + "2806e29a-0394-4f60-b7f5-5bd67d8e6f44" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11993" ], "x-ms-correlation-request-id": [ - "70d0f213-6ce0-4e52-9a7a-9c4ecb05e724" + "af2793fb-cbf3-4d0e-b41c-553bd7726bff" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T001740Z:70d0f213-6ce0-4e52-9a7a-9c4ecb05e724" + "WESTCENTRALUS:20210330T005957Z:af2793fb-cbf3-4d0e-b41c-553bd7726bff" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:17:39 GMT" + "Tue, 30 Mar 2021 00:59:57 GMT" ], "Expires": [ "-1" @@ -5614,22 +4986,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg3456/providers/Microsoft.Compute/galleries/galleryPsTestGallery4558?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM0NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ1NTg/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg184/providers/Microsoft.Compute/galleries/galleryPsTestGallery7336?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzE4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NzMzNj9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "46f8b207-69ed-4d09-849e-fa006f91267d" + "65ef7c92-30aa-42a6-a467-aabaa81491c3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -5640,22 +5012,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/00dee36a-6566-4436-a350-4f9165c4a3ef?monitor=true&api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a6443a9a-d259-4451-9c9e-8ef27b8a1aa5?monitor=true&api-version=2020-09-30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/00dee36a-6566-4436-a350-4f9165c4a3ef?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a6443a9a-d259-4451-9c9e-8ef27b8a1aa5?api-version=2020-09-30" ], "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_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "00dee36a-6566-4436-a350-4f9165c4a3ef" + "a6443a9a-d259-4451-9c9e-8ef27b8a1aa5" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -5665,16 +5037,16 @@ "14996" ], "x-ms-correlation-request-id": [ - "61992b22-3377-47cd-9991-7559591cf309" + "54e6fef7-8d2a-4042-8a4f-f86d0018c167" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T001740Z:61992b22-3377-47cd-9991-7559591cf309" + "WESTCENTRALUS:20210330T005958Z:54e6fef7-8d2a-4042-8a4f-f86d0018c167" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:17:39 GMT" + "Tue, 30 Mar 2021 00:59:57 GMT" ], "Expires": [ "-1" @@ -5687,16 +5059,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/00dee36a-6566-4436-a350-4f9165c4a3ef?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wMGRlZTM2YS02NTY2LTQ0MzYtYTM1MC00ZjkxNjVjNGEzZWY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a6443a9a-d259-4451-9c9e-8ef27b8a1aa5?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hNjQ0M2E5YS1kMjU5LTQ0NTEtOWM5ZS04ZWYyN2I4YTFhYTU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -5707,35 +5079,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4152" + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4164" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "12c3dee0-e701-4793-9927-01d67dd46562" + "cdae2c8e-430f-467d-8800-6c558861b570" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11992" ], "x-ms-correlation-request-id": [ - "be808c35-7164-4d47-bd75-2497a7dad156" + "01f6638d-7408-4a35-b038-9cd5c80c762c" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T001810Z:be808c35-7164-4d47-bd75-2497a7dad156" + "WESTCENTRALUS:20210330T010028Z:01f6638d-7408-4a35-b038-9cd5c80c762c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:18:09 GMT" + "Tue, 30 Mar 2021 01:00:28 GMT" ], "Content-Length": [ "184" @@ -5747,20 +5119,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-30T00:17:40.1175566+00:00\",\r\n \"endTime\": \"2020-12-30T00:17:40.1956783+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"00dee36a-6566-4436-a350-4f9165c4a3ef\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:59:58.2000505-07:00\",\r\n \"endTime\": \"2021-03-29T17:59:58.3092431-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a6443a9a-d259-4451-9c9e-8ef27b8a1aa5\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/00dee36a-6566-4436-a350-4f9165c4a3ef?monitor=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8wMGRlZTM2YS02NTY2LTQ0MzYtYTM1MC00ZjkxNjVjNGEzZWY/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a6443a9a-d259-4451-9c9e-8ef27b8a1aa5?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hNjQ0M2E5YS1kMjU5LTQ0NTEtOWM5ZS04ZWYyN2I4YTFhYTU/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -5771,35 +5143,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4151" + "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4163" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "36133e8b-9a78-4a37-b537-e7521da292ab" + "43c5808c-1e26-4e58-b9d9-29f1c6507ddf" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11991" ], "x-ms-correlation-request-id": [ - "bd8f35be-380d-4484-9839-c7856d247513" + "a1474673-9909-484a-a172-25d0a13770e2" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T001810Z:bd8f35be-380d-4484-9839-c7856d247513" + "WESTCENTRALUS:20210330T010028Z:a1474673-9909-484a-a172-25d0a13770e2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:18:09 GMT" + "Tue, 30 Mar 2021 01:00:28 GMT" ], "Expires": [ "-1" @@ -5814,36 +5186,36 @@ ], "Names": { "GalleryImageVersion_CRUD_Tests": [ - "galleryPsTestRg3456", - "psTestSourceImage6907", - "galleryPsTestGallery4558", - "galleryPsTestGalleryImage8450" + "galleryPsTestRg184", + "psTestSourceImage5220", + "galleryPsTestGallery7336", + "galleryPsTestGalleryImage1821" ], "CreateCRPImage": [ - "saforgallery1318", - "asforgallery7657" + "saforgallery1715", + "asforgallery8439" ], "CreatePublicIP": [ - "pip216", - "dn1668" + "pip6852", + "dn5334" ], "CreateVNET": [ - "vn1856", - "sn9850" + "vn2860", + "sn62" ], "CreateNIC": [ - "nic8164", - "ip4131" + "nic5370", + "ip3834" ], "CreateDefaultVMInput": [ - "crptestar1538", - "crptestar1679", - "crptestar3673", - "vm6476", - "Microsoft.Compute/virtualMachines6763" + "crptestar9300", + "crptestar4963", + "crptestar8986", + "vm6537", + "Microsoft.Compute/virtualMachines5602" ] }, "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 dace5513e558..8e8e4092014a 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/galleryPsTestRg5640?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU2NDA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg3662?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NjI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b967ca2f-0ca9-46b9-af7d-c3e346fb43ee" + "bd719d5a-43f2-4619-b9c1-355ca2d29bfa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "ed59ca63-d65c-472e-94a4-5e727b3cea5e" + "7788b0c4-8b8b-4619-9c1c-c3825686133a" ], "x-ms-correlation-request-id": [ - "ed59ca63-d65c-472e-94a4-5e727b3cea5e" + "7788b0c4-8b8b-4619-9c1c-c3825686133a" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T233445Z:ed59ca63-d65c-472e-94a4-5e727b3cea5e" + "WESTCENTRALUS:20210330T003020Z:7788b0c4-8b8b-4619-9c1c-c3825686133a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:34:44 GMT" + "Tue, 30 Mar 2021 00:30:20 GMT" ], "Content-Length": [ "192" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5640\",\r\n \"name\": \"galleryPsTestRg5640\",\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/galleryPsTestRg3662\",\r\n \"name\": \"galleryPsTestRg3662\",\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/galleryPsTestRg5640/providers/Microsoft.Compute/galleries/galleryPsTestGallery81?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU2NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTgxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3662/providers/Microsoft.Compute/galleries/galleryPsTestGallery4084?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQwODQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "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": [ - "49b4c138-a1b1-4407-b6d7-178735829233" + "97dcf5a5-cac3-46e1-9cf3-6bfc7091d6d6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,7 +99,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/e43110b8-4e9c-4dd5-863d-553e412e266f?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/f6f59423-1631-4584-b669-0905838575d3?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299" @@ -108,10 +108,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "e43110b8-4e9c-4dd5-863d-553e412e266f" + "f6f59423-1631-4584-b669-0905838575d3" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -121,19 +121,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "f55c7685-ee5e-4319-87c6-f0c8e484b651" + "aa712780-bfd8-45bc-b1ae-24487091e09d" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T233445Z:f55c7685-ee5e-4319-87c6-f0c8e484b651" + "WESTCENTRALUS:20210330T003023Z:aa712780-bfd8-45bc-b1ae-24487091e09d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:34:45 GMT" + "Tue, 30 Mar 2021 00:30:23 GMT" ], "Content-Length": [ - "502" + "573" ], "Content-Type": [ "application/json; charset=utf-8" @@ -142,20 +142,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery81\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5640/providers/Microsoft.Compute/galleries/galleryPsTestGallery81\",\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-GALLERYPSTESTGALLERY81\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery4084\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3662/providers/Microsoft.Compute/galleries/galleryPsTestGallery4084\",\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-GALLERYPSTESTGALLERY4084\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Private\"\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/e43110b8-4e9c-4dd5-863d-553e412e266f?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lNDMxMTBiOC00ZTljLTRkZDUtODYzZC01NTNlNDEyZTI2NmY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/f6f59423-1631-4584-b669-0905838575d3?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9mNmY1OTQyMy0xNjMxLTQ1ODQtYjY2OS0wOTA1ODM4NTc1ZDM/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -172,10 +172,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "a0160974-fbf7-4050-b902-4b2152964cbf" + "30edf1f0-6df2-4929-a456-c09a9cea9813" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -185,16 +185,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "72c07875-a7e1-4399-9351-0cb5ed5735b1" + "e5868bac-3837-45b5-a74b-f717dc7ee0cf" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T233515Z:72c07875-a7e1-4399-9351-0cb5ed5735b1" + "WESTCENTRALUS:20210330T003053Z:e5868bac-3837-45b5-a74b-f717dc7ee0cf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:35:15 GMT" + "Tue, 30 Mar 2021 00:30:53 GMT" ], "Content-Length": [ "184" @@ -206,20 +206,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-29T23:34:45.4134691+00:00\",\r\n \"endTime\": \"2020-12-29T23:34:45.6322288+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e43110b8-4e9c-4dd5-863d-553e412e266f\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:30:22.9096043-07:00\",\r\n \"endTime\": \"2021-03-29T17:30:23.1752386-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f6f59423-1631-4584-b669-0905838575d3\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5640/providers/Microsoft.Compute/galleries/galleryPsTestGallery81?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU2NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTgxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3662/providers/Microsoft.Compute/galleries/galleryPsTestGallery4084?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQwODQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -236,10 +236,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "200d8b4f-7143-41dc-b341-da1b7fa4bf2e" + "005ad22c-6b91-4cd7-9a45-9f2a697629c7" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -249,19 +249,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "e9d90fa8-6750-4966-8fcf-da991e4ea231" + "61464ea8-8794-4776-8279-31048999c5f8" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T233515Z:e9d90fa8-6750-4966-8fcf-da991e4ea231" + "WESTCENTRALUS:20210330T003053Z:61464ea8-8794-4776-8279-31048999c5f8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:35:15 GMT" + "Tue, 30 Mar 2021 00:30:53 GMT" ], "Content-Length": [ - "503" + "509" ], "Content-Type": [ "application/json; charset=utf-8" @@ -270,26 +270,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery81\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5640/providers/Microsoft.Compute/galleries/galleryPsTestGallery81\",\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-GALLERYPSTESTGALLERY81\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery4084\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3662/providers/Microsoft.Compute/galleries/galleryPsTestGallery4084\",\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-GALLERYPSTESTGALLERY4084\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5640/providers/Microsoft.Compute/galleries/galleryPsTestGallery81/images/galleryPsTestGalleryImage8452?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU2NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTgxL2ltYWdlcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeUltYWdlODQ1Mj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3662/providers/Microsoft.Compute/galleries/galleryPsTestGallery4084/images/galleryPsTestGalleryImage2946?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQwODQvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UyOTQ2P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "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": [ - "9b50dae5-17e7-4253-a074-940309815869" + "6a82ee8e-c390-4aec-a76c-859f4dbbaf63" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -306,7 +306,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/77b15d95-5c1e-4243-b34a-c42bdda5f0bb?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/1cf6bdb4-a359-44a4-a602-d2cb37285f11?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;749" @@ -315,10 +315,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "77b15d95-5c1e-4243-b34a-c42bdda5f0bb" + "1cf6bdb4-a359-44a4-a602-d2cb37285f11" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -328,19 +328,19 @@ "1198" ], "x-ms-correlation-request-id": [ - "2fc9a287-9ec3-4e3f-baaf-f76ae96373cc" + "4144e73f-2ecb-4d04-b252-44b6b0de2e88" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T233516Z:2fc9a287-9ec3-4e3f-baaf-f76ae96373cc" + "WESTCENTRALUS:20210330T003055Z:4144e73f-2ecb-4d04-b252-44b6b0de2e88" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:35:15 GMT" + "Tue, 30 Mar 2021 00:30:54 GMT" ], "Content-Length": [ - "644" + "646" ], "Content-Type": [ "application/json; charset=utf-8" @@ -349,26 +349,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage8452\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5640/providers/Microsoft.Compute/galleries/galleryPsTestGallery81/images/galleryPsTestGalleryImage8452\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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\": \"galleryPsTestGalleryImage2946\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3662/providers/Microsoft.Compute/galleries/galleryPsTestGallery4084/images/galleryPsTestGalleryImage2946\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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/galleryPsTestRg5640/providers/Microsoft.Compute/galleries/galleryPsTestGallery81/images/galleryPsTestGalleryImage8452?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU2NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTgxL2ltYWdlcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeUltYWdlODQ1Mj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3662/providers/Microsoft.Compute/galleries/galleryPsTestGallery4084/images/galleryPsTestGalleryImage2946?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQwODQvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UyOTQ2P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "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": [ - "f0e4a2be-942d-4b15-ab2f-b3cab241eb46" + "b56f5945-8cb3-4d7b-8022-15f63a34b9bb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -385,7 +385,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/e5e8c419-d651-499b-a9b7-637d99cbbeee?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/ad096088-219a-45b5-bad1-304e874fe70d?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/CreateUpdateGalleryImage3Min;148,Microsoft.Compute/CreateUpdateGalleryImage30Min;748" @@ -394,10 +394,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "e5e8c419-d651-499b-a9b7-637d99cbbeee" + "ad096088-219a-45b5-bad1-304e874fe70d" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -407,19 +407,19 @@ "1197" ], "x-ms-correlation-request-id": [ - "62e19667-8af7-45f5-a5e5-4905252aae47" + "0ff2a68c-016e-420a-8ac5-943b28dcb320" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T233546Z:62e19667-8af7-45f5-a5e5-4905252aae47" + "WESTCENTRALUS:20210330T003126Z:0ff2a68c-016e-420a-8ac5-943b28dcb320" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:35:45 GMT" + "Tue, 30 Mar 2021 00:31:25 GMT" ], "Content-Length": [ - "626" + "628" ], "Content-Type": [ "application/json; charset=utf-8" @@ -428,20 +428,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage8452\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5640/providers/Microsoft.Compute/galleries/galleryPsTestGallery81/images/galleryPsTestGalleryImage8452\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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\": \"galleryPsTestGalleryImage2946\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3662/providers/Microsoft.Compute/galleries/galleryPsTestGallery4084/images/galleryPsTestGalleryImage2946\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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/77b15d95-5c1e-4243-b34a-c42bdda5f0bb?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83N2IxNWQ5NS01YzFlLTQyNDMtYjM0YS1jNDJiZGRhNWYwYmI/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/1cf6bdb4-a359-44a4-a602-d2cb37285f11?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8xY2Y2YmRiNC1hMzU5LTQ0YTQtYTYwMi1kMmNiMzcyODVmMTE/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -458,10 +458,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "3f82dea3-f202-4fbc-9b95-8f6a3e3300b2" + "81d980e7-8eb8-42a2-a6cb-4852162a8f2c" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -471,16 +471,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "5668f074-f367-4095-83b3-97e6e538b8b3" + "b4cb0216-b5ca-4a4d-aebc-253ef0623067" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T233546Z:5668f074-f367-4095-83b3-97e6e538b8b3" + "WESTCENTRALUS:20210330T003125Z:b4cb0216-b5ca-4a4d-aebc-253ef0623067" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:35:45 GMT" + "Tue, 30 Mar 2021 00:31:24 GMT" ], "Content-Length": [ "184" @@ -492,20 +492,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-29T23:35:15.8824239+00:00\",\r\n \"endTime\": \"2020-12-29T23:35:15.9761804+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"77b15d95-5c1e-4243-b34a-c42bdda5f0bb\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:30:54.8487085-07:00\",\r\n \"endTime\": \"2021-03-29T17:30:54.9737186-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1cf6bdb4-a359-44a4-a602-d2cb37285f11\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5640/providers/Microsoft.Compute/galleries/galleryPsTestGallery81/images/galleryPsTestGalleryImage8452?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU2NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTgxL2ltYWdlcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeUltYWdlODQ1Mj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3662/providers/Microsoft.Compute/galleries/galleryPsTestGallery4084/images/galleryPsTestGalleryImage2946?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQwODQvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UyOTQ2P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -516,16 +516,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImage3Min;595,Microsoft.Compute/GetGalleryImage30Min;2995" + "Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2996" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "625b4d34-1027-4dc3-ad19-831754a09057" + "74043a61-7d46-48c2-ac81-fe9f4a20c634" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -535,19 +535,19 @@ "11996" ], "x-ms-correlation-request-id": [ - "ffa460e7-c4ed-4f6c-980a-a47ccd06e91f" + "675ff97d-f948-4a8d-a370-184968c3af0d" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T233546Z:ffa460e7-c4ed-4f6c-980a-a47ccd06e91f" + "WESTCENTRALUS:20210330T003125Z:675ff97d-f948-4a8d-a370-184968c3af0d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:35:45 GMT" + "Tue, 30 Mar 2021 00:31:24 GMT" ], "Content-Length": [ - "645" + "647" ], "Content-Type": [ "application/json; charset=utf-8" @@ -556,26 +556,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage8452\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5640/providers/Microsoft.Compute/galleries/galleryPsTestGallery81/images/galleryPsTestGalleryImage8452\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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\": \"galleryPsTestGalleryImage2946\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3662/providers/Microsoft.Compute/galleries/galleryPsTestGallery4084/images/galleryPsTestGalleryImage2946\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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/galleryPsTestRg5640/providers/Microsoft.Compute/galleries/galleryPsTestGallery81/images/galleryPsTestGalleryImage8452?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU2NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTgxL2ltYWdlcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeUltYWdlODQ1Mj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3662/providers/Microsoft.Compute/galleries/galleryPsTestGallery4084/images/galleryPsTestGalleryImage2946?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQwODQvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UyOTQ2P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f878e3ee-df71-4ff8-96a0-622628efe7a5" + "23ec12b0-5a03-4bce-b427-49ab224f219c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -586,16 +586,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGalleryImage3Min;594,Microsoft.Compute/GetGalleryImage30Min;2994" + "Microsoft.Compute/GetGalleryImage3Min;595,Microsoft.Compute/GetGalleryImage30Min;2995" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "09a1b386-bbc7-4c0b-afab-ad8a2e9c658b" + "696611b3-5000-4715-ae6d-d6b0047ffe85" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -605,19 +605,19 @@ "11995" ], "x-ms-correlation-request-id": [ - "4d149d79-a002-40e7-8208-6381371e5c3f" + "64500e5e-6742-4895-be3c-b21836ae0d38" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T233546Z:4d149d79-a002-40e7-8208-6381371e5c3f" + "WESTCENTRALUS:20210330T003125Z:64500e5e-6742-4895-be3c-b21836ae0d38" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:35:45 GMT" + "Tue, 30 Mar 2021 00:31:24 GMT" ], "Content-Length": [ - "645" + "647" ], "Content-Type": [ "application/json; charset=utf-8" @@ -626,20 +626,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage8452\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5640/providers/Microsoft.Compute/galleries/galleryPsTestGallery81/images/galleryPsTestGalleryImage8452\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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\": \"galleryPsTestGalleryImage2946\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3662/providers/Microsoft.Compute/galleries/galleryPsTestGallery4084/images/galleryPsTestGalleryImage2946\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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/galleryPsTestRg5640/providers/Microsoft.Compute/galleries/galleryPsTestGallery81/images/galleryPsTestGalleryImage8452?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU2NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTgxL2ltYWdlcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeUltYWdlODQ1Mj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3662/providers/Microsoft.Compute/galleries/galleryPsTestGallery4084/images/galleryPsTestGalleryImage2946?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQwODQvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UyOTQ2P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -656,10 +656,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "466c9f87-73e3-4231-adb9-e7e8ef7285c1" + "77cc8645-42ad-4145-a607-a61f2d6a1354" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -669,19 +669,19 @@ "11993" ], "x-ms-correlation-request-id": [ - "74bbd53b-b5b5-4695-aa92-390de0675501" + "fe504057-92fd-481c-9f8f-5f3431c0777f" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T233616Z:74bbd53b-b5b5-4695-aa92-390de0675501" + "WESTCENTRALUS:20210330T003156Z:fe504057-92fd-481c-9f8f-5f3431c0777f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:36:16 GMT" + "Tue, 30 Mar 2021 00:31:56 GMT" ], "Content-Length": [ - "627" + "629" ], "Content-Type": [ "application/json; charset=utf-8" @@ -690,26 +690,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage8452\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5640/providers/Microsoft.Compute/galleries/galleryPsTestGallery81/images/galleryPsTestGalleryImage8452\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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\": \"galleryPsTestGalleryImage2946\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3662/providers/Microsoft.Compute/galleries/galleryPsTestGallery4084/images/galleryPsTestGalleryImage2946\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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/galleryPsTestRg5640/providers/Microsoft.Compute/galleries/galleryPsTestGallery81/images/galleryPsTestGalleryImage8452?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU2NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTgxL2ltYWdlcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeUltYWdlODQ1Mj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3662/providers/Microsoft.Compute/galleries/galleryPsTestGallery4084/images/galleryPsTestGalleryImage2946?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQwODQvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UyOTQ2P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d4f0c4ce-331f-40af-ab91-c87ded57b87a" + "c57aba4a-6c0f-4598-803c-e134770a0e27" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -726,10 +726,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "dea0241c-1978-4e06-8622-f2eb3f628943" + "0e016bd2-04d4-43b5-81ab-a5f37e9bf39d" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -739,19 +739,19 @@ "11992" ], "x-ms-correlation-request-id": [ - "99809664-5b3b-40ac-8599-5f369fc2836b" + "4d0f8c86-0e00-485d-9568-58719adcef9f" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T233616Z:99809664-5b3b-40ac-8599-5f369fc2836b" + "WESTCENTRALUS:20210330T003156Z:4d0f8c86-0e00-485d-9568-58719adcef9f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:36:16 GMT" + "Tue, 30 Mar 2021 00:31:56 GMT" ], "Content-Length": [ - "627" + "629" ], "Content-Type": [ "application/json; charset=utf-8" @@ -760,20 +760,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryImage8452\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5640/providers/Microsoft.Compute/galleries/galleryPsTestGallery81/images/galleryPsTestGalleryImage8452\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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\": \"galleryPsTestGalleryImage2946\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3662/providers/Microsoft.Compute/galleries/galleryPsTestGallery4084/images/galleryPsTestGalleryImage2946\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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/e5e8c419-d651-499b-a9b7-637d99cbbeee?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lNWU4YzQxOS1kNjUxLTQ5OWItYTliNy02MzdkOTljYmJlZWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/ad096088-219a-45b5-bad1-304e874fe70d?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hZDA5NjA4OC0yMTlhLTQ1YjUtYmFkMS0zMDRlODc0ZmU3MGQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -790,10 +790,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "31e39a3d-1398-4c32-befb-b7976163ffa6" + "77b3c9ee-1c89-4a13-89fe-3bdcfccb9056" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -803,16 +803,16 @@ "11994" ], "x-ms-correlation-request-id": [ - "8392ad39-b0eb-4cc4-b9fd-e8d0a175c931" + "932d6d6d-356d-4533-8ac3-41a1aa498eff" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T233616Z:8392ad39-b0eb-4cc4-b9fd-e8d0a175c931" + "WESTCENTRALUS:20210330T003156Z:932d6d6d-356d-4533-8ac3-41a1aa498eff" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:36:16 GMT" + "Tue, 30 Mar 2021 00:31:56 GMT" ], "Content-Length": [ "184" @@ -824,26 +824,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-29T23:35:46.2263675+00:00\",\r\n \"endTime\": \"2020-12-29T23:35:46.2732428+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e5e8c419-d651-499b-a9b7-637d99cbbeee\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:31:26.0533913-07:00\",\r\n \"endTime\": \"2021-03-29T17:31:26.1002908-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ad096088-219a-45b5-bad1-304e874fe70d\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5640/providers/Microsoft.Compute/galleries/galleryPsTestGallery81/images?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU2NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTgxL2ltYWdlcz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3662/providers/Microsoft.Compute/galleries/galleryPsTestGallery4084/images?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQwODQvaW1hZ2VzP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d12c2cd3-5273-4c2a-979e-6d6931716d27" + "c58df58b-195a-4c0b-8359-8211a9e58247" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -854,53 +854,68 @@ "no-cache" ], "x-ms-original-request-ids": [ - "30537e3d-f920-485f-a148-a96423a03e92", - "d0d12003-b0ee-4636-86b0-7dce6525a271", - "e18d2a28-ca98-424e-afd5-c42e9a915583", - "2ba22419-27a0-4d7e-a124-0eb9fc2fede7", - "3875a189-7862-46f7-bdda-b5c7c48b22ac", - "8a72de9c-6886-40a9-b6f3-ba9caeaa1055", - "0a57fe68-b4a2-4ca5-a107-dc97ff248b3f", - "6d5d2b05-d124-4b05-aeb2-a32efe3cce1a", - "2aff9655-d736-4b1b-9a6e-5fd598587175", - "37818da0-3acb-41b2-bd44-b3e818834347", - "c06f89e8-a9f3-4b8f-acdb-d4c4b69daca0", - "46869005-ca87-4282-a389-aed96d2284f5", - "d317318c-b00e-46f8-bec4-82a4916c954a", - "0f1bbfda-c877-4920-b8fc-9997ffe1fe86", - "6658e333-93c4-41e5-b22f-066958b40868", - "a58598f6-2818-4aa9-9d3d-98d18386c324", - "11855463-624b-4fca-8ac1-93a24801ef22", - "1c596f89-64d5-46f1-8f2c-dff26c52d905", - "8374223f-4cfe-4d71-ab98-ba2fc75b95da", - "cdf4178f-1b80-47bc-b1d8-cebe91d1fd9d", - "13e08234-7f53-4aeb-b441-0d1d5b33d12f", - "baaad835-4158-4250-9a44-b6632a6e792f", - "f195c97a-d4d7-47ac-8cf3-d686e3e68f03", - "c2cce342-3d2b-4052-aba3-de4234452076", - "5ffef51a-e496-45b7-aa8a-901edbd66cae", - "038989fa-c061-46e0-9153-e158e26e6f07", - "fd06d8a0-dfbc-490d-ab22-d8a116f33203", - "55abad74-7dce-404b-95bc-dbaf12cbfe65", - "e9a2edb9-10b6-4f99-aa5b-987f876546b0", - "60f5cbeb-c9d3-4538-9edb-917a3259199d", - "8f588b51-533b-43c9-aa0d-2493d738bf2b", - "3b317fd8-92a8-4bd7-aa57-fc4c8788bf23", - "ceac900d-b0fb-49ca-8531-cd2536858811", - "128ae8a9-e69c-478d-84b7-c7ae1b013f20", - "01756979-ac08-48e8-8b16-8b348a07cada" + "7f2c7015-bdf9-4eac-8e61-336e0133332a", + "939d4f4e-2750-4cf3-b04b-a8a7ffe14c29", + "45dd67b2-3bf9-4450-9008-f7e31d1bb0d6", + "e81f1d4e-dca5-4a1b-b4d2-6270536a5ccf", + "60d6d4ce-780d-4eb7-b295-083076a48af8", + "cd64a982-9dd9-4dd2-a526-1f01aa9f5be3", + "48ce51e4-747c-492c-ad2e-39ec5a7a8280", + "d946243b-00f7-4673-9d80-15baf337b19a", + "06667bf3-d1df-4730-9141-c5eb55ea5f1c", + "c959509b-fd4d-4e11-9cf2-3dab9ccf9ff9", + "7321b794-91e6-4768-a270-0832c988aa60", + "e98dc138-33ed-426a-b978-c91366a71374", + "2892a751-7cf3-4c0e-99af-9e01d37b3b21", + "363ec6a5-97de-4da8-ac5c-751279a9ac62", + "55362031-90b7-4831-b855-bbc393da05b9", + "c244dc5b-d12b-4b58-9de2-18c453e6e61d", + "cfb1f62c-26e2-4ea0-b837-183e967f9724", + "6d14fd8d-a466-4e76-aead-02f61da8f187", + "45507692-7c92-41b5-8e5b-c1c1daf46c8b", + "3968e46a-a118-4cee-81cd-91dd20983d61", + "1ccefe90-6238-4a9d-8984-9362cff4ad0b", + "0887e70e-de47-4567-9e36-2499345d8994", + "c3496548-a9f2-402c-b850-d2c1acfdb50e", + "13926ef1-e94f-4748-9045-85cfae10c09c", + "ec9bbe02-0181-4169-b926-0ba81d5b629d", + "8087d8b6-2a86-4758-821e-727ccba762f6", + "dd1ca9d4-1567-4da1-85dd-6293dd39dd52", + "44d24dbd-12f7-4c51-817a-b211ba59e68a", + "aef13326-61d4-4a72-b96f-ebf1746f07d5", + "f301d2e1-4548-43ce-8a5a-70c8e59e2e8c", + "a44901ef-1171-43e8-a406-e3f69d7fb369", + "c81a6f18-4c37-4b04-b7ec-8bc8fcb5fe34", + "cab2af6c-7f3e-4c63-a0dc-4095be2e7dcf", + "ca1943f9-b364-4c7a-9b12-ebcde6184eec", + "13e5c473-4479-49f6-9254-1c8267e9cbea", + "8d6b42ff-231e-4f1a-bd3c-d24ff715b712", + "9293bf6e-e38e-426c-b9bf-fe46265e804e", + "8edd141d-9a7b-42ae-a518-51ae26c9199d", + "8db6a9f6-5ef5-4cae-b00a-a89cbe866adf", + "3e9fc789-899a-4775-9a2c-81e193ac6609", + "9a2a32c7-ab26-4ed3-85bc-a63b18128e63", + "72e382bc-332d-40ab-a998-c3690ef988f2", + "ce6b8a65-03e9-486c-8935-8d2f17bd3c4c", + "398c5e10-7c8e-4d6c-b631-4689f544aa76", + "3442f2c8-440c-4813-9730-3693186ea3e2", + "46a8919d-1b15-4cd8-b87f-08777e5a31dd", + "30f7c851-4064-4acf-a4e2-b5996579ccfc", + "7fbfcacf-b658-4828-8f0a-55f1e1b5035a", + "87d72af8-5bf3-40a9-baad-23eece758f00", + "6246f1d8-3ab4-4c90-840f-2df79304d90a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], "x-ms-request-id": [ - "ad77d987-ee3d-4c04-bea6-9521d33ab2da" + "b6c8d24d-7a88-4610-959a-7a2f34bbf769" ], "x-ms-correlation-request-id": [ - "ad77d987-ee3d-4c04-bea6-9521d33ab2da" + "b6c8d24d-7a88-4610-959a-7a2f34bbf769" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T233617Z:ad77d987-ee3d-4c04-bea6-9521d33ab2da" + "WESTCENTRALUS:20210330T003158Z:b6c8d24d-7a88-4610-959a-7a2f34bbf769" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -909,7 +924,7 @@ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:36:17 GMT" + "Tue, 30 Mar 2021 00:31:58 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -918,29 +933,29 @@ "-1" ], "Content-Length": [ - "533" + "535" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"galleryPsTestGalleryImage8452\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5640/providers/Microsoft.Compute/galleries/galleryPsTestGallery81/images/galleryPsTestGalleryImage8452\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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\": \"galleryPsTestGalleryImage2946\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3662/providers/Microsoft.Compute/galleries/galleryPsTestGallery4084/images/galleryPsTestGalleryImage2946\",\r\n \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\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/galleryPsTestRg5640/providers/Microsoft.Compute/galleries/galleryPsTestGallery81/images?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU2NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTgxL2ltYWdlcz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3662/providers/Microsoft.Compute/galleries/galleryPsTestGallery4084/images?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQwODQvaW1hZ2VzP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0874232c-47e6-451d-b0a9-99c627f066bf" + "8f022918-8123-46a8-a538-db13a4bd1305" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -951,53 +966,68 @@ "no-cache" ], "x-ms-original-request-ids": [ - "82fee48e-6822-4007-8461-c663e937705c", - "7ce25afa-78ae-43ab-b3fc-b4cbc16749e5", - "c38e0a10-e58d-4e3c-8820-79002cef4bf6", - "ed055a46-0bbf-4ba7-80bd-b916c0680762", - "9057c96d-807a-4c3a-baf2-da8cfe907753", - "3eded975-6568-4d93-aaaa-8bba8557781e", - "8d7ceb6c-42f1-486c-8b9d-ee0393cd49c2", - "bc2b68c9-adf8-49d9-9a86-780d262b7f88", - "8e827522-c1fe-4203-9bed-e802fa1a8540", - "f06cacbc-2365-4f07-ae9c-50a5d047cf48", - "a0809153-35a8-4f9d-a48f-87dcd0a2eeff", - "0856d6e7-8eb8-409f-90c7-d5c2758b06cc", - "28037522-9684-450b-8d10-e1111a958b1b", - "6987f742-63f9-4d53-b321-16547e5fc2d8", - "cf36bdcb-4dfa-4c51-bcad-8a831a2ae2df", - "33f3d836-9917-404f-ab33-fe37ed8db484", - "7eb10472-61e6-4afa-bfd4-69ebd611a49a", - "b1591e1f-82b4-4c01-9bf0-d9a12637d4d9", - "cea23dc3-2aea-4afe-8630-7eb273f35ec3", - "f34c0799-5750-4a75-9655-b9d2fa5d03fa", - "4fb89cf8-2304-4a7c-a4be-c927306f91ec", - "37ad61fa-d085-49f9-94f0-f2e32cd1f508", - "06a33a6f-4f76-48e0-930a-b69cace348da", - "1d14bc38-99cf-45bb-9ec8-ccd342310bb7", - "a660d260-c26a-4ef8-a278-da39a6088026", - "2cabc7ad-8f65-4359-95ff-497099a8e0df", - "e594c2b9-1226-4bfe-bb80-a77dd917c4b4", - "03c71cdd-5536-458b-a5a5-3c9ba5c839e5", - "072ae558-4b4e-4d8c-874d-c2657ee363b6", - "6a23a9a1-5275-4711-89fc-4326860f7052", - "3398613d-82f3-4030-81b6-4a104987450a", - "88adde55-40a8-49de-adc7-f8d048d2884c", - "eabbc5eb-f657-4ebc-8006-4df714e7de00", - "8d74f632-40fa-405c-a812-766305c086cb", - "a673ca31-d29a-4961-a9dc-d0df2e5a7739" + "18a6f3b7-9b51-429e-bcba-f71a2801c8a7", + "fb4c2043-f610-42dd-ae45-15320f14a841", + "dea208be-6943-4cc7-a63e-d147d077ca4f", + "18421ac2-3db4-4580-9dd9-fa93ec56d8e8", + "ca7e79db-a346-41fd-9fe4-bfa614990fd4", + "9604b9fb-c89c-4641-ac29-c99d7f4d2777", + "76401c73-2d21-4b8d-ba8b-6ea88fc98496", + "22330706-1f41-4838-853f-fed0164bd99a", + "c7bcc6dd-0821-4248-bd4f-666b6e7e431d", + "4f84c9f0-09a0-43f9-bcbf-4a3fb49a120a", + "2abdc18c-d130-49b2-81e7-bc44c122e40d", + "4428fcc6-3d42-4b5c-bdb2-32c2d831ef00", + "c8d65c54-f1fe-4c94-b54a-3b7cbfd31a47", + "4ad65a00-f075-4f8a-ba70-667e5c06516e", + "b1006d96-c687-4ee7-8967-cc31c7c80f86", + "d53e9d74-e7db-4ee5-ad83-9a8db7d97a9e", + "01d50017-218b-45ef-b25d-5808da0ce107", + "8f4a3539-038b-4cb6-837a-0f8df96be17f", + "44bfcafa-e49d-424a-8164-e36569b721f0", + "521f707d-9280-4714-b9d0-31e6217b54ba", + "dbf370e9-b8b4-469c-a867-5b23a46ac496", + "97039a6e-2716-4c4e-94f1-e266ce889bb7", + "450953aa-0a32-47b8-a8a5-6f0a2e9369b4", + "fe5e41a9-2059-4887-8948-48c0b80df3b3", + "5119c52f-22b3-4612-87b1-146d4892e535", + "c25a929c-83f4-4c3b-8f9c-2d814e68cbe8", + "23f9b9ec-5dd5-4931-84d0-3e4e50bd9aa1", + "73dd6001-0281-4c6d-8b4d-3d7771ddef02", + "434b3dcc-5ac3-4916-b6a3-803ed41be715", + "2623d3ec-c6c7-41d4-9fdd-d40a2325f800", + "70500cd1-aba2-4b9a-91a0-76528f574dd9", + "6825873c-b194-4762-8619-5f5159a5d29e", + "e80a3c53-310c-4a47-b98a-27e24289e908", + "e0b6ff93-3681-4813-b528-dfd80c09dd6e", + "dfc7e765-8070-405a-b9a0-856bfa39f7a0", + "25ab8b50-8832-4a3e-8a9c-e9b783430b61", + "34082ba5-db0c-4ffd-83b5-c4e85c93de74", + "7b208b76-e2d4-4806-a4a3-b45d31184c65", + "75ea24cc-020a-49bf-918b-d0f56726e350", + "db9c0425-326f-4615-90f9-a8acb616e128", + "891261e5-172b-46e2-8d83-e1c7fa15a040", + "02206967-154c-429b-9acd-0b46a54ab909", + "97ef8d48-168b-423b-869f-788e700d5f53", + "f9297426-cc82-4e55-a7fa-31c0c652bb1f", + "c2ace901-dab1-4654-a840-6c03113a69f2", + "f984b93d-0f89-4375-83ad-2174cc9f97c9", + "fec44e56-2125-4805-9cde-62c5e1be6939", + "5a435372-74cf-4618-afaa-3e09cf435ffe", + "135d3f88-8977-4ce9-86e4-e39060629e7b", + "6e544124-2ffb-4c53-abbc-27b6be0f1bb3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], "x-ms-request-id": [ - "f82de536-a511-4f98-8149-ac27c4a45fd4" + "717b6a96-3ee1-4577-ab9f-ca8424108f0c" ], "x-ms-correlation-request-id": [ - "f82de536-a511-4f98-8149-ac27c4a45fd4" + "717b6a96-3ee1-4577-ab9f-ca8424108f0c" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T233647Z:f82de536-a511-4f98-8149-ac27c4a45fd4" + "WESTCENTRALUS:20210330T003229Z:717b6a96-3ee1-4577-ab9f-ca8424108f0c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1006,7 +1036,7 @@ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:36:47 GMT" + "Tue, 30 Mar 2021 00:32:28 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1022,22 +1052,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5640/providers/Microsoft.Compute/galleries/galleryPsTestGallery81/images/galleryPsTestGalleryImage8452?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU2NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTgxL2ltYWdlcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeUltYWdlODQ1Mj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3662/providers/Microsoft.Compute/galleries/galleryPsTestGallery4084/images/galleryPsTestGalleryImage2946?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQwODQvaW1hZ2VzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5SW1hZ2UyOTQ2P2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c37666f0-8fcf-474a-977f-c71dcc0a6efc" + "f5574352-1785-4f4d-b940-6daaead7e66b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1048,10 +1078,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/1366a334-d54d-4f20-8db0-30dbeca882e7?monitor=true&api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a92f53a0-2d79-4f9b-b3dd-0b11c53457aa?monitor=true&api-version=2020-09-30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/1366a334-d54d-4f20-8db0-30dbeca882e7?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a92f53a0-2d79-4f9b-b3dd-0b11c53457aa?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/DeleteGalleryImage3Min;49,Microsoft.Compute/DeleteGalleryImage30Min;299" @@ -1060,10 +1090,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "1366a334-d54d-4f20-8db0-30dbeca882e7" + "a92f53a0-2d79-4f9b-b3dd-0b11c53457aa" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1073,16 +1103,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "29475397-3b32-46c8-8215-a0ae61011dad" + "fc30c80a-4481-44e3-af6c-19083bd45154" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T233617Z:29475397-3b32-46c8-8215-a0ae61011dad" + "WESTCENTRALUS:20210330T003158Z:fc30c80a-4481-44e3-af6c-19083bd45154" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:36:17 GMT" + "Tue, 30 Mar 2021 00:31:58 GMT" ], "Expires": [ "-1" @@ -1095,16 +1125,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/1366a334-d54d-4f20-8db0-30dbeca882e7?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8xMzY2YTMzNC1kNTRkLTRmMjAtOGRiMC0zMGRiZWNhODgyZTc/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a92f53a0-2d79-4f9b-b3dd-0b11c53457aa?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hOTJmNTNhMC0yZDc5LTRmOWItYjNkZC0wYjExYzUzNDU3YWE/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1121,10 +1151,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "07b66a07-f68b-4660-b99c-bb13fe887fd5" + "ee2eef9c-4e55-4a5f-8ec4-e16f0fcf79a8" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1134,16 +1164,16 @@ "11990" ], "x-ms-correlation-request-id": [ - "d3e046ef-6f27-467f-9de1-79cbe88459b3" + "64ebfc01-693e-4ce9-b62f-59cb4046f856" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T233647Z:d3e046ef-6f27-467f-9de1-79cbe88459b3" + "WESTCENTRALUS:20210330T003228Z:64ebfc01-693e-4ce9-b62f-59cb4046f856" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:36:47 GMT" + "Tue, 30 Mar 2021 00:32:28 GMT" ], "Content-Length": [ "184" @@ -1155,20 +1185,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-29T23:36:17.5859426+00:00\",\r\n \"endTime\": \"2020-12-29T23:36:17.7109491+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1366a334-d54d-4f20-8db0-30dbeca882e7\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:31:58.4454898-07:00\",\r\n \"endTime\": \"2021-03-29T17:31:58.5704922-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a92f53a0-2d79-4f9b-b3dd-0b11c53457aa\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/1366a334-d54d-4f20-8db0-30dbeca882e7?monitor=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8xMzY2YTMzNC1kNTRkLTRmMjAtOGRiMC0zMGRiZWNhODgyZTc/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a92f53a0-2d79-4f9b-b3dd-0b11c53457aa?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hOTJmNTNhMC0yZDc5LTRmOWItYjNkZC0wYjExYzUzNDU3YWE/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1185,10 +1215,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "2759b52d-36b0-4395-86ee-a7a706c7fde3" + "d4d35f25-277c-4e4c-9b74-12de11a93622" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1198,16 +1228,16 @@ "11989" ], "x-ms-correlation-request-id": [ - "e0fa41f4-8bfb-4e9a-a5c7-c7c80bab5d0e" + "7703c646-0162-45d9-8e4d-14acaa7bac32" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T233647Z:e0fa41f4-8bfb-4e9a-a5c7-c7c80bab5d0e" + "WESTCENTRALUS:20210330T003228Z:7703c646-0162-45d9-8e4d-14acaa7bac32" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:36:47 GMT" + "Tue, 30 Mar 2021 00:32:28 GMT" ], "Expires": [ "-1" @@ -1220,22 +1250,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg5640/providers/Microsoft.Compute/galleries/galleryPsTestGallery81?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU2NDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTgxP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3662/providers/Microsoft.Compute/galleries/galleryPsTestGallery4084?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQwODQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51af9c89-4636-42ea-960a-99606186a365" + "081d962c-c4c0-42ab-92ac-5cec56cd20cf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1246,22 +1276,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/4382b4ea-f81b-484f-a4a3-4efe5993cacd?monitor=true&api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/d8dd9798-92ac-4f0c-a3c7-999bbda97aa1?monitor=true&api-version=2020-09-30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/4382b4ea-f81b-484f-a4a3-4efe5993cacd?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/d8dd9798-92ac-4f0c-a3c7-999bbda97aa1?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;299" + "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;899" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "4382b4ea-f81b-484f-a4a3-4efe5993cacd" + "d8dd9798-92ac-4f0c-a3c7-999bbda97aa1" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1271,16 +1301,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "93a2efb5-3b70-4501-9194-c73425dea1ea" + "78a58e9d-05d7-4cea-9f45-e79f5880c18b" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T233648Z:93a2efb5-3b70-4501-9194-c73425dea1ea" + "WESTCENTRALUS:20210330T003229Z:78a58e9d-05d7-4cea-9f45-e79f5880c18b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:36:47 GMT" + "Tue, 30 Mar 2021 00:32:29 GMT" ], "Expires": [ "-1" @@ -1293,16 +1323,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/4382b4ea-f81b-484f-a4a3-4efe5993cacd?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy80MzgyYjRlYS1mODFiLTQ4NGYtYTRhMy00ZWZlNTk5M2NhY2Q/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/d8dd9798-92ac-4f0c-a3c7-999bbda97aa1?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9kOGRkOTc5OC05MmFjLTRmMGMtYTNjNy05OTliYmRhOTdhYTE/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1319,29 +1349,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "791c15ba-b474-4f3c-94a7-df5639f2e591" + "e666a3ea-d160-47fb-9d46-a5209dd96cf3" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11986" ], "x-ms-correlation-request-id": [ - "1ddb6665-bc36-4bdd-959c-b8e50608f392" + "b93731ea-ab5f-4ec6-814d-377e847edd6f" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T233718Z:1ddb6665-bc36-4bdd-959c-b8e50608f392" + "WESTCENTRALUS:20210330T003259Z:b93731ea-ab5f-4ec6-814d-377e847edd6f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:37:17 GMT" + "Tue, 30 Mar 2021 00:32:59 GMT" ], "Content-Length": [ "184" @@ -1353,20 +1383,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-29T23:36:48.0392216+00:00\",\r\n \"endTime\": \"2020-12-29T23:36:48.1329748+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4382b4ea-f81b-484f-a4a3-4efe5993cacd\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T17:32:29.3221954-07:00\",\r\n \"endTime\": \"2021-03-29T17:32:29.4472755-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d8dd9798-92ac-4f0c-a3c7-999bbda97aa1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/4382b4ea-f81b-484f-a4a3-4efe5993cacd?monitor=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy80MzgyYjRlYS1mODFiLTQ4NGYtYTRhMy00ZWZlNTk5M2NhY2Q/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/d8dd9798-92ac-4f0c-a3c7-999bbda97aa1?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9kOGRkOTc5OC05MmFjLTRmMGMtYTNjNy05OTliYmRhOTdhYTE/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1383,29 +1413,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "658aa28c-9faf-4c3e-aaa8-a5d636bc824a" + "277be90c-a4cc-46e5-87b9-3280f8b36c88" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11985" ], "x-ms-correlation-request-id": [ - "7cf8cdf9-726d-4075-bf3b-e98d051e8349" + "14c64489-7d36-4004-abb5-a5954f92f677" ], "x-ms-routing-request-id": [ - "EASTUS2:20201229T233718Z:7cf8cdf9-726d-4075-bf3b-e98d051e8349" + "WESTCENTRALUS:20210330T003259Z:14c64489-7d36-4004-abb5-a5954f92f677" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 29 Dec 2020 23:37:17 GMT" + "Tue, 30 Mar 2021 00:32:59 GMT" ], "Expires": [ "-1" @@ -1420,12 +1450,12 @@ ], "Names": { "GalleryImage_CRUD_Tests": [ - "galleryPsTestRg5640", - "galleryPsTestGallery81", - "galleryPsTestGalleryImage8452" + "galleryPsTestRg3662", + "galleryPsTestGallery4084", + "galleryPsTestGalleryImage2946" ] }, "Variables": { - "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871" + "SubscriptionId": "97f78232-382b-46a7-8a72-964d692c4f3f" } } \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_CRUD_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_CRUD_Tests.json index 0654bbcfe852..fbc97f15d467 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_CRUD_Tests.json +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_CRUD_Tests.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/galleryPsTestRg8531?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg1MzE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg3658?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NTg/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4c40ac40-2294-4071-be89-77ce691a4df7" + "d21c7324-01e6-463f-a783-2eadef6be5b9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "49f104da-14c4-4898-b1f8-3c0905e6feb3" + "47c19756-8875-415d-a2cc-9f41a8c09d06" ], "x-ms-correlation-request-id": [ - "49f104da-14c4-4898-b1f8-3c0905e6feb3" + "47c19756-8875-415d-a2cc-9f41a8c09d06" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T002010Z:49f104da-14c4-4898-b1f8-3c0905e6feb3" + "WESTUS:20210330T010032Z:47c19756-8875-415d-a2cc-9f41a8c09d06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:20:10 GMT" + "Tue, 30 Mar 2021 01:00:32 GMT" ], "Content-Length": [ "192" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8531\",\r\n \"name\": \"galleryPsTestRg8531\",\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/galleryPsTestRg3658\",\r\n \"name\": \"galleryPsTestRg3658\",\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/galleryPsTestRg8531/providers/Microsoft.Compute/galleries/galleryPsTestGallery3433?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM0MzM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3658/providers/Microsoft.Compute/galleries/galleryPsTestGallery1299?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTEyOTk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "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": [ - "6af2fa77-c051-4402-a2bc-949d5b61ce7b" + "688abc9d-4499-460a-aec9-40283bd9441e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,19 +99,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/857542df-5c56-4dc7-a389-3a2b4c857535?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/14f6e75a-b430-4c40-87ba-5448b6214b35?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299" + "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;298" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "857542df-5c56-4dc7-a389-3a2b4c857535" + "14f6e75a-b430-4c40-87ba-5448b6214b35" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -121,19 +121,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "ab0093fe-3fe4-4dfb-9dd2-4bbbb5279f6a" + "8b861719-086c-4b57-a64b-691c459725a8" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T002011Z:ab0093fe-3fe4-4dfb-9dd2-4bbbb5279f6a" + "WESTUS:20210330T010035Z:8b861719-086c-4b57-a64b-691c459725a8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:20:11 GMT" + "Tue, 30 Mar 2021 01:00:35 GMT" ], "Content-Length": [ - "508" + "573" ], "Content-Type": [ "application/json; charset=utf-8" @@ -142,26 +142,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery3433\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8531/providers/Microsoft.Compute/galleries/galleryPsTestGallery3433\",\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-GALLERYPSTESTGALLERY3433\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery1299\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3658/providers/Microsoft.Compute/galleries/galleryPsTestGallery1299\",\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-GALLERYPSTESTGALLERY1299\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Private\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8531/providers/Microsoft.Compute/galleries/galleryPsTestGallery3433?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM0MzM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3658/providers/Microsoft.Compute/galleries/galleryPsTestGallery1299?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTEyOTk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is an updated description\"\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "458f66fe-b550-4811-8a3e-c8c0447ba2f1" + "1d35e011-114a-4e56-a0b7-1bed504182fd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -178,19 +178,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/17c22a9e-9f03-4fb6-95c1-08070d9518f5?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/6aa0310d-11ff-4b7c-958e-a27a13c90ece?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateUpdateGallery3Min;48,Microsoft.Compute/CreateUpdateGallery30Min;298" + "Microsoft.Compute/CreateUpdateGallery3Min;48,Microsoft.Compute/CreateUpdateGallery30Min;297" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "17c22a9e-9f03-4fb6-95c1-08070d9518f5" + "6aa0310d-11ff-4b7c-958e-a27a13c90ece" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -200,19 +200,19 @@ "1198" ], "x-ms-correlation-request-id": [ - "7a0d65d6-948c-48c0-9178-19d2b03975d8" + "ec511fc9-ffc9-46d8-8bc0-f083d4f1baae" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T002042Z:7a0d65d6-948c-48c0-9178-19d2b03975d8" + "WESTUS:20210330T010106Z:ec511fc9-ffc9-46d8-8bc0-f083d4f1baae" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:20:41 GMT" + "Tue, 30 Mar 2021 01:01:05 GMT" ], "Content-Length": [ - "503" + "568" ], "Content-Type": [ "application/json; charset=utf-8" @@ -221,20 +221,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery3433\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8531/providers/Microsoft.Compute/galleries/galleryPsTestGallery3433\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY3433\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery1299\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3658/providers/Microsoft.Compute/galleries/galleryPsTestGallery1299\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY1299\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Private\"\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/857542df-5c56-4dc7-a389-3a2b4c857535?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy84NTc1NDJkZi01YzU2LTRkYzctYTM4OS0zYTJiNGM4NTc1MzU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/14f6e75a-b430-4c40-87ba-5448b6214b35?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy8xNGY2ZTc1YS1iNDMwLTRjNDAtODdiYS01NDQ4YjYyMTRiMzU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -245,16 +245,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4159" + "Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4161" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "590c6b9d-2e89-4118-bc15-2f0b4c7d8623" + "fcad369e-7188-4e71-8b4b-0308b66907a6" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -264,19 +264,19 @@ "11999" ], "x-ms-correlation-request-id": [ - "f63fdc3a-86a2-4529-97ea-dc28bc147cce" + "ff7fc37f-df9d-4937-90aa-81e6da54bcbb" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T002041Z:f63fdc3a-86a2-4529-97ea-dc28bc147cce" + "WESTUS:20210330T010105Z:ff7fc37f-df9d-4937-90aa-81e6da54bcbb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:20:41 GMT" + "Tue, 30 Mar 2021 01:01:05 GMT" ], "Content-Length": [ - "184" + "183" ], "Content-Type": [ "application/json; charset=utf-8" @@ -285,20 +285,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-30T00:20:11.6028992+00:00\",\r\n \"endTime\": \"2020-12-30T00:20:11.7747741+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"857542df-5c56-4dc7-a389-3a2b4c857535\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T18:00:35.1392098-07:00\",\r\n \"endTime\": \"2021-03-29T18:00:35.248592-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"14f6e75a-b430-4c40-87ba-5448b6214b35\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8531/providers/Microsoft.Compute/galleries/galleryPsTestGallery3433?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM0MzM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3658/providers/Microsoft.Compute/galleries/galleryPsTestGallery1299?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTEyOTk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -309,16 +309,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;347,Microsoft.Compute/GetGallery30Min;2493" + "Microsoft.Compute/GetGallery3Min;344,Microsoft.Compute/GetGallery30Min;2483" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "bb2fef69-ae73-4bed-bc8b-dc176ebacd56" + "a0c5a9cf-a8d3-4331-8c76-e14f641ad514" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -328,16 +328,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "05f114b2-cfd5-4e8e-b74e-4543b460f8d7" + "4da8dde3-641c-4dad-81c7-b3e768009e1a" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T002041Z:05f114b2-cfd5-4e8e-b74e-4543b460f8d7" + "WESTUS:20210330T010105Z:4da8dde3-641c-4dad-81c7-b3e768009e1a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:20:41 GMT" + "Tue, 30 Mar 2021 01:01:05 GMT" ], "Content-Length": [ "509" @@ -349,26 +349,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery3433\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8531/providers/Microsoft.Compute/galleries/galleryPsTestGallery3433\",\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-GALLERYPSTESTGALLERY3433\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery1299\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3658/providers/Microsoft.Compute/galleries/galleryPsTestGallery1299\",\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-GALLERYPSTESTGALLERY1299\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8531/providers/Microsoft.Compute/galleries/galleryPsTestGallery3433?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM0MzM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3658/providers/Microsoft.Compute/galleries/galleryPsTestGallery1299?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTEyOTk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "762b6d9d-6a50-4841-9758-0abb760c2dfd" + "23e68ba8-f395-4858-a250-22a18e35900c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -379,16 +379,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2492" + "Microsoft.Compute/GetGallery3Min;343,Microsoft.Compute/GetGallery30Min;2482" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "52616f61-2af9-42f8-99a5-4ae0e46370b2" + "2fbe6c47-fa8e-433d-9b3f-b41c0cd2de08" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -398,16 +398,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "a17f7c89-c42d-4c59-b155-afd1319f3722" + "eed467fd-eeb5-4484-8878-f8fad17d3aea" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T002041Z:a17f7c89-c42d-4c59-b155-afd1319f3722" + "WESTUS:20210330T010106Z:eed467fd-eeb5-4484-8878-f8fad17d3aea" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:20:41 GMT" + "Tue, 30 Mar 2021 01:01:05 GMT" ], "Content-Length": [ "509" @@ -419,20 +419,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery3433\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8531/providers/Microsoft.Compute/galleries/galleryPsTestGallery3433\",\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-GALLERYPSTESTGALLERY3433\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery1299\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3658/providers/Microsoft.Compute/galleries/galleryPsTestGallery1299\",\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-GALLERYPSTESTGALLERY1299\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8531/providers/Microsoft.Compute/galleries/galleryPsTestGallery3433?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM0MzM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3658/providers/Microsoft.Compute/galleries/galleryPsTestGallery1299?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTEyOTk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -443,16 +443,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;345,Microsoft.Compute/GetGallery30Min;2491" + "Microsoft.Compute/GetGallery3Min;342,Microsoft.Compute/GetGallery30Min;2481" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "a8cc2904-3bb4-4d15-8882-f9907bcb4335" + "31b1cbed-567d-473f-b6d0-553615d02a8d" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -462,16 +462,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "7353fbc3-881b-4109-a71a-dca1619a3aad" + "14770c38-8b27-4ce2-9382-a8ed1e9d027f" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T002042Z:7353fbc3-881b-4109-a71a-dca1619a3aad" + "WESTUS:20210330T010106Z:14770c38-8b27-4ce2-9382-a8ed1e9d027f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:20:41 GMT" + "Tue, 30 Mar 2021 01:01:06 GMT" ], "Content-Length": [ "503" @@ -483,26 +483,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery3433\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8531/providers/Microsoft.Compute/galleries/galleryPsTestGallery3433\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY3433\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery1299\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3658/providers/Microsoft.Compute/galleries/galleryPsTestGallery1299\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY1299\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8531/providers/Microsoft.Compute/galleries/galleryPsTestGallery3433?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM0MzM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3658/providers/Microsoft.Compute/galleries/galleryPsTestGallery1299?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTEyOTk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5167d7d3-f644-45ae-a7d7-89ed61e26daf" + "c7d5902c-0443-46c5-92dd-acd45308b13c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -513,16 +513,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;344,Microsoft.Compute/GetGallery30Min;2490" + "Microsoft.Compute/GetGallery3Min;341,Microsoft.Compute/GetGallery30Min;2480" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "60b1a1d1-ae68-4450-8da6-b4c4603545d3" + "52c258fb-cd4e-4e36-8485-50cdfa4b05d0" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -532,16 +532,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "fc011377-7645-456e-be85-1084b781f750" + "b9d3369c-9b49-4b70-9bce-b00925075e95" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T002042Z:fc011377-7645-456e-be85-1084b781f750" + "WESTUS:20210330T010106Z:b9d3369c-9b49-4b70-9bce-b00925075e95" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:20:41 GMT" + "Tue, 30 Mar 2021 01:01:06 GMT" ], "Content-Length": [ "503" @@ -553,25 +553,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery3433\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8531/providers/Microsoft.Compute/galleries/galleryPsTestGallery3433\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY3433\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery1299\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3658/providers/Microsoft.Compute/galleries/galleryPsTestGallery1299\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY1299\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/galleryPsTestRg8531New?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg1MzFOZXc/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg3658New?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NThOZXc/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6102e693-360c-439c-beb0-8882e7a35503" + "043a69f7-a991-4934-82c6-c4877cf82754" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ @@ -592,13 +592,13 @@ "1198" ], "x-ms-request-id": [ - "59322f21-60e7-4702-ba3e-884a1ab44393" + "8a4980f5-8994-4e88-be90-081abe4d1300" ], "x-ms-correlation-request-id": [ - "59322f21-60e7-4702-ba3e-884a1ab44393" + "8a4980f5-8994-4e88-be90-081abe4d1300" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T002042Z:59322f21-60e7-4702-ba3e-884a1ab44393" + "WESTUS:20210330T010107Z:8a4980f5-8994-4e88-be90-081abe4d1300" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -607,7 +607,7 @@ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:20:42 GMT" + "Tue, 30 Mar 2021 01:01:06 GMT" ], "Content-Length": [ "198" @@ -619,26 +619,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8531New\",\r\n \"name\": \"galleryPsTestRg8531New\",\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/galleryPsTestRg3658New\",\r\n \"name\": \"galleryPsTestRg3658New\",\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/galleryPsTestRg8531New/providers/Microsoft.Compute/galleries/galleryPsTestGallery3433New?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg1MzFOZXcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM0MzNOZXc/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3658New/providers/Microsoft.Compute/galleries/galleryPsTestGallery1299New?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NThOZXcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTEyOTlOZXc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is an updated description\"\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d9286546-46ed-48f7-aab2-0f082e02d720" + "6d7b60b0-7bb6-489b-b526-908d380764d3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -655,19 +655,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/654cecbd-91f7-44cd-a207-692475b20f85?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a5089f24-a00a-4351-80f6-14edbda3696a?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateUpdateGallery3Min;47,Microsoft.Compute/CreateUpdateGallery30Min;297" + "Microsoft.Compute/CreateUpdateGallery3Min;47,Microsoft.Compute/CreateUpdateGallery30Min;296" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "654cecbd-91f7-44cd-a207-692475b20f85" + "a5089f24-a00a-4351-80f6-14edbda3696a" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -677,19 +677,19 @@ "1197" ], "x-ms-correlation-request-id": [ - "19be7f50-4868-475e-8ad3-e874b40e76ba" + "221d11a8-e4cb-4105-bc87-4ce6a8465616" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T002052Z:19be7f50-4868-475e-8ad3-e874b40e76ba" + "WESTUS:20210330T010119Z:221d11a8-e4cb-4105-bc87-4ce6a8465616" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:20:52 GMT" + "Tue, 30 Mar 2021 01:01:18 GMT" ], "Content-Length": [ - "514" + "579" ], "Content-Type": [ "application/json; charset=utf-8" @@ -698,20 +698,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery3433New\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8531New/providers/Microsoft.Compute/galleries/galleryPsTestGallery3433New\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY3433NEW\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery1299New\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3658New/providers/Microsoft.Compute/galleries/galleryPsTestGallery1299New\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY1299NEW\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Private\"\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/654cecbd-91f7-44cd-a207-692475b20f85?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy82NTRjZWNiZC05MWY3LTQ0Y2QtYTIwNy02OTI0NzViMjBmODU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/a5089f24-a00a-4351-80f6-14edbda3696a?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hNTA4OWYyNC1hMDBhLTQzNTEtODBmNi0xNGVkYmRhMzY5NmE/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -722,16 +722,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4157" + "Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4159" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "fe65129f-9fb8-4bdc-bd5b-c921c36a4662" + "0c2114a7-9aad-47ff-af30-58fad2d0f915" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -741,16 +741,16 @@ "11994" ], "x-ms-correlation-request-id": [ - "f21c8b0a-54c6-47c2-abc2-56d4b1e0ce97" + "743cee55-35f3-4f57-9406-56179999e3a4" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T002122Z:f21c8b0a-54c6-47c2-abc2-56d4b1e0ce97" + "WESTUS:20210330T010149Z:743cee55-35f3-4f57-9406-56179999e3a4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:21:22 GMT" + "Tue, 30 Mar 2021 01:01:48 GMT" ], "Content-Length": [ "184" @@ -762,20 +762,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-30T00:20:52.5562893+00:00\",\r\n \"endTime\": \"2020-12-30T00:20:52.6500409+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"654cecbd-91f7-44cd-a207-692475b20f85\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T18:01:18.5632801-07:00\",\r\n \"endTime\": \"2021-03-29T18:01:18.6726601-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a5089f24-a00a-4351-80f6-14edbda3696a\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8531New/providers/Microsoft.Compute/galleries/galleryPsTestGallery3433New?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg1MzFOZXcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM0MzNOZXc/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3658New/providers/Microsoft.Compute/galleries/galleryPsTestGallery1299New?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NThOZXcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTEyOTlOZXc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -786,16 +786,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;337,Microsoft.Compute/GetGallery30Min;2483" + "Microsoft.Compute/GetGallery3Min;335,Microsoft.Compute/GetGallery30Min;2474" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "fd5e9d1d-1659-4ac9-a9f1-3d38b96df27a" + "a964f3ef-cebd-46c9-b25f-10cf15cbb5cc" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -805,16 +805,16 @@ "11993" ], "x-ms-correlation-request-id": [ - "3b2f9096-aa23-4609-8396-2e2d93b8e2e6" + "025db2f5-5d5f-4713-b74a-3a2dbc20f9f9" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T002122Z:3b2f9096-aa23-4609-8396-2e2d93b8e2e6" + "WESTUS:20210330T010149Z:025db2f5-5d5f-4713-b74a-3a2dbc20f9f9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:21:22 GMT" + "Tue, 30 Mar 2021 01:01:48 GMT" ], "Content-Length": [ "515" @@ -826,26 +826,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery3433New\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8531New/providers/Microsoft.Compute/galleries/galleryPsTestGallery3433New\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY3433NEW\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery1299New\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3658New/providers/Microsoft.Compute/galleries/galleryPsTestGallery1299New\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY1299NEW\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8531/providers/Microsoft.Compute/galleries?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3658/providers/Microsoft.Compute/galleries?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcz9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dc6da2ae-2035-417a-a448-8d9e0f00928b" + "e09db24f-d52c-48cb-ad1e-2a231b1d29d0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -862,10 +862,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "877122d0-7342-4620-ac6d-f1b6cd712935" + "849dd5c4-1969-4189-8e91-642de077daa0" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -875,16 +875,16 @@ "11992" ], "x-ms-correlation-request-id": [ - "91e7b90c-095c-4f65-ad81-3591d3a57577" + "dfbb3788-3c63-49ef-880d-5ba487b253e4" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T002122Z:91e7b90c-095c-4f65-ad81-3591d3a57577" + "WESTUS:20210330T010149Z:dfbb3788-3c63-49ef-880d-5ba487b253e4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:21:22 GMT" + "Tue, 30 Mar 2021 01:01:48 GMT" ], "Content-Length": [ "580" @@ -896,26 +896,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"galleryPsTestGallery3433\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/GALLERYPSTESTRG8531/providers/Microsoft.Compute/galleries/galleryPsTestGallery3433\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY3433\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"galleryPsTestGallery1299\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG3658/providers/Microsoft.Compute/galleries/galleryPsTestGallery1299\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY1299\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8531/providers/Microsoft.Compute/galleries?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3658/providers/Microsoft.Compute/galleries?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcz9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8088f9c9-7b45-4fa5-b2f5-6ca80107dd7a" + "2a5e2546-63bd-4fc5-8bba-0b3d6fef5538" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -929,13 +929,13 @@ "11986" ], "x-ms-request-id": [ - "586349e5-fcdb-4350-a406-fce7aebb9d42" + "b3afe6e6-fee0-4546-8ab4-7a6e58ecdb84" ], "x-ms-correlation-request-id": [ - "586349e5-fcdb-4350-a406-fce7aebb9d42" + "b3afe6e6-fee0-4546-8ab4-7a6e58ecdb84" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T002224Z:586349e5-fcdb-4350-a406-fce7aebb9d42" + "WESTUS:20210330T010253Z:b3afe6e6-fee0-4546-8ab4-7a6e58ecdb84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -944,7 +944,7 @@ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:22:23 GMT" + "Tue, 30 Mar 2021 01:02:53 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -960,22 +960,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/galleries?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9nYWxsZXJpZXM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/galleries?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9nYWxsZXJpZXM/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9939b597-78fc-4480-a4fa-f8d9e92ef79a" + "58ea1ac5-d5ca-4d39-aa03-33938eea8967" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -986,21 +986,32 @@ "no-cache" ], "x-ms-original-request-ids": [ - "fcfefe81-0dcc-43e5-83c7-ff3f55855c57", - "3d023b4d-570d-497d-ab19-f7bfdebba8de", - "0fedb436-d962-4058-ba23-4ed68a2ec0e6" + "ca6763b5-e6da-427d-91fb-38526e48a4c7", + "9f8f50b9-0e6f-415f-887f-ac79595943cb", + "b72ab8e3-029d-472d-bae5-771bdbeb6ec0", + "638a7679-c1c2-4b2d-839f-e47ed88d956a", + "0fad5795-386f-427d-806a-31ea852a21c6", + "401c1da3-d1a7-47f6-bf68-073587534eb9", + "7e70b158-db0b-456b-b3e2-98896b10ba06", + "74594b7d-3d97-453c-9528-c5680cf6dfeb", + "22b1f30c-fa04-4c37-8a34-233c045edbb6", + "405f42f6-4a7f-403b-b228-dfce3b0aaf5f", + "e165faf0-fae5-49e5-a2de-624bfd012801", + "2388322d-3785-4ae0-ba59-e211e75027cd", + "fdb387e3-35e4-4e2a-b84f-f8ef8324d0af", + "cadc3799-428f-4ce1-b6c7-1c692d3569f2" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], "x-ms-request-id": [ - "5ef2a83f-2e51-4af0-bb6c-ad94ee16f836" + "f857b073-aa5d-4bda-b069-694fd975abfc" ], "x-ms-correlation-request-id": [ - "5ef2a83f-2e51-4af0-bb6c-ad94ee16f836" + "f857b073-aa5d-4bda-b069-694fd975abfc" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T002123Z:5ef2a83f-2e51-4af0-bb6c-ad94ee16f836" + "WESTUS:20210330T010152Z:f857b073-aa5d-4bda-b069-694fd975abfc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1009,7 +1020,7 @@ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:21:23 GMT" + "Tue, 30 Mar 2021 01:01:51 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1018,29 +1029,29 @@ "-1" ], "Content-Length": [ - "3046" + "26620" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"galleryPsTestGallery3433\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/GALLERYPSTESTRG8531/providers/Microsoft.Compute/galleries/galleryPsTestGallery3433\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY3433\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery3433New\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/GALLERYPSTESTRG8531NEW/providers/Microsoft.Compute/galleries/galleryPsTestGallery3433New\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY3433NEW\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery5964\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/GALLERYPSTESTRG1183/providers/Microsoft.Compute/galleries/galleryPsTestGallery5964\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY5964\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery518\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/GALLERYPSTESTRG2779/providers/Microsoft.Compute/galleries/galleryPsTestGallery518\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY518\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery5159\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/GALLERYPSTESTRG7301/providers/Microsoft.Compute/galleries/galleryPsTestGallery5159\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY5159\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery6398\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/GALLERYPSTESTRG8135/providers/Microsoft.Compute/galleries/galleryPsTestGallery6398\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYPSTESTGALLERY6398\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"suhwanGallery\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/SUHWAN-RG/providers/Microsoft.Compute/galleries/suhwanGallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-SUHWANGALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"longlivedgalwcus\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYWCUS/providers/Microsoft.Compute/galleries/longlivedgalwcus\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"description\": \"gallery used for e2e testing\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEDGALWCUS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gal1-with-dash\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/SIG1/providers/Microsoft.Compute/galleries/gal1-with-dash\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"description\": \"Shared Image Gallery for my ORG\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GAL1-WITH-DASH\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"newgal\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYSCUS/providers/Microsoft.Compute/galleries/newgal\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-NEWGAL\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery1396\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG1344/providers/Microsoft.Compute/galleries/galleryPsTestGallery1396\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY1396\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery2393\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG1498/providers/Microsoft.Compute/galleries/galleryPsTestGallery2393\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY2393\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery1299\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG3658/providers/Microsoft.Compute/galleries/galleryPsTestGallery1299\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY1299\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery1299New\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG3658NEW/providers/Microsoft.Compute/galleries/galleryPsTestGallery1299New\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is an updated description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY1299NEW\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery7877\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG3904/providers/Microsoft.Compute/galleries/galleryPsTestGallery7877\",\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-GALLERYPSTESTGALLERY7877\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery1060\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG4931/providers/Microsoft.Compute/galleries/galleryPsTestGallery1060\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY1060\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery4214\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG5385/providers/Microsoft.Compute/galleries/galleryPsTestGallery4214\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY4214\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery8723\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG5403/providers/Microsoft.Compute/galleries/galleryPsTestGallery8723\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8723\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery6594\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG6583/providers/Microsoft.Compute/galleries/galleryPsTestGallery6594\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY6594\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery1139\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG8162/providers/Microsoft.Compute/galleries/galleryPsTestGallery1139\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY1139\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery9002\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG861/providers/Microsoft.Compute/galleries/galleryPsTestGallery9002\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY9002\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery5754\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG9127/providers/Microsoft.Compute/galleries/galleryPsTestGallery5754\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY5754\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery2082\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG955/providers/Microsoft.Compute/galleries/galleryPsTestGallery2082\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY2082\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery8748\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG9611/providers/Microsoft.Compute/galleries/galleryPsTestGallery8748\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8748\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery5452\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG2221/providers/Microsoft.Compute/galleries/galleryPsTestGallery5452\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY5452\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery2813\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG2383/providers/Microsoft.Compute/galleries/galleryPsTestGallery2813\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY2813\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery1535\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG2561/providers/Microsoft.Compute/galleries/galleryPsTestGallery1535\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY1535\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery2290\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG3320/providers/Microsoft.Compute/galleries/galleryPsTestGallery2290\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY2290\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery7072\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG3950/providers/Microsoft.Compute/galleries/galleryPsTestGallery7072\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY7072\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery6097\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG5384/providers/Microsoft.Compute/galleries/galleryPsTestGallery6097\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY6097\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery6736\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG5735/providers/Microsoft.Compute/galleries/galleryPsTestGallery6736\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY6736\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery2697\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG5937/providers/Microsoft.Compute/galleries/galleryPsTestGallery2697\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY2697\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery4873\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG7379/providers/Microsoft.Compute/galleries/galleryPsTestGallery4873\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY4873\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery5395\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG7539/providers/Microsoft.Compute/galleries/galleryPsTestGallery5395\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY5395\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery9652\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG768/providers/Microsoft.Compute/galleries/galleryPsTestGallery9652\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY9652\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery4074\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG7763/providers/Microsoft.Compute/galleries/galleryPsTestGallery4074\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY4074\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery8638\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG7993/providers/Microsoft.Compute/galleries/galleryPsTestGallery8638\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8638\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery9035\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG8001/providers/Microsoft.Compute/galleries/galleryPsTestGallery9035\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY9035\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery5554\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG8037/providers/Microsoft.Compute/galleries/galleryPsTestGallery5554\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY5554\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery8307\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG8405/providers/Microsoft.Compute/galleries/galleryPsTestGallery8307\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8307\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery9682\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG8649/providers/Microsoft.Compute/galleries/galleryPsTestGallery9682\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY9682\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery8732\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG9198/providers/Microsoft.Compute/galleries/galleryPsTestGallery8732\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8732\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery3722\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG9909/providers/Microsoft.Compute/galleries/galleryPsTestGallery3722\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY3722\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery7310\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG9915/providers/Microsoft.Compute/galleries/galleryPsTestGallery7310\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY7310\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"sigtiptest\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYWESTUS/providers/Microsoft.Compute/galleries/sigtiptest\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-SIGTIPTEST\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"sig_test_aus\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/SIG_TEST/providers/Microsoft.Compute/galleries/sig_test_aus\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-SIG_TEST_AUS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"myGalleryHaHa20191004\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/TEMPRG2/providers/Microsoft.Compute/galleries/myGalleryHaHa20191004\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"description\": \"This is the gallery description.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-MYGALLERYHAHA20191004\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"DiskLonglivedGallerycanadacentral\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDSIGDISKRGINCANADACENTRAL/providers/Microsoft.Compute/galleries/DiskLonglivedGallerycanadacentral\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-DISKLONGLIVEDGALLERYCANADACENTRAL\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"disklonglivedgalleryIncanadacentral\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGRUNNINGRG-CANADACENTRAL/providers/Microsoft.Compute/galleries/disklonglivedgalleryIncanadacentral\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-DISKLONGLIVEDGALLERYINCANADACENTRAL\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"disklonglivedgalleryInukwest\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGRUNNINGRG-UKWEST/providers/Microsoft.Compute/galleries/disklonglivedgalleryInukwest\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"ukwest\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-DISKLONGLIVEDGALLERYINUKWEST\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"grlianTestGallery\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GRLIANRG/providers/Microsoft.Compute/galleries/grlianTestGallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GRLIANTESTGALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"longlivedgallery\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYAZURESUPPORTRG/providers/Microsoft.Compute/galleries/longlivedgallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"description\": \"My Private Gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEDGALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"disklonglivedgalleryIncanadaeast\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGRUNNINGRG-CANADAEAST/providers/Microsoft.Compute/galleries/disklonglivedgalleryIncanadaeast\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-DISKLONGLIVEDGALLERYINCANADAEAST\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"disklonglivedgalleryInaustraliasoutheast\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGRUNNINGRG-AUSTRALIASOUTHEAST/providers/Microsoft.Compute/galleries/disklonglivedgalleryInaustraliasoutheast\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-DISKLONGLIVEDGALLERYINAUSTRALIASOUTHEAST\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryruwvgxcnsire\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-3-29-2021-PRODUAECENTRAL/providers/Microsoft.Compute/galleries/galleryruwvgxcnsire\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"uaecentral\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYRUWVGXCNSIRE\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryjqdethyiqazk\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/CAPS-9-22-2020-PRODUAECENTRAL/providers/Microsoft.Compute/galleries/galleryjqdethyiqazk\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"uaecentral\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYJQDETHYIQAZK\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery2975\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG3906/providers/Microsoft.Compute/galleries/galleryPsTestGallery2975\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY2975\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"galleryPsTestGallery8333\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GALLERYPSTESTRG9881/providers/Microsoft.Compute/galleries/galleryPsTestGallery8333\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY8333\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"longlivedgal\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERY/providers/Microsoft.Compute/galleries/longlivedgal\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"properties\": {\r\n \"description\": \"gallery used for e2e testing\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEDGAL\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"mygalleryForCrp97f7\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERY/providers/Microsoft.Compute/galleries/mygalleryForCrp97f7\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-MYGALLERYFORCRP97F7\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"mygalleryForCrpEastus2euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERY/providers/Microsoft.Compute/galleries/mygalleryForCrpEastus2euap\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-MYGALLERYFORCRPEASTUS2EUAP\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"tireganGuestOSImage\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERY/providers/Microsoft.Compute/galleries/tireganGuestOSImage\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-TIREGANGUESTOSIMAGE\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"TVMTestGallery\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDTRUSTEDVMRG/providers/Microsoft.Compute/galleries/TVMTestGallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"description\": \"TrustedVM gallery test in Canary.\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-TVMTESTGALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"gallery1euap\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/RGEUAP/providers/Microsoft.Compute/galleries/gallery1euap\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"EastUS2EUAP\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERY1EUAP\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"tempnewgallery\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/TEMPNEWRG/providers/Microsoft.Compute/galleries/tempnewgallery\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-TEMPNEWGALLERY\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"grlianTestGalleryUniqueName\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GRLIANRG/providers/Microsoft.Compute/galleries/grlianTestGalleryUniqueName\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"description\": \"My Private Gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GRLIANTESTGALLERYUNIQUENAME\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"grlianTestGalleryUniqueNameT15\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/GRLIANRG/providers/Microsoft.Compute/galleries/grlianTestGalleryUniqueNameT15\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"description\": \"My Private Gallery\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GRLIANTESTGALLERYUNIQUENAMET15\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"longlivegalleryfojnvv\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/LONGLIVEDGALLERYCENTRALUSEUAP/providers/Microsoft.Compute/galleries/longlivegalleryfojnvv\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"description\": \"gallery scenario test\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"canarydrillsig\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/SIGCANARYDRDRILL/providers/Microsoft.Compute/galleries/canarydrillsig\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-CANARYDRILLSIG\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8531/providers/Microsoft.Compute/galleries/galleryPsTestGallery3433?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg1MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM0MzM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3658/providers/Microsoft.Compute/galleries/galleryPsTestGallery1299?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTEyOTk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d0e8b265-6969-4eb8-aec8-365052750ce5" + "b88dbf72-8b10-4878-87a1-3c0342e9af40" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1051,22 +1062,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/c6a54e8c-1c1b-4a6b-be92-5bbe96b1540f?monitor=true&api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/d8eda5ed-05eb-4a0a-a15b-5095642ddbbf?monitor=true&api-version=2020-09-30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/c6a54e8c-1c1b-4a6b-be92-5bbe96b1540f?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/d8eda5ed-05eb-4a0a-a15b-5095642ddbbf?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;298" + "Microsoft.Compute/DeleteGallery3Min;48,Microsoft.Compute/DeleteGallery30Min;898" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "c6a54e8c-1c1b-4a6b-be92-5bbe96b1540f" + "d8eda5ed-05eb-4a0a-a15b-5095642ddbbf" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1076,16 +1087,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "d861afbf-179c-4aa4-87f8-960ded1416ff" + "3a37fb9b-d110-495f-bdf9-2e08275a19ce" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T002123Z:d861afbf-179c-4aa4-87f8-960ded1416ff" + "WESTUS:20210330T010152Z:3a37fb9b-d110-495f-bdf9-2e08275a19ce" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:21:23 GMT" + "Tue, 30 Mar 2021 01:01:52 GMT" ], "Expires": [ "-1" @@ -1098,16 +1109,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/c6a54e8c-1c1b-4a6b-be92-5bbe96b1540f?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9jNmE1NGU4Yy0xYzFiLTRhNmItYmU5Mi01YmJlOTZiMTU0MGY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/d8eda5ed-05eb-4a0a-a15b-5095642ddbbf?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9kOGVkYTVlZC0wNWViLTRhMGEtYTE1Yi01MDk1NjQyZGRiYmY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1118,16 +1129,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4155" + "Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4157" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "a8cccd5c-4533-457a-8ec7-28a44bec8119" + "9b129d34-e176-41b4-b75d-ed4a110046fc" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1137,16 +1148,16 @@ "11990" ], "x-ms-correlation-request-id": [ - "1b8c0d47-f9e2-43d1-80cd-779e868a4445" + "a990651b-04fc-4ce3-8219-cfd828e71760" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T002153Z:1b8c0d47-f9e2-43d1-80cd-779e868a4445" + "WESTUS:20210330T010222Z:a990651b-04fc-4ce3-8219-cfd828e71760" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:21:53 GMT" + "Tue, 30 Mar 2021 01:02:22 GMT" ], "Content-Length": [ "184" @@ -1158,20 +1169,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-30T00:21:23.9002479+00:00\",\r\n \"endTime\": \"2020-12-30T00:21:24.0096127+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c6a54e8c-1c1b-4a6b-be92-5bbe96b1540f\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T18:01:52.7212346-07:00\",\r\n \"endTime\": \"2021-03-29T18:01:52.8462436-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d8eda5ed-05eb-4a0a-a15b-5095642ddbbf\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/c6a54e8c-1c1b-4a6b-be92-5bbe96b1540f?monitor=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9jNmE1NGU4Yy0xYzFiLTRhNmItYmU5Mi01YmJlOTZiMTU0MGY/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/d8eda5ed-05eb-4a0a-a15b-5095642ddbbf?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9kOGVkYTVlZC0wNWViLTRhMGEtYTE1Yi01MDk1NjQyZGRiYmY/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1182,16 +1193,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4154" + "Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4156" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "c3009df8-2a66-4c8d-859a-3dcc0d60a6c1" + "40ebfb8f-e99a-4c7c-989f-97e1e45b57c6" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1201,16 +1212,16 @@ "11989" ], "x-ms-correlation-request-id": [ - "723d7885-f359-4529-97ad-4409a8dd67c7" + "97c47cbf-1562-41de-8f84-4bb5bc48e131" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T002153Z:723d7885-f359-4529-97ad-4409a8dd67c7" + "WESTUS:20210330T010223Z:97c47cbf-1562-41de-8f84-4bb5bc48e131" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:21:53 GMT" + "Tue, 30 Mar 2021 01:02:23 GMT" ], "Expires": [ "-1" @@ -1223,22 +1234,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/galleryPsTestRg8531New/providers/Microsoft.Compute/galleries/galleryPsTestGallery3433New?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzg1MzFOZXcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTM0MzNOZXc/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3658New/providers/Microsoft.Compute/galleries/galleryPsTestGallery1299New?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM2NThOZXcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTEyOTlOZXc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "80b94f5d-279a-4280-9a09-20bc79c87cda" + "f029e0c0-74e5-43cc-b957-bb7db6637d25" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1249,22 +1260,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/e051217b-e180-40c2-8b16-64d66ada2776?monitor=true&api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/be80655e-9c41-4c2f-8a34-8731e27659f8?monitor=true&api-version=2020-09-30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/e051217b-e180-40c2-8b16-64d66ada2776?api-version=2019-12-01" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/be80655e-9c41-4c2f-8a34-8731e27659f8?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/DeleteGallery3Min;48,Microsoft.Compute/DeleteGallery30Min;297" + "Microsoft.Compute/DeleteGallery3Min;47,Microsoft.Compute/DeleteGallery30Min;897" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "e051217b-e180-40c2-8b16-64d66ada2776" + "be80655e-9c41-4c2f-8a34-8731e27659f8" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1274,16 +1285,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "b8903dd0-2537-4289-8a37-a28f730a5a3a" + "57413bf0-aaa7-423b-9765-4047c83ac1d0" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T002154Z:b8903dd0-2537-4289-8a37-a28f730a5a3a" + "WESTUS:20210330T010223Z:57413bf0-aaa7-423b-9765-4047c83ac1d0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:21:53 GMT" + "Tue, 30 Mar 2021 01:02:23 GMT" ], "Expires": [ "-1" @@ -1296,16 +1307,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/e051217b-e180-40c2-8b16-64d66ada2776?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lMDUxMjE3Yi1lMTgwLTQwYzItOGIxNi02NGQ2NmFkYTI3NzY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/be80655e-9c41-4c2f-8a34-8731e27659f8?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iZTgwNjU1ZS05YzQxLTRjMmYtOGEzNC04NzMxZTI3NjU5Zjg/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1316,16 +1327,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4152" + "Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4154" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "3bdce56d-ba7e-49fc-8a48-d512e2b49dca" + "05e32e41-ba21-41a1-8531-fa993dd9a1a4" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1335,19 +1346,19 @@ "11988" ], "x-ms-correlation-request-id": [ - "e215aab5-35d2-438a-820d-d910fb1c5ff4" + "8c1949c8-c7a4-44e8-9c32-bde239ba9dd7" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T002224Z:e215aab5-35d2-438a-820d-d910fb1c5ff4" + "WESTUS:20210330T010253Z:8c1949c8-c7a4-44e8-9c32-bde239ba9dd7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:22:23 GMT" + "Tue, 30 Mar 2021 01:02:53 GMT" ], "Content-Length": [ - "184" + "183" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1356,20 +1367,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-30T00:21:54.0410544+00:00\",\r\n \"endTime\": \"2020-12-30T00:21:54.1504279+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e051217b-e180-40c2-8b16-64d66ada2776\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-03-29T18:02:23.332131-07:00\",\r\n \"endTime\": \"2021-03-29T18:02:23.4571399-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"be80655e-9c41-4c2f-8a34-8731e27659f8\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus2/capsOperations/e051217b-e180-40c2-8b16-64d66ada2776?monitor=true&api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lMDUxMjE3Yi1lMTgwLTQwYzItOGIxNi02NGQ2NmFkYTI3NzY/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/be80655e-9c41-4c2f-8a34-8731e27659f8?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iZTgwNjU1ZS05YzQxLTRjMmYtOGEzNC04NzMxZTI3NjU5Zjg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29812.02", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/39.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1380,16 +1391,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4151" + "Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4153" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253,a129388d-91d6-4310-81e1-d02ce40a61ca_132468812189121253" + "1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592,1dd04696-ef54-4aec-bada-944b3b397491_132529239451466592" ], "x-ms-request-id": [ - "1874ca92-5bef-431a-b0ab-a2a07f3f1e32" + "6f5ba58a-e23f-47ef-90c7-87c09b915b30" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1399,16 +1410,16 @@ "11987" ], "x-ms-correlation-request-id": [ - "042fdbb4-fa6f-49ca-a6d7-8e26d18513d9" + "1d846107-8c9d-4b04-b23e-8a497fe2408e" ], "x-ms-routing-request-id": [ - "EASTUS2:20201230T002224Z:042fdbb4-fa6f-49ca-a6d7-8e26d18513d9" + "WESTUS:20210330T010253Z:1d846107-8c9d-4b04-b23e-8a497fe2408e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 30 Dec 2020 00:22:23 GMT" + "Tue, 30 Mar 2021 01:02:53 GMT" ], "Expires": [ "-1" @@ -1423,11 +1434,11 @@ ], "Names": { "Gallery_CRUD_Tests": [ - "galleryPsTestRg8531", - "galleryPsTestGallery3433" + "galleryPsTestRg3658", + "galleryPsTestGallery1299" ] }, "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_WithSharingProfile_CRUD_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_WithSharingProfile_CRUD_Tests.json new file mode 100644 index 000000000000..7ddf8841632e --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_WithSharingProfile_CRUD_Tests.json @@ -0,0 +1,1032 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg3878?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM4Nzg/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "79dd8723-5f81-47fd-b52c-e94943fbfcea" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "58422333-f947-4b7a-b8ff-2bce5821a96a" + ], + "x-ms-correlation-request-id": [ + "58422333-f947-4b7a-b8ff-2bce5821a96a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201203T002509Z:58422333-f947-4b7a-b8ff-2bce5821a96a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 03 Dec 2020 00:25:08 GMT" + ], + "Content-Length": [ + "192" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3878\",\r\n \"name\": \"galleryPsTestRg3878\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3878/providers/Microsoft.Compute/galleries/galleryPsTestGallery5549?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM4NzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU1NDk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "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": [ + "8dff7fc2-e778-4059-87b1-7bc46f9a8349" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "177" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/b7b9dd18-c179-419a-84b8-559ab6658dbd?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973,1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973" + ], + "x-ms-request-id": [ + "b7b9dd18-c179-419a-84b8-559ab6658dbd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "c53a1b22-91b8-4d7c-b066-0e1dd5245481" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201203T002512Z:c53a1b22-91b8-4d7c-b066-0e1dd5245481" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 03 Dec 2020 00:25:11 GMT" + ], + "Content-Length": [ + "572" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery5549\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3878/providers/Microsoft.Compute/galleries/galleryPsTestGallery5549\",\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-GALLERYPSTESTGALLERY5549\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/b7b9dd18-c179-419a-84b8-559ab6658dbd?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iN2I5ZGQxOC1jMTc5LTQxOWEtODRiOC01NTlhYjY2NThkYmQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4198" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973,1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973" + ], + "x-ms-request-id": [ + "412a921a-20e6-4148-ae87-29deb3db9725" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "14eba504-c086-41c1-9d56-93e0475d809c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201203T002542Z:14eba504-c086-41c1-9d56-93e0475d809c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 03 Dec 2020 00:25:41 GMT" + ], + "Content-Length": [ + "183" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-12-02T16:25:11.683585-08:00\",\r\n \"endTime\": \"2020-12-02T16:25:11.9179662-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b7b9dd18-c179-419a-84b8-559ab6658dbd\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3878/providers/Microsoft.Compute/galleries/galleryPsTestGallery5549?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM4NzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU1NDk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2496" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973,1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973" + ], + "x-ms-request-id": [ + "c116d269-0575-4695-9a00-6823c5a8a5b8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "559cb721-3679-4d03-8784-5321b7ea4c34" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201203T002542Z:559cb721-3679-4d03-8784-5321b7ea4c34" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 03 Dec 2020 00:25:41 GMT" + ], + "Content-Length": [ + "509" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery5549\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3878/providers/Microsoft.Compute/galleries/galleryPsTestGallery5549\",\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-GALLERYPSTESTGALLERY5549\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3878/providers/Microsoft.Compute/galleries/galleryPsTestGallery5549?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM4NzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU1NDk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "20708dc3-4199-4d0c-96d9-bb6f70b80826" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;345,Microsoft.Compute/GetGallery30Min;2495" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973,1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973" + ], + "x-ms-request-id": [ + "88977b02-73a9-4ce8-93b1-ca3d64d69893" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "f7d250f1-2f37-4bb3-bb24-0dccbd63b40c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201203T002543Z:f7d250f1-2f37-4bb3-bb24-0dccbd63b40c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 03 Dec 2020 00:25:42 GMT" + ], + "Content-Length": [ + "509" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery5549\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3878/providers/Microsoft.Compute/galleries/galleryPsTestGallery5549\",\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-GALLERYPSTESTGALLERY5549\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3878/providers/Microsoft.Compute/galleries/galleryPsTestGallery5549/share?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM4NzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU1NDkvc2hhcmU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "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": [ + "45e6b421-06a9-4762-83b2-ba3054d57e87" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "287" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/885f35d6-2e73-49f2-a15e-01fea176e42a?monitor=true&api-version=2020-09-30" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/885f35d6-2e73-49f2-a15e-01fea176e42a?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PostShareGallery3Min;9,Microsoft.Compute/PostShareGallery30Min;59" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973,1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973" + ], + "x-ms-request-id": [ + "885f35d6-2e73-49f2-a15e-01fea176e42a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "7d5d0dcc-162a-4de9-938d-09594ccea39b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201203T002543Z:7d5d0dcc-162a-4de9-938d-09594ccea39b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 03 Dec 2020 00:25:42 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3878/providers/Microsoft.Compute/galleries/galleryPsTestGallery5549/share?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM4NzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU1NDkvc2hhcmU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"operationType\": \"ResetToPrivate\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1184e4a5-92fa-4e79-8389-3fb2e9f6f6d7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "41" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/ed97ea1b-21ed-4cf3-9a91-48e4b913d272?monitor=true&api-version=2020-09-30" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/ed97ea1b-21ed-4cf3-9a91-48e4b913d272?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PostShareGallery3Min;8,Microsoft.Compute/PostShareGallery30Min;58" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973,1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973" + ], + "x-ms-request-id": [ + "ed97ea1b-21ed-4cf3-9a91-48e4b913d272" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "92b68091-0707-4c53-8f48-1aab5f746550" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201203T002614Z:92b68091-0707-4c53-8f48-1aab5f746550" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 03 Dec 2020 00:26:14 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/885f35d6-2e73-49f2-a15e-01fea176e42a?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy84ODVmMzVkNi0yZTczLTQ5ZjItYTE1ZS0wMWZlYTE3NmU0MmE/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4196" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973,1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973" + ], + "x-ms-request-id": [ + "a0aa0668-dcbd-45ea-a7e9-0218ce99b82e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "a86448ba-77dc-4786-895b-a1a044e999d7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201203T002613Z:a86448ba-77dc-4786-895b-a1a044e999d7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 03 Dec 2020 00:26:13 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-12-02T16:25:43.1369075-08:00\",\r\n \"endTime\": \"2020-12-02T16:25:44.2775399-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"885f35d6-2e73-49f2-a15e-01fea176e42a\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/885f35d6-2e73-49f2-a15e-01fea176e42a?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy84ODVmMzVkNi0yZTczLTQ5ZjItYTE1ZS0wMWZlYTE3NmU0MmE/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4195" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973,1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973" + ], + "x-ms-request-id": [ + "ba85574a-3e12-4b85-9917-66187ceccd3a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "78ef128d-abb9-4fa4-851f-9e046b127ace" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201203T002613Z:78ef128d-abb9-4fa4-851f-9e046b127ace" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 03 Dec 2020 00:26:13 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3878/providers/Microsoft.Compute/galleries/galleryPsTestGallery5549?api-version=2020-09-30&$select=Permissions", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM4NzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU1NDk/YXBpLXZlcnNpb249MjAyMC0wOS0zMCYkc2VsZWN0PVBlcm1pc3Npb25z", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1ca7e966-67db-45e4-b376-51634e096e79" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;344,Microsoft.Compute/GetGallery30Min;2494" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973,1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973" + ], + "x-ms-request-id": [ + "6c16cfaf-6bfa-4bba-9f0e-781d209bfc26" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "38d98d9d-e055-4510-91c6-3c713ce8f4f8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201203T002613Z:38d98d9d-e055-4510-91c6-3c713ce8f4f8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 03 Dec 2020 00:26:13 GMT" + ], + "Content-Length": [ + "886" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery5549\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3878/providers/Microsoft.Compute/galleries/galleryPsTestGallery5549\",\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-GALLERYPSTESTGALLERY5549\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\",\r\n \"groups\": [\r\n {\r\n \"type\": \"Subscriptions\",\r\n \"ids\": [\r\n \"640c5810-13bf-4b82-b94d-f38c2565e3bc\"\r\n ]\r\n },\r\n {\r\n \"type\": \"AADTenants\",\r\n \"ids\": [\r\n \"583d66a9-0041-4999-8838-75baece101d5\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/ed97ea1b-21ed-4cf3-9a91-48e4b913d272?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lZDk3ZWExYi0yMWVkLTRjZjMtOWE5MS00OGU0YjkxM2QyNzI/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4193" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973,1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973" + ], + "x-ms-request-id": [ + "2c94c83b-d3b9-4d34-a220-6f6d0fcc414a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "3bacf833-cb21-41de-939e-0c3d1df34bc7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201203T002644Z:3bacf833-cb21-41de-939e-0c3d1df34bc7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 03 Dec 2020 00:26:44 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-12-02T16:26:13.9496084-08:00\",\r\n \"endTime\": \"2020-12-02T16:26:14.2777352-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ed97ea1b-21ed-4cf3-9a91-48e4b913d272\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/ed97ea1b-21ed-4cf3-9a91-48e4b913d272?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lZDk3ZWExYi0yMWVkLTRjZjMtOWE5MS00OGU0YjkxM2QyNzI/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4192" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973,1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973" + ], + "x-ms-request-id": [ + "a999defd-c90e-479b-97a2-396dc763732b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "20a46e84-2b08-4186-8a9e-7ef888bbd157" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201203T002644Z:20a46e84-2b08-4186-8a9e-7ef888bbd157" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 03 Dec 2020 00:26:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3878/providers/Microsoft.Compute/galleries/galleryPsTestGallery5549?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM4NzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU1NDk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f58699ed-9321-4818-a19d-0ee74d0fdc77" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/aef5f068-322d-4cf4-b438-585f91a0d4c7?monitor=true&api-version=2020-09-30" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/aef5f068-322d-4cf4-b438-585f91a0d4c7?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/DeleteGallery3Min;48,Microsoft.Compute/DeleteGallery30Min;259" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973,1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973" + ], + "x-ms-request-id": [ + "aef5f068-322d-4cf4-b438-585f91a0d4c7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "1dc16209-f65e-4f3f-b250-a12b1da6c4e2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201203T002645Z:1dc16209-f65e-4f3f-b250-a12b1da6c4e2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 03 Dec 2020 00:26:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/aef5f068-322d-4cf4-b438-585f91a0d4c7?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hZWY1ZjA2OC0zMjJkLTRjZjQtYjQzOC01ODVmOTFhMGQ0Yzc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4190" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973,1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973" + ], + "x-ms-request-id": [ + "9305ed43-cace-45e7-84c5-7d2d806fd93b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "082ea0db-4505-40b9-8310-a9aca865ff0c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201203T002715Z:082ea0db-4505-40b9-8310-a9aca865ff0c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 03 Dec 2020 00:27:14 GMT" + ], + "Content-Length": [ + "183" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2020-12-02T16:26:44.9810527-08:00\",\r\n \"endTime\": \"2020-12-02T16:26:45.090428-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"aef5f068-322d-4cf4-b438-585f91a0d4c7\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/aef5f068-322d-4cf4-b438-585f91a0d4c7?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hZWY1ZjA2OC0zMjJkLTRjZjQtYjQzOC01ODVmOTFhMGQ0Yzc/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4189" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973,1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973" + ], + "x-ms-request-id": [ + "e0a6b2b0-3748-4509-a41b-f6a034a4e5e0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "f3c87a89-1298-4cb3-8307-6535787d00ac" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201203T002715Z:f3c87a89-1298-4cb3-8307-6535787d00ac" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 03 Dec 2020 00:27:14 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Gallery_WithSharingProfile_CRUD_Tests": [ + "galleryPsTestRg3878", + "galleryPsTestGallery5549" + ] + }, + "Variables": { + "SubscriptionId": "97f78232-382b-46a7-8a72-964d692c4f3f" + } +} \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/SharedGalleryTests/SharedGalleryImageVersion_GetAndList_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/SharedGalleryTests/SharedGalleryImageVersion_GetAndList_Tests.json new file mode 100644 index 000000000000..fbac5862023e --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/SharedGalleryTests/SharedGalleryImageVersion_GetAndList_Tests.json @@ -0,0 +1,276 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/images/jmaesscc/versions/1.0.0?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlYvaW1hZ2VzL2ptYWVzc2NjL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9dc34f5e-5762-419b-952a-ee0c0023e499" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132558183756113295" + ], + "x-ms-request-id": [ + "dbda6703-94a6-4488-8b8d-527c7f657e1b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "0cceb714-d5dc-4475-99f2-7074c80ac63c" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210208T190000Z:0cceb714-d5dc-4475-99f2-7074c80ac63c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 08 Feb 2021 19:00:00 GMT" + ], + "Content-Length": [ + "287" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"identifier\": {\r\n \"uniqueId\": \"/SharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/Images/jmaesscc/Versions/1.0.0\"\r\n },\r\n \"properties\": {\r\n \"publishedDate\": \"2021-01-27T20:14:24.4218083-08:00\"\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"1.0.0\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/images/jmaesscc/versions?api-version=2020-09-30&sharedTo=tenant", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlYvaW1hZ2VzL2ptYWVzc2NjL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjAtMDktMzAmc2hhcmVkVG89dGVuYW50", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "10c6d07b-5fa0-452c-a886-92f7aaa66346" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132558183756113295" + ], + "x-ms-request-id": [ + "d92650ad-a01e-4baa-abd8-f72a367a20ff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "29a04dda-4c08-49a6-88eb-52e481e8189e" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210208T190000Z:29a04dda-4c08-49a6-88eb-52e481e8189e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 08 Feb 2021 19:00:00 GMT" + ], + "Content-Length": [ + "352" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"identifier\": {\r\n \"uniqueId\": \"/SharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/Images/jmaesscc/Versions/1.0.0\"\r\n },\r\n \"properties\": {\r\n \"publishedDate\": \"2021-01-27T20:14:24.4218083-08:00\"\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"1.0.0\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/images/jmaesscc/versions?api-version=2020-09-30&sharedTo=tenant", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlYvaW1hZ2VzL2ptYWVzc2NjL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjAtMDktMzAmc2hhcmVkVG89dGVuYW50", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0c1af5f7-562a-4b94-a8f3-a72336d7a296" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132558183756113295" + ], + "x-ms-request-id": [ + "43903a3f-a8e7-47ac-a429-83e3f436b2e3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "7d825ebc-d4d7-4853-91ac-9a06676d3711" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210208T190000Z:7d825ebc-d4d7-4853-91ac-9a06676d3711" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 08 Feb 2021 19:00:00 GMT" + ], + "Content-Length": [ + "352" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"identifier\": {\r\n \"uniqueId\": \"/SharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/Images/jmaesscc/Versions/1.0.0\"\r\n },\r\n \"properties\": {\r\n \"publishedDate\": \"2021-01-27T20:14:24.4218083-08:00\"\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"1.0.0\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/images/jmaesscc/versions?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlYvaW1hZ2VzL2ptYWVzc2NjL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9ad9b503-5806-4397-b83e-fcee84fa2aea" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132558183756113295" + ], + "x-ms-request-id": [ + "6b6df937-def2-4c9a-89bb-9ee6f3b0cad3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "bf8894d5-943c-4eff-ad33-6bbef041bab6" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210208T190000Z:bf8894d5-943c-4eff-ad33-6bbef041bab6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 08 Feb 2021 19:00:00 GMT" + ], + "Content-Length": [ + "352" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"identifier\": {\r\n \"uniqueId\": \"/SharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/Images/jmaesscc/Versions/1.0.0\"\r\n },\r\n \"properties\": {\r\n \"publishedDate\": \"2021-01-27T20:14:24.4218083-08:00\"\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"1.0.0\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "97f78232-382b-46a7-8a72-964d692c4f3f" + } +} \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/SharedGalleryTests/SharedGalleryImage_GetAndList_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/SharedGalleryTests/SharedGalleryImage_GetAndList_Tests.json new file mode 100644 index 000000000000..2c516bed1e9e --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/SharedGalleryTests/SharedGalleryImage_GetAndList_Tests.json @@ -0,0 +1,276 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/images/jmaesscc?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlYvaW1hZ2VzL2ptYWVzc2NjP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "11200ebb-e800-49c2-8c6a-67189e594429" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132558183756113295" + ], + "x-ms-request-id": [ + "4afcf93c-8fe5-47a0-b3b1-95eef5f6402f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "a9714df4-9391-4c93-ad21-5019579283ff" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210208T185953Z:a9714df4-9391-4c93-ad21-5019579283ff" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 08 Feb 2021 18:59:53 GMT" + ], + "Content-Length": [ + "448" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"identifier\": {\r\n \"uniqueId\": \"/SharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/Images/jmaesscc\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"GalleryPub\",\r\n \"offer\": \"GalleryOffer\",\r\n \"sku\": \"GallerySku\"\r\n },\r\n \"recommended\": {},\r\n \"hyperVGeneration\": \"V1\"\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"jmaesscc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/images?api-version=2020-09-30&sharedTo=tenant", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlYvaW1hZ2VzP2FwaS12ZXJzaW9uPTIwMjAtMDktMzAmc2hhcmVkVG89dGVuYW50", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2b32e804-b423-4051-b793-4680a9984331" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132558183756113295" + ], + "x-ms-request-id": [ + "cacf2eff-2372-4b51-8018-3942eaf322e9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "af163c97-9aba-4532-b260-3d9a91e05cce" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210208T185954Z:af163c97-9aba-4532-b260-3d9a91e05cce" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 08 Feb 2021 18:59:53 GMT" + ], + "Content-Length": [ + "545" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"identifier\": {\r\n \"uniqueId\": \"/SharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/Images/jmaesscc\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"GalleryPub\",\r\n \"offer\": \"GalleryOffer\",\r\n \"sku\": \"GallerySku\"\r\n },\r\n \"recommended\": {},\r\n \"hyperVGeneration\": \"V1\"\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"jmaesscc\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/images?api-version=2020-09-30&sharedTo=tenant", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlYvaW1hZ2VzP2FwaS12ZXJzaW9uPTIwMjAtMDktMzAmc2hhcmVkVG89dGVuYW50", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e8468d16-da1a-4c1f-869c-4e64816804af" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132558183756113295" + ], + "x-ms-request-id": [ + "4df2d3fa-b1a7-4151-bc4a-9f5259206194" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "4e9d1274-60c8-413c-ab9e-812b6d954ad8" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210208T185954Z:4e9d1274-60c8-413c-ab9e-812b6d954ad8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 08 Feb 2021 18:59:53 GMT" + ], + "Content-Length": [ + "545" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"identifier\": {\r\n \"uniqueId\": \"/SharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/Images/jmaesscc\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"GalleryPub\",\r\n \"offer\": \"GalleryOffer\",\r\n \"sku\": \"GallerySku\"\r\n },\r\n \"recommended\": {},\r\n \"hyperVGeneration\": \"V1\"\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"jmaesscc\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/images?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlYvaW1hZ2VzP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "210e3965-0922-4e54-8324-5a8e06e3a0b0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132558183756113295" + ], + "x-ms-request-id": [ + "70a1fafd-d7d4-41a8-b9db-bcfaa271fa06" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "db1dd5ca-5acc-42c1-8065-13c116650d10" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210208T185954Z:db1dd5ca-5acc-42c1-8065-13c116650d10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 08 Feb 2021 18:59:53 GMT" + ], + "Content-Length": [ + "545" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"identifier\": {\r\n \"uniqueId\": \"/SharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV/Images/jmaesscc\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\": {\r\n \"publisher\": \"GalleryPub\",\r\n \"offer\": \"GalleryOffer\",\r\n \"sku\": \"GallerySku\"\r\n },\r\n \"recommended\": {},\r\n \"hyperVGeneration\": \"V1\"\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"jmaesscc\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "97f78232-382b-46a7-8a72-964d692c4f3f" + } +} \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/SharedGalleryTests/SharedGallery_GetAndList_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/SharedGalleryTests/SharedGallery_GetAndList_Tests.json new file mode 100644 index 000000000000..b82ce1498fc4 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/SharedGalleryTests/SharedGallery_GetAndList_Tests.json @@ -0,0 +1,276 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzLzk3Zjc4MjMyLTM4MmItNDZhNy04YTcyLTk2NGQ2OTJjNGYzZi1MT05HTElWRUdBTExFUllGT0pOVlY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "59b73000-4bc9-4b96-a329-37e9ecdd4e75" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "929b4a17-2677-4b76-97c2-2f5d5b05d4b0_132558183756113295" + ], + "x-ms-request-id": [ + "68af347c-916d-4699-80fd-0c2a96db2b9b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "5871fc9e-941d-4ad4-9b15-fe4261cd8473" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210208T185924Z:5871fc9e-941d-4ad4-9b15-fe4261cd8473" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 08 Feb 2021 18:59:24 GMT" + ], + "Content-Length": [ + "226" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"identifier\": {\r\n \"uniqueId\": \"/SharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV\"\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries?api-version=2020-09-30&sharedTo=tenant", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzP2FwaS12ZXJzaW9uPTIwMjAtMDktMzAmc2hhcmVkVG89dGVuYW50", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "13f66575-865d-4afd-8c8e-1adf65bca6e9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "74657d10-ae84-4ba1-9987-bf2190e52342_132538767315073200" + ], + "x-ms-request-id": [ + "b5a22e59-c374-4ffe-b43c-ea208df974cd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "5bd15b66-31bd-49a2-b893-65ccbaeb12e9" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210208T185925Z:5bd15b66-31bd-49a2-b893-65ccbaeb12e9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 08 Feb 2021 18:59:24 GMT" + ], + "Content-Length": [ + "279" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"identifier\": {\r\n \"uniqueId\": \"/SharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV\"\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries?api-version=2020-09-30&sharedTo=tenant", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzP2FwaS12ZXJzaW9uPTIwMjAtMDktMzAmc2hhcmVkVG89dGVuYW50", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2d84d49e-052a-4ac1-8173-7db6c2e856ca" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "74657d10-ae84-4ba1-9987-bf2190e52342_132538767315073200" + ], + "x-ms-request-id": [ + "680cdb73-1a2b-43f5-8cc2-7100fbb220b8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "8c19ce40-a399-48a0-98d5-eb5da41808d0" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210208T185925Z:8c19ce40-a399-48a0-98d5-eb5da41808d0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 08 Feb 2021 18:59:24 GMT" + ], + "Content-Length": [ + "279" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"identifier\": {\r\n \"uniqueId\": \"/SharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV\"\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2euap/sharedGalleries?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvc2hhcmVkR2FsbGVyaWVzP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3b41e838-2bbd-40b2-a802-3f125b1bca46" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "74657d10-ae84-4ba1-9987-bf2190e52342_132538767315073200" + ], + "x-ms-request-id": [ + "44ac57aa-4ff9-422f-91ae-f4809d03bdeb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "aadfa16b-9e8f-4759-8274-a333440de5fe" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210208T185925Z:aadfa16b-9e8f-4759-8274-a333440de5fe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 08 Feb 2021 18:59:24 GMT" + ], + "Content-Length": [ + "279" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"identifier\": {\r\n \"uniqueId\": \"/SharedGalleries/97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV\"\r\n },\r\n \"location\": \"EastUS2EUAP\",\r\n \"name\": \"97f78232-382b-46a7-8a72-964d692c4f3f-LONGLIVEGALLERYFOJNVV\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "97f78232-382b-46a7-8a72-964d692c4f3f" + } +} \ No newline at end of file From 5a4a2693efa37c98f99d67184dfece1fef72dc1f Mon Sep 17 00:00:00 2001 From: Theodore Chang Date: Wed, 14 Apr 2021 18:14:38 -0400 Subject: [PATCH 18/27] Update AssemblyInfo.cs --- .../src/Properties/AssemblyInfo.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Properties/AssemblyInfo.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Properties/AssemblyInfo.cs index f1934ee5445c..88948c305cf8 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Properties/AssemblyInfo.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Properties/AssemblyInfo.cs @@ -7,8 +7,8 @@ [assembly: AssemblyTitle("Microsoft Azure Compute Management Library")] [assembly: AssemblyDescription("Provides management functionality for Microsoft Azure Compute Resources.")] -[assembly: AssemblyVersion("45.0.0.1")] -[assembly: AssemblyFileVersion("45.0.0.1")] +[assembly: AssemblyVersion("46.0.0.0-gallery-preview")] +[assembly: AssemblyFileVersion("46.0.0.0-gallery-preview")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Microsoft Azure .NET SDK")] From 4feba73bdec469e465bd2dfa2d047959e9aec6e7 Mon Sep 17 00:00:00 2001 From: Theodore Chang Date: Thu, 15 Apr 2021 14:28:05 -0400 Subject: [PATCH 19/27] Update Microsoft.Azure.Management.Compute.csproj --- .../src/Microsoft.Azure.Management.Compute.csproj | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Microsoft.Azure.Management.Compute.csproj b/sdk/compute/Microsoft.Azure.Management.Compute/src/Microsoft.Azure.Management.Compute.csproj index 0553d95dcc82..423d237a4562 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Microsoft.Azure.Management.Compute.csproj +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Microsoft.Azure.Management.Compute.csproj @@ -9,12 +9,13 @@ Provides developers with libraries for the updated compute platform under Azure Resource manager to deploy virtual machine, virtual machine extensions and availability set management capabilities. Launch, restart, scale, capture and manage VMs, VM Extensions and more. Note: This client library is for Virtual Machines under Azure Resource Manager. Development of this library has shifted focus to the Azure Unified SDK. The future development will be focused on "Azure.ResourceManager.Compute" (https://www.nuget.org/packages/Azure.ResourceManager.Compute/). Please see the package changelog for more information. - 46.0.0.0-gallery-preview + 46.0.0.0 Microsoft.Azure.Management.Compute management;virtual machine;compute; From 65869334ce850f46db8b0e60c37e229064ed4955 Mon Sep 17 00:00:00 2001 From: Kang Sun Date: Thu, 15 Apr 2021 11:28:07 -0700 Subject: [PATCH 20/27] nit --- .../src/Generated/ComputeManagementClient.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ComputeManagementClient.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ComputeManagementClient.cs index b9dfe291ebea..0fe2006444c9 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ComputeManagementClient.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ComputeManagementClient.cs @@ -564,10 +564,6 @@ private void Initialize() CloudServices = new CloudServicesOperations(this); CloudServicesUpdateDomain = new CloudServicesUpdateDomainOperations(this); CloudServiceOperatingSystems = new CloudServiceOperatingSystemsOperations(this); -<<<<<<< HEAD -======= - ->>>>>>> a45f4b564e78041d5cda92b3c1d656338113d2da BaseUri = new System.Uri("https://management.azure.com"); AcceptLanguage = "en-US"; LongRunningOperationRetryTimeout = 30; From 4bb24454de26b8d2dcf2aa2aad99e95e424f48a0 Mon Sep 17 00:00:00 2001 From: Theodore Chang Date: Thu, 15 Apr 2021 14:29:19 -0400 Subject: [PATCH 21/27] Update Microsoft.Azure.Management.Compute.csproj --- .../src/Microsoft.Azure.Management.Compute.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Microsoft.Azure.Management.Compute.csproj b/sdk/compute/Microsoft.Azure.Management.Compute/src/Microsoft.Azure.Management.Compute.csproj index 423d237a4562..d5f8b421a9aa 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Microsoft.Azure.Management.Compute.csproj +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Microsoft.Azure.Management.Compute.csproj @@ -9,7 +9,7 @@ Provides developers with libraries for the updated compute platform under Azure Resource manager to deploy virtual machine, virtual machine extensions and availability set management capabilities. Launch, restart, scale, capture and manage VMs, VM Extensions and more. Note: This client library is for Virtual Machines under Azure Resource Manager. Development of this library has shifted focus to the Azure Unified SDK. The future development will be focused on "Azure.ResourceManager.Compute" (https://www.nuget.org/packages/Azure.ResourceManager.Compute/). Please see the package changelog for more information. - 46.0.0.0 + 46.0.0 Microsoft.Azure.Management.Compute management;virtual machine;compute; From e128572e6bcd1da8d38b4f60e80e07f7a9edd8a9 Mon Sep 17 00:00:00 2001 From: Theodore Chang Date: Thu, 15 Apr 2021 14:29:37 -0400 Subject: [PATCH 22/27] Update AssemblyInfo.cs --- .../src/Properties/AssemblyInfo.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Properties/AssemblyInfo.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Properties/AssemblyInfo.cs index 88948c305cf8..cfae24418f59 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Properties/AssemblyInfo.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Properties/AssemblyInfo.cs @@ -7,8 +7,8 @@ [assembly: AssemblyTitle("Microsoft Azure Compute Management Library")] [assembly: AssemblyDescription("Provides management functionality for Microsoft Azure Compute Resources.")] -[assembly: AssemblyVersion("46.0.0.0-gallery-preview")] -[assembly: AssemblyFileVersion("46.0.0.0-gallery-preview")] +[assembly: AssemblyVersion("46.0.0")] +[assembly: AssemblyFileVersion("46.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Microsoft Azure .NET SDK")] From 37e507a2775b82d1c9d2df31ea19a90dcb0db57c Mon Sep 17 00:00:00 2001 From: Theodore Chang Date: Thu, 15 Apr 2021 14:29:43 -0400 Subject: [PATCH 23/27] Create AssemblyInfo.cs From 883acacd3aac64461de22fdc25fa7d5649327136 Mon Sep 17 00:00:00 2001 From: Theodore Chang Date: Thu, 15 Apr 2021 18:12:19 -0400 Subject: [PATCH 24/27] commit --- .../src/Generated/ComputeManagementClient.cs | 4 +-- .../src/Generated/IComputeManagementClient.cs | 1 + .../SdkInfo_ComputeManagementClient.cs | 25 +++++++------------ 3 files changed, 12 insertions(+), 18 deletions(-) diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ComputeManagementClient.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ComputeManagementClient.cs index 0f1831c42403..0fe2006444c9 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ComputeManagementClient.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ComputeManagementClient.cs @@ -255,7 +255,8 @@ public partial class ComputeManagementClient : ServiceClient public virtual ISharedGalleryImageVersionsOperations SharedGalleryImageVersions { get; private set; } - + + /// /// Gets the ICloudServiceRoleInstancesOperations. /// public virtual ICloudServiceRoleInstancesOperations CloudServiceRoleInstances { get; private set; } @@ -563,7 +564,6 @@ private void Initialize() CloudServices = new CloudServicesOperations(this); CloudServicesUpdateDomain = new CloudServicesUpdateDomainOperations(this); CloudServiceOperatingSystems = new CloudServiceOperatingSystemsOperations(this); - BaseUri = new System.Uri("https://management.azure.com"); AcceptLanguage = "en-US"; LongRunningOperationRetryTimeout = 30; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IComputeManagementClient.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IComputeManagementClient.cs index ae3fee273b5a..a2e8ad1bc456 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IComputeManagementClient.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IComputeManagementClient.cs @@ -251,6 +251,7 @@ public partial interface IComputeManagementClient : System.IDisposable /// ISharedGalleryImageVersionsOperations SharedGalleryImageVersions { get; } + /// /// Gets the ICloudServiceRoleInstancesOperations. /// ICloudServiceRoleInstancesOperations CloudServiceRoleInstances { get; } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SdkInfo_ComputeManagementClient.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SdkInfo_ComputeManagementClient.cs index 192351b3d2f8..fdbdf041b162 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SdkInfo_ComputeManagementClient.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SdkInfo_ComputeManagementClient.cs @@ -31,16 +31,20 @@ public static IEnumerable> ApiInfo_ComputeManageme new Tuple("Compute", "DiskEncryptionSets", "2020-12-01"), new Tuple("Compute", "DiskRestorePoint", "2020-12-01"), new Tuple("Compute", "Disks", "2020-12-01"), - new Tuple("Compute", "Galleries", "2019-12-01"), - new Tuple("Compute", "GalleryApplicationVersions", "2019-12-01"), - new Tuple("Compute", "GalleryApplications", "2019-12-01"), - new Tuple("Compute", "GalleryImageVersions", "2019-12-01"), - new Tuple("Compute", "GalleryImages", "2019-12-01"), + new Tuple("Compute", "Galleries", "2020-09-30"), + new Tuple("Compute", "GalleryApplicationVersions", "2020-09-30"), + new Tuple("Compute", "GalleryApplications", "2020-09-30"), + new Tuple("Compute", "GalleryImageVersions", "2020-09-30"), + new Tuple("Compute", "GalleryImages", "2020-09-30"), + new Tuple("Compute", "GallerySharingProfile", "2020-09-30"), new Tuple("Compute", "Images", "2020-12-01"), new Tuple("Compute", "LogAnalytics", "2020-12-01"), new Tuple("Compute", "Operations", "2020-12-01"), new Tuple("Compute", "ProximityPlacementGroups", "2020-12-01"), new Tuple("Compute", "ResourceSkus", "2019-04-01"), + new Tuple("Compute", "SharedGalleries", "2020-09-30"), + new Tuple("Compute", "SharedGalleryImageVersions", "2020-09-30"), + new Tuple("Compute", "SharedGalleryImages", "2020-09-30"), new Tuple("Compute", "Snapshots", "2020-12-01"), new Tuple("Compute", "SshPublicKeys", "2020-12-01"), new Tuple("Compute", "Usage", "2020-12-01"), @@ -60,16 +64,5 @@ public static IEnumerable> ApiInfo_ComputeManageme }.AsEnumerable(); } } - // BEGIN: Code Generation Metadata Section - public static readonly String AutoRestVersion = "v2"; - public static readonly String AutoRestBootStrapperVersion = "autorest@2.0.4413"; - public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/compute/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=C:\\git\\azure-sdk-for-net\\sdk"; - public static readonly String GithubForkName = "Azure"; - public static readonly String GithubBranchName = "master"; - public static readonly String GithubCommidId = "55bfefdb2c4c7564113c4968976ba97b02d643c4"; - public static readonly String CodeGenerationErrors = ""; - public static readonly String GithubRepoName = "azure-rest-api-specs"; - // END: Code Generation Metadata Section } } - From 316049823acf9ab45884cd3097116841546a8bf5 Mon Sep 17 00:00:00 2001 From: Kang Sun Date: Mon, 19 Apr 2021 14:50:14 -0700 Subject: [PATCH 25/27] update, address comments --- .../AzSdk.RP.props | 2 +- .../src/Customizations/GalleriesOperations.cs | 87 +++++++++++++++++++ .../GalleriesOperationsExtensions.cs | 34 ++++++++ .../Customizations/IGalleriesOperations.cs | 66 ++++++++++++++ .../Microsoft.Azure.Management.Compute.csproj | 2 +- 5 files changed, 189 insertions(+), 2 deletions(-) create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/GalleriesOperations.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/GalleriesOperationsExtensions.cs create mode 100644 sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/IGalleriesOperations.cs diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/AzSdk.RP.props b/sdk/compute/Microsoft.Azure.Management.Compute/AzSdk.RP.props index b208a49befaa..30445fc69667 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/AzSdk.RP.props +++ b/sdk/compute/Microsoft.Azure.Management.Compute/AzSdk.RP.props @@ -1,7 +1,7 @@  - Compute_2020-12-01;Compute_2021-03-01;Compute_2020-09-30;Compute_2019-04-01; + Compute_2021-03-01;Compute_2020-12-01;Compute_2020-06-30;Compute_2020-05-01;Compute_2019-12-01;Compute_2019-11-01;Compute_2019-04-01; $(PackageTags);$(CommonTags);$(AzureApiTag); \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/GalleriesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/GalleriesOperations.cs new file mode 100644 index 000000000000..6ab1460b7610 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/GalleriesOperations.cs @@ -0,0 +1,87 @@ +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// GalleriesOperations operations. + /// + internal partial class GalleriesOperations : IServiceOperations, IGalleriesOperations + { + /// + /// Retrieves information about a Shared Image Gallery. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// Headers that will be added to request. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName, Dictionary> customHeaders = null) + { + return await GetWithHttpMessagesAsync(resourceGroupName, galleryName, default(string), customHeaders, default(CancellationToken)); + } + + /// + /// Retrieves information about a Shared Image Gallery. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + return await GetWithHttpMessagesAsync(resourceGroupName, galleryName, default(string), customHeaders, cancellationToken); + } + } +} \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/GalleriesOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/GalleriesOperationsExtensions.cs new file mode 100644 index 000000000000..9b8dc8ee6680 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/GalleriesOperationsExtensions.cs @@ -0,0 +1,34 @@ +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for GalleriesOperations. + /// + public static partial class GalleriesOperationsExtensions + { + /// + /// Retrieves information about a Shared Image Gallery. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IGalleriesOperations operations, string resourceGroupName, string galleryName, CancellationToken cancellationToken = default(CancellationToken)) + { + return await GetAsync(operations, resourceGroupName, galleryName, default(string), cancellationToken); + } + } +} \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/IGalleriesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/IGalleriesOperations.cs new file mode 100644 index 000000000000..e78b4155fe6c --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/IGalleriesOperations.cs @@ -0,0 +1,66 @@ +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// GalleriesOperations operations. + /// + public partial interface IGalleriesOperations + { + /// + /// Retrieves information about a Shared Image Gallery. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// The headers that will be added to request. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName, Dictionary> customHeaders = null); + + /// + /// Retrieves information about a Shared Image Gallery. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + } +} \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Microsoft.Azure.Management.Compute.csproj b/sdk/compute/Microsoft.Azure.Management.Compute/src/Microsoft.Azure.Management.Compute.csproj index d5f8b421a9aa..34300f44daf1 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Microsoft.Azure.Management.Compute.csproj +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Microsoft.Azure.Management.Compute.csproj @@ -15,7 +15,7 @@ From 1209e3fedf00af7153966fd2e3d7d86dfe8ee481 Mon Sep 17 00:00:00 2001 From: Kang Sun Date: Tue, 20 Apr 2021 09:21:40 -0700 Subject: [PATCH 26/27] update --- .../src/Customizations/GalleriesOperations.cs | 29 +++++++++++++++++++ .../GalleriesOperationsExtensions.cs | 17 +++++++++++ .../Customizations/IGalleriesOperations.cs | 20 +++++++++++++ 3 files changed, 66 insertions(+) diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/GalleriesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/GalleriesOperations.cs index 6ab1460b7610..a662fd076729 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/GalleriesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/GalleriesOperations.cs @@ -17,6 +17,35 @@ /// internal partial class GalleriesOperations : IServiceOperations, IGalleriesOperations { + /// + /// Retrieves information about a Shared Image Gallery. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName) + { + return await GetWithHttpMessagesAsync(resourceGroupName, galleryName, default(string), null, default(CancellationToken)); + } + /// /// Retrieves information about a Shared Image Gallery. /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/GalleriesOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/GalleriesOperationsExtensions.cs index 9b8dc8ee6680..5e874bad0e3f 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/GalleriesOperationsExtensions.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/GalleriesOperationsExtensions.cs @@ -11,6 +11,23 @@ /// public static partial class GalleriesOperationsExtensions { + /// + /// Retrieves information about a Shared Image Gallery. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Shared Image Gallery. + /// + public static async Task GetAsync(this IGalleriesOperations operations, string resourceGroupName, string galleryName) + { + return await GetAsync(operations, resourceGroupName, galleryName, default(string), default(CancellationToken)); + } + /// /// Retrieves information about a Shared Image Gallery. /// diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/IGalleriesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/IGalleriesOperations.cs index e78b4155fe6c..87f4a58f775f 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/IGalleriesOperations.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Customizations/IGalleriesOperations.cs @@ -13,6 +13,26 @@ /// public partial interface IGalleriesOperations { + /// + /// Retrieves information about a Shared Image Gallery. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Shared Image Gallery. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string resourceGroupName, string galleryName); + /// /// Retrieves information about a Shared Image Gallery. /// From 54aa30474f4c4b794b25b591a04e49e61813e427 Mon Sep 17 00:00:00 2001 From: Kang Sun Date: Thu, 6 May 2021 22:07:11 -0700 Subject: [PATCH 27/27] update test --- .../tests/ScenarioTests/GalleryTests.cs | 4 +- ...Gallery_WithSharingProfile_CRUD_Tests.json | 330 +++++++++--------- 2 files changed, 167 insertions(+), 167 deletions(-) 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 d181113821b2..bb35b9a111d5 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/GalleryTests.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/GalleryTests.cs @@ -388,7 +388,7 @@ public void Gallery_WithSharingProfile_CRUD_Tests() List groups = new List { tenantGroups, subGroups }; SharingUpdate sharingUpdate = new SharingUpdate() { - OperationType = "Add", + OperationType = SharingUpdateOperationTypes.Add, Groups = groups }; @@ -403,7 +403,7 @@ public void Gallery_WithSharingProfile_CRUD_Tests() Trace.TraceInformation("Reset this gallery to private before deleting it."); SharingUpdate resetPrivateUpdate = new SharingUpdate() { - OperationType = "ResetToPrivate", + OperationType = SharingUpdateOperationTypes.Reset, Groups = null }; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_WithSharingProfile_CRUD_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_WithSharingProfile_CRUD_Tests.json index 7ddf8841632e..3f8b90c93f80 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_WithSharingProfile_CRUD_Tests.json +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/Gallery_WithSharingProfile_CRUD_Tests.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg3878?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM4Nzg/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg3873?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM4NzM/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "79dd8723-5f81-47fd-b52c-e94943fbfcea" + "802c5f8b-4b8b-44d7-8f37-141fa2a89d1d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29916.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "58422333-f947-4b7a-b8ff-2bce5821a96a" + "bcf6e21a-0141-4666-ae29-3eb3e234533c" ], "x-ms-correlation-request-id": [ - "58422333-f947-4b7a-b8ff-2bce5821a96a" + "bcf6e21a-0141-4666-ae29-3eb3e234533c" ], "x-ms-routing-request-id": [ - "WESTUS:20201203T002509Z:58422333-f947-4b7a-b8ff-2bce5821a96a" + "WESTUS:20210507T043236Z:bcf6e21a-0141-4666-ae29-3eb3e234533c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Thu, 03 Dec 2020 00:25:08 GMT" + "Fri, 07 May 2021 04:32:35 GMT" ], "Content-Length": [ "192" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3878\",\r\n \"name\": \"galleryPsTestRg3878\",\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/galleryPsTestRg3873\",\r\n \"name\": \"galleryPsTestRg3873\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3878/providers/Microsoft.Compute/galleries/galleryPsTestGallery5549?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM4NzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU1NDk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3873/providers/Microsoft.Compute/galleries/galleryPsTestGallery4946?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ5NDY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "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": [ - "8dff7fc2-e778-4059-87b1-7bc46f9a8349" + "369bfb95-8d96-4a64-9651-78bb69672cbf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29916.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/46.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,7 +99,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/b7b9dd18-c179-419a-84b8-559ab6658dbd?api-version=2020-09-30" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/84cb04ca-0526-43ed-adfa-fbe154d2a993?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299" @@ -108,10 +108,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973,1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973" + "1dd04696-ef54-4aec-bada-944b3b397491_132639969340285634,1dd04696-ef54-4aec-bada-944b3b397491_132639969340285634" ], "x-ms-request-id": [ - "b7b9dd18-c179-419a-84b8-559ab6658dbd" + "84cb04ca-0526-43ed-adfa-fbe154d2a993" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -121,16 +121,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "c53a1b22-91b8-4d7c-b066-0e1dd5245481" + "edb766e7-99e0-4014-9e25-af59489814a4" ], "x-ms-routing-request-id": [ - "WESTUS:20201203T002512Z:c53a1b22-91b8-4d7c-b066-0e1dd5245481" + "WESTUS:20210507T043240Z:edb766e7-99e0-4014-9e25-af59489814a4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Dec 2020 00:25:11 GMT" + "Fri, 07 May 2021 04:32:39 GMT" ], "Content-Length": [ "572" @@ -142,20 +142,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery5549\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3878/providers/Microsoft.Compute/galleries/galleryPsTestGallery5549\",\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-GALLERYPSTESTGALLERY5549\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery4946\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3873/providers/Microsoft.Compute/galleries/galleryPsTestGallery4946\",\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-GALLERYPSTESTGALLERY4946\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/b7b9dd18-c179-419a-84b8-559ab6658dbd?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9iN2I5ZGQxOC1jMTc5LTQxOWEtODRiOC01NTlhYjY2NThkYmQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/84cb04ca-0526-43ed-adfa-fbe154d2a993?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy84NGNiMDRjYS0wNTI2LTQzZWQtYWRmYS1mYmUxNTRkMmE5OTM/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29916.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/46.0.0" ] }, "ResponseHeaders": { @@ -172,10 +172,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973,1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973" + "1dd04696-ef54-4aec-bada-944b3b397491_132639969340285634,1dd04696-ef54-4aec-bada-944b3b397491_132639969340285634" ], "x-ms-request-id": [ - "412a921a-20e6-4148-ae87-29deb3db9725" + "04fab0b4-46e8-45f7-882d-e99e801da5f2" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -185,19 +185,19 @@ "11999" ], "x-ms-correlation-request-id": [ - "14eba504-c086-41c1-9d56-93e0475d809c" + "686988ef-dd70-433a-8978-b54460246457" ], "x-ms-routing-request-id": [ - "WESTUS:20201203T002542Z:14eba504-c086-41c1-9d56-93e0475d809c" + "WESTUS:20210507T043310Z:686988ef-dd70-433a-8978-b54460246457" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Dec 2020 00:25:41 GMT" + "Fri, 07 May 2021 04:33:09 GMT" ], "Content-Length": [ - "183" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -206,20 +206,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-02T16:25:11.683585-08:00\",\r\n \"endTime\": \"2020-12-02T16:25:11.9179662-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b7b9dd18-c179-419a-84b8-559ab6658dbd\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-05-06T21:32:39.6591524-07:00\",\r\n \"endTime\": \"2021-05-06T21:32:39.8935398-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"84cb04ca-0526-43ed-adfa-fbe154d2a993\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3878/providers/Microsoft.Compute/galleries/galleryPsTestGallery5549?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM4NzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU1NDk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3873/providers/Microsoft.Compute/galleries/galleryPsTestGallery4946?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ5NDY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29916.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/46.0.0" ] }, "ResponseHeaders": { @@ -236,10 +236,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973,1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973" + "1dd04696-ef54-4aec-bada-944b3b397491_132639969340285634,1dd04696-ef54-4aec-bada-944b3b397491_132639969340285634" ], "x-ms-request-id": [ - "c116d269-0575-4695-9a00-6823c5a8a5b8" + "7d3ac607-fe3c-4c72-b1ea-d933b4357cfd" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -249,16 +249,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "559cb721-3679-4d03-8784-5321b7ea4c34" + "6abb70b9-4247-496c-b616-b7555e8dd100" ], "x-ms-routing-request-id": [ - "WESTUS:20201203T002542Z:559cb721-3679-4d03-8784-5321b7ea4c34" + "WESTUS:20210507T043310Z:6abb70b9-4247-496c-b616-b7555e8dd100" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Dec 2020 00:25:41 GMT" + "Fri, 07 May 2021 04:33:09 GMT" ], "Content-Length": [ "509" @@ -270,26 +270,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery5549\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3878/providers/Microsoft.Compute/galleries/galleryPsTestGallery5549\",\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-GALLERYPSTESTGALLERY5549\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery4946\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3873/providers/Microsoft.Compute/galleries/galleryPsTestGallery4946\",\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-GALLERYPSTESTGALLERY4946\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3878/providers/Microsoft.Compute/galleries/galleryPsTestGallery5549?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM4NzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU1NDk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3873/providers/Microsoft.Compute/galleries/galleryPsTestGallery4946?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ5NDY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "20708dc3-4199-4d0c-96d9-bb6f70b80826" + "dd31a6d9-61ef-4048-a2f8-37684add2786" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29916.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/46.0.0" ] }, "ResponseHeaders": { @@ -306,10 +306,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973,1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973" + "1dd04696-ef54-4aec-bada-944b3b397491_132639969340285634,1dd04696-ef54-4aec-bada-944b3b397491_132639969340285634" ], "x-ms-request-id": [ - "88977b02-73a9-4ce8-93b1-ca3d64d69893" + "b374611f-5434-44af-8405-0067f58200ef" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -319,16 +319,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "f7d250f1-2f37-4bb3-bb24-0dccbd63b40c" + "d531f58b-5adb-46b9-9d0d-1de6ba7843b9" ], "x-ms-routing-request-id": [ - "WESTUS:20201203T002543Z:f7d250f1-2f37-4bb3-bb24-0dccbd63b40c" + "WESTUS:20210507T043310Z:d531f58b-5adb-46b9-9d0d-1de6ba7843b9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Dec 2020 00:25:42 GMT" + "Fri, 07 May 2021 04:33:09 GMT" ], "Content-Length": [ "509" @@ -340,26 +340,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery5549\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3878/providers/Microsoft.Compute/galleries/galleryPsTestGallery5549\",\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-GALLERYPSTESTGALLERY5549\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery4946\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3873/providers/Microsoft.Compute/galleries/galleryPsTestGallery4946\",\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-GALLERYPSTESTGALLERY4946\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3878/providers/Microsoft.Compute/galleries/galleryPsTestGallery5549/share?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM4NzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU1NDkvc2hhcmU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3873/providers/Microsoft.Compute/galleries/galleryPsTestGallery4946/share?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ5NDYvc2hhcmU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "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": [ - "45e6b421-06a9-4762-83b2-ba3054d57e87" + "52d12dcf-c4e2-4b13-a73c-8f8679786aad" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29916.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/46.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -376,22 +376,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/885f35d6-2e73-49f2-a15e-01fea176e42a?monitor=true&api-version=2020-09-30" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/74918baa-ed64-4b5a-8088-7f7839190deb?monitor=true&api-version=2020-09-30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/885f35d6-2e73-49f2-a15e-01fea176e42a?api-version=2020-09-30" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/74918baa-ed64-4b5a-8088-7f7839190deb?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/PostShareGallery3Min;9,Microsoft.Compute/PostShareGallery30Min;59" + "Microsoft.Compute/PostShareGallery3Min;29,Microsoft.Compute/PostShareGallery30Min;119" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973,1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973" + "1dd04696-ef54-4aec-bada-944b3b397491_132639969340285634,1dd04696-ef54-4aec-bada-944b3b397491_132639969340285634" ], "x-ms-request-id": [ - "885f35d6-2e73-49f2-a15e-01fea176e42a" + "74918baa-ed64-4b5a-8088-7f7839190deb" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -401,16 +401,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "7d5d0dcc-162a-4de9-938d-09594ccea39b" + "a2e656f9-9bee-4066-8c38-31971260d705" ], "x-ms-routing-request-id": [ - "WESTUS:20201203T002543Z:7d5d0dcc-162a-4de9-938d-09594ccea39b" + "WESTUS:20210507T043310Z:a2e656f9-9bee-4066-8c38-31971260d705" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Dec 2020 00:25:42 GMT" + "Fri, 07 May 2021 04:33:10 GMT" ], "Expires": [ "-1" @@ -423,28 +423,28 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3878/providers/Microsoft.Compute/galleries/galleryPsTestGallery5549/share?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM4NzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU1NDkvc2hhcmU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3873/providers/Microsoft.Compute/galleries/galleryPsTestGallery4946/share?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ5NDYvc2hhcmU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"operationType\": \"ResetToPrivate\"\r\n}", + "RequestBody": "{\r\n \"operationType\": \"Reset\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1184e4a5-92fa-4e79-8389-3fb2e9f6f6d7" + "5e398053-2f7b-4c50-9a9a-a213a1fdc97b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29916.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/46.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "41" + "32" ] }, "ResponseHeaders": { @@ -455,22 +455,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/ed97ea1b-21ed-4cf3-9a91-48e4b913d272?monitor=true&api-version=2020-09-30" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/cfcacb35-b2a3-46d3-890d-610a5f4df91d?monitor=true&api-version=2020-09-30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/ed97ea1b-21ed-4cf3-9a91-48e4b913d272?api-version=2020-09-30" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/cfcacb35-b2a3-46d3-890d-610a5f4df91d?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/PostShareGallery3Min;8,Microsoft.Compute/PostShareGallery30Min;58" + "Microsoft.Compute/PostShareGallery3Min;28,Microsoft.Compute/PostShareGallery30Min;118" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973,1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973" + "1dd04696-ef54-4aec-bada-944b3b397491_132639969340285634,1dd04696-ef54-4aec-bada-944b3b397491_132639969340285634" ], "x-ms-request-id": [ - "ed97ea1b-21ed-4cf3-9a91-48e4b913d272" + "cfcacb35-b2a3-46d3-890d-610a5f4df91d" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -480,16 +480,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "92b68091-0707-4c53-8f48-1aab5f746550" + "872144c2-4d31-4e0a-b077-3b373d563e6b" ], "x-ms-routing-request-id": [ - "WESTUS:20201203T002614Z:92b68091-0707-4c53-8f48-1aab5f746550" + "WESTUS:20210507T043341Z:872144c2-4d31-4e0a-b077-3b373d563e6b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Dec 2020 00:26:14 GMT" + "Fri, 07 May 2021 04:33:41 GMT" ], "Expires": [ "-1" @@ -502,16 +502,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/885f35d6-2e73-49f2-a15e-01fea176e42a?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy84ODVmMzVkNi0yZTczLTQ5ZjItYTE1ZS0wMWZlYTE3NmU0MmE/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/74918baa-ed64-4b5a-8088-7f7839190deb?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83NDkxOGJhYS1lZDY0LTRiNWEtODA4OC03Zjc4MzkxOTBkZWI/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29916.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/46.0.0" ] }, "ResponseHeaders": { @@ -528,10 +528,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973,1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973" + "1dd04696-ef54-4aec-bada-944b3b397491_132639969340285634,1dd04696-ef54-4aec-bada-944b3b397491_132639969340285634" ], "x-ms-request-id": [ - "a0aa0668-dcbd-45ea-a7e9-0218ce99b82e" + "3a409e53-e17b-437a-a691-83801fb92f96" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -541,16 +541,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "a86448ba-77dc-4786-895b-a1a044e999d7" + "05c1ee81-8ae1-4ce9-ace8-f5d722542ee8" ], "x-ms-routing-request-id": [ - "WESTUS:20201203T002613Z:a86448ba-77dc-4786-895b-a1a044e999d7" + "WESTUS:20210507T043340Z:05c1ee81-8ae1-4ce9-ace8-f5d722542ee8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Dec 2020 00:26:13 GMT" + "Fri, 07 May 2021 04:33:40 GMT" ], "Content-Length": [ "184" @@ -562,20 +562,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-02T16:25:43.1369075-08:00\",\r\n \"endTime\": \"2020-12-02T16:25:44.2775399-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"885f35d6-2e73-49f2-a15e-01fea176e42a\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-05-06T21:33:10.7853652-07:00\",\r\n \"endTime\": \"2021-05-06T21:33:12.0041692-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"74918baa-ed64-4b5a-8088-7f7839190deb\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/885f35d6-2e73-49f2-a15e-01fea176e42a?monitor=true&api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy84ODVmMzVkNi0yZTczLTQ5ZjItYTE1ZS0wMWZlYTE3NmU0MmE/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/74918baa-ed64-4b5a-8088-7f7839190deb?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy83NDkxOGJhYS1lZDY0LTRiNWEtODA4OC03Zjc4MzkxOTBkZWI/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29916.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/46.0.0" ] }, "ResponseHeaders": { @@ -592,10 +592,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973,1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973" + "1dd04696-ef54-4aec-bada-944b3b397491_132639969340285634,1dd04696-ef54-4aec-bada-944b3b397491_132639969340285634" ], "x-ms-request-id": [ - "ba85574a-3e12-4b85-9917-66187ceccd3a" + "52ac1907-7cc6-4542-912e-60b1b4ad10fb" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -605,16 +605,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "78ef128d-abb9-4fa4-851f-9e046b127ace" + "5cb8daa9-1e0d-4314-907e-6c4847e7091f" ], "x-ms-routing-request-id": [ - "WESTUS:20201203T002613Z:78ef128d-abb9-4fa4-851f-9e046b127ace" + "WESTUS:20210507T043341Z:5cb8daa9-1e0d-4314-907e-6c4847e7091f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Dec 2020 00:26:13 GMT" + "Fri, 07 May 2021 04:33:41 GMT" ], "Expires": [ "-1" @@ -627,22 +627,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3878/providers/Microsoft.Compute/galleries/galleryPsTestGallery5549?api-version=2020-09-30&$select=Permissions", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM4NzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU1NDk/YXBpLXZlcnNpb249MjAyMC0wOS0zMCYkc2VsZWN0PVBlcm1pc3Npb25z", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3873/providers/Microsoft.Compute/galleries/galleryPsTestGallery4946?api-version=2020-09-30&$select=Permissions", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ5NDY/YXBpLXZlcnNpb249MjAyMC0wOS0zMCYkc2VsZWN0PVBlcm1pc3Npb25z", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1ca7e966-67db-45e4-b376-51634e096e79" + "b67bc760-0bf5-429a-8e03-9c133a15edc5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29916.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/46.0.0" ] }, "ResponseHeaders": { @@ -659,10 +659,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973,1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973" + "1dd04696-ef54-4aec-bada-944b3b397491_132639969340285634,1dd04696-ef54-4aec-bada-944b3b397491_132639969340285634" ], "x-ms-request-id": [ - "6c16cfaf-6bfa-4bba-9f0e-781d209bfc26" + "2d68306e-1a2e-477f-b273-f2c9ef150f2e" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -672,16 +672,16 @@ "11994" ], "x-ms-correlation-request-id": [ - "38d98d9d-e055-4510-91c6-3c713ce8f4f8" + "e27adea8-e883-4903-9e30-1beda72b9920" ], "x-ms-routing-request-id": [ - "WESTUS:20201203T002613Z:38d98d9d-e055-4510-91c6-3c713ce8f4f8" + "WESTUS:20210507T043341Z:e27adea8-e883-4903-9e30-1beda72b9920" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Dec 2020 00:26:13 GMT" + "Fri, 07 May 2021 04:33:41 GMT" ], "Content-Length": [ "886" @@ -693,20 +693,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery5549\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3878/providers/Microsoft.Compute/galleries/galleryPsTestGallery5549\",\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-GALLERYPSTESTGALLERY5549\"\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\": \"galleryPsTestGallery4946\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3873/providers/Microsoft.Compute/galleries/galleryPsTestGallery4946\",\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-GALLERYPSTESTGALLERY4946\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\",\r\n \"groups\": [\r\n {\r\n \"type\": \"Subscriptions\",\r\n \"ids\": [\r\n \"640c5810-13bf-4b82-b94d-f38c2565e3bc\"\r\n ]\r\n },\r\n {\r\n \"type\": \"AADTenants\",\r\n \"ids\": [\r\n \"583d66a9-0041-4999-8838-75baece101d5\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/ed97ea1b-21ed-4cf3-9a91-48e4b913d272?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lZDk3ZWExYi0yMWVkLTRjZjMtOWE5MS00OGU0YjkxM2QyNzI/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/cfcacb35-b2a3-46d3-890d-610a5f4df91d?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9jZmNhY2IzNS1iMmEzLTQ2ZDMtODkwZC02MTBhNWY0ZGY5MWQ/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29916.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/46.0.0" ] }, "ResponseHeaders": { @@ -723,10 +723,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973,1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973" + "1dd04696-ef54-4aec-bada-944b3b397491_132639969340285634,1dd04696-ef54-4aec-bada-944b3b397491_132639969340285634" ], "x-ms-request-id": [ - "2c94c83b-d3b9-4d34-a220-6f6d0fcc414a" + "d75ad4a1-69c8-47c0-94fe-9cca3d7834dc" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -736,16 +736,16 @@ "11993" ], "x-ms-correlation-request-id": [ - "3bacf833-cb21-41de-939e-0c3d1df34bc7" + "13a79d98-fe5d-48e3-84b4-4d70bc9f708c" ], "x-ms-routing-request-id": [ - "WESTUS:20201203T002644Z:3bacf833-cb21-41de-939e-0c3d1df34bc7" + "WESTUS:20210507T043411Z:13a79d98-fe5d-48e3-84b4-4d70bc9f708c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Dec 2020 00:26:44 GMT" + "Fri, 07 May 2021 04:34:11 GMT" ], "Content-Length": [ "184" @@ -757,20 +757,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-02T16:26:13.9496084-08:00\",\r\n \"endTime\": \"2020-12-02T16:26:14.2777352-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ed97ea1b-21ed-4cf3-9a91-48e4b913d272\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-05-06T21:33:41.3335246-07:00\",\r\n \"endTime\": \"2021-05-06T21:33:41.6618331-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"cfcacb35-b2a3-46d3-890d-610a5f4df91d\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/ed97ea1b-21ed-4cf3-9a91-48e4b913d272?monitor=true&api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lZDk3ZWExYi0yMWVkLTRjZjMtOWE5MS00OGU0YjkxM2QyNzI/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/cfcacb35-b2a3-46d3-890d-610a5f4df91d?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9jZmNhY2IzNS1iMmEzLTQ2ZDMtODkwZC02MTBhNWY0ZGY5MWQ/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29916.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/46.0.0" ] }, "ResponseHeaders": { @@ -787,10 +787,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973,1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973" + "1dd04696-ef54-4aec-bada-944b3b397491_132639969340285634,1dd04696-ef54-4aec-bada-944b3b397491_132639969340285634" ], "x-ms-request-id": [ - "a999defd-c90e-479b-97a2-396dc763732b" + "b3a971c9-8f5b-42ea-a4b2-563b58425508" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -800,16 +800,16 @@ "11992" ], "x-ms-correlation-request-id": [ - "20a46e84-2b08-4186-8a9e-7ef888bbd157" + "ba0c5b4d-68c0-4c98-bd30-c0d927830de5" ], "x-ms-routing-request-id": [ - "WESTUS:20201203T002644Z:20a46e84-2b08-4186-8a9e-7ef888bbd157" + "WESTUS:20210507T043411Z:ba0c5b4d-68c0-4c98-bd30-c0d927830de5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Dec 2020 00:26:44 GMT" + "Fri, 07 May 2021 04:34:11 GMT" ], "Expires": [ "-1" @@ -822,22 +822,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3878/providers/Microsoft.Compute/galleries/galleryPsTestGallery5549?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM4NzgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU1NDk/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg3873/providers/Microsoft.Compute/galleries/galleryPsTestGallery4946?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzM4NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTQ5NDY/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f58699ed-9321-4818-a19d-0ee74d0fdc77" + "23f9074e-094b-4c1d-b79c-f94918106be6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29916.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/46.0.0" ] }, "ResponseHeaders": { @@ -848,22 +848,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/aef5f068-322d-4cf4-b438-585f91a0d4c7?monitor=true&api-version=2020-09-30" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/e334e883-14c3-423c-9a4e-ac922bc8c01e?monitor=true&api-version=2020-09-30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/aef5f068-322d-4cf4-b438-585f91a0d4c7?api-version=2020-09-30" + "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/e334e883-14c3-423c-9a4e-ac922bc8c01e?api-version=2020-09-30" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/DeleteGallery3Min;48,Microsoft.Compute/DeleteGallery30Min;259" + "Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;899" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973,1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973" + "1dd04696-ef54-4aec-bada-944b3b397491_132639969340285634,1dd04696-ef54-4aec-bada-944b3b397491_132639969340285634" ], "x-ms-request-id": [ - "aef5f068-322d-4cf4-b438-585f91a0d4c7" + "e334e883-14c3-423c-9a4e-ac922bc8c01e" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -873,16 +873,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "1dc16209-f65e-4f3f-b250-a12b1da6c4e2" + "b5d9b6a0-4c03-4d94-9280-bf26550620a0" ], "x-ms-routing-request-id": [ - "WESTUS:20201203T002645Z:1dc16209-f65e-4f3f-b250-a12b1da6c4e2" + "WESTUS:20210507T043412Z:b5d9b6a0-4c03-4d94-9280-bf26550620a0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Dec 2020 00:26:44 GMT" + "Fri, 07 May 2021 04:34:12 GMT" ], "Expires": [ "-1" @@ -895,16 +895,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/aef5f068-322d-4cf4-b438-585f91a0d4c7?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hZWY1ZjA2OC0zMjJkLTRjZjQtYjQzOC01ODVmOTFhMGQ0Yzc/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/e334e883-14c3-423c-9a4e-ac922bc8c01e?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lMzM0ZTg4My0xNGMzLTQyM2MtOWE0ZS1hYzkyMmJjOGMwMWU/YXBpLXZlcnNpb249MjAyMC0wOS0zMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29916.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/46.0.0" ] }, "ResponseHeaders": { @@ -921,10 +921,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973,1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973" + "1dd04696-ef54-4aec-bada-944b3b397491_132639969340285634,1dd04696-ef54-4aec-bada-944b3b397491_132639969340285634" ], "x-ms-request-id": [ - "9305ed43-cace-45e7-84c5-7d2d806fd93b" + "055bfd39-9a16-4f4c-a4ac-7d867c9d8b04" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -934,19 +934,19 @@ "11991" ], "x-ms-correlation-request-id": [ - "082ea0db-4505-40b9-8310-a9aca865ff0c" + "41d01947-2bb3-4813-9a32-70f864b2d1aa" ], "x-ms-routing-request-id": [ - "WESTUS:20201203T002715Z:082ea0db-4505-40b9-8310-a9aca865ff0c" + "WESTUS:20210507T043442Z:41d01947-2bb3-4813-9a32-70f864b2d1aa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Dec 2020 00:27:14 GMT" + "Fri, 07 May 2021 04:34:41 GMT" ], "Content-Length": [ - "183" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -955,20 +955,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-12-02T16:26:44.9810527-08:00\",\r\n \"endTime\": \"2020-12-02T16:26:45.090428-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"aef5f068-322d-4cf4-b438-585f91a0d4c7\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-05-06T21:34:12.3972241-07:00\",\r\n \"endTime\": \"2021-05-06T21:34:12.5378306-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e334e883-14c3-423c-9a4e-ac922bc8c01e\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/aef5f068-322d-4cf4-b438-585f91a0d4c7?monitor=true&api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9hZWY1ZjA2OC0zMjJkLTRjZjQtYjQzOC01ODVmOTFhMGQ0Yzc/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", + "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/eastus2/capsOperations/e334e883-14c3-423c-9a4e-ac922bc8c01e?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9jYXBzT3BlcmF0aW9ucy9lMzM0ZTg4My0xNGMzLTQyM2MtOWE0ZS1hYzkyMmJjOGMwMWU/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29321.03", + "FxVersion/4.6.29916.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/41.0.0.0" + "Microsoft.Azure.Management.Compute.ComputeManagementClient/46.0.0" ] }, "ResponseHeaders": { @@ -985,10 +985,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973,1dd04696-ef54-4aec-bada-944b3b397491_132471120879399973" + "1dd04696-ef54-4aec-bada-944b3b397491_132639969340285634,1dd04696-ef54-4aec-bada-944b3b397491_132639969340285634" ], "x-ms-request-id": [ - "e0a6b2b0-3748-4509-a41b-f6a034a4e5e0" + "595898ff-7055-4f05-afda-15665fae0af1" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -998,16 +998,16 @@ "11990" ], "x-ms-correlation-request-id": [ - "f3c87a89-1298-4cb3-8307-6535787d00ac" + "6c1cbd3a-13b4-480a-a581-d2dc8cd3de1d" ], "x-ms-routing-request-id": [ - "WESTUS:20201203T002715Z:f3c87a89-1298-4cb3-8307-6535787d00ac" + "WESTUS:20210507T043442Z:6c1cbd3a-13b4-480a-a581-d2dc8cd3de1d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 03 Dec 2020 00:27:14 GMT" + "Fri, 07 May 2021 04:34:42 GMT" ], "Expires": [ "-1" @@ -1022,8 +1022,8 @@ ], "Names": { "Gallery_WithSharingProfile_CRUD_Tests": [ - "galleryPsTestRg3878", - "galleryPsTestGallery5549" + "galleryPsTestRg3873", + "galleryPsTestGallery4946" ] }, "Variables": {