From a8be5017067c2036772664727c4f48560f520ce6 Mon Sep 17 00:00:00 2001 From: Theodore Chang Date: Wed, 30 Jun 2021 14:01:33 -0400 Subject: [PATCH 01/16] updated --- .../Gallery/GalleryCreateOrUpdateMethod.cs | 49 +++++++++++++++++++ .../Compute/Generated/Models/PSGallery.cs | 1 + 2 files changed, 50 insertions(+) diff --git a/src/Compute/Compute/Generated/Gallery/GalleryCreateOrUpdateMethod.cs b/src/Compute/Compute/Generated/Gallery/GalleryCreateOrUpdateMethod.cs index d545bd8e7f51..6a8d646f920f 100644 --- a/src/Compute/Compute/Generated/Gallery/GalleryCreateOrUpdateMethod.cs +++ b/src/Compute/Compute/Generated/Gallery/GalleryCreateOrUpdateMethod.cs @@ -47,6 +47,10 @@ public override void ExecuteCmdlet() string galleryName = this.Name; Gallery gallery = new Gallery(); gallery.Location = this.Location; + if (this.IsParameterBound(c => c.Permission)){ + gallery.SharingProfile = new SharingProfile(); + gallery.SharingProfile.Permissions = this.Permission; + } if (this.IsParameterBound(c => c.Description)) { @@ -102,6 +106,12 @@ public override void ExecuteCmdlet() Mandatory = false, ValueFromPipelineByPropertyName = true)] public Hashtable Tag { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true)] + [PSArgumentCompleter("Private","Groups")] + public string Permission { get; set; } } [Cmdlet(VerbsData.Update, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "Gallery", DefaultParameterSetName = "DefaultParameter", SupportsShouldProcess = true)] @@ -153,6 +163,29 @@ public override void ExecuteCmdlet() { gallery.Tags = this.Tag.Cast().ToDictionary(ht => (string)ht.Key, ht => (string)ht.Value); } + if (this.IsParameterBound(c => c.Permission)) + { + if (gallery.SharingProfile == null) + { + gallery.SharingProfile = new SharingProfile(); + } + gallery.SharingProfile.Permissions = this.Permission; + } + if (this.IsParameterBound(c => c.Subscriptions)) + { + + } + if (this.IsParameterBound(c => c.Tenants)) + { + if (gallery.SharingProfile == null) + { + gallery.SharingProfile = new SharingProfile(); + } + if (gallery.SharingProfile.Groups == null) + { + gallery.SharingProfile.Groups = new List(); + } + } var result = GalleriesClient.CreateOrUpdate(resourceGroupName, galleryName, gallery); var psObject = new PSGallery(); @@ -205,5 +238,21 @@ public override void ExecuteCmdlet() Mandatory = false, ValueFromPipelineByPropertyName = true)] public Hashtable Tag { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true)] + [PSArgumentCompleter("Private", "Groups")] + public string Permission { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true)] + public string[] Subscriptions { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true)] + public string[] Tenants { get; set; } } } diff --git a/src/Compute/Compute/Generated/Models/PSGallery.cs b/src/Compute/Compute/Generated/Models/PSGallery.cs index f5a5274c6da2..1401d7a76314 100644 --- a/src/Compute/Compute/Generated/Models/PSGallery.cs +++ b/src/Compute/Compute/Generated/Models/PSGallery.cs @@ -48,6 +48,7 @@ public string ResourceGroupName public string Type { get; set; } public string Location { get; set; } public IDictionary Tags { get; set; } + public SharingProfile SharingProfile { get; set; } } } From 59ef1c10ba0fd13102554b271c291019b194bb5f Mon Sep 17 00:00:00 2001 From: Theodore Chang Date: Thu, 1 Jul 2021 10:54:42 -0400 Subject: [PATCH 02/16] update --- .../Generated/ComputeAutomationBaseCmdlet.cs | 7 ++ .../Gallery/GalleryCreateOrUpdateMethod.cs | 84 ++++++++++++++++--- .../Generated/Gallery/GalleryGetMethod.cs | 13 +++ 3 files changed, 91 insertions(+), 13 deletions(-) diff --git a/src/Compute/Compute/Generated/ComputeAutomationBaseCmdlet.cs b/src/Compute/Compute/Generated/ComputeAutomationBaseCmdlet.cs index 1d2504b47b20..4e3d8036e123 100644 --- a/src/Compute/Compute/Generated/ComputeAutomationBaseCmdlet.cs +++ b/src/Compute/Compute/Generated/ComputeAutomationBaseCmdlet.cs @@ -153,6 +153,13 @@ public IGalleryImageVersionsOperations GalleryImageVersionsClient return ComputeClient.ComputeManagementClient.GalleryImageVersions; } } + public IGallerySharingProfileOperations GallerySharingProfileClient + { + get + { + return ComputeClient.ComputeManagementClient.GallerySharingProfile; + } + } public IImagesOperations ImagesClient { diff --git a/src/Compute/Compute/Generated/Gallery/GalleryCreateOrUpdateMethod.cs b/src/Compute/Compute/Generated/Gallery/GalleryCreateOrUpdateMethod.cs index 6a8d646f920f..5ba2f64bd960 100644 --- a/src/Compute/Compute/Generated/Gallery/GalleryCreateOrUpdateMethod.cs +++ b/src/Compute/Compute/Generated/Gallery/GalleryCreateOrUpdateMethod.cs @@ -109,7 +109,8 @@ public override void ExecuteCmdlet() [Parameter( Mandatory = false, - ValueFromPipelineByPropertyName = true)] + ValueFromPipelineByPropertyName = true, + HelpMessage = "This property allows you to specify the permission of sharing gallery. Possible values are: 'Private' and 'Groups'.")] [PSArgumentCompleter("Private","Groups")] public string Permission { get; set; } } @@ -171,23 +172,65 @@ public override void ExecuteCmdlet() } gallery.SharingProfile.Permissions = this.Permission; } - if (this.IsParameterBound(c => c.Subscriptions)) - { - } - if (this.IsParameterBound(c => c.Tenants)) + SharingUpdate sharingUpdate = new SharingUpdate(); + if (this.Share.IsPresent) { - if (gallery.SharingProfile == null) + if (this.Reset.IsPresent) { - gallery.SharingProfile = new SharingProfile(); + // if sub or tenant is present return error + if (this.IsParameterBound(c => c.Subscriptions) || this.IsParameterBound(c => c.Tenants)) + { + throw new Exception("Parameter '-Reset' cannot be used with parameters '-Tenants' or '-Subscription'."); + } + else + { + sharingUpdate.OperationType = "Reset"; + } } - if (gallery.SharingProfile.Groups == null) + if (this.IsParameterBound(c => c.Subscriptions)) { - gallery.SharingProfile.Groups = new List(); + if (sharingUpdate.Groups == null) + { + sharingUpdate.Groups = new List(); + } + SharingProfileGroup sharingProfile = new SharingProfileGroup(); + sharingProfile.Type = "Subscriptions"; + sharingProfile.Ids = new List(); + foreach (var id in this.Subscriptions) + { + sharingProfile.Ids.Add(id); + } + sharingUpdate.Groups.Add(sharingProfile); + } + if (this.IsParameterBound(c => c.Tenants)) + { + if (sharingUpdate.Groups == null) + { + sharingUpdate.Groups = new List(); + } + SharingProfileGroup sharingProfile = new SharingProfileGroup(); + sharingProfile.Type = "AADTenants"; + sharingProfile.Ids = new List(); + foreach (var id in this.Tenants) + { + sharingProfile.Ids.Add(id); + } + sharingUpdate.Groups.Add(sharingProfile); } - } + } + else if (this.IsParameterBound(c => c.Subscriptions) || this.IsParameterBound(c => c.Tenants) || this.Reset.IsPresent) + { + throw new Exception("Parameters '-Subscriptions', '-Tenants', and '-Reset' must be used with '-Share' parameter."); + } + var result = GalleriesClient.CreateOrUpdate(resourceGroupName, galleryName, gallery); + if (this.Share.IsPresent) + { + GallerySharingProfileClient.Update(resourceGroupName, galleryName, sharingUpdate); + result = GalleriesClient.Get(ResourceGroupName, galleryName); + } var psObject = new PSGallery(); ComputeAutomationAutoMapperProfile.Mapper.Map(result, psObject); WriteObject(psObject); @@ -241,18 +284,33 @@ public override void ExecuteCmdlet() [Parameter( Mandatory = false, - ValueFromPipelineByPropertyName = true)] + ValueFromPipelineByPropertyName = true, + HelpMessage = "This property allows you to specify the permission of the sharing gallery. Possible values are: 'Private' and 'Groups'.")] [PSArgumentCompleter("Private", "Groups")] public string Permission { get; set; } [Parameter( Mandatory = false, - ValueFromPipelineByPropertyName = true)] + ValueFromPipelineByPropertyName = true, + HelpMessage = "A list of subscription ids the gallery is aimed to be shared to.")] public string[] Subscriptions { get; set; } [Parameter( Mandatory = false, - ValueFromPipelineByPropertyName = true)] + ValueFromPipelineByPropertyName = true, + HelpMessage = "A list of tenant ids the gallery is aimed to be shared to.")] public string[] Tenants { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Update sharing profile of the gallery.")] + public SwitchParameter Share { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Resets the sharing permission of the gallery to 'Private'.")] + public SwitchParameter Reset { get; set; } } } diff --git a/src/Compute/Compute/Generated/Gallery/GalleryGetMethod.cs b/src/Compute/Compute/Generated/Gallery/GalleryGetMethod.cs index c960e62a4c22..04006300773f 100644 --- a/src/Compute/Compute/Generated/Gallery/GalleryGetMethod.cs +++ b/src/Compute/Compute/Generated/Gallery/GalleryGetMethod.cs @@ -129,5 +129,18 @@ public override void ExecuteCmdlet() Mandatory = true, ValueFromPipelineByPropertyName = true)] public string ResourceId { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The unique name of the Shared Image Gallery.")] + public string GalleryUniqueName { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "This property allows you to specify the permission of the sharing gallery. Possible values are: 'Private' and 'Groups'.")] + [PSArgumentCompleter("Subscription", "Tenant")] + public string Scope { get; set; } } } From f2e10f6c0e2d9ed61ae6cd4c381bfa08f8706eaf Mon Sep 17 00:00:00 2001 From: Theodore Chang Date: Thu, 1 Jul 2021 18:06:39 -0400 Subject: [PATCH 03/16] update --- .../Generated/ComputeAutomationBaseCmdlet.cs | 22 ++++++ .../Gallery/GalleryCreateOrUpdateMethod.cs | 20 ++--- .../Generated/Gallery/GalleryGetMethod.cs | 59 ++++++++++++++- .../GalleryImage/GalleryImageGetMethod.cs | 71 ++++++++++++++++++ .../GalleryImageVersionGetMethod.cs | 75 +++++++++++++++++++ .../Models/ComputeAutoMapperProfile.cs | 15 ++++ .../Generated/Models/PSSharedGallery.cs | 14 ++++ .../Generated/Models/PSSharedGalleryImage.cs | 23 ++++++ .../Models/PSSharedGalleryImageList.cs | 10 +++ .../Models/PSSharedGalleryImageVersion.cs | 16 ++++ .../Models/PSSharedGalleryImageVersionList.cs | 10 +++ .../Generated/Models/PSSharedGalleryList.cs | 31 ++++++++ 12 files changed, 354 insertions(+), 12 deletions(-) create mode 100644 src/Compute/Compute/Generated/Models/PSSharedGallery.cs create mode 100644 src/Compute/Compute/Generated/Models/PSSharedGalleryImage.cs create mode 100644 src/Compute/Compute/Generated/Models/PSSharedGalleryImageList.cs create mode 100644 src/Compute/Compute/Generated/Models/PSSharedGalleryImageVersion.cs create mode 100644 src/Compute/Compute/Generated/Models/PSSharedGalleryImageVersionList.cs create mode 100644 src/Compute/Compute/Generated/Models/PSSharedGalleryList.cs diff --git a/src/Compute/Compute/Generated/ComputeAutomationBaseCmdlet.cs b/src/Compute/Compute/Generated/ComputeAutomationBaseCmdlet.cs index 4e3d8036e123..594b110bd959 100644 --- a/src/Compute/Compute/Generated/ComputeAutomationBaseCmdlet.cs +++ b/src/Compute/Compute/Generated/ComputeAutomationBaseCmdlet.cs @@ -160,6 +160,28 @@ public IGallerySharingProfileOperations GallerySharingProfileClient return ComputeClient.ComputeManagementClient.GallerySharingProfile; } } + public ISharedGalleriesOperations SharedGalleriesClient + { + get + { + return ComputeClient.ComputeManagementClient.SharedGalleries; + } + } + + public ISharedGalleryImagesOperations SharedGalleryImagesClient + { + get + { + return ComputeClient.ComputeManagementClient.SharedGalleryImages; + } + } + public ISharedGalleryImageVersionsOperations SharedGalleryImageVersionsClient + { + get + { + return ComputeClient.ComputeManagementClient.SharedGalleryImageVersions; + } + } public IImagesOperations ImagesClient { diff --git a/src/Compute/Compute/Generated/Gallery/GalleryCreateOrUpdateMethod.cs b/src/Compute/Compute/Generated/Gallery/GalleryCreateOrUpdateMethod.cs index 5ba2f64bd960..f54f8e28fe58 100644 --- a/src/Compute/Compute/Generated/Gallery/GalleryCreateOrUpdateMethod.cs +++ b/src/Compute/Compute/Generated/Gallery/GalleryCreateOrUpdateMethod.cs @@ -179,16 +179,16 @@ public override void ExecuteCmdlet() if (this.Reset.IsPresent) { // if sub or tenant is present return error - if (this.IsParameterBound(c => c.Subscriptions) || this.IsParameterBound(c => c.Tenants)) + if (this.IsParameterBound(c => c.Subscription) || this.IsParameterBound(c => c.Tenant)) { - throw new Exception("Parameter '-Reset' cannot be used with parameters '-Tenants' or '-Subscription'."); + throw new Exception("Parameter '-Reset' cannot be used with parameters '-Tenant' or '-Subscription'."); } else { sharingUpdate.OperationType = "Reset"; } } - if (this.IsParameterBound(c => c.Subscriptions)) + if (this.IsParameterBound(c => c.Subscription)) { if (sharingUpdate.Groups == null) { @@ -197,13 +197,13 @@ public override void ExecuteCmdlet() SharingProfileGroup sharingProfile = new SharingProfileGroup(); sharingProfile.Type = "Subscriptions"; sharingProfile.Ids = new List(); - foreach (var id in this.Subscriptions) + foreach (var id in this.Subscription) { sharingProfile.Ids.Add(id); } sharingUpdate.Groups.Add(sharingProfile); } - if (this.IsParameterBound(c => c.Tenants)) + if (this.IsParameterBound(c => c.Tenant)) { if (sharingUpdate.Groups == null) { @@ -212,7 +212,7 @@ public override void ExecuteCmdlet() SharingProfileGroup sharingProfile = new SharingProfileGroup(); sharingProfile.Type = "AADTenants"; sharingProfile.Ids = new List(); - foreach (var id in this.Tenants) + foreach (var id in this.Tenant) { sharingProfile.Ids.Add(id); } @@ -220,9 +220,9 @@ public override void ExecuteCmdlet() } } - else if (this.IsParameterBound(c => c.Subscriptions) || this.IsParameterBound(c => c.Tenants) || this.Reset.IsPresent) + else if (this.IsParameterBound(c => c.Subscription) || this.IsParameterBound(c => c.Tenant) || this.Reset.IsPresent) { - throw new Exception("Parameters '-Subscriptions', '-Tenants', and '-Reset' must be used with '-Share' parameter."); + throw new Exception("Parameters '-Subscription', '-Tenant', and '-Reset' must be used with '-Share' parameter."); } var result = GalleriesClient.CreateOrUpdate(resourceGroupName, galleryName, gallery); @@ -293,13 +293,13 @@ public override void ExecuteCmdlet() Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "A list of subscription ids the gallery is aimed to be shared to.")] - public string[] Subscriptions { get; set; } + public string[] Subscription { get; set; } [Parameter( Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "A list of tenant ids the gallery is aimed to be shared to.")] - public string[] Tenants { get; set; } + public string[] Tenant { get; set; } [Parameter( Mandatory = false, diff --git a/src/Compute/Compute/Generated/Gallery/GalleryGetMethod.cs b/src/Compute/Compute/Generated/Gallery/GalleryGetMethod.cs index 04006300773f..c5a228052f90 100644 --- a/src/Compute/Compute/Generated/Gallery/GalleryGetMethod.cs +++ b/src/Compute/Compute/Generated/Gallery/GalleryGetMethod.cs @@ -49,6 +49,9 @@ public override void ExecuteCmdlet() resourceGroupName = GetResourceGroupName(this.ResourceId); galleryName = GetResourceName(this.ResourceId, "Microsoft.Compute/galleries"); break; + case "SharedGalleryParameterSet": + SharedGalleryGet(); + return; default: resourceGroupName = this.ResourceGroupName; galleryName = this.Name; @@ -107,6 +110,48 @@ public override void ExecuteCmdlet() }); } + public void SharedGalleryGet() + { + if (this.IsParameterBound(c => c.GalleryUniqueName)) + { + SharedGallery result = SharedGalleriesClient.Get(this.Location, this.GalleryUniqueName); + var psObject = new PSSharedGallery(); + ComputeAutomationAutoMapperProfile.Mapper.Map(result, psObject); + WriteObject(psObject); + } + else + { + Rest.Azure.IPage result = new Page(); + + if (this.IsParameterBound(c => c.Scope) && this.Scope != "subscription") + { + result = SharedGalleriesClient.List(this.Location, this.Scope); + } + else + { + result = SharedGalleriesClient.List(this.Location); + } + + var resultList = result.ToList(); + var nextPageLink = result.NextPageLink; + while (!string.IsNullOrEmpty(nextPageLink)) + { + var pageResult = SharedGalleriesClient.ListNext(nextPageLink); + foreach (var pageItem in pageResult) + { + resultList.Add(pageItem); + } + nextPageLink = pageResult.NextPageLink; + } + var psObject = new List(); + foreach (var r in resultList) + { + psObject.Add(ComputeAutomationAutoMapperProfile.Mapper.Map(r)); + } + WriteObject(psObject); + } + } + [Parameter( ParameterSetName = "DefaultParameter", Position = 0, @@ -133,14 +178,24 @@ public override void ExecuteCmdlet() [Parameter( Mandatory = false, ValueFromPipelineByPropertyName = true, + ParameterSetName = "SharedGalleryParameterSet", HelpMessage = "The unique name of the Shared Image Gallery.")] public string GalleryUniqueName { get; set; } [Parameter( Mandatory = false, ValueFromPipelineByPropertyName = true, - HelpMessage = "This property allows you to specify the permission of the sharing gallery. Possible values are: 'Private' and 'Groups'.")] - [PSArgumentCompleter("Subscription", "Tenant")] + ParameterSetName = "SharedGalleryParameterSet", + HelpMessage = "Specifies galleries shared to subscription or tenant.")] + [PSArgumentCompleter("subscription", "tenant")] public string Scope { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + ParameterSetName = "SharedGalleryParameterSet")] + [LocationCompleter("Microsoft.Compute/Galleries")] + [ValidateNotNullOrEmpty] + public string Location { get; set; } } } diff --git a/src/Compute/Compute/Generated/GalleryImage/GalleryImageGetMethod.cs b/src/Compute/Compute/Generated/GalleryImage/GalleryImageGetMethod.cs index f4d8e1b0f3ce..820c73a99877 100644 --- a/src/Compute/Compute/Generated/GalleryImage/GalleryImageGetMethod.cs +++ b/src/Compute/Compute/Generated/GalleryImage/GalleryImageGetMethod.cs @@ -51,6 +51,9 @@ public override void ExecuteCmdlet() galleryName = GetResourceName(this.ResourceId, "Microsoft.Compute/Galleries", "Images"); galleryImageName = GetInstanceId(this.ResourceId, "Microsoft.Compute/Galleries", "Images"); break; + case "SharedGalleryParameterSet": + SharedGalleryGet(); + return; default: resourceGroupName = this.ResourceGroupName; galleryName = this.GalleryName; @@ -90,6 +93,48 @@ public override void ExecuteCmdlet() }); } + public void SharedGalleryGet() + { + if (this.IsParameterBound(c => c.GalleryUniqueName)) + { + SharedGalleryImage result = SharedGalleryImagesClient.Get(this.Location, this.GalleryUniqueName, this.Name); + var psObject = new PSSharedGalleryImage(); + ComputeAutomationAutoMapperProfile.Mapper.Map(result, psObject); + WriteObject(psObject); + } + else + { + Rest.Azure.IPage result = new Page(); + + if (this.IsParameterBound(c => c.Scope)) + { + result = SharedGalleryImagesClient.List(this.Location, this.GalleryUniqueName, this.Scope); + } + else + { + result = SharedGalleryImagesClient.List(this.Location, this.GalleryUniqueName); + } + + var resultList = result.ToList(); + var nextPageLink = result.NextPageLink; + while (!string.IsNullOrEmpty(nextPageLink)) + { + var pageResult = SharedGalleryImagesClient.ListNext(nextPageLink); + foreach (var pageItem in pageResult) + { + resultList.Add(pageItem); + } + nextPageLink = pageResult.NextPageLink; + } + var psObject = new List(); + foreach (var r in resultList) + { + psObject.Add(ComputeAutomationAutoMapperProfile.Mapper.Map(r)); + } + WriteObject(psObject); + } + } + [Parameter( ParameterSetName = "DefaultParameter", Position = 0, @@ -110,6 +155,9 @@ public override void ExecuteCmdlet() ParameterSetName = "DefaultParameter", Position = 2, ValueFromPipelineByPropertyName = true)] + [Parameter( + ParameterSetName = "SharedGalleryParameterSet", + ValueFromPipelineByPropertyName = true)] [SupportsWildcards] public string Name { get; set; } @@ -119,5 +167,28 @@ public override void ExecuteCmdlet() Mandatory = true, ValueFromPipelineByPropertyName = true)] public string ResourceId { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + ParameterSetName = "SharedGalleryParameterSet", + HelpMessage = "The unique name of the Shared Image Gallery.")] + public string GalleryUniqueName { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + ParameterSetName = "SharedGalleryParameterSet", + HelpMessage = "Specifies galleries shared to subscription or tenant.")] + [PSArgumentCompleter("subscription", "tenant")] + public string Scope { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + ParameterSetName = "SharedGalleryParameterSet")] + [LocationCompleter("Microsoft.Compute/Galleries")] + [ValidateNotNullOrEmpty] + public string Location { get; set; } } } diff --git a/src/Compute/Compute/Generated/GalleryImageVersion/GalleryImageVersionGetMethod.cs b/src/Compute/Compute/Generated/GalleryImageVersion/GalleryImageVersionGetMethod.cs index 8edfdd1513f2..951787cd732c 100644 --- a/src/Compute/Compute/Generated/GalleryImageVersion/GalleryImageVersionGetMethod.cs +++ b/src/Compute/Compute/Generated/GalleryImageVersion/GalleryImageVersionGetMethod.cs @@ -54,6 +54,9 @@ public override void ExecuteCmdlet() galleryImageName = GetInstanceId(this.ResourceId, "Microsoft.Compute/Galleries", "Images", "Versions"); galleryImageVersionName = GetVersion(this.ResourceId, "Microsoft.Compute/Galleries", "Images", "Versions"); break; + case "SharedGalleryParameterSet": + SharedGalleryGet(); + return; default: resourceGroupName = this.ResourceGroupName; galleryName = this.GalleryName; @@ -94,6 +97,48 @@ public override void ExecuteCmdlet() }); } + public void SharedGalleryGet() + { + if (this.IsParameterBound(c => c.GalleryUniqueName)) + { + SharedGalleryImageVersion result = SharedGalleryImageVersionsClient.Get(this.Location, this.GalleryUniqueName, this.GalleryImageDefinitionName, this.Name); + var psObject = new PSSharedGalleryImageVersion(); + ComputeAutomationAutoMapperProfile.Mapper.Map(result, psObject); + WriteObject(psObject); + } + else + { + Rest.Azure.IPage result = new Page(); + + if (this.IsParameterBound(c => c.Scope) && this.Scope != "subscription") + { + result = SharedGalleryImageVersionsClient.List(this.Location, this.GalleryUniqueName, this.GalleryImageDefinitionName, this.Scope); + } + else + { + result = SharedGalleryImageVersionsClient.List(this.Location, this.GalleryUniqueName, this.GalleryImageDefinitionName); + } + + var resultList = result.ToList(); + var nextPageLink = result.NextPageLink; + while (!string.IsNullOrEmpty(nextPageLink)) + { + var pageResult = SharedGalleryImageVersionsClient.ListNext(nextPageLink); + foreach (var pageItem in pageResult) + { + resultList.Add(pageItem); + } + nextPageLink = pageResult.NextPageLink; + } + var psObject = new List(); + foreach (var r in resultList) + { + psObject.Add(ComputeAutomationAutoMapperProfile.Mapper.Map(r)); + } + WriteObject(psObject); + } + } + [Parameter( ParameterSetName = "DefaultParameter", Position = 0, @@ -114,6 +159,10 @@ public override void ExecuteCmdlet() Position = 2, Mandatory = true, ValueFromPipelineByPropertyName = true)] + [Parameter( + ParameterSetName = "SharedGalleryParameterSet", + Mandatory = true, + ValueFromPipelineByPropertyName = true)] public string GalleryImageDefinitionName { get; set; } [Alias("GalleryImageVersionName")] @@ -121,6 +170,9 @@ public override void ExecuteCmdlet() ParameterSetName = "DefaultParameter", Position = 3, ValueFromPipelineByPropertyName = true)] + [Parameter( + ParameterSetName = "SharedGalleryParameterSet", + ValueFromPipelineByPropertyName = true)] [SupportsWildcards] public string Name { get; set; } @@ -135,5 +187,28 @@ public override void ExecuteCmdlet() Mandatory = false, ValueFromPipelineByPropertyName = true)] public SwitchParameter ExpandReplicationStatus { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + ParameterSetName = "SharedGalleryParameterSet", + HelpMessage = "The unique name of the Shared Image Gallery.")] + public string GalleryUniqueName { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + ParameterSetName = "SharedGalleryParameterSet", + HelpMessage = "Specifies galleries shared to subscription or tenant.")] + [PSArgumentCompleter("subscription", "tenant")] + public string Scope { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + ParameterSetName = "SharedGalleryParameterSet")] + [LocationCompleter("Microsoft.Compute/Galleries")] + [ValidateNotNullOrEmpty] + public string Location { get; set; } } } diff --git a/src/Compute/Compute/Generated/Models/ComputeAutoMapperProfile.cs b/src/Compute/Compute/Generated/Models/ComputeAutoMapperProfile.cs index 50611942e6a5..ce0f748cf2dc 100644 --- a/src/Compute/Compute/Generated/Models/ComputeAutoMapperProfile.cs +++ b/src/Compute/Compute/Generated/Models/ComputeAutoMapperProfile.cs @@ -191,6 +191,21 @@ private static void Initialize() cfg.CreateMap(); cfg.CreateMap(); cfg.CreateMap(); + cfg.CreateMap(); + cfg.CreateMap(); + cfg.CreateMap(); + cfg.CreateMap(); + cfg.CreateMap(); + cfg.CreateMap(); + cfg.CreateMap(); + cfg.CreateMap(); + cfg.CreateMap(); + cfg.CreateMap(); + cfg.CreateMap(); + cfg.CreateMap(); + cfg.CreateMap(); + cfg.CreateMap(); + cfg.CreateMap(); }); _mapper = config.CreateMapper(); } diff --git a/src/Compute/Compute/Generated/Models/PSSharedGallery.cs b/src/Compute/Compute/Generated/Models/PSSharedGallery.cs new file mode 100644 index 000000000000..29128c3a30d0 --- /dev/null +++ b/src/Compute/Compute/Generated/Models/PSSharedGallery.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Text.RegularExpressions; +using Microsoft.Azure.Management.Compute.Models; + +namespace Microsoft.Azure.Commands.Compute.Automation.Models +{ + public class PSSharedGallery + { + public string Name { get; set; } + public string Location { get; set; } + public string UniqueId { get; set; } + } +} \ No newline at end of file diff --git a/src/Compute/Compute/Generated/Models/PSSharedGalleryImage.cs b/src/Compute/Compute/Generated/Models/PSSharedGalleryImage.cs new file mode 100644 index 000000000000..648c91205473 --- /dev/null +++ b/src/Compute/Compute/Generated/Models/PSSharedGalleryImage.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Text.RegularExpressions; +using Microsoft.Azure.Management.Compute.Models; + +namespace Microsoft.Azure.Commands.Compute.Automation.Models +{ + public class PSSharedGalleryImage + { + public OperatingSystemTypes OsType { get; set; } + public OperatingSystemStateTypes OsState { get; set; } + public DateTime? EndOfLifeDate { get; set; } + public GalleryImageIdentifier Identifier { get; set; } + public RecommendedMachineConfiguration Recommended { get; set; } + public Disallowed Disallowed { get; set; } + public string HyperVGeneration { get; set; } + public IList Features { get; set; } + public ImagePurchasePlan PurchasePlan { get; set; } + public string Name { get; set; } + public string Location { get; set; } + public string UniqueId { get; set; } + } +} diff --git a/src/Compute/Compute/Generated/Models/PSSharedGalleryImageList.cs b/src/Compute/Compute/Generated/Models/PSSharedGalleryImageList.cs new file mode 100644 index 000000000000..20737d843c59 --- /dev/null +++ b/src/Compute/Compute/Generated/Models/PSSharedGalleryImageList.cs @@ -0,0 +1,10 @@ +namespace Microsoft.Azure.Commands.Compute.Automation.Models +{ + public class PSSharedGalleryImageList : PSSharedGalleryImage + { + public PSSharedGalleryImage ToPSSharedGalleryImage() + { + return ComputeAutomationAutoMapperProfile.Mapper.Map(this); + } + } +} diff --git a/src/Compute/Compute/Generated/Models/PSSharedGalleryImageVersion.cs b/src/Compute/Compute/Generated/Models/PSSharedGalleryImageVersion.cs new file mode 100644 index 000000000000..82ad49d4d124 --- /dev/null +++ b/src/Compute/Compute/Generated/Models/PSSharedGalleryImageVersion.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Text.RegularExpressions; +using Microsoft.Azure.Management.Compute.Models; + +namespace Microsoft.Azure.Commands.Compute.Automation.Models +{ + public class PSSharedGalleryImageVersion + { + public string Name { get; set; } + public string Location { get; set; } + public string UniqueId { get; set; } + public DateTime? PublishedDate { get; set; } + public DateTime? EndOfLifeDate { get; set; } + } +} diff --git a/src/Compute/Compute/Generated/Models/PSSharedGalleryImageVersionList.cs b/src/Compute/Compute/Generated/Models/PSSharedGalleryImageVersionList.cs new file mode 100644 index 000000000000..d63be720494b --- /dev/null +++ b/src/Compute/Compute/Generated/Models/PSSharedGalleryImageVersionList.cs @@ -0,0 +1,10 @@ +namespace Microsoft.Azure.Commands.Compute.Automation.Models +{ + public class PSSharedGalleryImageVersionList : PSSharedGalleryImageVersion + { + public PSSharedGalleryImageVersion ToPSSharedGalleryImageVersion() + { + return ComputeAutomationAutoMapperProfile.Mapper.Map(this); + } + } +} diff --git a/src/Compute/Compute/Generated/Models/PSSharedGalleryList.cs b/src/Compute/Compute/Generated/Models/PSSharedGalleryList.cs new file mode 100644 index 000000000000..477aa1e1e346 --- /dev/null +++ b/src/Compute/Compute/Generated/Models/PSSharedGalleryList.cs @@ -0,0 +1,31 @@ +// +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// + +// Warning: This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if the +// code is regenerated. + +namespace Microsoft.Azure.Commands.Compute.Automation.Models +{ + public class PSSharedGalleryList : PSSharedGallery + { + public PSSharedGallery ToPSSharedGallery() + { + return ComputeAutomationAutoMapperProfile.Mapper.Map(this); + } + } +} From a1830b7b31a29743448716e66cef36d799ca2342 Mon Sep 17 00:00:00 2001 From: Theodore Chang Date: Mon, 12 Jul 2021 18:03:50 -0400 Subject: [PATCH 04/16] help doc and test --- .../ScenarioTests/GalleryTests.cs | 6 + .../ScenarioTests/GalleryTests.ps1 | 45 + .../TestGalleryDirectSharing.json | 2479 +++++++++++++++++ src/Compute/Compute/ChangeLog.md | 6 + .../Gallery/GalleryCreateOrUpdateMethod.cs | 57 +- .../Generated/Gallery/GalleryGetMethod.cs | 10 +- .../GalleryImage/GalleryImageGetMethod.cs | 4 +- .../GalleryImageVersionGetMethod.cs | 2 +- src/Compute/Compute/help/Az.Compute.md | 8 +- src/Compute/Compute/help/Get-AzGallery.md | 78 +- .../help/Get-AzGalleryImageDefinition.md | 53 +- .../Compute/help/Get-AzGalleryImageVersion.md | 56 +- src/Compute/Compute/help/New-AzGallery.md | 26 +- src/Compute/Compute/help/Update-AzGallery.md | 125 +- 14 files changed, 2932 insertions(+), 23 deletions(-) create mode 100644 src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.GalleryTests/TestGalleryDirectSharing.json diff --git a/src/Compute/Compute.Test/ScenarioTests/GalleryTests.cs b/src/Compute/Compute.Test/ScenarioTests/GalleryTests.cs index f0f9fe472296..8857fcf9f3e2 100644 --- a/src/Compute/Compute.Test/ScenarioTests/GalleryTests.cs +++ b/src/Compute/Compute.Test/ScenarioTests/GalleryTests.cs @@ -51,5 +51,11 @@ public void TestGalleryImageVersionDiskImage() { TestRunner.RunTestScript("Test-GalleryImageVersionDiskImage"); } + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestGalleryDirectSharing() + { + TestRunner.RunTestScript("Test-GalleryDirectSharing"); + } } } \ No newline at end of file diff --git a/src/Compute/Compute.Test/ScenarioTests/GalleryTests.ps1 b/src/Compute/Compute.Test/ScenarioTests/GalleryTests.ps1 index 6f55ae925621..91ed95f2a2ce 100644 --- a/src/Compute/Compute.Test/ScenarioTests/GalleryTests.ps1 +++ b/src/Compute/Compute.Test/ScenarioTests/GalleryTests.ps1 @@ -709,3 +709,48 @@ function Test-GalleryImageVersionDiskImage Clean-ResourceGroup $rgname } } + +function Test-GalleryDirectSharing +{ + # Setup + $rgname = Get-ComputeTestResourceName; + $galleryName = 'gallery' + $rgname; + + try + { + $loc = 'eastus' + New-AzResourceGroup -Name $rgname -Location $loc -Force; + + # create gallery with permissions groups + New-AzGallery -ResourceGroupName $rgname -Location $loc -Name $galleryName -Permission 'Groups' + + # get that gallery check for SharingProfile + $gal = Get-AzGallery -ResourceGroupName $rgname -Name $galleryName -Select 'Permissions' + Assert-AreEqual $gal.sharingProfile.Permissions 'Groups' + + # Reset that gallery + $gal = Update-AzGallery -ResourceGroupName $rgname -Name $galleryName -Share -Reset + + # check + Assert-AreEqual $gal.SharingProfile.Permissions 'Private' + + # Add 2 subscriptions to share with + $gal = Update-AzGallery -ResourceGroupName $rgname -Name $galleryName -Permission 'Groups' -Share -Subscription '88fd8cb2-8248-499e-9a2d-4929a4b0133c','54b875cc-a81a-4914-8bfd-1a36bc7ddf4d' + + # check + Assert-AreEqual $gal.SharingProfile.Groups[0].Type 'Subscriptions' + Assert-AreEqual $gal.SharingProfile.Groups[0].Ids.count 2 + + # remove 1 + $gal = Update-AzGallery -ResourceGroupName $rgname -Name $galleryName -Permission 'Groups' -Share -RemoveSubscription '88fd8cb2-8248-499e-9a2d-4929a4b0133c' + + # check + Assert-AreEqual $gal.SharingProfile.Groups[0].Type 'Subscriptions' + Assert-AreEqual $gal.SharingProfile.Groups[0].Ids.count 1 + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} \ No newline at end of file diff --git a/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.GalleryTests/TestGalleryDirectSharing.json b/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.GalleryTests/TestGalleryDirectSharing.json new file mode 100644 index 000000000000..90417b19d6b7 --- /dev/null +++ b/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.GalleryTests/TestGalleryDirectSharing.json @@ -0,0 +1,2479 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/crptestps7018?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczcwMTg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "704c4560-8ebf-4bc5-8dd6-27cca82529ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.39" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "28" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "374ff8ea-8c72-4ef9-b03b-f3eeac9d044c" + ], + "x-ms-correlation-request-id": [ + "374ff8ea-8c72-4ef9-b03b-f3eeac9d044c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20210712T212131Z:374ff8ea-8c72-4ef9-b03b-f3eeac9d044c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:21:30 GMT" + ], + "Content-Length": [ + "179" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018\",\r\n \"name\": \"crptestps7018\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n }\r\n },\r\n \"location\": \"eastus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c3489a3-9b7c-40c5-b606-0c42eb044cf9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "116" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/dbd14d8c-2115-471b-ada2-a946457b5cb3?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": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "dbd14d8c-2115-471b-ada2-a946457b5cb3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "3a941c85-2413-4566-a993-990a6f8f7748" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20210712T212134Z:3a941c85-2413-4566-a993-990a6f8f7748" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:21:33 GMT" + ], + "Content-Length": [ + "493" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"identifier\": {}\r\n },\r\n \"location\": \"eastus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e564f4ac-c665-400f-b1d5-948ad09a7276" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "75" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/1780dfac-3590-4428-91a2-b6c1bd188fec?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateGallery3Min;48,Microsoft.Compute/CreateUpdateGallery30Min;297" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "1780dfac-3590-4428-91a2-b6c1bd188fec" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "a460bc48-6769-47ee-aa5e-720fa85cc842" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20210712T212206Z:a460bc48-6769-47ee-aa5e-720fa85cc842" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:22:05 GMT" + ], + "Content-Length": [ + "494" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"identifier\": {},\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n }\r\n },\r\n \"location\": \"eastus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "27c0ed1b-b785-4d5e-9ea8-7b31c45d2b12" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "139" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/e31d0c4a-c3ca-4fde-ad81-1705b57e3b33?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateGallery3Min;47,Microsoft.Compute/CreateUpdateGallery30Min;296" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "e31d0c4a-c3ca-4fde-ad81-1705b57e3b33" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "8241cd80-1280-4851-b57a-bffb5ef48102" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20210712T212237Z:8241cd80-1280-4851-b57a-bffb5ef48102" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:22:37 GMT" + ], + "Content-Length": [ + "494" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"identifier\": {},\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n }\r\n },\r\n \"location\": \"eastus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c6d5cfff-66bb-4db8-8f46-50bfdcc7cd9f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "139" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/cae68e57-5bfb-417d-9921-0900c462149b?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateGallery3Min;46,Microsoft.Compute/CreateUpdateGallery30Min;295" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "cae68e57-5bfb-417d-9921-0900c462149b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "d9a19925-460f-4ad8-a327-2087560fa658" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20210712T212309Z:d9a19925-460f-4ad8-a327-2087560fa658" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:23:09 GMT" + ], + "Content-Length": [ + "494" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/dbd14d8c-2115-471b-ada2-a946457b5cb3?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL2NhcHNPcGVyYXRpb25zL2RiZDE0ZDhjLTIxMTUtNDcxYi1hZGEyLWE5NDY0NTdiNWNiMz9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c3489a3-9b7c-40c5-b606-0c42eb044cf9" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4195" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "3b8647e8-7832-427d-b73b-a398e622eed8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "05994129-bcfd-4639-9cb4-5c7aa9298c70" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20210712T212204Z:05994129-bcfd-4639-9cb4-5c7aa9298c70" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:22:04 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-07-12T17:21:34.1757109-04:00\",\r\n \"endTime\": \"2021-07-12T17:21:34.3944539-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"dbd14d8c-2115-471b-ada2-a946457b5cb3\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c3489a3-9b7c-40c5-b606-0c42eb044cf9" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2491" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "195414cd-9031-4e14-9ed0-1504ced2131a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "f16aaea4-bce1-444d-a3bb-1bf24181c46f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20210712T212204Z:f16aaea4-bce1-444d-a3bb-1bf24181c46f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:22:04 GMT" + ], + "Content-Length": [ + "430" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e564f4ac-c665-400f-b1d5-948ad09a7276" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;344,Microsoft.Compute/GetGallery30Min;2489" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "eff09249-e58d-47a3-8ae7-36cf25dae087" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "b7f952fe-0aeb-4f9f-ad1c-55ee91b4bd65" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20210712T212205Z:b7f952fe-0aeb-4f9f-ad1c-55ee91b4bd65" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:22:05 GMT" + ], + "Content-Length": [ + "430" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e564f4ac-c665-400f-b1d5-948ad09a7276" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;343,Microsoft.Compute/GetGallery30Min;2488" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "1b6c8864-28de-4257-a82e-6f7b84191dad" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "f7e9c34e-fe9d-4f54-a888-bcf030d80924" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20210712T212206Z:f7e9c34e-fe9d-4f54-a888-bcf030d80924" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:22:05 GMT" + ], + "Content-Length": [ + "430" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "27c0ed1b-b785-4d5e-9ea8-7b31c45d2b12" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;339,Microsoft.Compute/GetGallery30Min;2484" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "d700c0af-876d-4c12-8dfd-a2a93a49d435" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "a14fceb2-a9f4-4cdd-96df-83fc934d7714" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20210712T212237Z:a14fceb2-a9f4-4cdd-96df-83fc934d7714" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:22:36 GMT" + ], + "Content-Length": [ + "430" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "27c0ed1b-b785-4d5e-9ea8-7b31c45d2b12" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;338,Microsoft.Compute/GetGallery30Min;2483" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "a9fcf859-bbed-47cd-9f79-439c8a27ee7c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "03943f33-ef97-4f42-b628-ad63838faff1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20210712T212237Z:03943f33-ef97-4f42-b628-ad63838faff1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:22:37 GMT" + ], + "Content-Length": [ + "430" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c6d5cfff-66bb-4db8-8f46-50bfdcc7cd9f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;335,Microsoft.Compute/GetGallery30Min;2480" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "4fd90726-735f-464f-a421-8a406ef6c0de" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "03e994c9-caf9-4184-b117-eceb3b296019" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20210712T212308Z:03e994c9-caf9-4184-b117-eceb3b296019" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:23:08 GMT" + ], + "Content-Length": [ + "430" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c6d5cfff-66bb-4db8-8f46-50bfdcc7cd9f" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;334,Microsoft.Compute/GetGallery30Min;2479" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "b9d5321a-82fe-4347-8b5a-1856f0fc0bf4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "a86250c8-b860-42b3-b129-b12b1e0935fb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20210712T212309Z:a86250c8-b860-42b3-b129-b12b1e0935fb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:23:09 GMT" + ], + "Content-Length": [ + "430" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30&$select=Permissions", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMwJiRzZWxlY3Q9UGVybWlzc2lvbnM=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3f165366-de02-4d45-ab89-f0c1fe920200" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;345,Microsoft.Compute/GetGallery30Min;2490" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "91502517-7a20-4f8f-9db5-33dd8545ab43" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "3f7fefb1-863f-4a24-a3b3-98c299d3e728" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20210712T212205Z:3f7fefb1-863f-4a24-a3b3-98c299d3e728" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:22:04 GMT" + ], + "Content-Length": [ + "494" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30&$select=Permissions", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMwJiRzZWxlY3Q9UGVybWlzc2lvbnM=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e564f4ac-c665-400f-b1d5-948ad09a7276" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;340,Microsoft.Compute/GetGallery30Min;2485" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "174802bf-f513-43a6-afa5-fd4dfc6dd7aa" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "15f89758-9e6b-4138-a7d6-31532e43f2d7" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20210712T212236Z:15f89758-9e6b-4138-a7d6-31532e43f2d7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:22:36 GMT" + ], + "Content-Length": [ + "495" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\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/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30&$select=Permissions", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMwJiRzZWxlY3Q9UGVybWlzc2lvbnM=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "27c0ed1b-b785-4d5e-9ea8-7b31c45d2b12" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;336,Microsoft.Compute/GetGallery30Min;2481" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "478a9d75-1a4e-476b-ac8a-1e1a0cc9b9ea" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "d725fea0-2a0f-4f39-bb5e-70fb426261ad" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20210712T212308Z:d725fea0-2a0f-4f39-bb5e-70fb426261ad" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:23:07 GMT" + ], + "Content-Length": [ + "719" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\",\r\n \"groups\": [\r\n {\r\n \"type\": \"Subscriptions\",\r\n \"ids\": [\r\n \"88fd8cb2-8248-499e-9a2d-4929a4b0133c\",\r\n \"54b875cc-a81a-4914-8bfd-1a36bc7ddf4d\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30&$select=Permissions", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMwJiRzZWxlY3Q9UGVybWlzc2lvbnM=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c6d5cfff-66bb-4db8-8f46-50bfdcc7cd9f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;332,Microsoft.Compute/GetGallery30Min;2477" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "6ce79301-652a-4a04-a7d9-4348039f4099" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "9d72293a-84f7-4623-b1e5-44784d3de4bc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20210712T212340Z:9d72293a-84f7-4623-b1e5-44784d3de4bc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:23:39 GMT" + ], + "Content-Length": [ + "666" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\",\r\n \"groups\": [\r\n {\r\n \"type\": \"Subscriptions\",\r\n \"ids\": [\r\n \"54b875cc-a81a-4914-8bfd-1a36bc7ddf4d\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018/share?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOC9zaGFyZT9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"operationType\": \"Reset\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e564f4ac-c665-400f-b1d5-948ad09a7276" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/9cc3c701-14bb-4df3-a4df-db82e57ebf64?monitor=true&api-version=2020-09-30" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/9cc3c701-14bb-4df3-a4df-db82e57ebf64?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PostShareGallery3Min;9,Microsoft.Compute/PostShareGallery30Min;58" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "9cc3c701-14bb-4df3-a4df-db82e57ebf64" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "e71de7f2-7502-43ed-aa75-35318cd0f40e" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20210712T212206Z:e71de7f2-7502-43ed-aa75-35318cd0f40e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:22:05 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018/share?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOC9zaGFyZT9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"operationType\": \"Add\",\r\n \"groups\": [\r\n {\r\n \"type\": \"Subscriptions\",\r\n \"ids\": [\r\n \"88fd8cb2-8248-499e-9a2d-4929a4b0133c\",\r\n \"54b875cc-a81a-4914-8bfd-1a36bc7ddf4d\"\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "27c0ed1b-b785-4d5e-9ea8-7b31c45d2b12" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "219" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/d570d621-9a22-4027-bd0f-0d7acd69becf?monitor=true&api-version=2020-09-30" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/d570d621-9a22-4027-bd0f-0d7acd69becf?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PostShareGallery3Min;8,Microsoft.Compute/PostShareGallery30Min;57" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "d570d621-9a22-4027-bd0f-0d7acd69becf" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "a0559fab-2672-4d92-a7ec-cca70bc153fd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20210712T212237Z:a0559fab-2672-4d92-a7ec-cca70bc153fd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:22:37 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018/share?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOC9zaGFyZT9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"operationType\": \"Remove\",\r\n \"groups\": [\r\n {\r\n \"type\": \"Subscriptions\",\r\n \"ids\": [\r\n \"88fd8cb2-8248-499e-9a2d-4929a4b0133c\"\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c6d5cfff-66bb-4db8-8f46-50bfdcc7cd9f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "173" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/e2c3f6b9-922c-430b-8087-566a75a006cc?monitor=true&api-version=2020-09-30" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/e2c3f6b9-922c-430b-8087-566a75a006cc?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PostShareGallery3Min;7,Microsoft.Compute/PostShareGallery30Min;56" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "e2c3f6b9-922c-430b-8087-566a75a006cc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "74572736-937e-4019-ae18-f246b2f497c4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20210712T212309Z:74572736-937e-4019-ae18-f246b2f497c4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:23:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/9cc3c701-14bb-4df3-a4df-db82e57ebf64?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL2NhcHNPcGVyYXRpb25zLzljYzNjNzAxLTE0YmItNGRmMy1hNGRmLWRiODJlNTdlYmY2ND9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e564f4ac-c665-400f-b1d5-948ad09a7276" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4193" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "25c4c52a-bc07-4970-ac93-0fcd3cbccfeb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "b7890d85-9a69-4667-86a6-4307806c76b8" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20210712T212236Z:b7890d85-9a69-4667-86a6-4307806c76b8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:22:36 GMT" + ], + "Content-Length": [ + "183" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-07-12T17:22:06.597853-04:00\",\r\n \"endTime\": \"2021-07-12T17:22:06.6446821-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9cc3c701-14bb-4df3-a4df-db82e57ebf64\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/9cc3c701-14bb-4df3-a4df-db82e57ebf64?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL2NhcHNPcGVyYXRpb25zLzljYzNjNzAxLTE0YmItNGRmMy1hNGRmLWRiODJlNTdlYmY2ND9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e564f4ac-c665-400f-b1d5-948ad09a7276" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4192" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "48f13371-82b9-4acf-ae29-1741f671bea7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "e11ee304-cc92-4bcf-8159-60140fe007af" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20210712T212236Z:e11ee304-cc92-4bcf-8159-60140fe007af" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:22:36 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/d570d621-9a22-4027-bd0f-0d7acd69becf?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL2NhcHNPcGVyYXRpb25zL2Q1NzBkNjIxLTlhMjItNDAyNy1iZDBmLTBkN2FjZDY5YmVjZj9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "27c0ed1b-b785-4d5e-9ea8-7b31c45d2b12" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4190" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "bcef5500-5f57-4530-9373-abe38b6d98e9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "c8a1ca70-2aeb-404e-b8a0-cfb8c68f581f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20210712T212308Z:c8a1ca70-2aeb-404e-b8a0-cfb8c68f581f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:23:07 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-07-12T17:22:37.9105496-04:00\",\r\n \"endTime\": \"2021-07-12T17:22:39.0824504-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d570d621-9a22-4027-bd0f-0d7acd69becf\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/d570d621-9a22-4027-bd0f-0d7acd69becf?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL2NhcHNPcGVyYXRpb25zL2Q1NzBkNjIxLTlhMjItNDAyNy1iZDBmLTBkN2FjZDY5YmVjZj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "27c0ed1b-b785-4d5e-9ea8-7b31c45d2b12" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4189" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "67f13f77-f05d-4b55-a7ec-1b934e3e1aed" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "add01977-50ba-4961-b863-5cde0ff14b52" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20210712T212308Z:add01977-50ba-4961-b863-5cde0ff14b52" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:23:07 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/e2c3f6b9-922c-430b-8087-566a75a006cc?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL2NhcHNPcGVyYXRpb25zL2UyYzNmNmI5LTkyMmMtNDMwYi04MDg3LTU2NmE3NWEwMDZjYz9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c6d5cfff-66bb-4db8-8f46-50bfdcc7cd9f" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4187" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "10a5f256-4624-49b3-84bc-4c4d99f2c3cc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "0d56afd3-5929-4e6b-abbd-b72e975a333c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20210712T212339Z:0d56afd3-5929-4e6b-abbd-b72e975a333c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:23:39 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-07-12T17:23:09.7388895-04:00\",\r\n \"endTime\": \"2021-07-12T17:23:10.0513882-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e2c3f6b9-922c-430b-8087-566a75a006cc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/e2c3f6b9-922c-430b-8087-566a75a006cc?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL2NhcHNPcGVyYXRpb25zL2UyYzNmNmI5LTkyMmMtNDMwYi04MDg3LTU2NmE3NWEwMDZjYz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c6d5cfff-66bb-4db8-8f46-50bfdcc7cd9f" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4186" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "73e9d996-9bea-4a0f-a0a5-62c4f7f4e10e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "dc39192d-5e57-4f3a-add9-98bd81f1ae77" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20210712T212340Z:dc39192d-5e57-4f3a-add9-98bd81f1ae77" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:23:39 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/crptestps7018?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczcwMTg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ba7c834f-4b4e-455a-9fa8-83974fdaa9cf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.39" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "cd62d255-de16-45f6-9e37-91d68eeadc6e" + ], + "x-ms-correlation-request-id": [ + "cd62d255-de16-45f6-9e37-91d68eeadc6e" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20210712T212341Z:cd62d255-de16-45f6-9e37-91d68eeadc6e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:23:41 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTURFNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.39" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "e0dfb668-5d35-4b33-839e-a3cc85bca982" + ], + "x-ms-correlation-request-id": [ + "e0dfb668-5d35-4b33-839e-a3cc85bca982" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20210712T212356Z:e0dfb668-5d35-4b33-839e-a3cc85bca982" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:23:56 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTURFNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.39" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "88de0f5d-b3af-4543-a38f-1d38b619cb30" + ], + "x-ms-correlation-request-id": [ + "88de0f5d-b3af-4543-a38f-1d38b619cb30" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20210712T212411Z:88de0f5d-b3af-4543-a38f-1d38b619cb30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:24:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTURFNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.39" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "acddfe5c-0f13-4563-a92d-5585894c0325" + ], + "x-ms-correlation-request-id": [ + "acddfe5c-0f13-4563-a92d-5585894c0325" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20210712T212426Z:acddfe5c-0f13-4563-a92d-5585894c0325" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:24:25 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTURFNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.39" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "a74c8e12-097d-4397-a04b-afa59097bf86" + ], + "x-ms-correlation-request-id": [ + "a74c8e12-097d-4397-a04b-afa59097bf86" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20210712T212441Z:a74c8e12-097d-4397-a04b-afa59097bf86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:24:40 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTURFNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.39" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "72772fb2-057c-46eb-adbd-18d027780369" + ], + "x-ms-correlation-request-id": [ + "72772fb2-057c-46eb-adbd-18d027780369" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20210712T212457Z:72772fb2-057c-46eb-adbd-18d027780369" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:24:57 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTURFNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.39" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "2ed13fcd-741d-4115-a372-7b44f1d5aef9" + ], + "x-ms-correlation-request-id": [ + "2ed13fcd-741d-4115-a372-7b44f1d5aef9" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20210712T212512Z:2ed13fcd-741d-4115-a372-7b44f1d5aef9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:25:12 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTURFNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.39" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "4a614dac-b6ee-446f-9c29-4bb3e6ba1079" + ], + "x-ms-correlation-request-id": [ + "4a614dac-b6ee-446f-9c29-4bb3e6ba1079" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20210712T212527Z:4a614dac-b6ee-446f-9c29-4bb3e6ba1079" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:25:26 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTURFNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.39" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "9e6070ed-1ec7-4dd7-833b-1cb8dc07f298" + ], + "x-ms-correlation-request-id": [ + "9e6070ed-1ec7-4dd7-833b-1cb8dc07f298" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20210712T212542Z:9e6070ed-1ec7-4dd7-833b-1cb8dc07f298" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:25:41 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTURFNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.39" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "66e30867-b305-4061-aa5b-eb1599571d1d" + ], + "x-ms-correlation-request-id": [ + "66e30867-b305-4061-aa5b-eb1599571d1d" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20210712T212557Z:66e30867-b305-4061-aa5b-eb1599571d1d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:25:57 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTURFNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.39" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "99fd5641-9063-48d3-a9df-982d2d95d803" + ], + "x-ms-correlation-request-id": [ + "99fd5641-9063-48d3-a9df-982d2d95d803" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20210712T212612Z:99fd5641-9063-48d3-a9df-982d2d95d803" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:26:12 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "805" + ] + }, + "ResponseBody": "{\r\n \"Error\": {\r\n \"Code\": \"ResourceGroupDeletionBlocked\",\r\n \"Target\": null,\r\n \"Message\": \"Deletion of resource group 'crptestps7018' failed as resources with identifiers 'Microsoft.Compute/galleries/gallerycrptestps7018' could not be deleted. The provisioning state of the resource group will be rolled back. The tracking Id is 'cd62d255-de16-45f6-9e37-91d68eeadc6e'. Please check audit logs for more details.\",\r\n \"Details\": [\r\n {\r\n \"Code\": null,\r\n \"Target\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"Message\": \"{\\\"error\\\":{\\\"code\\\":\\\"OperationNotAllowed\\\",\\\"message\\\":\\\"Gallery is still shared to 'Groups'. Please unshare the gallery first before deleting the gallery.\\\"}}\",\r\n \"Details\": null,\r\n \"AdditionalInfo\": null\r\n }\r\n ],\r\n \"AdditionalInfo\": null\r\n }\r\n}", + "StatusCode": 409 + } + ], + "Names": { + "Test-GalleryDirectSharing": [ + "crptestps7018" + ] + }, + "Variables": { + "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871" + } +} \ No newline at end of file diff --git a/src/Compute/Compute/ChangeLog.md b/src/Compute/Compute/ChangeLog.md index 82ea3d82c861..0d16f0967bf7 100644 --- a/src/Compute/Compute/ChangeLog.md +++ b/src/Compute/Compute/ChangeLog.md @@ -39,6 +39,12 @@ - New-AzDiskUpdateConfig - New-AzDiskEncryptionSetConfig - Update-AzDiskEncryptionSet +* `New-AzGallery` can take in `-Permission` parameter to set its sharingProfile property. +* `Update-AzGallery` can update sharingProfile. +* New parameter set for the following cmdlets to support Shared Image Gallery Direct Sharing + - Get-AzGallery + - Get-AzGalleryImageDefinition + - Get-AzGalleryImageVersion ## Version 4.14.0 * Updated Compute module to use the latest .Net SDK version 47.0.0. diff --git a/src/Compute/Compute/Generated/Gallery/GalleryCreateOrUpdateMethod.cs b/src/Compute/Compute/Generated/Gallery/GalleryCreateOrUpdateMethod.cs index f54f8e28fe58..3188e0022379 100644 --- a/src/Compute/Compute/Generated/Gallery/GalleryCreateOrUpdateMethod.cs +++ b/src/Compute/Compute/Generated/Gallery/GalleryCreateOrUpdateMethod.cs @@ -173,6 +173,7 @@ public override void ExecuteCmdlet() gallery.SharingProfile.Permissions = this.Permission; } + SharingUpdate sharingUpdate = new SharingUpdate(); if (this.Share.IsPresent) { @@ -202,6 +203,7 @@ public override void ExecuteCmdlet() sharingProfile.Ids.Add(id); } sharingUpdate.Groups.Add(sharingProfile); + sharingUpdate.OperationType = "Add"; } if (this.IsParameterBound(c => c.Tenant)) { @@ -217,19 +219,52 @@ public override void ExecuteCmdlet() sharingProfile.Ids.Add(id); } sharingUpdate.Groups.Add(sharingProfile); + sharingUpdate.OperationType = "Add"; + } + if (this.IsParameterBound(c => c.RemoveTenant)) + { + if (sharingUpdate.Groups == null) + { + sharingUpdate.Groups = new List(); + } + SharingProfileGroup sharingProfile = new SharingProfileGroup(); + sharingProfile.Type = "AADTenants"; + sharingProfile.Ids = new List(); + foreach (var id in this.RemoveTenant) + { + sharingProfile.Ids.Add(id); + } + sharingUpdate.Groups.Add(sharingProfile); + sharingUpdate.OperationType = "Remove"; + } + if (this.IsParameterBound(c => c.RemoveSubscription)) + { + if (sharingUpdate.Groups == null) + { + sharingUpdate.Groups = new List(); + } + SharingProfileGroup sharingProfile = new SharingProfileGroup(); + sharingProfile.Type = "Subscriptions"; + sharingProfile.Ids = new List(); + foreach (var id in this.RemoveSubscription) + { + sharingProfile.Ids.Add(id); + } + sharingUpdate.Groups.Add(sharingProfile); + sharingUpdate.OperationType = "Remove"; } } - else if (this.IsParameterBound(c => c.Subscription) || this.IsParameterBound(c => c.Tenant) || this.Reset.IsPresent) + else if (this.IsParameterBound(c => c.Subscription) || this.IsParameterBound(c => c.Tenant) || this.Reset.IsPresent || this.IsParameterBound(c => c.RemoveSubscription) || this.IsParameterBound(c => c.RemoveTenant)) { - throw new Exception("Parameters '-Subscription', '-Tenant', and '-Reset' must be used with '-Share' parameter."); + throw new Exception("Parameters '-Subscription', '-Tenant', '-RemoveSubscription', '-RemoveTenant', and '-Reset' must be used with '-Share' parameter."); } var result = GalleriesClient.CreateOrUpdate(resourceGroupName, galleryName, gallery); if (this.Share.IsPresent) { GallerySharingProfileClient.Update(resourceGroupName, galleryName, sharingUpdate); - result = GalleriesClient.Get(ResourceGroupName, galleryName); + result = GalleriesClient.Get(ResourceGroupName, galleryName, "Permissions"); } var psObject = new PSGallery(); ComputeAutomationAutoMapperProfile.Mapper.Map(result, psObject); @@ -292,15 +327,27 @@ public override void ExecuteCmdlet() [Parameter( Mandatory = false, ValueFromPipelineByPropertyName = true, - HelpMessage = "A list of subscription ids the gallery is aimed to be shared to.")] + HelpMessage = "A list of subscription IDs the gallery is aimed to be shared to.")] public string[] Subscription { get; set; } [Parameter( Mandatory = false, ValueFromPipelineByPropertyName = true, - HelpMessage = "A list of tenant ids the gallery is aimed to be shared to.")] + HelpMessage = "A list of tenant IDs the gallery is aimed to be shared to.")] public string[] Tenant { get; set; } + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "A list of subscription IDs the gallery will stop sharing to.")] + public string[] RemoveSubscription { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "A list of tenant IDs the gallery will stop sharing to.")] + public string[] RemoveTenant { get; set; } + [Parameter( Mandatory = false, ValueFromPipelineByPropertyName = true, diff --git a/src/Compute/Compute/Generated/Gallery/GalleryGetMethod.cs b/src/Compute/Compute/Generated/Gallery/GalleryGetMethod.cs index c5a228052f90..1e8dd7154f0c 100644 --- a/src/Compute/Compute/Generated/Gallery/GalleryGetMethod.cs +++ b/src/Compute/Compute/Generated/Gallery/GalleryGetMethod.cs @@ -60,7 +60,7 @@ public override void ExecuteCmdlet() if (ShouldGetByName(resourceGroupName, galleryName)) { - var result = GalleriesClient.Get(resourceGroupName, galleryName); + var result = GalleriesClient.Get(resourceGroupName, galleryName, this.Select); var psObject = new PSGallery(); ComputeAutomationAutoMapperProfile.Mapper.Map(result, psObject); WriteObject(psObject); @@ -197,5 +197,13 @@ public void SharedGalleryGet() [LocationCompleter("Microsoft.Compute/Galleries")] [ValidateNotNullOrEmpty] public string Location { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + ParameterSetName = "DefaultParameter", + HelpMessage = "The select expression to apply on the operation.")] + [PSArgumentCompleter("Permissions")] + public string Select { get; set; } } } diff --git a/src/Compute/Compute/Generated/GalleryImage/GalleryImageGetMethod.cs b/src/Compute/Compute/Generated/GalleryImage/GalleryImageGetMethod.cs index 820c73a99877..e17dd50c2799 100644 --- a/src/Compute/Compute/Generated/GalleryImage/GalleryImageGetMethod.cs +++ b/src/Compute/Compute/Generated/GalleryImage/GalleryImageGetMethod.cs @@ -95,7 +95,7 @@ public override void ExecuteCmdlet() public void SharedGalleryGet() { - if (this.IsParameterBound(c => c.GalleryUniqueName)) + if (this.IsParameterBound(c => c.Name)) { SharedGalleryImage result = SharedGalleryImagesClient.Get(this.Location, this.GalleryUniqueName, this.Name); var psObject = new PSSharedGalleryImage(); @@ -106,7 +106,7 @@ public void SharedGalleryGet() { Rest.Azure.IPage result = new Page(); - if (this.IsParameterBound(c => c.Scope)) + if (this.IsParameterBound(c => c.Scope) && this.Scope != "subscription") { result = SharedGalleryImagesClient.List(this.Location, this.GalleryUniqueName, this.Scope); } diff --git a/src/Compute/Compute/Generated/GalleryImageVersion/GalleryImageVersionGetMethod.cs b/src/Compute/Compute/Generated/GalleryImageVersion/GalleryImageVersionGetMethod.cs index 951787cd732c..7bd4004572fa 100644 --- a/src/Compute/Compute/Generated/GalleryImageVersion/GalleryImageVersionGetMethod.cs +++ b/src/Compute/Compute/Generated/GalleryImageVersion/GalleryImageVersionGetMethod.cs @@ -99,7 +99,7 @@ public override void ExecuteCmdlet() public void SharedGalleryGet() { - if (this.IsParameterBound(c => c.GalleryUniqueName)) + if (this.IsParameterBound(c => c.Name)) { SharedGalleryImageVersion result = SharedGalleryImageVersionsClient.Get(this.Location, this.GalleryUniqueName, this.GalleryImageDefinitionName, this.Name); var psObject = new PSSharedGalleryImageVersion(); diff --git a/src/Compute/Compute/help/Az.Compute.md b/src/Compute/Compute/help/Az.Compute.md index aaed2f4505e6..b992af15b7e9 100644 --- a/src/Compute/Compute/help/Az.Compute.md +++ b/src/Compute/Compute/help/Az.Compute.md @@ -120,7 +120,7 @@ Gets an .rdp file. Gets the properties of a snapshot ### [Get-AzSshKey](Get-AzSshKey.md) -{{ Fill in the Synopsis }} +Gets the properties of SSH Public Key resources. ### [Get-AzVM](Get-AzVM.md) Gets the properties of a virtual machine. @@ -282,7 +282,7 @@ Creates a configurable snapshot object. Creates a configurable snapshot update object. ### [New-AzSshKey](New-AzSshKey.md) -{{ Fill in the Synopsis }} +Create a SSH Public Key resource. ### [New-AzVM](New-AzVM.md) Creates a virtual machine. @@ -360,7 +360,7 @@ Delete Proximity Placement Group resource. Removes a snapshot. ### [Remove-AzSshKey](Remove-AzSshKey.md) -{{ Fill in the Synopsis }} +Delete a SSH Public Key resource. ### [Remove-AzVM](Remove-AzVM.md) Removes a virtual machine from Azure. @@ -618,7 +618,7 @@ Updates an image. Updates a snapshot. ### [Update-AzSshKey](Update-AzSshKey.md) -{{ Fill in the Synopsis }} +Update a SSH Public Key resource. ### [Update-AzVM](Update-AzVM.md) Updates the state of an Azure virtual machine. diff --git a/src/Compute/Compute/help/Get-AzGallery.md b/src/Compute/Compute/help/Get-AzGallery.md index f536172b77e7..9aa88f97ee31 100644 --- a/src/Compute/Compute/help/Get-AzGallery.md +++ b/src/Compute/Compute/help/Get-AzGallery.md @@ -14,8 +14,8 @@ Get or list galleries. ### DefaultParameter (Default) ``` -Get-AzGallery [[-ResourceGroupName] ] [[-Name] ] [-DefaultProfile ] - [] +Get-AzGallery [[-ResourceGroupName] ] [[-Name] ] [-Select ] + [-DefaultProfile ] [] ``` ### ResourceIdParameter @@ -23,6 +23,12 @@ Get-AzGallery [[-ResourceGroupName] ] [[-Name] ] [-DefaultProfil Get-AzGallery [-ResourceId] [-DefaultProfile ] [] ``` +### SharedGalleryParameterSet +``` +Get-AzGallery [-GalleryUniqueName ] [-Scope ] -Location + [-DefaultProfile ] [] +``` + ## DESCRIPTION Get or list galleries. @@ -155,6 +161,14 @@ Tags : {} Get all galleries in subscription that start with "gallery". +### Example 5 +```powershell +PS C:\> Get-AzGallery -Name galleryName -ResourceGroupName rg -Select Permissions + +``` + +Get a gallery's sharing profile. + ## PARAMETERS ### -DefaultProfile @@ -172,6 +186,36 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -GalleryUniqueName +The unique name of the Shared Image Gallery. + +```yaml +Type: System.String +Parameter Sets: SharedGalleryParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Location +Location of the Shared Image Gallery. + +```yaml +Type: System.String +Parameter Sets: SharedGalleryParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + ### -Name The name of the gallery. @@ -217,6 +261,36 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -Scope +Specifies galleries shared to subscription or tenant. + +```yaml +Type: System.String +Parameter Sets: SharedGalleryParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Select +The select expression to apply on the operation. + +```yaml +Type: System.String +Parameter Sets: DefaultParameter +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + ### CommonParameters This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). diff --git a/src/Compute/Compute/help/Get-AzGalleryImageDefinition.md b/src/Compute/Compute/help/Get-AzGalleryImageDefinition.md index b1f1172119c9..5ea818dba887 100644 --- a/src/Compute/Compute/help/Get-AzGalleryImageDefinition.md +++ b/src/Compute/Compute/help/Get-AzGalleryImageDefinition.md @@ -18,6 +18,12 @@ Get-AzGalleryImageDefinition [-ResourceGroupName] [-GalleryName] ] [] ``` +### SharedGalleryParameterSet +``` +Get-AzGalleryImageDefinition [[-Name] ] -GalleryUniqueName [-Scope ] + -Location [-DefaultProfile ] [] +``` + ### ResourceIdParameter ``` Get-AzGalleryImageDefinition [-ResourceId] [-DefaultProfile ] @@ -242,12 +248,42 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -GalleryUniqueName +The unique name of the Shared Image Gallery. + +```yaml +Type: System.String +Parameter Sets: SharedGalleryParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Location +Location of the Shared Image Gallery. + +```yaml +Type: System.String +Parameter Sets: SharedGalleryParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + ### -Name The name of the gallery image definition. ```yaml Type: System.String -Parameter Sets: DefaultParameter +Parameter Sets: DefaultParameter, SharedGalleryParameterSet Aliases: GalleryImageDefinitionName Required: False @@ -287,6 +323,21 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -Scope +Specifies galleries shared to subscription or tenant. + +```yaml +Type: System.String +Parameter Sets: SharedGalleryParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + ### CommonParameters This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). diff --git a/src/Compute/Compute/help/Get-AzGalleryImageVersion.md b/src/Compute/Compute/help/Get-AzGalleryImageVersion.md index 3da2a319a409..c3c76cb44f30 100644 --- a/src/Compute/Compute/help/Get-AzGalleryImageVersion.md +++ b/src/Compute/Compute/help/Get-AzGalleryImageVersion.md @@ -19,6 +19,13 @@ Get-AzGalleryImageVersion [-ResourceGroupName] [-GalleryName] [-DefaultProfile ] [] ``` +### SharedGalleryParameterSet +``` +Get-AzGalleryImageVersion [-GalleryImageDefinitionName] [[-Name] ] [-ExpandReplicationStatus] + -GalleryUniqueName [-Scope ] -Location [-DefaultProfile ] + [] +``` + ### ResourceIdParameter ``` Get-AzGalleryImageVersion [-ResourceId] [-ExpandReplicationStatus] @@ -243,7 +250,7 @@ The name of the gallery image definition. ```yaml Type: System.String -Parameter Sets: DefaultParameter +Parameter Sets: DefaultParameter, SharedGalleryParameterSet Aliases: Required: True @@ -268,12 +275,42 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -GalleryUniqueName +The unique name of the Shared Image Gallery. + +```yaml +Type: System.String +Parameter Sets: SharedGalleryParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Location +Location of the Shared Image Gallery. + +```yaml +Type: System.String +Parameter Sets: SharedGalleryParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + ### -Name The name of the gallery image version. ```yaml Type: System.String -Parameter Sets: DefaultParameter +Parameter Sets: DefaultParameter, SharedGalleryParameterSet Aliases: GalleryImageVersionName Required: False @@ -313,6 +350,21 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -Scope +Specifies galleries shared to subscription or tenant. + +```yaml +Type: System.String +Parameter Sets: SharedGalleryParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + ### CommonParameters This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). diff --git a/src/Compute/Compute/help/New-AzGallery.md b/src/Compute/Compute/help/New-AzGallery.md index 6fa356b6f20e..42cf89e8dac5 100644 --- a/src/Compute/Compute/help/New-AzGallery.md +++ b/src/Compute/Compute/help/New-AzGallery.md @@ -14,8 +14,8 @@ Create a gallery. ``` New-AzGallery [-ResourceGroupName] [-Name] [-AsJob] [-Location] - [-Description ] [-Tag ] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + [-Description ] [-Tag ] [-Permission ] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -30,6 +30,13 @@ PS C:\> New-AzGallery -ResourceGroupName $rgname -Name $galleryName -Location $l Create a gallery. +### Example 2 +```powershell +PS C:\> New-AzGallery -ResourceGroupName $rgname -Name $galleryName -Location $location -Description $galleryDescription -Permission Groups +``` + +Create a gallery with Direct Sharing enabled. + ## PARAMETERS ### -AsJob @@ -107,6 +114,21 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -Permission +This property allows you to specify the permission of sharing gallery. Possible values are: 'Private' and 'Groups'. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + ### -ResourceGroupName The name of the resource group. diff --git a/src/Compute/Compute/help/Update-AzGallery.md b/src/Compute/Compute/help/Update-AzGallery.md index 8773f21540c5..f34ede8b05ae 100644 --- a/src/Compute/Compute/help/Update-AzGallery.md +++ b/src/Compute/Compute/help/Update-AzGallery.md @@ -15,19 +15,25 @@ Update a gallery. ### DefaultParameter (Default) ``` Update-AzGallery [-ResourceGroupName] [-Name] [-AsJob] [-Description ] - [-Tag ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-Tag ] [-Permission ] [-Subscription ] [-Tenant ] + [-RemoveSubscription ] [-RemoveTenant ] [-Share] [-Reset] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ResourceIdParameter ``` Update-AzGallery [-ResourceId] [-AsJob] [-Description ] [-Tag ] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-Permission ] [-Subscription ] [-Tenant ] [-RemoveSubscription ] + [-RemoveTenant ] [-Share] [-Reset] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### ObjectParameter ``` Update-AzGallery [-InputObject] [-AsJob] [-Description ] [-Tag ] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-Permission ] [-Subscription ] [-Tenant ] [-RemoveSubscription ] + [-RemoveTenant ] [-Share] [-Reset] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION @@ -42,6 +48,14 @@ PS C:\> Update-AzGallery -ResourceGroupName $rgname -Name $galleryName -Descript Update a gallery. +### Example 2 +```powershell +PS C:\> Update-AzGallery -ResourceGroupName $rgname -Name $galleryName -Permission Groups -Share -Tenant xxxxxxxx-xxx-xxxxxxx,zzzzzz-zzzzzzz-zzzzzz +``` + +Update a gallery to be shared and add two subscriptions it is to be shared with. + + ## PARAMETERS ### -AsJob @@ -119,6 +133,66 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -Permission +This property allows you to specify the permission of the sharing gallery. Possible values are: 'Private' and 'Groups'. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -RemoveSubscription +A list of subscription IDs the gallery will stop sharing to. + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -RemoveTenant +A list of tenant IDs the gallery will stop sharing to. + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Reset +Resets the sharing permission of the gallery to 'Private'. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + ### -ResourceGroupName The name of the resource group. @@ -149,6 +223,36 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -Share +Update sharing profile of the gallery. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Subscription +A list of subscription IDs the gallery is aimed to be shared to. + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + ### -Tag Resource tags @@ -164,6 +268,21 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -Tenant +A list of tenant IDs the gallery is aimed to be shared to. + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + ### -Confirm Prompts you for confirmation before running the cmdlet. From 67d59760ee221418af745371d4669c5c62c64762 Mon Sep 17 00:00:00 2001 From: Theodore Chang Date: Wed, 30 Jun 2021 14:01:33 -0400 Subject: [PATCH 05/16] updated --- .../Gallery/GalleryCreateOrUpdateMethod.cs | 49 +++++++++++++++++++ .../Compute/Generated/Models/PSGallery.cs | 1 + 2 files changed, 50 insertions(+) diff --git a/src/Compute/Compute/Generated/Gallery/GalleryCreateOrUpdateMethod.cs b/src/Compute/Compute/Generated/Gallery/GalleryCreateOrUpdateMethod.cs index d545bd8e7f51..6a8d646f920f 100644 --- a/src/Compute/Compute/Generated/Gallery/GalleryCreateOrUpdateMethod.cs +++ b/src/Compute/Compute/Generated/Gallery/GalleryCreateOrUpdateMethod.cs @@ -47,6 +47,10 @@ public override void ExecuteCmdlet() string galleryName = this.Name; Gallery gallery = new Gallery(); gallery.Location = this.Location; + if (this.IsParameterBound(c => c.Permission)){ + gallery.SharingProfile = new SharingProfile(); + gallery.SharingProfile.Permissions = this.Permission; + } if (this.IsParameterBound(c => c.Description)) { @@ -102,6 +106,12 @@ public override void ExecuteCmdlet() Mandatory = false, ValueFromPipelineByPropertyName = true)] public Hashtable Tag { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true)] + [PSArgumentCompleter("Private","Groups")] + public string Permission { get; set; } } [Cmdlet(VerbsData.Update, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "Gallery", DefaultParameterSetName = "DefaultParameter", SupportsShouldProcess = true)] @@ -153,6 +163,29 @@ public override void ExecuteCmdlet() { gallery.Tags = this.Tag.Cast().ToDictionary(ht => (string)ht.Key, ht => (string)ht.Value); } + if (this.IsParameterBound(c => c.Permission)) + { + if (gallery.SharingProfile == null) + { + gallery.SharingProfile = new SharingProfile(); + } + gallery.SharingProfile.Permissions = this.Permission; + } + if (this.IsParameterBound(c => c.Subscriptions)) + { + + } + if (this.IsParameterBound(c => c.Tenants)) + { + if (gallery.SharingProfile == null) + { + gallery.SharingProfile = new SharingProfile(); + } + if (gallery.SharingProfile.Groups == null) + { + gallery.SharingProfile.Groups = new List(); + } + } var result = GalleriesClient.CreateOrUpdate(resourceGroupName, galleryName, gallery); var psObject = new PSGallery(); @@ -205,5 +238,21 @@ public override void ExecuteCmdlet() Mandatory = false, ValueFromPipelineByPropertyName = true)] public Hashtable Tag { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true)] + [PSArgumentCompleter("Private", "Groups")] + public string Permission { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true)] + public string[] Subscriptions { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true)] + public string[] Tenants { get; set; } } } diff --git a/src/Compute/Compute/Generated/Models/PSGallery.cs b/src/Compute/Compute/Generated/Models/PSGallery.cs index f5a5274c6da2..1401d7a76314 100644 --- a/src/Compute/Compute/Generated/Models/PSGallery.cs +++ b/src/Compute/Compute/Generated/Models/PSGallery.cs @@ -48,6 +48,7 @@ public string ResourceGroupName public string Type { get; set; } public string Location { get; set; } public IDictionary Tags { get; set; } + public SharingProfile SharingProfile { get; set; } } } From 0c143e93a67b28fd42faa3d8d34cfcce4e09c1ea Mon Sep 17 00:00:00 2001 From: Theodore Chang Date: Thu, 1 Jul 2021 10:54:42 -0400 Subject: [PATCH 06/16] update --- .../Generated/ComputeAutomationBaseCmdlet.cs | 7 ++ .../Gallery/GalleryCreateOrUpdateMethod.cs | 84 ++++++++++++++++--- .../Generated/Gallery/GalleryGetMethod.cs | 13 +++ 3 files changed, 91 insertions(+), 13 deletions(-) diff --git a/src/Compute/Compute/Generated/ComputeAutomationBaseCmdlet.cs b/src/Compute/Compute/Generated/ComputeAutomationBaseCmdlet.cs index 0aac0113d9c5..980dd58573fd 100644 --- a/src/Compute/Compute/Generated/ComputeAutomationBaseCmdlet.cs +++ b/src/Compute/Compute/Generated/ComputeAutomationBaseCmdlet.cs @@ -153,6 +153,13 @@ public IGalleryImageVersionsOperations GalleryImageVersionsClient return ComputeClient.ComputeManagementClient.GalleryImageVersions; } } + public IGallerySharingProfileOperations GallerySharingProfileClient + { + get + { + return ComputeClient.ComputeManagementClient.GallerySharingProfile; + } + } public IImagesOperations ImagesClient { diff --git a/src/Compute/Compute/Generated/Gallery/GalleryCreateOrUpdateMethod.cs b/src/Compute/Compute/Generated/Gallery/GalleryCreateOrUpdateMethod.cs index 6a8d646f920f..5ba2f64bd960 100644 --- a/src/Compute/Compute/Generated/Gallery/GalleryCreateOrUpdateMethod.cs +++ b/src/Compute/Compute/Generated/Gallery/GalleryCreateOrUpdateMethod.cs @@ -109,7 +109,8 @@ public override void ExecuteCmdlet() [Parameter( Mandatory = false, - ValueFromPipelineByPropertyName = true)] + ValueFromPipelineByPropertyName = true, + HelpMessage = "This property allows you to specify the permission of sharing gallery. Possible values are: 'Private' and 'Groups'.")] [PSArgumentCompleter("Private","Groups")] public string Permission { get; set; } } @@ -171,23 +172,65 @@ public override void ExecuteCmdlet() } gallery.SharingProfile.Permissions = this.Permission; } - if (this.IsParameterBound(c => c.Subscriptions)) - { - } - if (this.IsParameterBound(c => c.Tenants)) + SharingUpdate sharingUpdate = new SharingUpdate(); + if (this.Share.IsPresent) { - if (gallery.SharingProfile == null) + if (this.Reset.IsPresent) { - gallery.SharingProfile = new SharingProfile(); + // if sub or tenant is present return error + if (this.IsParameterBound(c => c.Subscriptions) || this.IsParameterBound(c => c.Tenants)) + { + throw new Exception("Parameter '-Reset' cannot be used with parameters '-Tenants' or '-Subscription'."); + } + else + { + sharingUpdate.OperationType = "Reset"; + } } - if (gallery.SharingProfile.Groups == null) + if (this.IsParameterBound(c => c.Subscriptions)) { - gallery.SharingProfile.Groups = new List(); + if (sharingUpdate.Groups == null) + { + sharingUpdate.Groups = new List(); + } + SharingProfileGroup sharingProfile = new SharingProfileGroup(); + sharingProfile.Type = "Subscriptions"; + sharingProfile.Ids = new List(); + foreach (var id in this.Subscriptions) + { + sharingProfile.Ids.Add(id); + } + sharingUpdate.Groups.Add(sharingProfile); + } + if (this.IsParameterBound(c => c.Tenants)) + { + if (sharingUpdate.Groups == null) + { + sharingUpdate.Groups = new List(); + } + SharingProfileGroup sharingProfile = new SharingProfileGroup(); + sharingProfile.Type = "AADTenants"; + sharingProfile.Ids = new List(); + foreach (var id in this.Tenants) + { + sharingProfile.Ids.Add(id); + } + sharingUpdate.Groups.Add(sharingProfile); } - } + } + else if (this.IsParameterBound(c => c.Subscriptions) || this.IsParameterBound(c => c.Tenants) || this.Reset.IsPresent) + { + throw new Exception("Parameters '-Subscriptions', '-Tenants', and '-Reset' must be used with '-Share' parameter."); + } + var result = GalleriesClient.CreateOrUpdate(resourceGroupName, galleryName, gallery); + if (this.Share.IsPresent) + { + GallerySharingProfileClient.Update(resourceGroupName, galleryName, sharingUpdate); + result = GalleriesClient.Get(ResourceGroupName, galleryName); + } var psObject = new PSGallery(); ComputeAutomationAutoMapperProfile.Mapper.Map(result, psObject); WriteObject(psObject); @@ -241,18 +284,33 @@ public override void ExecuteCmdlet() [Parameter( Mandatory = false, - ValueFromPipelineByPropertyName = true)] + ValueFromPipelineByPropertyName = true, + HelpMessage = "This property allows you to specify the permission of the sharing gallery. Possible values are: 'Private' and 'Groups'.")] [PSArgumentCompleter("Private", "Groups")] public string Permission { get; set; } [Parameter( Mandatory = false, - ValueFromPipelineByPropertyName = true)] + ValueFromPipelineByPropertyName = true, + HelpMessage = "A list of subscription ids the gallery is aimed to be shared to.")] public string[] Subscriptions { get; set; } [Parameter( Mandatory = false, - ValueFromPipelineByPropertyName = true)] + ValueFromPipelineByPropertyName = true, + HelpMessage = "A list of tenant ids the gallery is aimed to be shared to.")] public string[] Tenants { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Update sharing profile of the gallery.")] + public SwitchParameter Share { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Resets the sharing permission of the gallery to 'Private'.")] + public SwitchParameter Reset { get; set; } } } diff --git a/src/Compute/Compute/Generated/Gallery/GalleryGetMethod.cs b/src/Compute/Compute/Generated/Gallery/GalleryGetMethod.cs index c960e62a4c22..04006300773f 100644 --- a/src/Compute/Compute/Generated/Gallery/GalleryGetMethod.cs +++ b/src/Compute/Compute/Generated/Gallery/GalleryGetMethod.cs @@ -129,5 +129,18 @@ public override void ExecuteCmdlet() Mandatory = true, ValueFromPipelineByPropertyName = true)] public string ResourceId { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "The unique name of the Shared Image Gallery.")] + public string GalleryUniqueName { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "This property allows you to specify the permission of the sharing gallery. Possible values are: 'Private' and 'Groups'.")] + [PSArgumentCompleter("Subscription", "Tenant")] + public string Scope { get; set; } } } From 3b162c77f6a9e97cce48c544bc29d3645532311f Mon Sep 17 00:00:00 2001 From: Theodore Chang Date: Thu, 1 Jul 2021 18:06:39 -0400 Subject: [PATCH 07/16] update --- .../Generated/ComputeAutomationBaseCmdlet.cs | 22 ++++++ .../Gallery/GalleryCreateOrUpdateMethod.cs | 20 ++--- .../Generated/Gallery/GalleryGetMethod.cs | 59 ++++++++++++++- .../GalleryImage/GalleryImageGetMethod.cs | 71 ++++++++++++++++++ .../GalleryImageVersionGetMethod.cs | 75 +++++++++++++++++++ .../Models/ComputeAutoMapperProfile.cs | 15 ++++ .../Generated/Models/PSSharedGallery.cs | 14 ++++ .../Generated/Models/PSSharedGalleryImage.cs | 23 ++++++ .../Models/PSSharedGalleryImageList.cs | 10 +++ .../Models/PSSharedGalleryImageVersion.cs | 16 ++++ .../Models/PSSharedGalleryImageVersionList.cs | 10 +++ .../Generated/Models/PSSharedGalleryList.cs | 31 ++++++++ 12 files changed, 354 insertions(+), 12 deletions(-) create mode 100644 src/Compute/Compute/Generated/Models/PSSharedGallery.cs create mode 100644 src/Compute/Compute/Generated/Models/PSSharedGalleryImage.cs create mode 100644 src/Compute/Compute/Generated/Models/PSSharedGalleryImageList.cs create mode 100644 src/Compute/Compute/Generated/Models/PSSharedGalleryImageVersion.cs create mode 100644 src/Compute/Compute/Generated/Models/PSSharedGalleryImageVersionList.cs create mode 100644 src/Compute/Compute/Generated/Models/PSSharedGalleryList.cs diff --git a/src/Compute/Compute/Generated/ComputeAutomationBaseCmdlet.cs b/src/Compute/Compute/Generated/ComputeAutomationBaseCmdlet.cs index 980dd58573fd..724d9d38d633 100644 --- a/src/Compute/Compute/Generated/ComputeAutomationBaseCmdlet.cs +++ b/src/Compute/Compute/Generated/ComputeAutomationBaseCmdlet.cs @@ -160,6 +160,28 @@ public IGallerySharingProfileOperations GallerySharingProfileClient return ComputeClient.ComputeManagementClient.GallerySharingProfile; } } + public ISharedGalleriesOperations SharedGalleriesClient + { + get + { + return ComputeClient.ComputeManagementClient.SharedGalleries; + } + } + + public ISharedGalleryImagesOperations SharedGalleryImagesClient + { + get + { + return ComputeClient.ComputeManagementClient.SharedGalleryImages; + } + } + public ISharedGalleryImageVersionsOperations SharedGalleryImageVersionsClient + { + get + { + return ComputeClient.ComputeManagementClient.SharedGalleryImageVersions; + } + } public IImagesOperations ImagesClient { diff --git a/src/Compute/Compute/Generated/Gallery/GalleryCreateOrUpdateMethod.cs b/src/Compute/Compute/Generated/Gallery/GalleryCreateOrUpdateMethod.cs index 5ba2f64bd960..f54f8e28fe58 100644 --- a/src/Compute/Compute/Generated/Gallery/GalleryCreateOrUpdateMethod.cs +++ b/src/Compute/Compute/Generated/Gallery/GalleryCreateOrUpdateMethod.cs @@ -179,16 +179,16 @@ public override void ExecuteCmdlet() if (this.Reset.IsPresent) { // if sub or tenant is present return error - if (this.IsParameterBound(c => c.Subscriptions) || this.IsParameterBound(c => c.Tenants)) + if (this.IsParameterBound(c => c.Subscription) || this.IsParameterBound(c => c.Tenant)) { - throw new Exception("Parameter '-Reset' cannot be used with parameters '-Tenants' or '-Subscription'."); + throw new Exception("Parameter '-Reset' cannot be used with parameters '-Tenant' or '-Subscription'."); } else { sharingUpdate.OperationType = "Reset"; } } - if (this.IsParameterBound(c => c.Subscriptions)) + if (this.IsParameterBound(c => c.Subscription)) { if (sharingUpdate.Groups == null) { @@ -197,13 +197,13 @@ public override void ExecuteCmdlet() SharingProfileGroup sharingProfile = new SharingProfileGroup(); sharingProfile.Type = "Subscriptions"; sharingProfile.Ids = new List(); - foreach (var id in this.Subscriptions) + foreach (var id in this.Subscription) { sharingProfile.Ids.Add(id); } sharingUpdate.Groups.Add(sharingProfile); } - if (this.IsParameterBound(c => c.Tenants)) + if (this.IsParameterBound(c => c.Tenant)) { if (sharingUpdate.Groups == null) { @@ -212,7 +212,7 @@ public override void ExecuteCmdlet() SharingProfileGroup sharingProfile = new SharingProfileGroup(); sharingProfile.Type = "AADTenants"; sharingProfile.Ids = new List(); - foreach (var id in this.Tenants) + foreach (var id in this.Tenant) { sharingProfile.Ids.Add(id); } @@ -220,9 +220,9 @@ public override void ExecuteCmdlet() } } - else if (this.IsParameterBound(c => c.Subscriptions) || this.IsParameterBound(c => c.Tenants) || this.Reset.IsPresent) + else if (this.IsParameterBound(c => c.Subscription) || this.IsParameterBound(c => c.Tenant) || this.Reset.IsPresent) { - throw new Exception("Parameters '-Subscriptions', '-Tenants', and '-Reset' must be used with '-Share' parameter."); + throw new Exception("Parameters '-Subscription', '-Tenant', and '-Reset' must be used with '-Share' parameter."); } var result = GalleriesClient.CreateOrUpdate(resourceGroupName, galleryName, gallery); @@ -293,13 +293,13 @@ public override void ExecuteCmdlet() Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "A list of subscription ids the gallery is aimed to be shared to.")] - public string[] Subscriptions { get; set; } + public string[] Subscription { get; set; } [Parameter( Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "A list of tenant ids the gallery is aimed to be shared to.")] - public string[] Tenants { get; set; } + public string[] Tenant { get; set; } [Parameter( Mandatory = false, diff --git a/src/Compute/Compute/Generated/Gallery/GalleryGetMethod.cs b/src/Compute/Compute/Generated/Gallery/GalleryGetMethod.cs index 04006300773f..c5a228052f90 100644 --- a/src/Compute/Compute/Generated/Gallery/GalleryGetMethod.cs +++ b/src/Compute/Compute/Generated/Gallery/GalleryGetMethod.cs @@ -49,6 +49,9 @@ public override void ExecuteCmdlet() resourceGroupName = GetResourceGroupName(this.ResourceId); galleryName = GetResourceName(this.ResourceId, "Microsoft.Compute/galleries"); break; + case "SharedGalleryParameterSet": + SharedGalleryGet(); + return; default: resourceGroupName = this.ResourceGroupName; galleryName = this.Name; @@ -107,6 +110,48 @@ public override void ExecuteCmdlet() }); } + public void SharedGalleryGet() + { + if (this.IsParameterBound(c => c.GalleryUniqueName)) + { + SharedGallery result = SharedGalleriesClient.Get(this.Location, this.GalleryUniqueName); + var psObject = new PSSharedGallery(); + ComputeAutomationAutoMapperProfile.Mapper.Map(result, psObject); + WriteObject(psObject); + } + else + { + Rest.Azure.IPage result = new Page(); + + if (this.IsParameterBound(c => c.Scope) && this.Scope != "subscription") + { + result = SharedGalleriesClient.List(this.Location, this.Scope); + } + else + { + result = SharedGalleriesClient.List(this.Location); + } + + var resultList = result.ToList(); + var nextPageLink = result.NextPageLink; + while (!string.IsNullOrEmpty(nextPageLink)) + { + var pageResult = SharedGalleriesClient.ListNext(nextPageLink); + foreach (var pageItem in pageResult) + { + resultList.Add(pageItem); + } + nextPageLink = pageResult.NextPageLink; + } + var psObject = new List(); + foreach (var r in resultList) + { + psObject.Add(ComputeAutomationAutoMapperProfile.Mapper.Map(r)); + } + WriteObject(psObject); + } + } + [Parameter( ParameterSetName = "DefaultParameter", Position = 0, @@ -133,14 +178,24 @@ public override void ExecuteCmdlet() [Parameter( Mandatory = false, ValueFromPipelineByPropertyName = true, + ParameterSetName = "SharedGalleryParameterSet", HelpMessage = "The unique name of the Shared Image Gallery.")] public string GalleryUniqueName { get; set; } [Parameter( Mandatory = false, ValueFromPipelineByPropertyName = true, - HelpMessage = "This property allows you to specify the permission of the sharing gallery. Possible values are: 'Private' and 'Groups'.")] - [PSArgumentCompleter("Subscription", "Tenant")] + ParameterSetName = "SharedGalleryParameterSet", + HelpMessage = "Specifies galleries shared to subscription or tenant.")] + [PSArgumentCompleter("subscription", "tenant")] public string Scope { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + ParameterSetName = "SharedGalleryParameterSet")] + [LocationCompleter("Microsoft.Compute/Galleries")] + [ValidateNotNullOrEmpty] + public string Location { get; set; } } } diff --git a/src/Compute/Compute/Generated/GalleryImage/GalleryImageGetMethod.cs b/src/Compute/Compute/Generated/GalleryImage/GalleryImageGetMethod.cs index f4d8e1b0f3ce..820c73a99877 100644 --- a/src/Compute/Compute/Generated/GalleryImage/GalleryImageGetMethod.cs +++ b/src/Compute/Compute/Generated/GalleryImage/GalleryImageGetMethod.cs @@ -51,6 +51,9 @@ public override void ExecuteCmdlet() galleryName = GetResourceName(this.ResourceId, "Microsoft.Compute/Galleries", "Images"); galleryImageName = GetInstanceId(this.ResourceId, "Microsoft.Compute/Galleries", "Images"); break; + case "SharedGalleryParameterSet": + SharedGalleryGet(); + return; default: resourceGroupName = this.ResourceGroupName; galleryName = this.GalleryName; @@ -90,6 +93,48 @@ public override void ExecuteCmdlet() }); } + public void SharedGalleryGet() + { + if (this.IsParameterBound(c => c.GalleryUniqueName)) + { + SharedGalleryImage result = SharedGalleryImagesClient.Get(this.Location, this.GalleryUniqueName, this.Name); + var psObject = new PSSharedGalleryImage(); + ComputeAutomationAutoMapperProfile.Mapper.Map(result, psObject); + WriteObject(psObject); + } + else + { + Rest.Azure.IPage result = new Page(); + + if (this.IsParameterBound(c => c.Scope)) + { + result = SharedGalleryImagesClient.List(this.Location, this.GalleryUniqueName, this.Scope); + } + else + { + result = SharedGalleryImagesClient.List(this.Location, this.GalleryUniqueName); + } + + var resultList = result.ToList(); + var nextPageLink = result.NextPageLink; + while (!string.IsNullOrEmpty(nextPageLink)) + { + var pageResult = SharedGalleryImagesClient.ListNext(nextPageLink); + foreach (var pageItem in pageResult) + { + resultList.Add(pageItem); + } + nextPageLink = pageResult.NextPageLink; + } + var psObject = new List(); + foreach (var r in resultList) + { + psObject.Add(ComputeAutomationAutoMapperProfile.Mapper.Map(r)); + } + WriteObject(psObject); + } + } + [Parameter( ParameterSetName = "DefaultParameter", Position = 0, @@ -110,6 +155,9 @@ public override void ExecuteCmdlet() ParameterSetName = "DefaultParameter", Position = 2, ValueFromPipelineByPropertyName = true)] + [Parameter( + ParameterSetName = "SharedGalleryParameterSet", + ValueFromPipelineByPropertyName = true)] [SupportsWildcards] public string Name { get; set; } @@ -119,5 +167,28 @@ public override void ExecuteCmdlet() Mandatory = true, ValueFromPipelineByPropertyName = true)] public string ResourceId { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + ParameterSetName = "SharedGalleryParameterSet", + HelpMessage = "The unique name of the Shared Image Gallery.")] + public string GalleryUniqueName { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + ParameterSetName = "SharedGalleryParameterSet", + HelpMessage = "Specifies galleries shared to subscription or tenant.")] + [PSArgumentCompleter("subscription", "tenant")] + public string Scope { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + ParameterSetName = "SharedGalleryParameterSet")] + [LocationCompleter("Microsoft.Compute/Galleries")] + [ValidateNotNullOrEmpty] + public string Location { get; set; } } } diff --git a/src/Compute/Compute/Generated/GalleryImageVersion/GalleryImageVersionGetMethod.cs b/src/Compute/Compute/Generated/GalleryImageVersion/GalleryImageVersionGetMethod.cs index 8edfdd1513f2..951787cd732c 100644 --- a/src/Compute/Compute/Generated/GalleryImageVersion/GalleryImageVersionGetMethod.cs +++ b/src/Compute/Compute/Generated/GalleryImageVersion/GalleryImageVersionGetMethod.cs @@ -54,6 +54,9 @@ public override void ExecuteCmdlet() galleryImageName = GetInstanceId(this.ResourceId, "Microsoft.Compute/Galleries", "Images", "Versions"); galleryImageVersionName = GetVersion(this.ResourceId, "Microsoft.Compute/Galleries", "Images", "Versions"); break; + case "SharedGalleryParameterSet": + SharedGalleryGet(); + return; default: resourceGroupName = this.ResourceGroupName; galleryName = this.GalleryName; @@ -94,6 +97,48 @@ public override void ExecuteCmdlet() }); } + public void SharedGalleryGet() + { + if (this.IsParameterBound(c => c.GalleryUniqueName)) + { + SharedGalleryImageVersion result = SharedGalleryImageVersionsClient.Get(this.Location, this.GalleryUniqueName, this.GalleryImageDefinitionName, this.Name); + var psObject = new PSSharedGalleryImageVersion(); + ComputeAutomationAutoMapperProfile.Mapper.Map(result, psObject); + WriteObject(psObject); + } + else + { + Rest.Azure.IPage result = new Page(); + + if (this.IsParameterBound(c => c.Scope) && this.Scope != "subscription") + { + result = SharedGalleryImageVersionsClient.List(this.Location, this.GalleryUniqueName, this.GalleryImageDefinitionName, this.Scope); + } + else + { + result = SharedGalleryImageVersionsClient.List(this.Location, this.GalleryUniqueName, this.GalleryImageDefinitionName); + } + + var resultList = result.ToList(); + var nextPageLink = result.NextPageLink; + while (!string.IsNullOrEmpty(nextPageLink)) + { + var pageResult = SharedGalleryImageVersionsClient.ListNext(nextPageLink); + foreach (var pageItem in pageResult) + { + resultList.Add(pageItem); + } + nextPageLink = pageResult.NextPageLink; + } + var psObject = new List(); + foreach (var r in resultList) + { + psObject.Add(ComputeAutomationAutoMapperProfile.Mapper.Map(r)); + } + WriteObject(psObject); + } + } + [Parameter( ParameterSetName = "DefaultParameter", Position = 0, @@ -114,6 +159,10 @@ public override void ExecuteCmdlet() Position = 2, Mandatory = true, ValueFromPipelineByPropertyName = true)] + [Parameter( + ParameterSetName = "SharedGalleryParameterSet", + Mandatory = true, + ValueFromPipelineByPropertyName = true)] public string GalleryImageDefinitionName { get; set; } [Alias("GalleryImageVersionName")] @@ -121,6 +170,9 @@ public override void ExecuteCmdlet() ParameterSetName = "DefaultParameter", Position = 3, ValueFromPipelineByPropertyName = true)] + [Parameter( + ParameterSetName = "SharedGalleryParameterSet", + ValueFromPipelineByPropertyName = true)] [SupportsWildcards] public string Name { get; set; } @@ -135,5 +187,28 @@ public override void ExecuteCmdlet() Mandatory = false, ValueFromPipelineByPropertyName = true)] public SwitchParameter ExpandReplicationStatus { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + ParameterSetName = "SharedGalleryParameterSet", + HelpMessage = "The unique name of the Shared Image Gallery.")] + public string GalleryUniqueName { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + ParameterSetName = "SharedGalleryParameterSet", + HelpMessage = "Specifies galleries shared to subscription or tenant.")] + [PSArgumentCompleter("subscription", "tenant")] + public string Scope { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + ParameterSetName = "SharedGalleryParameterSet")] + [LocationCompleter("Microsoft.Compute/Galleries")] + [ValidateNotNullOrEmpty] + public string Location { get; set; } } } diff --git a/src/Compute/Compute/Generated/Models/ComputeAutoMapperProfile.cs b/src/Compute/Compute/Generated/Models/ComputeAutoMapperProfile.cs index b61ab8619961..485501ca8983 100644 --- a/src/Compute/Compute/Generated/Models/ComputeAutoMapperProfile.cs +++ b/src/Compute/Compute/Generated/Models/ComputeAutoMapperProfile.cs @@ -191,6 +191,21 @@ private static void Initialize() cfg.CreateMap(); cfg.CreateMap(); cfg.CreateMap(); + cfg.CreateMap(); + cfg.CreateMap(); + cfg.CreateMap(); + cfg.CreateMap(); + cfg.CreateMap(); + cfg.CreateMap(); + cfg.CreateMap(); + cfg.CreateMap(); + cfg.CreateMap(); + cfg.CreateMap(); + cfg.CreateMap(); + cfg.CreateMap(); + cfg.CreateMap(); + cfg.CreateMap(); + cfg.CreateMap(); cfg.CreateMap(); cfg.CreateMap(); cfg.CreateMap(); diff --git a/src/Compute/Compute/Generated/Models/PSSharedGallery.cs b/src/Compute/Compute/Generated/Models/PSSharedGallery.cs new file mode 100644 index 000000000000..29128c3a30d0 --- /dev/null +++ b/src/Compute/Compute/Generated/Models/PSSharedGallery.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Text.RegularExpressions; +using Microsoft.Azure.Management.Compute.Models; + +namespace Microsoft.Azure.Commands.Compute.Automation.Models +{ + public class PSSharedGallery + { + public string Name { get; set; } + public string Location { get; set; } + public string UniqueId { get; set; } + } +} \ No newline at end of file diff --git a/src/Compute/Compute/Generated/Models/PSSharedGalleryImage.cs b/src/Compute/Compute/Generated/Models/PSSharedGalleryImage.cs new file mode 100644 index 000000000000..648c91205473 --- /dev/null +++ b/src/Compute/Compute/Generated/Models/PSSharedGalleryImage.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Text.RegularExpressions; +using Microsoft.Azure.Management.Compute.Models; + +namespace Microsoft.Azure.Commands.Compute.Automation.Models +{ + public class PSSharedGalleryImage + { + public OperatingSystemTypes OsType { get; set; } + public OperatingSystemStateTypes OsState { get; set; } + public DateTime? EndOfLifeDate { get; set; } + public GalleryImageIdentifier Identifier { get; set; } + public RecommendedMachineConfiguration Recommended { get; set; } + public Disallowed Disallowed { get; set; } + public string HyperVGeneration { get; set; } + public IList Features { get; set; } + public ImagePurchasePlan PurchasePlan { get; set; } + public string Name { get; set; } + public string Location { get; set; } + public string UniqueId { get; set; } + } +} diff --git a/src/Compute/Compute/Generated/Models/PSSharedGalleryImageList.cs b/src/Compute/Compute/Generated/Models/PSSharedGalleryImageList.cs new file mode 100644 index 000000000000..20737d843c59 --- /dev/null +++ b/src/Compute/Compute/Generated/Models/PSSharedGalleryImageList.cs @@ -0,0 +1,10 @@ +namespace Microsoft.Azure.Commands.Compute.Automation.Models +{ + public class PSSharedGalleryImageList : PSSharedGalleryImage + { + public PSSharedGalleryImage ToPSSharedGalleryImage() + { + return ComputeAutomationAutoMapperProfile.Mapper.Map(this); + } + } +} diff --git a/src/Compute/Compute/Generated/Models/PSSharedGalleryImageVersion.cs b/src/Compute/Compute/Generated/Models/PSSharedGalleryImageVersion.cs new file mode 100644 index 000000000000..82ad49d4d124 --- /dev/null +++ b/src/Compute/Compute/Generated/Models/PSSharedGalleryImageVersion.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Text.RegularExpressions; +using Microsoft.Azure.Management.Compute.Models; + +namespace Microsoft.Azure.Commands.Compute.Automation.Models +{ + public class PSSharedGalleryImageVersion + { + public string Name { get; set; } + public string Location { get; set; } + public string UniqueId { get; set; } + public DateTime? PublishedDate { get; set; } + public DateTime? EndOfLifeDate { get; set; } + } +} diff --git a/src/Compute/Compute/Generated/Models/PSSharedGalleryImageVersionList.cs b/src/Compute/Compute/Generated/Models/PSSharedGalleryImageVersionList.cs new file mode 100644 index 000000000000..d63be720494b --- /dev/null +++ b/src/Compute/Compute/Generated/Models/PSSharedGalleryImageVersionList.cs @@ -0,0 +1,10 @@ +namespace Microsoft.Azure.Commands.Compute.Automation.Models +{ + public class PSSharedGalleryImageVersionList : PSSharedGalleryImageVersion + { + public PSSharedGalleryImageVersion ToPSSharedGalleryImageVersion() + { + return ComputeAutomationAutoMapperProfile.Mapper.Map(this); + } + } +} diff --git a/src/Compute/Compute/Generated/Models/PSSharedGalleryList.cs b/src/Compute/Compute/Generated/Models/PSSharedGalleryList.cs new file mode 100644 index 000000000000..477aa1e1e346 --- /dev/null +++ b/src/Compute/Compute/Generated/Models/PSSharedGalleryList.cs @@ -0,0 +1,31 @@ +// +// Copyright (c) Microsoft and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// + +// Warning: This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if the +// code is regenerated. + +namespace Microsoft.Azure.Commands.Compute.Automation.Models +{ + public class PSSharedGalleryList : PSSharedGallery + { + public PSSharedGallery ToPSSharedGallery() + { + return ComputeAutomationAutoMapperProfile.Mapper.Map(this); + } + } +} From 276a8c98244756b3a8522515e8ee0af044db6313 Mon Sep 17 00:00:00 2001 From: Theodore Chang Date: Mon, 12 Jul 2021 18:03:50 -0400 Subject: [PATCH 08/16] help doc and test --- .../ScenarioTests/GalleryTests.cs | 6 + .../ScenarioTests/GalleryTests.ps1 | 45 + .../TestGalleryDirectSharing.json | 2479 +++++++++++++++++ src/Compute/Compute/ChangeLog.md | 6 + .../Gallery/GalleryCreateOrUpdateMethod.cs | 57 +- .../Generated/Gallery/GalleryGetMethod.cs | 10 +- .../GalleryImage/GalleryImageGetMethod.cs | 4 +- .../GalleryImageVersionGetMethod.cs | 2 +- src/Compute/Compute/help/Get-AzGallery.md | 78 +- .../help/Get-AzGalleryImageDefinition.md | 53 +- .../Compute/help/Get-AzGalleryImageVersion.md | 56 +- src/Compute/Compute/help/New-AzGallery.md | 26 +- src/Compute/Compute/help/Update-AzGallery.md | 125 +- 13 files changed, 2928 insertions(+), 19 deletions(-) create mode 100644 src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.GalleryTests/TestGalleryDirectSharing.json diff --git a/src/Compute/Compute.Test/ScenarioTests/GalleryTests.cs b/src/Compute/Compute.Test/ScenarioTests/GalleryTests.cs index f0f9fe472296..8857fcf9f3e2 100644 --- a/src/Compute/Compute.Test/ScenarioTests/GalleryTests.cs +++ b/src/Compute/Compute.Test/ScenarioTests/GalleryTests.cs @@ -51,5 +51,11 @@ public void TestGalleryImageVersionDiskImage() { TestRunner.RunTestScript("Test-GalleryImageVersionDiskImage"); } + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestGalleryDirectSharing() + { + TestRunner.RunTestScript("Test-GalleryDirectSharing"); + } } } \ No newline at end of file diff --git a/src/Compute/Compute.Test/ScenarioTests/GalleryTests.ps1 b/src/Compute/Compute.Test/ScenarioTests/GalleryTests.ps1 index 6f55ae925621..91ed95f2a2ce 100644 --- a/src/Compute/Compute.Test/ScenarioTests/GalleryTests.ps1 +++ b/src/Compute/Compute.Test/ScenarioTests/GalleryTests.ps1 @@ -709,3 +709,48 @@ function Test-GalleryImageVersionDiskImage Clean-ResourceGroup $rgname } } + +function Test-GalleryDirectSharing +{ + # Setup + $rgname = Get-ComputeTestResourceName; + $galleryName = 'gallery' + $rgname; + + try + { + $loc = 'eastus' + New-AzResourceGroup -Name $rgname -Location $loc -Force; + + # create gallery with permissions groups + New-AzGallery -ResourceGroupName $rgname -Location $loc -Name $galleryName -Permission 'Groups' + + # get that gallery check for SharingProfile + $gal = Get-AzGallery -ResourceGroupName $rgname -Name $galleryName -Select 'Permissions' + Assert-AreEqual $gal.sharingProfile.Permissions 'Groups' + + # Reset that gallery + $gal = Update-AzGallery -ResourceGroupName $rgname -Name $galleryName -Share -Reset + + # check + Assert-AreEqual $gal.SharingProfile.Permissions 'Private' + + # Add 2 subscriptions to share with + $gal = Update-AzGallery -ResourceGroupName $rgname -Name $galleryName -Permission 'Groups' -Share -Subscription '88fd8cb2-8248-499e-9a2d-4929a4b0133c','54b875cc-a81a-4914-8bfd-1a36bc7ddf4d' + + # check + Assert-AreEqual $gal.SharingProfile.Groups[0].Type 'Subscriptions' + Assert-AreEqual $gal.SharingProfile.Groups[0].Ids.count 2 + + # remove 1 + $gal = Update-AzGallery -ResourceGroupName $rgname -Name $galleryName -Permission 'Groups' -Share -RemoveSubscription '88fd8cb2-8248-499e-9a2d-4929a4b0133c' + + # check + Assert-AreEqual $gal.SharingProfile.Groups[0].Type 'Subscriptions' + Assert-AreEqual $gal.SharingProfile.Groups[0].Ids.count 1 + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} \ No newline at end of file diff --git a/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.GalleryTests/TestGalleryDirectSharing.json b/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.GalleryTests/TestGalleryDirectSharing.json new file mode 100644 index 000000000000..90417b19d6b7 --- /dev/null +++ b/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.GalleryTests/TestGalleryDirectSharing.json @@ -0,0 +1,2479 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/crptestps7018?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczcwMTg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "704c4560-8ebf-4bc5-8dd6-27cca82529ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.39" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "28" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "374ff8ea-8c72-4ef9-b03b-f3eeac9d044c" + ], + "x-ms-correlation-request-id": [ + "374ff8ea-8c72-4ef9-b03b-f3eeac9d044c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20210712T212131Z:374ff8ea-8c72-4ef9-b03b-f3eeac9d044c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:21:30 GMT" + ], + "Content-Length": [ + "179" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018\",\r\n \"name\": \"crptestps7018\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n }\r\n },\r\n \"location\": \"eastus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c3489a3-9b7c-40c5-b606-0c42eb044cf9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "116" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/dbd14d8c-2115-471b-ada2-a946457b5cb3?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": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "dbd14d8c-2115-471b-ada2-a946457b5cb3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "3a941c85-2413-4566-a993-990a6f8f7748" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20210712T212134Z:3a941c85-2413-4566-a993-990a6f8f7748" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:21:33 GMT" + ], + "Content-Length": [ + "493" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"identifier\": {}\r\n },\r\n \"location\": \"eastus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e564f4ac-c665-400f-b1d5-948ad09a7276" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "75" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/1780dfac-3590-4428-91a2-b6c1bd188fec?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateGallery3Min;48,Microsoft.Compute/CreateUpdateGallery30Min;297" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "1780dfac-3590-4428-91a2-b6c1bd188fec" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "a460bc48-6769-47ee-aa5e-720fa85cc842" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20210712T212206Z:a460bc48-6769-47ee-aa5e-720fa85cc842" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:22:05 GMT" + ], + "Content-Length": [ + "494" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"identifier\": {},\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n }\r\n },\r\n \"location\": \"eastus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "27c0ed1b-b785-4d5e-9ea8-7b31c45d2b12" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "139" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/e31d0c4a-c3ca-4fde-ad81-1705b57e3b33?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateGallery3Min;47,Microsoft.Compute/CreateUpdateGallery30Min;296" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "e31d0c4a-c3ca-4fde-ad81-1705b57e3b33" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "8241cd80-1280-4851-b57a-bffb5ef48102" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20210712T212237Z:8241cd80-1280-4851-b57a-bffb5ef48102" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:22:37 GMT" + ], + "Content-Length": [ + "494" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"identifier\": {},\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n }\r\n },\r\n \"location\": \"eastus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c6d5cfff-66bb-4db8-8f46-50bfdcc7cd9f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "139" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/cae68e57-5bfb-417d-9921-0900c462149b?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateGallery3Min;46,Microsoft.Compute/CreateUpdateGallery30Min;295" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "cae68e57-5bfb-417d-9921-0900c462149b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "d9a19925-460f-4ad8-a327-2087560fa658" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20210712T212309Z:d9a19925-460f-4ad8-a327-2087560fa658" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:23:09 GMT" + ], + "Content-Length": [ + "494" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/dbd14d8c-2115-471b-ada2-a946457b5cb3?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL2NhcHNPcGVyYXRpb25zL2RiZDE0ZDhjLTIxMTUtNDcxYi1hZGEyLWE5NDY0NTdiNWNiMz9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c3489a3-9b7c-40c5-b606-0c42eb044cf9" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4195" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "3b8647e8-7832-427d-b73b-a398e622eed8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "05994129-bcfd-4639-9cb4-5c7aa9298c70" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20210712T212204Z:05994129-bcfd-4639-9cb4-5c7aa9298c70" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:22:04 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-07-12T17:21:34.1757109-04:00\",\r\n \"endTime\": \"2021-07-12T17:21:34.3944539-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"dbd14d8c-2115-471b-ada2-a946457b5cb3\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c3489a3-9b7c-40c5-b606-0c42eb044cf9" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2491" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "195414cd-9031-4e14-9ed0-1504ced2131a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "f16aaea4-bce1-444d-a3bb-1bf24181c46f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20210712T212204Z:f16aaea4-bce1-444d-a3bb-1bf24181c46f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:22:04 GMT" + ], + "Content-Length": [ + "430" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e564f4ac-c665-400f-b1d5-948ad09a7276" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;344,Microsoft.Compute/GetGallery30Min;2489" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "eff09249-e58d-47a3-8ae7-36cf25dae087" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "b7f952fe-0aeb-4f9f-ad1c-55ee91b4bd65" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20210712T212205Z:b7f952fe-0aeb-4f9f-ad1c-55ee91b4bd65" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:22:05 GMT" + ], + "Content-Length": [ + "430" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e564f4ac-c665-400f-b1d5-948ad09a7276" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;343,Microsoft.Compute/GetGallery30Min;2488" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "1b6c8864-28de-4257-a82e-6f7b84191dad" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "f7e9c34e-fe9d-4f54-a888-bcf030d80924" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20210712T212206Z:f7e9c34e-fe9d-4f54-a888-bcf030d80924" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:22:05 GMT" + ], + "Content-Length": [ + "430" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "27c0ed1b-b785-4d5e-9ea8-7b31c45d2b12" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;339,Microsoft.Compute/GetGallery30Min;2484" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "d700c0af-876d-4c12-8dfd-a2a93a49d435" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "a14fceb2-a9f4-4cdd-96df-83fc934d7714" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20210712T212237Z:a14fceb2-a9f4-4cdd-96df-83fc934d7714" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:22:36 GMT" + ], + "Content-Length": [ + "430" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "27c0ed1b-b785-4d5e-9ea8-7b31c45d2b12" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;338,Microsoft.Compute/GetGallery30Min;2483" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "a9fcf859-bbed-47cd-9f79-439c8a27ee7c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "03943f33-ef97-4f42-b628-ad63838faff1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20210712T212237Z:03943f33-ef97-4f42-b628-ad63838faff1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:22:37 GMT" + ], + "Content-Length": [ + "430" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c6d5cfff-66bb-4db8-8f46-50bfdcc7cd9f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;335,Microsoft.Compute/GetGallery30Min;2480" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "4fd90726-735f-464f-a421-8a406ef6c0de" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "03e994c9-caf9-4184-b117-eceb3b296019" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20210712T212308Z:03e994c9-caf9-4184-b117-eceb3b296019" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:23:08 GMT" + ], + "Content-Length": [ + "430" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c6d5cfff-66bb-4db8-8f46-50bfdcc7cd9f" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;334,Microsoft.Compute/GetGallery30Min;2479" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "b9d5321a-82fe-4347-8b5a-1856f0fc0bf4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "a86250c8-b860-42b3-b129-b12b1e0935fb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20210712T212309Z:a86250c8-b860-42b3-b129-b12b1e0935fb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:23:09 GMT" + ], + "Content-Length": [ + "430" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30&$select=Permissions", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMwJiRzZWxlY3Q9UGVybWlzc2lvbnM=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3f165366-de02-4d45-ab89-f0c1fe920200" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;345,Microsoft.Compute/GetGallery30Min;2490" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "91502517-7a20-4f8f-9db5-33dd8545ab43" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "3f7fefb1-863f-4a24-a3b3-98c299d3e728" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20210712T212205Z:3f7fefb1-863f-4a24-a3b3-98c299d3e728" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:22:04 GMT" + ], + "Content-Length": [ + "494" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30&$select=Permissions", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMwJiRzZWxlY3Q9UGVybWlzc2lvbnM=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e564f4ac-c665-400f-b1d5-948ad09a7276" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;340,Microsoft.Compute/GetGallery30Min;2485" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "174802bf-f513-43a6-afa5-fd4dfc6dd7aa" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "15f89758-9e6b-4138-a7d6-31532e43f2d7" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20210712T212236Z:15f89758-9e6b-4138-a7d6-31532e43f2d7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:22:36 GMT" + ], + "Content-Length": [ + "495" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\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/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30&$select=Permissions", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMwJiRzZWxlY3Q9UGVybWlzc2lvbnM=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "27c0ed1b-b785-4d5e-9ea8-7b31c45d2b12" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;336,Microsoft.Compute/GetGallery30Min;2481" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "478a9d75-1a4e-476b-ac8a-1e1a0cc9b9ea" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "d725fea0-2a0f-4f39-bb5e-70fb426261ad" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20210712T212308Z:d725fea0-2a0f-4f39-bb5e-70fb426261ad" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:23:07 GMT" + ], + "Content-Length": [ + "719" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\",\r\n \"groups\": [\r\n {\r\n \"type\": \"Subscriptions\",\r\n \"ids\": [\r\n \"88fd8cb2-8248-499e-9a2d-4929a4b0133c\",\r\n \"54b875cc-a81a-4914-8bfd-1a36bc7ddf4d\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30&$select=Permissions", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMwJiRzZWxlY3Q9UGVybWlzc2lvbnM=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c6d5cfff-66bb-4db8-8f46-50bfdcc7cd9f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetGallery3Min;332,Microsoft.Compute/GetGallery30Min;2477" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "6ce79301-652a-4a04-a7d9-4348039f4099" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "9d72293a-84f7-4623-b1e5-44784d3de4bc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20210712T212340Z:9d72293a-84f7-4623-b1e5-44784d3de4bc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:23:39 GMT" + ], + "Content-Length": [ + "666" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\",\r\n \"groups\": [\r\n {\r\n \"type\": \"Subscriptions\",\r\n \"ids\": [\r\n \"54b875cc-a81a-4914-8bfd-1a36bc7ddf4d\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018/share?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOC9zaGFyZT9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"operationType\": \"Reset\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e564f4ac-c665-400f-b1d5-948ad09a7276" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/9cc3c701-14bb-4df3-a4df-db82e57ebf64?monitor=true&api-version=2020-09-30" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/9cc3c701-14bb-4df3-a4df-db82e57ebf64?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PostShareGallery3Min;9,Microsoft.Compute/PostShareGallery30Min;58" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "9cc3c701-14bb-4df3-a4df-db82e57ebf64" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "e71de7f2-7502-43ed-aa75-35318cd0f40e" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20210712T212206Z:e71de7f2-7502-43ed-aa75-35318cd0f40e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:22:05 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018/share?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOC9zaGFyZT9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"operationType\": \"Add\",\r\n \"groups\": [\r\n {\r\n \"type\": \"Subscriptions\",\r\n \"ids\": [\r\n \"88fd8cb2-8248-499e-9a2d-4929a4b0133c\",\r\n \"54b875cc-a81a-4914-8bfd-1a36bc7ddf4d\"\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "27c0ed1b-b785-4d5e-9ea8-7b31c45d2b12" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "219" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/d570d621-9a22-4027-bd0f-0d7acd69becf?monitor=true&api-version=2020-09-30" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/d570d621-9a22-4027-bd0f-0d7acd69becf?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PostShareGallery3Min;8,Microsoft.Compute/PostShareGallery30Min;57" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "d570d621-9a22-4027-bd0f-0d7acd69becf" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "a0559fab-2672-4d92-a7ec-cca70bc153fd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20210712T212237Z:a0559fab-2672-4d92-a7ec-cca70bc153fd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:22:37 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018/share?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOC9zaGFyZT9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"operationType\": \"Remove\",\r\n \"groups\": [\r\n {\r\n \"type\": \"Subscriptions\",\r\n \"ids\": [\r\n \"88fd8cb2-8248-499e-9a2d-4929a4b0133c\"\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c6d5cfff-66bb-4db8-8f46-50bfdcc7cd9f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "173" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/e2c3f6b9-922c-430b-8087-566a75a006cc?monitor=true&api-version=2020-09-30" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/e2c3f6b9-922c-430b-8087-566a75a006cc?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PostShareGallery3Min;7,Microsoft.Compute/PostShareGallery30Min;56" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "e2c3f6b9-922c-430b-8087-566a75a006cc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "74572736-937e-4019-ae18-f246b2f497c4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20210712T212309Z:74572736-937e-4019-ae18-f246b2f497c4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:23:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/9cc3c701-14bb-4df3-a4df-db82e57ebf64?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL2NhcHNPcGVyYXRpb25zLzljYzNjNzAxLTE0YmItNGRmMy1hNGRmLWRiODJlNTdlYmY2ND9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e564f4ac-c665-400f-b1d5-948ad09a7276" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4193" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "25c4c52a-bc07-4970-ac93-0fcd3cbccfeb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "b7890d85-9a69-4667-86a6-4307806c76b8" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20210712T212236Z:b7890d85-9a69-4667-86a6-4307806c76b8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:22:36 GMT" + ], + "Content-Length": [ + "183" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-07-12T17:22:06.597853-04:00\",\r\n \"endTime\": \"2021-07-12T17:22:06.6446821-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9cc3c701-14bb-4df3-a4df-db82e57ebf64\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/9cc3c701-14bb-4df3-a4df-db82e57ebf64?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL2NhcHNPcGVyYXRpb25zLzljYzNjNzAxLTE0YmItNGRmMy1hNGRmLWRiODJlNTdlYmY2ND9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e564f4ac-c665-400f-b1d5-948ad09a7276" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4192" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "48f13371-82b9-4acf-ae29-1741f671bea7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "e11ee304-cc92-4bcf-8159-60140fe007af" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20210712T212236Z:e11ee304-cc92-4bcf-8159-60140fe007af" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:22:36 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/d570d621-9a22-4027-bd0f-0d7acd69becf?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL2NhcHNPcGVyYXRpb25zL2Q1NzBkNjIxLTlhMjItNDAyNy1iZDBmLTBkN2FjZDY5YmVjZj9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "27c0ed1b-b785-4d5e-9ea8-7b31c45d2b12" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4190" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "bcef5500-5f57-4530-9373-abe38b6d98e9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "c8a1ca70-2aeb-404e-b8a0-cfb8c68f581f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20210712T212308Z:c8a1ca70-2aeb-404e-b8a0-cfb8c68f581f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:23:07 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-07-12T17:22:37.9105496-04:00\",\r\n \"endTime\": \"2021-07-12T17:22:39.0824504-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d570d621-9a22-4027-bd0f-0d7acd69becf\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/d570d621-9a22-4027-bd0f-0d7acd69becf?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL2NhcHNPcGVyYXRpb25zL2Q1NzBkNjIxLTlhMjItNDAyNy1iZDBmLTBkN2FjZDY5YmVjZj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "27c0ed1b-b785-4d5e-9ea8-7b31c45d2b12" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4189" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "67f13f77-f05d-4b55-a7ec-1b934e3e1aed" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "add01977-50ba-4961-b863-5cde0ff14b52" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20210712T212308Z:add01977-50ba-4961-b863-5cde0ff14b52" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:23:07 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/e2c3f6b9-922c-430b-8087-566a75a006cc?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL2NhcHNPcGVyYXRpb25zL2UyYzNmNmI5LTkyMmMtNDMwYi04MDg3LTU2NmE3NWEwMDZjYz9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c6d5cfff-66bb-4db8-8f46-50bfdcc7cd9f" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4187" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "10a5f256-4624-49b3-84bc-4c4d99f2c3cc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "0d56afd3-5929-4e6b-abbd-b72e975a333c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20210712T212339Z:0d56afd3-5929-4e6b-abbd-b72e975a333c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:23:39 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-07-12T17:23:09.7388895-04:00\",\r\n \"endTime\": \"2021-07-12T17:23:10.0513882-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e2c3f6b9-922c-430b-8087-566a75a006cc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/e2c3f6b9-922c-430b-8087-566a75a006cc?monitor=true&api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL2NhcHNPcGVyYXRpb25zL2UyYzNmNmI5LTkyMmMtNDMwYi04MDg3LTU2NmE3NWEwMDZjYz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c6d5cfff-66bb-4db8-8f46-50bfdcc7cd9f" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4186" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + ], + "x-ms-request-id": [ + "73e9d996-9bea-4a0f-a0a5-62c4f7f4e10e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "dc39192d-5e57-4f3a-add9-98bd81f1ae77" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20210712T212340Z:dc39192d-5e57-4f3a-add9-98bd81f1ae77" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:23:39 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/crptestps7018?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczcwMTg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ba7c834f-4b4e-455a-9fa8-83974fdaa9cf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.39" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "cd62d255-de16-45f6-9e37-91d68eeadc6e" + ], + "x-ms-correlation-request-id": [ + "cd62d255-de16-45f6-9e37-91d68eeadc6e" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20210712T212341Z:cd62d255-de16-45f6-9e37-91d68eeadc6e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:23:41 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTURFNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.39" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "e0dfb668-5d35-4b33-839e-a3cc85bca982" + ], + "x-ms-correlation-request-id": [ + "e0dfb668-5d35-4b33-839e-a3cc85bca982" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20210712T212356Z:e0dfb668-5d35-4b33-839e-a3cc85bca982" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:23:56 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTURFNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.39" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "88de0f5d-b3af-4543-a38f-1d38b619cb30" + ], + "x-ms-correlation-request-id": [ + "88de0f5d-b3af-4543-a38f-1d38b619cb30" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20210712T212411Z:88de0f5d-b3af-4543-a38f-1d38b619cb30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:24:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTURFNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.39" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "acddfe5c-0f13-4563-a92d-5585894c0325" + ], + "x-ms-correlation-request-id": [ + "acddfe5c-0f13-4563-a92d-5585894c0325" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20210712T212426Z:acddfe5c-0f13-4563-a92d-5585894c0325" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:24:25 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTURFNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.39" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "a74c8e12-097d-4397-a04b-afa59097bf86" + ], + "x-ms-correlation-request-id": [ + "a74c8e12-097d-4397-a04b-afa59097bf86" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20210712T212441Z:a74c8e12-097d-4397-a04b-afa59097bf86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:24:40 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTURFNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.39" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "72772fb2-057c-46eb-adbd-18d027780369" + ], + "x-ms-correlation-request-id": [ + "72772fb2-057c-46eb-adbd-18d027780369" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20210712T212457Z:72772fb2-057c-46eb-adbd-18d027780369" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:24:57 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTURFNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.39" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "2ed13fcd-741d-4115-a372-7b44f1d5aef9" + ], + "x-ms-correlation-request-id": [ + "2ed13fcd-741d-4115-a372-7b44f1d5aef9" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20210712T212512Z:2ed13fcd-741d-4115-a372-7b44f1d5aef9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:25:12 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTURFNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.39" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "4a614dac-b6ee-446f-9c29-4bb3e6ba1079" + ], + "x-ms-correlation-request-id": [ + "4a614dac-b6ee-446f-9c29-4bb3e6ba1079" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20210712T212527Z:4a614dac-b6ee-446f-9c29-4bb3e6ba1079" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:25:26 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTURFNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.39" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "9e6070ed-1ec7-4dd7-833b-1cb8dc07f298" + ], + "x-ms-correlation-request-id": [ + "9e6070ed-1ec7-4dd7-833b-1cb8dc07f298" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20210712T212542Z:9e6070ed-1ec7-4dd7-833b-1cb8dc07f298" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:25:41 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTURFNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.39" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "66e30867-b305-4061-aa5b-eb1599571d1d" + ], + "x-ms-correlation-request-id": [ + "66e30867-b305-4061-aa5b-eb1599571d1d" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20210712T212557Z:66e30867-b305-4061-aa5b-eb1599571d1d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:25:57 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTURFNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.39" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "99fd5641-9063-48d3-a9df-982d2d95d803" + ], + "x-ms-correlation-request-id": [ + "99fd5641-9063-48d3-a9df-982d2d95d803" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20210712T212612Z:99fd5641-9063-48d3-a9df-982d2d95d803" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 12 Jul 2021 21:26:12 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "805" + ] + }, + "ResponseBody": "{\r\n \"Error\": {\r\n \"Code\": \"ResourceGroupDeletionBlocked\",\r\n \"Target\": null,\r\n \"Message\": \"Deletion of resource group 'crptestps7018' failed as resources with identifiers 'Microsoft.Compute/galleries/gallerycrptestps7018' could not be deleted. The provisioning state of the resource group will be rolled back. The tracking Id is 'cd62d255-de16-45f6-9e37-91d68eeadc6e'. Please check audit logs for more details.\",\r\n \"Details\": [\r\n {\r\n \"Code\": null,\r\n \"Target\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"Message\": \"{\\\"error\\\":{\\\"code\\\":\\\"OperationNotAllowed\\\",\\\"message\\\":\\\"Gallery is still shared to 'Groups'. Please unshare the gallery first before deleting the gallery.\\\"}}\",\r\n \"Details\": null,\r\n \"AdditionalInfo\": null\r\n }\r\n ],\r\n \"AdditionalInfo\": null\r\n }\r\n}", + "StatusCode": 409 + } + ], + "Names": { + "Test-GalleryDirectSharing": [ + "crptestps7018" + ] + }, + "Variables": { + "SubscriptionId": "e37510d7-33b6-4676-886f-ee75bcc01871" + } +} \ No newline at end of file diff --git a/src/Compute/Compute/ChangeLog.md b/src/Compute/Compute/ChangeLog.md index 920dcd0b1e81..0eef9c28a766 100644 --- a/src/Compute/Compute/ChangeLog.md +++ b/src/Compute/Compute/ChangeLog.md @@ -146,6 +146,12 @@ - New-AzDiskUpdateConfig - New-AzDiskEncryptionSetConfig - Update-AzDiskEncryptionSet +* `New-AzGallery` can take in `-Permission` parameter to set its sharingProfile property. +* `Update-AzGallery` can update sharingProfile. +* New parameter set for the following cmdlets to support Shared Image Gallery Direct Sharing + - Get-AzGallery + - Get-AzGalleryImageDefinition + - Get-AzGalleryImageVersion ## Version 4.14.0 * Updated Compute module to use the latest .Net SDK version 47.0.0. diff --git a/src/Compute/Compute/Generated/Gallery/GalleryCreateOrUpdateMethod.cs b/src/Compute/Compute/Generated/Gallery/GalleryCreateOrUpdateMethod.cs index f54f8e28fe58..3188e0022379 100644 --- a/src/Compute/Compute/Generated/Gallery/GalleryCreateOrUpdateMethod.cs +++ b/src/Compute/Compute/Generated/Gallery/GalleryCreateOrUpdateMethod.cs @@ -173,6 +173,7 @@ public override void ExecuteCmdlet() gallery.SharingProfile.Permissions = this.Permission; } + SharingUpdate sharingUpdate = new SharingUpdate(); if (this.Share.IsPresent) { @@ -202,6 +203,7 @@ public override void ExecuteCmdlet() sharingProfile.Ids.Add(id); } sharingUpdate.Groups.Add(sharingProfile); + sharingUpdate.OperationType = "Add"; } if (this.IsParameterBound(c => c.Tenant)) { @@ -217,19 +219,52 @@ public override void ExecuteCmdlet() sharingProfile.Ids.Add(id); } sharingUpdate.Groups.Add(sharingProfile); + sharingUpdate.OperationType = "Add"; + } + if (this.IsParameterBound(c => c.RemoveTenant)) + { + if (sharingUpdate.Groups == null) + { + sharingUpdate.Groups = new List(); + } + SharingProfileGroup sharingProfile = new SharingProfileGroup(); + sharingProfile.Type = "AADTenants"; + sharingProfile.Ids = new List(); + foreach (var id in this.RemoveTenant) + { + sharingProfile.Ids.Add(id); + } + sharingUpdate.Groups.Add(sharingProfile); + sharingUpdate.OperationType = "Remove"; + } + if (this.IsParameterBound(c => c.RemoveSubscription)) + { + if (sharingUpdate.Groups == null) + { + sharingUpdate.Groups = new List(); + } + SharingProfileGroup sharingProfile = new SharingProfileGroup(); + sharingProfile.Type = "Subscriptions"; + sharingProfile.Ids = new List(); + foreach (var id in this.RemoveSubscription) + { + sharingProfile.Ids.Add(id); + } + sharingUpdate.Groups.Add(sharingProfile); + sharingUpdate.OperationType = "Remove"; } } - else if (this.IsParameterBound(c => c.Subscription) || this.IsParameterBound(c => c.Tenant) || this.Reset.IsPresent) + else if (this.IsParameterBound(c => c.Subscription) || this.IsParameterBound(c => c.Tenant) || this.Reset.IsPresent || this.IsParameterBound(c => c.RemoveSubscription) || this.IsParameterBound(c => c.RemoveTenant)) { - throw new Exception("Parameters '-Subscription', '-Tenant', and '-Reset' must be used with '-Share' parameter."); + throw new Exception("Parameters '-Subscription', '-Tenant', '-RemoveSubscription', '-RemoveTenant', and '-Reset' must be used with '-Share' parameter."); } var result = GalleriesClient.CreateOrUpdate(resourceGroupName, galleryName, gallery); if (this.Share.IsPresent) { GallerySharingProfileClient.Update(resourceGroupName, galleryName, sharingUpdate); - result = GalleriesClient.Get(ResourceGroupName, galleryName); + result = GalleriesClient.Get(ResourceGroupName, galleryName, "Permissions"); } var psObject = new PSGallery(); ComputeAutomationAutoMapperProfile.Mapper.Map(result, psObject); @@ -292,15 +327,27 @@ public override void ExecuteCmdlet() [Parameter( Mandatory = false, ValueFromPipelineByPropertyName = true, - HelpMessage = "A list of subscription ids the gallery is aimed to be shared to.")] + HelpMessage = "A list of subscription IDs the gallery is aimed to be shared to.")] public string[] Subscription { get; set; } [Parameter( Mandatory = false, ValueFromPipelineByPropertyName = true, - HelpMessage = "A list of tenant ids the gallery is aimed to be shared to.")] + HelpMessage = "A list of tenant IDs the gallery is aimed to be shared to.")] public string[] Tenant { get; set; } + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "A list of subscription IDs the gallery will stop sharing to.")] + public string[] RemoveSubscription { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = "A list of tenant IDs the gallery will stop sharing to.")] + public string[] RemoveTenant { get; set; } + [Parameter( Mandatory = false, ValueFromPipelineByPropertyName = true, diff --git a/src/Compute/Compute/Generated/Gallery/GalleryGetMethod.cs b/src/Compute/Compute/Generated/Gallery/GalleryGetMethod.cs index c5a228052f90..1e8dd7154f0c 100644 --- a/src/Compute/Compute/Generated/Gallery/GalleryGetMethod.cs +++ b/src/Compute/Compute/Generated/Gallery/GalleryGetMethod.cs @@ -60,7 +60,7 @@ public override void ExecuteCmdlet() if (ShouldGetByName(resourceGroupName, galleryName)) { - var result = GalleriesClient.Get(resourceGroupName, galleryName); + var result = GalleriesClient.Get(resourceGroupName, galleryName, this.Select); var psObject = new PSGallery(); ComputeAutomationAutoMapperProfile.Mapper.Map(result, psObject); WriteObject(psObject); @@ -197,5 +197,13 @@ public void SharedGalleryGet() [LocationCompleter("Microsoft.Compute/Galleries")] [ValidateNotNullOrEmpty] public string Location { get; set; } + + [Parameter( + Mandatory = false, + ValueFromPipelineByPropertyName = true, + ParameterSetName = "DefaultParameter", + HelpMessage = "The select expression to apply on the operation.")] + [PSArgumentCompleter("Permissions")] + public string Select { get; set; } } } diff --git a/src/Compute/Compute/Generated/GalleryImage/GalleryImageGetMethod.cs b/src/Compute/Compute/Generated/GalleryImage/GalleryImageGetMethod.cs index 820c73a99877..e17dd50c2799 100644 --- a/src/Compute/Compute/Generated/GalleryImage/GalleryImageGetMethod.cs +++ b/src/Compute/Compute/Generated/GalleryImage/GalleryImageGetMethod.cs @@ -95,7 +95,7 @@ public override void ExecuteCmdlet() public void SharedGalleryGet() { - if (this.IsParameterBound(c => c.GalleryUniqueName)) + if (this.IsParameterBound(c => c.Name)) { SharedGalleryImage result = SharedGalleryImagesClient.Get(this.Location, this.GalleryUniqueName, this.Name); var psObject = new PSSharedGalleryImage(); @@ -106,7 +106,7 @@ public void SharedGalleryGet() { Rest.Azure.IPage result = new Page(); - if (this.IsParameterBound(c => c.Scope)) + if (this.IsParameterBound(c => c.Scope) && this.Scope != "subscription") { result = SharedGalleryImagesClient.List(this.Location, this.GalleryUniqueName, this.Scope); } diff --git a/src/Compute/Compute/Generated/GalleryImageVersion/GalleryImageVersionGetMethod.cs b/src/Compute/Compute/Generated/GalleryImageVersion/GalleryImageVersionGetMethod.cs index 951787cd732c..7bd4004572fa 100644 --- a/src/Compute/Compute/Generated/GalleryImageVersion/GalleryImageVersionGetMethod.cs +++ b/src/Compute/Compute/Generated/GalleryImageVersion/GalleryImageVersionGetMethod.cs @@ -99,7 +99,7 @@ public override void ExecuteCmdlet() public void SharedGalleryGet() { - if (this.IsParameterBound(c => c.GalleryUniqueName)) + if (this.IsParameterBound(c => c.Name)) { SharedGalleryImageVersion result = SharedGalleryImageVersionsClient.Get(this.Location, this.GalleryUniqueName, this.GalleryImageDefinitionName, this.Name); var psObject = new PSSharedGalleryImageVersion(); diff --git a/src/Compute/Compute/help/Get-AzGallery.md b/src/Compute/Compute/help/Get-AzGallery.md index a1fc9e09154a..4f98eb98f198 100644 --- a/src/Compute/Compute/help/Get-AzGallery.md +++ b/src/Compute/Compute/help/Get-AzGallery.md @@ -14,8 +14,8 @@ Get or list galleries. ### DefaultParameter (Default) ``` -Get-AzGallery [[-ResourceGroupName] ] [[-Name] ] [-DefaultProfile ] - [] +Get-AzGallery [[-ResourceGroupName] ] [[-Name] ] [-Select ] + [-DefaultProfile ] [] ``` ### ResourceIdParameter @@ -23,6 +23,12 @@ Get-AzGallery [[-ResourceGroupName] ] [[-Name] ] [-DefaultProfil Get-AzGallery [-ResourceId] [-DefaultProfile ] [] ``` +### SharedGalleryParameterSet +``` +Get-AzGallery [-GalleryUniqueName ] [-Scope ] -Location + [-DefaultProfile ] [] +``` + ## DESCRIPTION Get or list galleries. @@ -163,6 +169,14 @@ Tags : {} Get all galleries in subscription that start with "gallery". +### Example 5 +```powershell +PS C:\> Get-AzGallery -Name galleryName -ResourceGroupName rg -Select Permissions + +``` + +Get a gallery's sharing profile. + ## PARAMETERS ### -DefaultProfile @@ -180,6 +194,36 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -GalleryUniqueName +The unique name of the Shared Image Gallery. + +```yaml +Type: System.String +Parameter Sets: SharedGalleryParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Location +Location of the Shared Image Gallery. + +```yaml +Type: System.String +Parameter Sets: SharedGalleryParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + ### -Name The name of the gallery. @@ -225,6 +269,36 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -Scope +Specifies galleries shared to subscription or tenant. + +```yaml +Type: System.String +Parameter Sets: SharedGalleryParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Select +The select expression to apply on the operation. + +```yaml +Type: System.String +Parameter Sets: DefaultParameter +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + ### CommonParameters This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). diff --git a/src/Compute/Compute/help/Get-AzGalleryImageDefinition.md b/src/Compute/Compute/help/Get-AzGalleryImageDefinition.md index bbb493ba71c1..809ea2bae65e 100644 --- a/src/Compute/Compute/help/Get-AzGalleryImageDefinition.md +++ b/src/Compute/Compute/help/Get-AzGalleryImageDefinition.md @@ -18,6 +18,12 @@ Get-AzGalleryImageDefinition [-ResourceGroupName] [-GalleryName] ] [] ``` +### SharedGalleryParameterSet +``` +Get-AzGalleryImageDefinition [[-Name] ] -GalleryUniqueName [-Scope ] + -Location [-DefaultProfile ] [] +``` + ### ResourceIdParameter ``` Get-AzGalleryImageDefinition [-ResourceId] [-DefaultProfile ] @@ -248,12 +254,42 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -GalleryUniqueName +The unique name of the Shared Image Gallery. + +```yaml +Type: System.String +Parameter Sets: SharedGalleryParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Location +Location of the Shared Image Gallery. + +```yaml +Type: System.String +Parameter Sets: SharedGalleryParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + ### -Name The name of the gallery image definition. ```yaml Type: System.String -Parameter Sets: DefaultParameter +Parameter Sets: DefaultParameter, SharedGalleryParameterSet Aliases: GalleryImageDefinitionName Required: False @@ -293,6 +329,21 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -Scope +Specifies galleries shared to subscription or tenant. + +```yaml +Type: System.String +Parameter Sets: SharedGalleryParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + ### CommonParameters This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). diff --git a/src/Compute/Compute/help/Get-AzGalleryImageVersion.md b/src/Compute/Compute/help/Get-AzGalleryImageVersion.md index 936f0ca40975..181e5a493d64 100644 --- a/src/Compute/Compute/help/Get-AzGalleryImageVersion.md +++ b/src/Compute/Compute/help/Get-AzGalleryImageVersion.md @@ -19,6 +19,13 @@ Get-AzGalleryImageVersion [-ResourceGroupName] [-GalleryName] [-DefaultProfile ] [] ``` +### SharedGalleryParameterSet +``` +Get-AzGalleryImageVersion [-GalleryImageDefinitionName] [[-Name] ] [-ExpandReplicationStatus] + -GalleryUniqueName [-Scope ] -Location [-DefaultProfile ] + [] +``` + ### ResourceIdParameter ``` Get-AzGalleryImageVersion [-ResourceId] [-ExpandReplicationStatus] @@ -249,7 +256,7 @@ The name of the gallery image definition. ```yaml Type: System.String -Parameter Sets: DefaultParameter +Parameter Sets: DefaultParameter, SharedGalleryParameterSet Aliases: Required: True @@ -274,12 +281,42 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -GalleryUniqueName +The unique name of the Shared Image Gallery. + +```yaml +Type: System.String +Parameter Sets: SharedGalleryParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Location +Location of the Shared Image Gallery. + +```yaml +Type: System.String +Parameter Sets: SharedGalleryParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + ### -Name The name of the gallery image version. ```yaml Type: System.String -Parameter Sets: DefaultParameter +Parameter Sets: DefaultParameter, SharedGalleryParameterSet Aliases: GalleryImageVersionName Required: False @@ -319,6 +356,21 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -Scope +Specifies galleries shared to subscription or tenant. + +```yaml +Type: System.String +Parameter Sets: SharedGalleryParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + ### CommonParameters This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). diff --git a/src/Compute/Compute/help/New-AzGallery.md b/src/Compute/Compute/help/New-AzGallery.md index eee8156841d8..5ac246398cd6 100644 --- a/src/Compute/Compute/help/New-AzGallery.md +++ b/src/Compute/Compute/help/New-AzGallery.md @@ -14,8 +14,8 @@ Create a gallery. ``` New-AzGallery [-ResourceGroupName] [-Name] [-AsJob] [-Location] - [-Description ] [-Tag ] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + [-Description ] [-Tag ] [-Permission ] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -30,6 +30,13 @@ New-AzGallery -ResourceGroupName $rgname -Name $galleryName -Location $location Create a gallery. +### Example 2 +```powershell +PS C:\> New-AzGallery -ResourceGroupName $rgname -Name $galleryName -Location $location -Description $galleryDescription -Permission Groups +``` + +Create a gallery with Direct Sharing enabled. + ## PARAMETERS ### -AsJob @@ -107,6 +114,21 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -Permission +This property allows you to specify the permission of sharing gallery. Possible values are: 'Private' and 'Groups'. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + ### -ResourceGroupName The name of the resource group. diff --git a/src/Compute/Compute/help/Update-AzGallery.md b/src/Compute/Compute/help/Update-AzGallery.md index 1e0f47edf701..95d8a11af4c4 100644 --- a/src/Compute/Compute/help/Update-AzGallery.md +++ b/src/Compute/Compute/help/Update-AzGallery.md @@ -15,19 +15,25 @@ Update a gallery. ### DefaultParameter (Default) ``` Update-AzGallery [-ResourceGroupName] [-Name] [-AsJob] [-Description ] - [-Tag ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-Tag ] [-Permission ] [-Subscription ] [-Tenant ] + [-RemoveSubscription ] [-RemoveTenant ] [-Share] [-Reset] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ResourceIdParameter ``` Update-AzGallery [-ResourceId] [-AsJob] [-Description ] [-Tag ] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-Permission ] [-Subscription ] [-Tenant ] [-RemoveSubscription ] + [-RemoveTenant ] [-Share] [-Reset] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### ObjectParameter ``` Update-AzGallery [-InputObject] [-AsJob] [-Description ] [-Tag ] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-Permission ] [-Subscription ] [-Tenant ] [-RemoveSubscription ] + [-RemoveTenant ] [-Share] [-Reset] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION @@ -42,6 +48,14 @@ Update-AzGallery -ResourceGroupName $rgname -Name $galleryName -Description $gal Update a gallery. +### Example 2 +```powershell +PS C:\> Update-AzGallery -ResourceGroupName $rgname -Name $galleryName -Permission Groups -Share -Tenant xxxxxxxx-xxx-xxxxxxx,zzzzzz-zzzzzzz-zzzzzz +``` + +Update a gallery to be shared and add two subscriptions it is to be shared with. + + ## PARAMETERS ### -AsJob @@ -119,6 +133,66 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -Permission +This property allows you to specify the permission of the sharing gallery. Possible values are: 'Private' and 'Groups'. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -RemoveSubscription +A list of subscription IDs the gallery will stop sharing to. + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -RemoveTenant +A list of tenant IDs the gallery will stop sharing to. + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Reset +Resets the sharing permission of the gallery to 'Private'. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + ### -ResourceGroupName The name of the resource group. @@ -149,6 +223,36 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -Share +Update sharing profile of the gallery. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Subscription +A list of subscription IDs the gallery is aimed to be shared to. + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + ### -Tag Resource tags @@ -164,6 +268,21 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -Tenant +A list of tenant IDs the gallery is aimed to be shared to. + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + ### -Confirm Prompts you for confirmation before running the cmdlet. From dea055a68fe7e9eb217ae51403bd0382ee85a653 Mon Sep 17 00:00:00 2001 From: Theodore Chang Date: Mon, 7 Mar 2022 17:43:41 -0600 Subject: [PATCH 09/16] merge --- src/Compute/Compute/Generated/Gallery/GalleryGetMethod.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/Compute/Compute/Generated/Gallery/GalleryGetMethod.cs b/src/Compute/Compute/Generated/Gallery/GalleryGetMethod.cs index 1e8dd7154f0c..09647f5ec66f 100644 --- a/src/Compute/Compute/Generated/Gallery/GalleryGetMethod.cs +++ b/src/Compute/Compute/Generated/Gallery/GalleryGetMethod.cs @@ -60,7 +60,8 @@ public override void ExecuteCmdlet() if (ShouldGetByName(resourceGroupName, galleryName)) { - var result = GalleriesClient.Get(resourceGroupName, galleryName, this.Select); + var result = GalleriesClient.Get(resourceGroupName, galleryName, this.Expand); + var psObject = new PSGallery(); ComputeAutomationAutoMapperProfile.Mapper.Map(result, psObject); WriteObject(psObject); @@ -202,8 +203,8 @@ public void SharedGalleryGet() Mandatory = false, ValueFromPipelineByPropertyName = true, ParameterSetName = "DefaultParameter", - HelpMessage = "The select expression to apply on the operation.")] + HelpMessage = "The expand query option to apply on the operation.")] [PSArgumentCompleter("Permissions")] - public string Select { get; set; } + public string Expand { get; set; } } } From 24208a339ced743b22019e0e08ecc4f7ba552e1a Mon Sep 17 00:00:00 2001 From: Theodore Chang Date: Mon, 7 Mar 2022 17:57:57 -0600 Subject: [PATCH 10/16] update --- src/Compute/Compute.Test/Compute.Test.csproj | 2 +- src/Compute/Compute/Compute.csproj | 2 +- src/Network/Network.Test/Network.Test.csproj | 2 +- .../RecoveryServices.Backup.Test.csproj | 2 +- .../RecoveryServices.SiteRecovery.Test.csproj | 2 +- src/Security/Security.Test/Security.Test.csproj | 2 +- .../SqlVirtualMachine.Test/SqlVirtualMachine.Test.csproj | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/Compute/Compute.Test/Compute.Test.csproj b/src/Compute/Compute.Test/Compute.Test.csproj index 8f6bbbf7bca6..a4643d57d951 100644 --- a/src/Compute/Compute.Test/Compute.Test.csproj +++ b/src/Compute/Compute.Test/Compute.Test.csproj @@ -12,7 +12,7 @@ - + diff --git a/src/Compute/Compute/Compute.csproj b/src/Compute/Compute/Compute.csproj index b4db157e02c9..7f8c888ec5a0 100644 --- a/src/Compute/Compute/Compute.csproj +++ b/src/Compute/Compute/Compute.csproj @@ -14,7 +14,7 @@ - + diff --git a/src/Network/Network.Test/Network.Test.csproj b/src/Network/Network.Test/Network.Test.csproj index 429f633b501e..ac66411d4026 100644 --- a/src/Network/Network.Test/Network.Test.csproj +++ b/src/Network/Network.Test/Network.Test.csproj @@ -18,7 +18,7 @@ - + diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/RecoveryServices.Backup.Test.csproj b/src/RecoveryServices/RecoveryServices.Backup.Test/RecoveryServices.Backup.Test.csproj index 1207376acfad..923dcff8b122 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/RecoveryServices.Backup.Test.csproj +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/RecoveryServices.Backup.Test.csproj @@ -11,7 +11,7 @@ - + diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/RecoveryServices.SiteRecovery.Test.csproj b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/RecoveryServices.SiteRecovery.Test.csproj index 594622d65908..c8db16ee5673 100644 --- a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/RecoveryServices.SiteRecovery.Test.csproj +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/RecoveryServices.SiteRecovery.Test.csproj @@ -11,7 +11,7 @@ - + diff --git a/src/Security/Security.Test/Security.Test.csproj b/src/Security/Security.Test/Security.Test.csproj index e1c25f585793..368363504036 100644 --- a/src/Security/Security.Test/Security.Test.csproj +++ b/src/Security/Security.Test/Security.Test.csproj @@ -42,7 +42,7 @@ Always - + \ No newline at end of file diff --git a/src/SqlVirtualMachine/SqlVirtualMachine.Test/SqlVirtualMachine.Test.csproj b/src/SqlVirtualMachine/SqlVirtualMachine.Test/SqlVirtualMachine.Test.csproj index f06b15a5835f..79466d3c6a77 100644 --- a/src/SqlVirtualMachine/SqlVirtualMachine.Test/SqlVirtualMachine.Test.csproj +++ b/src/SqlVirtualMachine/SqlVirtualMachine.Test/SqlVirtualMachine.Test.csproj @@ -15,7 +15,7 @@ - + From 6f362e3df13505311652e81f559477912b832bb3 Mon Sep 17 00:00:00 2001 From: Theodore Chang Date: Thu, 10 Mar 2022 19:40:44 -0600 Subject: [PATCH 11/16] all --- src/Compute/Compute.Test/ScenarioTests/GalleryTests.ps1 | 2 +- src/Compute/Compute/Generated/Gallery/GalleryGetMethod.cs | 4 ++-- src/Compute/Compute/help/Get-AzGallery.md | 8 ++++---- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/Compute/Compute.Test/ScenarioTests/GalleryTests.ps1 b/src/Compute/Compute.Test/ScenarioTests/GalleryTests.ps1 index 91ed95f2a2ce..2f465c0116d6 100644 --- a/src/Compute/Compute.Test/ScenarioTests/GalleryTests.ps1 +++ b/src/Compute/Compute.Test/ScenarioTests/GalleryTests.ps1 @@ -725,7 +725,7 @@ function Test-GalleryDirectSharing New-AzGallery -ResourceGroupName $rgname -Location $loc -Name $galleryName -Permission 'Groups' # get that gallery check for SharingProfile - $gal = Get-AzGallery -ResourceGroupName $rgname -Name $galleryName -Select 'Permissions' + $gal = Get-AzGallery -ResourceGroupName $rgname -Name $galleryName -Expand 'SharingProfile/Groups' Assert-AreEqual $gal.sharingProfile.Permissions 'Groups' # Reset that gallery diff --git a/src/Compute/Compute/Generated/Gallery/GalleryGetMethod.cs b/src/Compute/Compute/Generated/Gallery/GalleryGetMethod.cs index 09647f5ec66f..ed372003ca19 100644 --- a/src/Compute/Compute/Generated/Gallery/GalleryGetMethod.cs +++ b/src/Compute/Compute/Generated/Gallery/GalleryGetMethod.cs @@ -60,7 +60,7 @@ public override void ExecuteCmdlet() if (ShouldGetByName(resourceGroupName, galleryName)) { - var result = GalleriesClient.Get(resourceGroupName, galleryName, this.Expand); + var result = GalleriesClient.Get(resourceGroupName, galleryName, null, this.Expand); var psObject = new PSGallery(); ComputeAutomationAutoMapperProfile.Mapper.Map(result, psObject); @@ -204,7 +204,7 @@ public void SharedGalleryGet() ValueFromPipelineByPropertyName = true, ParameterSetName = "DefaultParameter", HelpMessage = "The expand query option to apply on the operation.")] - [PSArgumentCompleter("Permissions")] + [PSArgumentCompleter("SharingProfile/Groups")] public string Expand { get; set; } } } diff --git a/src/Compute/Compute/help/Get-AzGallery.md b/src/Compute/Compute/help/Get-AzGallery.md index 4f98eb98f198..054b5e02a36b 100644 --- a/src/Compute/Compute/help/Get-AzGallery.md +++ b/src/Compute/Compute/help/Get-AzGallery.md @@ -14,7 +14,7 @@ Get or list galleries. ### DefaultParameter (Default) ``` -Get-AzGallery [[-ResourceGroupName] ] [[-Name] ] [-Select ] +Get-AzGallery [[-ResourceGroupName] ] [[-Name] ] [-Expand ] [-DefaultProfile ] [] ``` @@ -171,7 +171,7 @@ Get all galleries in subscription that start with "gallery". ### Example 5 ```powershell -PS C:\> Get-AzGallery -Name galleryName -ResourceGroupName rg -Select Permissions +PS C:\> Get-AzGallery -Name galleryName -ResourceGroupName rg -Expand SharingProfile/Groups ``` @@ -284,8 +284,8 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` -### -Select -The select expression to apply on the operation. +### -Expand +The expand query option to apply on the operation. Possible value(s): "SharingProfile/Groups" ```yaml Type: System.String From 0ee88a3e5e308d9828051c3d204f40e496e23081 Mon Sep 17 00:00:00 2001 From: Theodore Chang Date: Thu, 10 Mar 2022 20:52:02 -0600 Subject: [PATCH 12/16] update test --- .../ScenarioTests/GalleryTests.ps1 | 12 +- .../TestGalleryDirectSharing.json | 1259 +++++++---------- 2 files changed, 517 insertions(+), 754 deletions(-) diff --git a/src/Compute/Compute.Test/ScenarioTests/GalleryTests.ps1 b/src/Compute/Compute.Test/ScenarioTests/GalleryTests.ps1 index 2f465c0116d6..70319a8669ee 100644 --- a/src/Compute/Compute.Test/ScenarioTests/GalleryTests.ps1 +++ b/src/Compute/Compute.Test/ScenarioTests/GalleryTests.ps1 @@ -728,12 +728,6 @@ function Test-GalleryDirectSharing $gal = Get-AzGallery -ResourceGroupName $rgname -Name $galleryName -Expand 'SharingProfile/Groups' Assert-AreEqual $gal.sharingProfile.Permissions 'Groups' - # Reset that gallery - $gal = Update-AzGallery -ResourceGroupName $rgname -Name $galleryName -Share -Reset - - # check - Assert-AreEqual $gal.SharingProfile.Permissions 'Private' - # Add 2 subscriptions to share with $gal = Update-AzGallery -ResourceGroupName $rgname -Name $galleryName -Permission 'Groups' -Share -Subscription '88fd8cb2-8248-499e-9a2d-4929a4b0133c','54b875cc-a81a-4914-8bfd-1a36bc7ddf4d' @@ -747,6 +741,12 @@ function Test-GalleryDirectSharing # check Assert-AreEqual $gal.SharingProfile.Groups[0].Type 'Subscriptions' Assert-AreEqual $gal.SharingProfile.Groups[0].Ids.count 1 + + # Reset that gallery + $gal = Update-AzGallery -ResourceGroupName $rgname -Name $galleryName -Share -Reset + + # check + Assert-AreEqual $gal.SharingProfile.Permissions 'Private' } finally { diff --git a/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.GalleryTests/TestGalleryDirectSharing.json b/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.GalleryTests/TestGalleryDirectSharing.json index 90417b19d6b7..7a974ff97fa5 100644 --- a/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.GalleryTests/TestGalleryDirectSharing.json +++ b/src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.GalleryTests/TestGalleryDirectSharing.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/crptestps7018?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczcwMTg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/crptestps8253?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczgyNTM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "704c4560-8ebf-4bc5-8dd6-27cca82529ac" + "e4341e30-bc7a-4c52-ba5c-3069ec286deb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.39" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "374ff8ea-8c72-4ef9-b03b-f3eeac9d044c" + "c6819d77-b160-4462-b94c-cea249e002e6" ], "x-ms-correlation-request-id": [ - "374ff8ea-8c72-4ef9-b03b-f3eeac9d044c" + "c6819d77-b160-4462-b94c-cea249e002e6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20210712T212131Z:374ff8ea-8c72-4ef9-b03b-f3eeac9d044c" + "SOUTHCENTRALUS:20220311T024611Z:c6819d77-b160-4462-b94c-cea249e002e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Mon, 12 Jul 2021 21:21:30 GMT" + "Fri, 11 Mar 2022 02:46:10 GMT" ], "Content-Length": [ "179" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018\",\r\n \"name\": \"crptestps7018\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8253\",\r\n \"name\": \"crptestps8253\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8253/providers/Microsoft.Compute/galleries/gallerycrptestps8253?api-version=2021-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzODI1Mz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n }\r\n },\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3c3489a3-9b7c-40c5-b606-0c42eb044cf9" + "c2bd554f-c39a-4c54-bb5a-248d3dfccef0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.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/eastus/capsOperations/dbd14d8c-2115-471b-ada2-a946457b5cb3?api-version=2020-09-30" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/5de4e082-2d36-4144-bd32-8d861c588c2d?api-version=2021-10-01" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;298" + "Microsoft.Compute/CreateUpdateGallery3Min;47,Microsoft.Compute/CreateUpdateGallery30Min;296" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + "70d5434e-5504-4968-b956-f8d027c07083_132736855405793073,70d5434e-5504-4968-b956-f8d027c07083_132736855405793073" ], "x-ms-request-id": [ - "dbd14d8c-2115-471b-ada2-a946457b5cb3" + "5de4e082-2d36-4144-bd32-8d861c588c2d" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -121,16 +121,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "3a941c85-2413-4566-a993-990a6f8f7748" + "68e524f3-7dec-49ca-9817-4ab161b1c2c4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20210712T212134Z:3a941c85-2413-4566-a993-990a6f8f7748" + "SOUTHCENTRALUS:20220311T024615Z:68e524f3-7dec-49ca-9817-4ab161b1c2c4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 12 Jul 2021 21:21:33 GMT" + "Fri, 11 Mar 2022 02:46:14 GMT" ], "Content-Length": [ "493" @@ -142,32 +142,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps8253\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8253/providers/Microsoft.Compute/galleries/gallerycrptestps8253\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS8253\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8253/providers/Microsoft.Compute/galleries/gallerycrptestps8253?api-version=2021-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzODI1Mz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"identifier\": {}\r\n },\r\n \"location\": \"eastus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"identifier\": {},\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n }\r\n },\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e564f4ac-c665-400f-b1d5-948ad09a7276" + "7c78573f-8371-4267-b016-a9b264347c02" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "75" + "139" ] }, "ResponseHeaders": { @@ -178,19 +178,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/1780dfac-3590-4428-91a2-b6c1bd188fec?api-version=2020-09-30" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/306438c5-d2ae-4eba-ab93-d1f7e928e59a?api-version=2021-10-01" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateUpdateGallery3Min;48,Microsoft.Compute/CreateUpdateGallery30Min;297" + "Microsoft.Compute/CreateUpdateGallery3Min;46,Microsoft.Compute/CreateUpdateGallery30Min;295" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + "70d5434e-5504-4968-b956-f8d027c07083_132736855405793073,70d5434e-5504-4968-b956-f8d027c07083_132736855405793073" ], "x-ms-request-id": [ - "1780dfac-3590-4428-91a2-b6c1bd188fec" + "306438c5-d2ae-4eba-ab93-d1f7e928e59a" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -200,16 +200,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "a460bc48-6769-47ee-aa5e-720fa85cc842" + "2f041480-4a61-4ba2-9d40-1195b28b3a73" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20210712T212206Z:a460bc48-6769-47ee-aa5e-720fa85cc842" + "SOUTHCENTRALUS:20220311T024647Z:2f041480-4a61-4ba2-9d40-1195b28b3a73" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 12 Jul 2021 21:22:05 GMT" + "Fri, 11 Mar 2022 02:46:47 GMT" ], "Content-Length": [ "494" @@ -221,26 +221,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps8253\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8253/providers/Microsoft.Compute/galleries/gallerycrptestps8253\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS8253\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8253/providers/Microsoft.Compute/galleries/gallerycrptestps8253?api-version=2021-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzODI1Mz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"identifier\": {},\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n }\r\n },\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "27c0ed1b-b785-4d5e-9ea8-7b31c45d2b12" + "4dbacef1-3fb2-489e-89a6-fea5620db3fa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -257,19 +257,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/e31d0c4a-c3ca-4fde-ad81-1705b57e3b33?api-version=2020-09-30" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/98039a15-a952-449b-889e-314782c61ab5?api-version=2021-10-01" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateUpdateGallery3Min;47,Microsoft.Compute/CreateUpdateGallery30Min;296" + "Microsoft.Compute/CreateUpdateGallery3Min;46,Microsoft.Compute/CreateUpdateGallery30Min;294" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + "70d5434e-5504-4968-b956-f8d027c07083_132736855405793073,70d5434e-5504-4968-b956-f8d027c07083_132736855405793073" ], "x-ms-request-id": [ - "e31d0c4a-c3ca-4fde-ad81-1705b57e3b33" + "98039a15-a952-449b-889e-314782c61ab5" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -279,16 +279,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "8241cd80-1280-4851-b57a-bffb5ef48102" + "33ef4597-8f7c-4365-9133-ff79b4dedb3f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20210712T212237Z:8241cd80-1280-4851-b57a-bffb5ef48102" + "SOUTHCENTRALUS:20220311T024720Z:33ef4597-8f7c-4365-9133-ff79b4dedb3f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 12 Jul 2021 21:22:37 GMT" + "Fri, 11 Mar 2022 02:47:20 GMT" ], "Content-Length": [ "494" @@ -300,26 +300,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps8253\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8253/providers/Microsoft.Compute/galleries/gallerycrptestps8253\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS8253\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8253/providers/Microsoft.Compute/galleries/gallerycrptestps8253?api-version=2021-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzODI1Mz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"identifier\": {},\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n }\r\n },\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c6d5cfff-66bb-4db8-8f46-50bfdcc7cd9f" + "71a384b8-97a3-4d8f-98fb-9cac2f416b44" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -336,19 +336,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/cae68e57-5bfb-417d-9921-0900c462149b?api-version=2020-09-30" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/0799c57f-c8b7-4fa6-8cb1-abc81af85d42?api-version=2021-10-01" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateUpdateGallery3Min;46,Microsoft.Compute/CreateUpdateGallery30Min;295" + "Microsoft.Compute/CreateUpdateGallery3Min;46,Microsoft.Compute/CreateUpdateGallery30Min;293" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + "70d5434e-5504-4968-b956-f8d027c07083_132736855405793073,70d5434e-5504-4968-b956-f8d027c07083_132736855405793073" ], "x-ms-request-id": [ - "cae68e57-5bfb-417d-9921-0900c462149b" + "0799c57f-c8b7-4fa6-8cb1-abc81af85d42" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -358,16 +358,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "d9a19925-460f-4ad8-a327-2087560fa658" + "d329c6ea-7300-4d48-99fb-34dacebc7ed2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20210712T212309Z:d9a19925-460f-4ad8-a327-2087560fa658" + "SOUTHCENTRALUS:20220311T024752Z:d329c6ea-7300-4d48-99fb-34dacebc7ed2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 12 Jul 2021 21:23:09 GMT" + "Fri, 11 Mar 2022 02:47:51 GMT" ], "Content-Length": [ "494" @@ -379,23 +379,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps8253\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8253/providers/Microsoft.Compute/galleries/gallerycrptestps8253\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS8253\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/dbd14d8c-2115-471b-ada2-a946457b5cb3?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL2NhcHNPcGVyYXRpb25zL2RiZDE0ZDhjLTIxMTUtNDcxYi1hZGEyLWE5NDY0NTdiNWNiMz9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/5de4e082-2d36-4144-bd32-8d861c588c2d?api-version=2021-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL2NhcHNPcGVyYXRpb25zLzVkZTRlMDgyLTJkMzYtNDE0NC1iZDMyLThkODYxYzU4OGMyZD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c3489a3-9b7c-40c5-b606-0c42eb044cf9" + "c2bd554f-c39a-4c54-bb5a-248d3dfccef0" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -406,16 +406,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4195" + "Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4192" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + "70d5434e-5504-4968-b956-f8d027c07083_132736855405793073,70d5434e-5504-4968-b956-f8d027c07083_132736855405793073" ], "x-ms-request-id": [ - "3b8647e8-7832-427d-b73b-a398e622eed8" + "a7324735-b47f-45dc-a242-206d049f7980" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -425,16 +425,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "05994129-bcfd-4639-9cb4-5c7aa9298c70" + "8075e742-cc28-42e2-a4d3-3ada37db16ca" ], "x-ms-routing-request-id": [ - "CENTRALUS:20210712T212204Z:05994129-bcfd-4639-9cb4-5c7aa9298c70" + "SOUTHCENTRALUS:20220311T024645Z:8075e742-cc28-42e2-a4d3-3ada37db16ca" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 12 Jul 2021 21:22:04 GMT" + "Fri, 11 Mar 2022 02:46:44 GMT" ], "Content-Length": [ "184" @@ -446,23 +446,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-07-12T17:21:34.1757109-04:00\",\r\n \"endTime\": \"2021-07-12T17:21:34.3944539-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"dbd14d8c-2115-471b-ada2-a946457b5cb3\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-03-10T20:46:14.7298027-06:00\",\r\n \"endTime\": \"2022-03-10T20:46:14.8548204-06:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5de4e082-2d36-4144-bd32-8d861c588c2d\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8253/providers/Microsoft.Compute/galleries/gallerycrptestps8253?api-version=2021-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzODI1Mz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c3489a3-9b7c-40c5-b606-0c42eb044cf9" + "c2bd554f-c39a-4c54-bb5a-248d3dfccef0" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -473,16 +473,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2491" + "Microsoft.Compute/GetGallery3Min;335,Microsoft.Compute/GetGallery30Min;2448" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + "70d5434e-5504-4968-b956-f8d027c07083_132736855405793073,70d5434e-5504-4968-b956-f8d027c07083_132736855405793073" ], "x-ms-request-id": [ - "195414cd-9031-4e14-9ed0-1504ced2131a" + "9d87071f-b287-47a4-9975-0c6e87153e0c" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -492,19 +492,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "f16aaea4-bce1-444d-a3bb-1bf24181c46f" + "5cd12bcf-b6c5-4679-b7c0-700702262d9c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20210712T212204Z:f16aaea4-bce1-444d-a3bb-1bf24181c46f" + "SOUTHCENTRALUS:20220311T024645Z:5cd12bcf-b6c5-4679-b7c0-700702262d9c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 12 Jul 2021 21:22:04 GMT" + "Fri, 11 Mar 2022 02:46:44 GMT" ], "Content-Length": [ - "430" + "494" ], "Content-Type": [ "application/json; charset=utf-8" @@ -513,26 +513,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps8253\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8253/providers/Microsoft.Compute/galleries/gallerycrptestps8253\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS8253\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8253/providers/Microsoft.Compute/galleries/gallerycrptestps8253?api-version=2021-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzODI1Mz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e564f4ac-c665-400f-b1d5-948ad09a7276" + "7c78573f-8371-4267-b016-a9b264347c02" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -543,16 +543,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;344,Microsoft.Compute/GetGallery30Min;2489" + "Microsoft.Compute/GetGallery3Min;333,Microsoft.Compute/GetGallery30Min;2446" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + "70d5434e-5504-4968-b956-f8d027c07083_132736855405793073,70d5434e-5504-4968-b956-f8d027c07083_132736855405793073" ], "x-ms-request-id": [ - "eff09249-e58d-47a3-8ae7-36cf25dae087" + "f7041420-4751-46bd-b17f-7839560efe41" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -562,19 +562,19 @@ "11999" ], "x-ms-correlation-request-id": [ - "b7f952fe-0aeb-4f9f-ad1c-55ee91b4bd65" + "26762285-f14b-42ed-98f5-96139fe067a6" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20210712T212205Z:b7f952fe-0aeb-4f9f-ad1c-55ee91b4bd65" + "SOUTHCENTRALUS:20220311T024646Z:26762285-f14b-42ed-98f5-96139fe067a6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 12 Jul 2021 21:22:05 GMT" + "Fri, 11 Mar 2022 02:46:46 GMT" ], "Content-Length": [ - "430" + "494" ], "Content-Type": [ "application/json; charset=utf-8" @@ -583,23 +583,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps8253\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8253/providers/Microsoft.Compute/galleries/gallerycrptestps8253\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS8253\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8253/providers/Microsoft.Compute/galleries/gallerycrptestps8253?api-version=2021-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzODI1Mz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e564f4ac-c665-400f-b1d5-948ad09a7276" + "7c78573f-8371-4267-b016-a9b264347c02" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -610,16 +610,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;343,Microsoft.Compute/GetGallery30Min;2488" + "Microsoft.Compute/GetGallery3Min;332,Microsoft.Compute/GetGallery30Min;2445" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + "70d5434e-5504-4968-b956-f8d027c07083_132736855405793073,70d5434e-5504-4968-b956-f8d027c07083_132736855405793073" ], "x-ms-request-id": [ - "1b6c8864-28de-4257-a82e-6f7b84191dad" + "aa7b970c-bcf3-4f30-8540-3d95af10a4bb" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -629,19 +629,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "f7e9c34e-fe9d-4f54-a888-bcf030d80924" + "9a96ef5a-b474-4831-b46e-32735db158b7" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20210712T212206Z:f7e9c34e-fe9d-4f54-a888-bcf030d80924" + "SOUTHCENTRALUS:20220311T024648Z:9a96ef5a-b474-4831-b46e-32735db158b7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 12 Jul 2021 21:22:05 GMT" + "Fri, 11 Mar 2022 02:46:47 GMT" ], "Content-Length": [ - "430" + "494" ], "Content-Type": [ "application/json; charset=utf-8" @@ -650,26 +650,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps8253\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8253/providers/Microsoft.Compute/galleries/gallerycrptestps8253\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS8253\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8253/providers/Microsoft.Compute/galleries/gallerycrptestps8253?api-version=2021-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzODI1Mz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27c0ed1b-b785-4d5e-9ea8-7b31c45d2b12" + "4dbacef1-3fb2-489e-89a6-fea5620db3fa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -680,16 +680,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;339,Microsoft.Compute/GetGallery30Min;2484" + "Microsoft.Compute/GetGallery3Min;333,Microsoft.Compute/GetGallery30Min;2439" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + "70d5434e-5504-4968-b956-f8d027c07083_132736855405793073,70d5434e-5504-4968-b956-f8d027c07083_132736855405793073" ], "x-ms-request-id": [ - "d700c0af-876d-4c12-8dfd-a2a93a49d435" + "38078532-3bdf-4f86-8d3f-4b143efbd716" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -699,19 +699,19 @@ "11999" ], "x-ms-correlation-request-id": [ - "a14fceb2-a9f4-4cdd-96df-83fc934d7714" + "3e58c1ea-4f66-4e34-9794-8b7b8caaa3cd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20210712T212237Z:a14fceb2-a9f4-4cdd-96df-83fc934d7714" + "SOUTHCENTRALUS:20220311T024719Z:3e58c1ea-4f66-4e34-9794-8b7b8caaa3cd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 12 Jul 2021 21:22:36 GMT" + "Fri, 11 Mar 2022 02:47:19 GMT" ], "Content-Length": [ - "430" + "494" ], "Content-Type": [ "application/json; charset=utf-8" @@ -720,23 +720,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps8253\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8253/providers/Microsoft.Compute/galleries/gallerycrptestps8253\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS8253\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8253/providers/Microsoft.Compute/galleries/gallerycrptestps8253?api-version=2021-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzODI1Mz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27c0ed1b-b785-4d5e-9ea8-7b31c45d2b12" + "4dbacef1-3fb2-489e-89a6-fea5620db3fa" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -747,16 +747,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;338,Microsoft.Compute/GetGallery30Min;2483" + "Microsoft.Compute/GetGallery3Min;332,Microsoft.Compute/GetGallery30Min;2438" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + "70d5434e-5504-4968-b956-f8d027c07083_132736855405793073,70d5434e-5504-4968-b956-f8d027c07083_132736855405793073" ], "x-ms-request-id": [ - "a9fcf859-bbed-47cd-9f79-439c8a27ee7c" + "2825a0f6-adc2-47c8-8b90-a6acb0c92870" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -766,19 +766,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "03943f33-ef97-4f42-b628-ad63838faff1" + "e325cb78-25b4-4e55-be58-6f54fd09ba26" ], "x-ms-routing-request-id": [ - "CENTRALUS:20210712T212237Z:03943f33-ef97-4f42-b628-ad63838faff1" + "SOUTHCENTRALUS:20220311T024720Z:e325cb78-25b4-4e55-be58-6f54fd09ba26" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 12 Jul 2021 21:22:37 GMT" + "Fri, 11 Mar 2022 02:47:20 GMT" ], "Content-Length": [ - "430" + "494" ], "Content-Type": [ "application/json; charset=utf-8" @@ -787,26 +787,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps8253\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8253/providers/Microsoft.Compute/galleries/gallerycrptestps8253\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS8253\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8253/providers/Microsoft.Compute/galleries/gallerycrptestps8253?api-version=2021-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzODI1Mz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6d5cfff-66bb-4db8-8f46-50bfdcc7cd9f" + "71a384b8-97a3-4d8f-98fb-9cac2f416b44" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -817,16 +817,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;335,Microsoft.Compute/GetGallery30Min;2480" + "Microsoft.Compute/GetGallery3Min;330,Microsoft.Compute/GetGallery30Min;2433" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + "70d5434e-5504-4968-b956-f8d027c07083_132736855405793073,70d5434e-5504-4968-b956-f8d027c07083_132736855405793073" ], "x-ms-request-id": [ - "4fd90726-735f-464f-a421-8a406ef6c0de" + "481e9754-34d6-4b65-bfd1-f83a32db6e3d" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -836,19 +836,19 @@ "11999" ], "x-ms-correlation-request-id": [ - "03e994c9-caf9-4184-b117-eceb3b296019" + "40a34821-70ac-4a84-a64a-6a964dce40a9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20210712T212308Z:03e994c9-caf9-4184-b117-eceb3b296019" + "SOUTHCENTRALUS:20220311T024751Z:40a34821-70ac-4a84-a64a-6a964dce40a9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 12 Jul 2021 21:23:08 GMT" + "Fri, 11 Mar 2022 02:47:51 GMT" ], "Content-Length": [ - "430" + "494" ], "Content-Type": [ "application/json; charset=utf-8" @@ -857,23 +857,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps8253\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8253/providers/Microsoft.Compute/galleries/gallerycrptestps8253\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS8253\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8253/providers/Microsoft.Compute/galleries/gallerycrptestps8253?api-version=2021-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzODI1Mz9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6d5cfff-66bb-4db8-8f46-50bfdcc7cd9f" + "71a384b8-97a3-4d8f-98fb-9cac2f416b44" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -884,16 +884,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;334,Microsoft.Compute/GetGallery30Min;2479" + "Microsoft.Compute/GetGallery3Min;329,Microsoft.Compute/GetGallery30Min;2432" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + "70d5434e-5504-4968-b956-f8d027c07083_132736855405793073,70d5434e-5504-4968-b956-f8d027c07083_132736855405793073" ], "x-ms-request-id": [ - "b9d5321a-82fe-4347-8b5a-1856f0fc0bf4" + "a59243d1-a7ff-452b-8fd1-6760fbda3e5e" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -903,19 +903,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "a86250c8-b860-42b3-b129-b12b1e0935fb" + "ac2ac679-e62b-46da-bab5-8d53d5d72ed4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20210712T212309Z:a86250c8-b860-42b3-b129-b12b1e0935fb" + "SOUTHCENTRALUS:20220311T024752Z:ac2ac679-e62b-46da-bab5-8d53d5d72ed4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 12 Jul 2021 21:23:09 GMT" + "Fri, 11 Mar 2022 02:47:52 GMT" ], "Content-Length": [ - "430" + "494" ], "Content-Type": [ "application/json; charset=utf-8" @@ -924,26 +924,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps8253\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8253/providers/Microsoft.Compute/galleries/gallerycrptestps8253\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS8253\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30&$select=Permissions", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMwJiRzZWxlY3Q9UGVybWlzc2lvbnM=", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8253/providers/Microsoft.Compute/galleries/gallerycrptestps8253?api-version=2021-10-01&$expand=SharingProfile%2FGroups", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzODI1Mz9hcGktdmVyc2lvbj0yMDIxLTEwLTAxJiRleHBhbmQ9U2hhcmluZ1Byb2ZpbGUlMkZHcm91cHM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f165366-de02-4d45-ab89-f0c1fe920200" + "8a3148cf-95a6-469d-b423-b1457bf6eeb8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -954,16 +954,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;345,Microsoft.Compute/GetGallery30Min;2490" + "Microsoft.Compute/GetGallery3Min;334,Microsoft.Compute/GetGallery30Min;2447" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + "70d5434e-5504-4968-b956-f8d027c07083_132736855405793073,70d5434e-5504-4968-b956-f8d027c07083_132736855405793073" ], "x-ms-request-id": [ - "91502517-7a20-4f8f-9db5-33dd8545ab43" + "8a5b1599-6e10-46ab-9ff1-2608c496713c" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -973,16 +973,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "3f7fefb1-863f-4a24-a3b3-98c299d3e728" + "ae9ff680-f96b-416f-8fbf-7cf0811b172b" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20210712T212205Z:3f7fefb1-863f-4a24-a3b3-98c299d3e728" + "SOUTHCENTRALUS:20220311T024646Z:ae9ff680-f96b-416f-8fbf-7cf0811b172b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 12 Jul 2021 21:22:04 GMT" + "Fri, 11 Mar 2022 02:46:45 GMT" ], "Content-Length": [ "494" @@ -994,242 +994,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps8253\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8253/providers/Microsoft.Compute/galleries/gallerycrptestps8253\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS8253\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30&$select=Permissions", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMwJiRzZWxlY3Q9UGVybWlzc2lvbnM=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e564f4ac-c665-400f-b1d5-948ad09a7276" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.30015.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;340,Microsoft.Compute/GetGallery30Min;2485" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" - ], - "x-ms-request-id": [ - "174802bf-f513-43a6-afa5-fd4dfc6dd7aa" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-correlation-request-id": [ - "15f89758-9e6b-4138-a7d6-31532e43f2d7" - ], - "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20210712T212236Z:15f89758-9e6b-4138-a7d6-31532e43f2d7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 12 Jul 2021 21:22:36 GMT" - ], - "Content-Length": [ - "495" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\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/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30&$select=Permissions", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMwJiRzZWxlY3Q9UGVybWlzc2lvbnM=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "27c0ed1b-b785-4d5e-9ea8-7b31c45d2b12" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.30015.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;336,Microsoft.Compute/GetGallery30Min;2481" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" - ], - "x-ms-request-id": [ - "478a9d75-1a4e-476b-ac8a-1e1a0cc9b9ea" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-correlation-request-id": [ - "d725fea0-2a0f-4f39-bb5e-70fb426261ad" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20210712T212308Z:d725fea0-2a0f-4f39-bb5e-70fb426261ad" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 12 Jul 2021 21:23:07 GMT" - ], - "Content-Length": [ - "719" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\",\r\n \"groups\": [\r\n {\r\n \"type\": \"Subscriptions\",\r\n \"ids\": [\r\n \"88fd8cb2-8248-499e-9a2d-4929a4b0133c\",\r\n \"54b875cc-a81a-4914-8bfd-1a36bc7ddf4d\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018?api-version=2020-09-30&$select=Permissions", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOD9hcGktdmVyc2lvbj0yMDIwLTA5LTMwJiRzZWxlY3Q9UGVybWlzc2lvbnM=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c6d5cfff-66bb-4db8-8f46-50bfdcc7cd9f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.30015.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetGallery3Min;332,Microsoft.Compute/GetGallery30Min;2477" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" - ], - "x-ms-request-id": [ - "6ce79301-652a-4a04-a7d9-4348039f4099" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-correlation-request-id": [ - "9d72293a-84f7-4623-b1e5-44784d3de4bc" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20210712T212340Z:9d72293a-84f7-4623-b1e5-44784d3de4bc" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 12 Jul 2021 21:23:39 GMT" - ], - "Content-Length": [ - "666" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"gallerycrptestps7018\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS7018\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\",\r\n \"groups\": [\r\n {\r\n \"type\": \"Subscriptions\",\r\n \"ids\": [\r\n \"54b875cc-a81a-4914-8bfd-1a36bc7ddf4d\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018/share?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOC9zaGFyZT9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8253/providers/Microsoft.Compute/galleries/gallerycrptestps8253/share?api-version=2021-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzODI1My9zaGFyZT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", "RequestMethod": "POST", - "RequestBody": "{\r\n \"operationType\": \"Reset\"\r\n}", + "RequestBody": "{\r\n \"operationType\": \"Add\",\r\n \"groups\": [\r\n {\r\n \"type\": \"Subscriptions\",\r\n \"ids\": [\r\n \"88fd8cb2-8248-499e-9a2d-4929a4b0133c\",\r\n \"54b875cc-a81a-4914-8bfd-1a36bc7ddf4d\"\r\n ]\r\n }\r\n ]\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e564f4ac-c665-400f-b1d5-948ad09a7276" + "7c78573f-8371-4267-b016-a9b264347c02" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "32" + "219" ] }, "ResponseHeaders": { @@ -1240,22 +1030,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/9cc3c701-14bb-4df3-a4df-db82e57ebf64?monitor=true&api-version=2020-09-30" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/1e017881-a9ca-4cf2-a194-56b916df88d9?monitor=true&api-version=2021-10-01" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/9cc3c701-14bb-4df3-a4df-db82e57ebf64?api-version=2020-09-30" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/1e017881-a9ca-4cf2-a194-56b916df88d9?api-version=2021-10-01" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/PostShareGallery3Min;9,Microsoft.Compute/PostShareGallery30Min;58" + "Microsoft.Compute/PostShareGallery3Min;8,Microsoft.Compute/PostShareGallery30Min;58" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + "70d5434e-5504-4968-b956-f8d027c07083_132736855405793073,70d5434e-5504-4968-b956-f8d027c07083_132736855405793073" ], "x-ms-request-id": [ - "9cc3c701-14bb-4df3-a4df-db82e57ebf64" + "1e017881-a9ca-4cf2-a194-56b916df88d9" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1265,16 +1055,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "e71de7f2-7502-43ed-aa75-35318cd0f40e" + "9e561bff-e74a-41b0-bd5b-c172ac6acd7f" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20210712T212206Z:e71de7f2-7502-43ed-aa75-35318cd0f40e" + "SOUTHCENTRALUS:20220311T024648Z:9e561bff-e74a-41b0-bd5b-c172ac6acd7f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 12 Jul 2021 21:22:05 GMT" + "Fri, 11 Mar 2022 02:46:47 GMT" ], "Expires": [ "-1" @@ -1287,28 +1077,28 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018/share?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOC9zaGFyZT9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8253/providers/Microsoft.Compute/galleries/gallerycrptestps8253/share?api-version=2021-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzODI1My9zaGFyZT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", "RequestMethod": "POST", - "RequestBody": "{\r\n \"operationType\": \"Add\",\r\n \"groups\": [\r\n {\r\n \"type\": \"Subscriptions\",\r\n \"ids\": [\r\n \"88fd8cb2-8248-499e-9a2d-4929a4b0133c\",\r\n \"54b875cc-a81a-4914-8bfd-1a36bc7ddf4d\"\r\n ]\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"operationType\": \"Remove\",\r\n \"groups\": [\r\n {\r\n \"type\": \"Subscriptions\",\r\n \"ids\": [\r\n \"88fd8cb2-8248-499e-9a2d-4929a4b0133c\"\r\n ]\r\n }\r\n ]\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "27c0ed1b-b785-4d5e-9ea8-7b31c45d2b12" + "4dbacef1-3fb2-489e-89a6-fea5620db3fa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "219" + "173" ] }, "ResponseHeaders": { @@ -1319,10 +1109,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/d570d621-9a22-4027-bd0f-0d7acd69becf?monitor=true&api-version=2020-09-30" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/3adc419a-9e54-44f7-8fe2-eca6e6cd80b0?monitor=true&api-version=2021-10-01" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/d570d621-9a22-4027-bd0f-0d7acd69becf?api-version=2020-09-30" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/3adc419a-9e54-44f7-8fe2-eca6e6cd80b0?api-version=2021-10-01" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/PostShareGallery3Min;8,Microsoft.Compute/PostShareGallery30Min;57" @@ -1331,10 +1121,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + "70d5434e-5504-4968-b956-f8d027c07083_132736855405793073,70d5434e-5504-4968-b956-f8d027c07083_132736855405793073" ], "x-ms-request-id": [ - "d570d621-9a22-4027-bd0f-0d7acd69becf" + "3adc419a-9e54-44f7-8fe2-eca6e6cd80b0" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1344,16 +1134,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "a0559fab-2672-4d92-a7ec-cca70bc153fd" + "559f2b48-a194-4db1-9501-bff65350f765" ], "x-ms-routing-request-id": [ - "CENTRALUS:20210712T212237Z:a0559fab-2672-4d92-a7ec-cca70bc153fd" + "SOUTHCENTRALUS:20220311T024720Z:559f2b48-a194-4db1-9501-bff65350f765" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 12 Jul 2021 21:22:37 GMT" + "Fri, 11 Mar 2022 02:47:20 GMT" ], "Expires": [ "-1" @@ -1366,28 +1156,28 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018/share?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczcwMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzNzAxOC9zaGFyZT9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8253/providers/Microsoft.Compute/galleries/gallerycrptestps8253/share?api-version=2021-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzODI1My9zaGFyZT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", "RequestMethod": "POST", - "RequestBody": "{\r\n \"operationType\": \"Remove\",\r\n \"groups\": [\r\n {\r\n \"type\": \"Subscriptions\",\r\n \"ids\": [\r\n \"88fd8cb2-8248-499e-9a2d-4929a4b0133c\"\r\n ]\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"operationType\": \"Reset\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c6d5cfff-66bb-4db8-8f46-50bfdcc7cd9f" + "71a384b8-97a3-4d8f-98fb-9cac2f416b44" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "173" + "32" ] }, "ResponseHeaders": { @@ -1398,10 +1188,10 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/e2c3f6b9-922c-430b-8087-566a75a006cc?monitor=true&api-version=2020-09-30" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/b306b7b0-e393-42c0-92f8-8b66bd675f28?monitor=true&api-version=2021-10-01" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/e2c3f6b9-922c-430b-8087-566a75a006cc?api-version=2020-09-30" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/b306b7b0-e393-42c0-92f8-8b66bd675f28?api-version=2021-10-01" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/PostShareGallery3Min;7,Microsoft.Compute/PostShareGallery30Min;56" @@ -1410,10 +1200,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + "70d5434e-5504-4968-b956-f8d027c07083_132736855405793073,70d5434e-5504-4968-b956-f8d027c07083_132736855405793073" ], "x-ms-request-id": [ - "e2c3f6b9-922c-430b-8087-566a75a006cc" + "b306b7b0-e393-42c0-92f8-8b66bd675f28" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1423,16 +1213,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "74572736-937e-4019-ae18-f246b2f497c4" + "b60e3e4b-fb19-44f3-9eec-4dd709a8f991" ], "x-ms-routing-request-id": [ - "CENTRALUS:20210712T212309Z:74572736-937e-4019-ae18-f246b2f497c4" + "SOUTHCENTRALUS:20220311T024753Z:b60e3e4b-fb19-44f3-9eec-4dd709a8f991" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 12 Jul 2021 21:23:09 GMT" + "Fri, 11 Mar 2022 02:47:52 GMT" ], "Expires": [ "-1" @@ -1445,19 +1235,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/9cc3c701-14bb-4df3-a4df-db82e57ebf64?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL2NhcHNPcGVyYXRpb25zLzljYzNjNzAxLTE0YmItNGRmMy1hNGRmLWRiODJlNTdlYmY2ND9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/1e017881-a9ca-4cf2-a194-56b916df88d9?api-version=2021-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL2NhcHNPcGVyYXRpb25zLzFlMDE3ODgxLWE5Y2EtNGNmMi1hMTk0LTU2YjkxNmRmODhkOT9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e564f4ac-c665-400f-b1d5-948ad09a7276" + "7c78573f-8371-4267-b016-a9b264347c02" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1468,16 +1258,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4193" + "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4190" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + "70d5434e-5504-4968-b956-f8d027c07083_132736855405793073,70d5434e-5504-4968-b956-f8d027c07083_132736855405793073" ], "x-ms-request-id": [ - "25c4c52a-bc07-4970-ac93-0fcd3cbccfeb" + "054bd017-165e-4f2c-aed5-073bb1c32ab1" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1487,16 +1277,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "b7890d85-9a69-4667-86a6-4307806c76b8" + "9548a1b8-0d9f-405f-bef7-2b6d1cbafe3a" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20210712T212236Z:b7890d85-9a69-4667-86a6-4307806c76b8" + "SOUTHCENTRALUS:20220311T024718Z:9548a1b8-0d9f-405f-bef7-2b6d1cbafe3a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 12 Jul 2021 21:22:36 GMT" + "Fri, 11 Mar 2022 02:47:17 GMT" ], "Content-Length": [ "183" @@ -1508,23 +1298,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-07-12T17:22:06.597853-04:00\",\r\n \"endTime\": \"2021-07-12T17:22:06.6446821-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9cc3c701-14bb-4df3-a4df-db82e57ebf64\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2022-03-10T20:46:48.1831901-06:00\",\r\n \"endTime\": \"2022-03-10T20:46:51.370712-06:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1e017881-a9ca-4cf2-a194-56b916df88d9\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/9cc3c701-14bb-4df3-a4df-db82e57ebf64?monitor=true&api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL2NhcHNPcGVyYXRpb25zLzljYzNjNzAxLTE0YmItNGRmMy1hNGRmLWRiODJlNTdlYmY2ND9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/1e017881-a9ca-4cf2-a194-56b916df88d9?monitor=true&api-version=2021-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL2NhcHNPcGVyYXRpb25zLzFlMDE3ODgxLWE5Y2EtNGNmMi1hMTk0LTU2YjkxNmRmODhkOT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e564f4ac-c665-400f-b1d5-948ad09a7276" + "7c78573f-8371-4267-b016-a9b264347c02" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1535,16 +1325,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4192" + "Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4189" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + "70d5434e-5504-4968-b956-f8d027c07083_132736855405793073,70d5434e-5504-4968-b956-f8d027c07083_132736855405793073" ], "x-ms-request-id": [ - "48f13371-82b9-4acf-ae29-1741f671bea7" + "f5ec1b7a-3809-475f-9148-c261e1354c4f" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1554,16 +1344,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "e11ee304-cc92-4bcf-8159-60140fe007af" + "a217d826-1f94-40e7-8eab-4d570d8a4b1b" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20210712T212236Z:e11ee304-cc92-4bcf-8159-60140fe007af" + "SOUTHCENTRALUS:20220311T024718Z:a217d826-1f94-40e7-8eab-4d570d8a4b1b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 12 Jul 2021 21:22:36 GMT" + "Fri, 11 Mar 2022 02:47:17 GMT" ], "Expires": [ "-1" @@ -1576,19 +1366,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/d570d621-9a22-4027-bd0f-0d7acd69becf?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL2NhcHNPcGVyYXRpb25zL2Q1NzBkNjIxLTlhMjItNDAyNy1iZDBmLTBkN2FjZDY5YmVjZj9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8253/providers/Microsoft.Compute/galleries/gallerycrptestps8253?api-version=2021-10-01&$select=Permissions", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzODI1Mz9hcGktdmVyc2lvbj0yMDIxLTEwLTAxJiRzZWxlY3Q9UGVybWlzc2lvbnM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27c0ed1b-b785-4d5e-9ea8-7b31c45d2b12" + "7c78573f-8371-4267-b016-a9b264347c02" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1599,38 +1392,38 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4190" + "Microsoft.Compute/GetGallery3Min;334,Microsoft.Compute/GetGallery30Min;2440" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + "70d5434e-5504-4968-b956-f8d027c07083_132736855405793073,70d5434e-5504-4968-b956-f8d027c07083_132736855405793073" ], "x-ms-request-id": [ - "bcef5500-5f57-4530-9373-abe38b6d98e9" + "73656052-97c5-4fbe-9d45-a970a267f216" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11995" ], "x-ms-correlation-request-id": [ - "c8a1ca70-2aeb-404e-b8a0-cfb8c68f581f" + "cce43c9c-f2c3-45de-9d62-6c0cc49ed3e0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20210712T212308Z:c8a1ca70-2aeb-404e-b8a0-cfb8c68f581f" + "SOUTHCENTRALUS:20220311T024718Z:cce43c9c-f2c3-45de-9d62-6c0cc49ed3e0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 12 Jul 2021 21:23:07 GMT" + "Fri, 11 Mar 2022 02:47:18 GMT" ], "Content-Length": [ - "184" + "719" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1639,23 +1432,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-07-12T17:22:37.9105496-04:00\",\r\n \"endTime\": \"2021-07-12T17:22:39.0824504-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d570d621-9a22-4027-bd0f-0d7acd69becf\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps8253\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8253/providers/Microsoft.Compute/galleries/gallerycrptestps8253\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS8253\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\",\r\n \"groups\": [\r\n {\r\n \"type\": \"Subscriptions\",\r\n \"ids\": [\r\n \"88fd8cb2-8248-499e-9a2d-4929a4b0133c\",\r\n \"54b875cc-a81a-4914-8bfd-1a36bc7ddf4d\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/d570d621-9a22-4027-bd0f-0d7acd69becf?monitor=true&api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL2NhcHNPcGVyYXRpb25zL2Q1NzBkNjIxLTlhMjItNDAyNy1iZDBmLTBkN2FjZDY5YmVjZj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8253/providers/Microsoft.Compute/galleries/gallerycrptestps8253?api-version=2021-10-01&$select=Permissions", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzODI1Mz9hcGktdmVyc2lvbj0yMDIxLTEwLTAxJiRzZWxlY3Q9UGVybWlzc2lvbnM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27c0ed1b-b785-4d5e-9ea8-7b31c45d2b12" + "4dbacef1-3fb2-489e-89a6-fea5620db3fa" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1666,60 +1462,66 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4189" + "Microsoft.Compute/GetGallery3Min;331,Microsoft.Compute/GetGallery30Min;2434" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + "70d5434e-5504-4968-b956-f8d027c07083_132736855405793073,70d5434e-5504-4968-b956-f8d027c07083_132736855405793073" ], "x-ms-request-id": [ - "67f13f77-f05d-4b55-a7ec-1b934e3e1aed" + "0b007a59-186e-4c3d-9560-a8fe2bb3fd86" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-correlation-request-id": [ - "add01977-50ba-4961-b863-5cde0ff14b52" + "fab94f7c-b378-489d-bba4-c56e2a72d215" ], "x-ms-routing-request-id": [ - "CENTRALUS:20210712T212308Z:add01977-50ba-4961-b863-5cde0ff14b52" + "SOUTHCENTRALUS:20220311T024751Z:fab94f7c-b378-489d-bba4-c56e2a72d215" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 12 Jul 2021 21:23:07 GMT" + "Fri, 11 Mar 2022 02:47:50 GMT" + ], + "Content-Length": [ + "666" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps8253\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8253/providers/Microsoft.Compute/galleries/gallerycrptestps8253\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS8253\"\r\n },\r\n \"sharingProfile\": {\r\n \"permissions\": \"Groups\",\r\n \"groups\": [\r\n {\r\n \"type\": \"Subscriptions\",\r\n \"ids\": [\r\n \"54b875cc-a81a-4914-8bfd-1a36bc7ddf4d\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/e2c3f6b9-922c-430b-8087-566a75a006cc?api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL2NhcHNPcGVyYXRpb25zL2UyYzNmNmI5LTkyMmMtNDMwYi04MDg3LTU2NmE3NWEwMDZjYz9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8253/providers/Microsoft.Compute/galleries/gallerycrptestps8253?api-version=2021-10-01&$select=Permissions", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczgyNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5Y3JwdGVzdHBzODI1Mz9hcGktdmVyc2lvbj0yMDIxLTEwLTAxJiRzZWxlY3Q9UGVybWlzc2lvbnM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6d5cfff-66bb-4db8-8f46-50bfdcc7cd9f" + "71a384b8-97a3-4d8f-98fb-9cac2f416b44" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1730,38 +1532,38 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4187" + "Microsoft.Compute/GetGallery3Min;328,Microsoft.Compute/GetGallery30Min;2430" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + "70d5434e-5504-4968-b956-f8d027c07083_132736855405793073,70d5434e-5504-4968-b956-f8d027c07083_132736855405793073" ], "x-ms-request-id": [ - "10a5f256-4624-49b3-84bc-4c4d99f2c3cc" + "2c70cdb7-a03b-42f5-b070-a12d8553c222" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11995" ], "x-ms-correlation-request-id": [ - "0d56afd3-5929-4e6b-abbd-b72e975a333c" + "a3737576-488d-4040-ab4e-23708fe51ae4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20210712T212339Z:0d56afd3-5929-4e6b-abbd-b72e975a333c" + "SOUTHCENTRALUS:20220311T024823Z:a3737576-488d-4040-ab4e-23708fe51ae4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 12 Jul 2021 21:23:39 GMT" + "Fri, 11 Mar 2022 02:48:22 GMT" ], "Content-Length": [ - "184" + "495" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1770,23 +1572,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2021-07-12T17:23:09.7388895-04:00\",\r\n \"endTime\": \"2021-07-12T17:23:10.0513882-04:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e2c3f6b9-922c-430b-8087-566a75a006cc\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"gallerycrptestps8253\",\r\n \"id\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps8253/providers/Microsoft.Compute/galleries/gallerycrptestps8253\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\": \"e37510d7-33b6-4676-886f-ee75bcc01871-GALLERYCRPTESTPS8253\"\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/eastus/capsOperations/e2c3f6b9-922c-430b-8087-566a75a006cc?monitor=true&api-version=2020-09-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL2NhcHNPcGVyYXRpb25zL2UyYzNmNmI5LTkyMmMtNDMwYi04MDg3LTU2NmE3NWEwMDZjYz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMC0wOS0zMA==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/3adc419a-9e54-44f7-8fe2-eca6e6cd80b0?api-version=2021-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL2NhcHNPcGVyYXRpb25zLzNhZGM0MTlhLTllNTQtNDRmNy04ZmUyLWVjYTZlNmNkODBiMD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6d5cfff-66bb-4db8-8f46-50bfdcc7cd9f" + "4dbacef1-3fb2-489e-89a6-fea5620db3fa" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/47.0.0" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1797,63 +1599,63 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4186" + "Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4187" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "70d5434e-5504-4968-b956-f8d027c07083_132701665974705278,70d5434e-5504-4968-b956-f8d027c07083_132701665974705278" + "70d5434e-5504-4968-b956-f8d027c07083_132736855405793073,70d5434e-5504-4968-b956-f8d027c07083_132736855405793073" ], "x-ms-request-id": [ - "73e9d996-9bea-4a0f-a0a5-62c4f7f4e10e" + "0903e5fd-5173-442c-a0ee-2a391552b5fe" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-correlation-request-id": [ - "dc39192d-5e57-4f3a-add9-98bd81f1ae77" + "f47d55ac-bfe8-43e0-adbc-fa3976bddb60" ], "x-ms-routing-request-id": [ - "CENTRALUS:20210712T212340Z:dc39192d-5e57-4f3a-add9-98bd81f1ae77" + "SOUTHCENTRALUS:20220311T024750Z:f47d55ac-bfe8-43e0-adbc-fa3976bddb60" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 12 Jul 2021 21:23:39 GMT" + "Fri, 11 Mar 2022 02:47:50 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"startTime\": \"2022-03-10T20:47:20.7615338-06:00\",\r\n \"endTime\": \"2022-03-10T20:47:21.0740528-06:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3adc419a-9e54-44f7-8fe2-eca6e6cd80b0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/crptestps7018?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczcwMTg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/3adc419a-9e54-44f7-8fe2-eca6e6cd80b0?monitor=true&api-version=2021-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL2NhcHNPcGVyYXRpb25zLzNhZGM0MTlhLTllNTQtNDRmNy04ZmUyLWVjYTZlNmNkODBiMD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ba7c834f-4b4e-455a-9fa8-83974fdaa9cf" - ], - "Accept-Language": [ - "en-US" + "4dbacef1-3fb2-489e-89a6-fea5620db3fa" ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.39" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1863,89 +1665,36 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-request-id": [ - "cd62d255-de16-45f6-9e37-91d68eeadc6e" - ], - "x-ms-correlation-request-id": [ - "cd62d255-de16-45f6-9e37-91d68eeadc6e" - ], - "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20210712T212341Z:cd62d255-de16-45f6-9e37-91d68eeadc6e" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4186" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 12 Jul 2021 21:23:41 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTURFNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.30015.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.39" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132736855405793073,70d5434e-5504-4968-b956-f8d027c07083_132736855405793073" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + "x-ms-request-id": [ + "5edc4357-3d9c-434a-9a5f-a3945fd78cab" ], - "Retry-After": [ - "15" + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-request-id": [ - "e0dfb668-5d35-4b33-839e-a3cc85bca982" + "11996" ], "x-ms-correlation-request-id": [ - "e0dfb668-5d35-4b33-839e-a3cc85bca982" + "a17c43f0-ed78-4858-9194-fdc6cdad6bbc" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20210712T212356Z:e0dfb668-5d35-4b33-839e-a3cc85bca982" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "SOUTHCENTRALUS:20220311T024751Z:a17c43f0-ed78-4858-9194-fdc6cdad6bbc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 12 Jul 2021 21:23:56 GMT" + "Fri, 11 Mar 2022 02:47:50 GMT" ], "Expires": [ "-1" @@ -1955,19 +1704,22 @@ ] }, "ResponseBody": "", - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTURFNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/b306b7b0-e393-42c0-92f8-8b66bd675f28?api-version=2021-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL2NhcHNPcGVyYXRpb25zL2IzMDZiN2IwLWUzOTMtNDJjMC05MmY4LThiNjZiZDY3NWYyOD9hcGktdmVyc2lvbj0yMDIxLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "71a384b8-97a3-4d8f-98fb-9cac2f416b44" + ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.39" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -1977,54 +1729,64 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4184" ], - "Retry-After": [ - "15" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132736855405793073,70d5434e-5504-4968-b956-f8d027c07083_132736855405793073" ], "x-ms-request-id": [ - "88de0f5d-b3af-4543-a38f-1d38b619cb30" + "664df68d-f95f-4360-9c9c-ebfc1095cf8d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" ], "x-ms-correlation-request-id": [ - "88de0f5d-b3af-4543-a38f-1d38b619cb30" + "44696a13-9b08-4180-a5a5-12836c115170" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20210712T212411Z:88de0f5d-b3af-4543-a38f-1d38b619cb30" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "SOUTHCENTRALUS:20220311T024823Z:44696a13-9b08-4180-a5a5-12836c115170" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 12 Jul 2021 21:24:10 GMT" + "Fri, 11 Mar 2022 02:48:22 GMT" + ], + "Content-Length": [ + "183" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"startTime\": \"2022-03-10T20:47:52.9961121-06:00\",\r\n \"endTime\": \"2022-03-10T20:47:53.324252-06:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b306b7b0-e393-42c0-92f8-8b66bd675f28\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTURFNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/providers/Microsoft.Compute/locations/eastus/capsOperations/b306b7b0-e393-42c0-92f8-8b66bd675f28?monitor=true&api-version=2021-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL2NhcHNPcGVyYXRpb25zL2IzMDZiN2IwLWUzOTMtNDJjMC05MmY4LThiNjZiZDY3NWYyOD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMS0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "71a384b8-97a3-4d8f-98fb-9cac2f416b44" + ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.39" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/54.0.0" ] }, "ResponseHeaders": { @@ -2034,32 +1796,36 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4183" ], - "Retry-After": [ - "15" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "x-ms-served-by": [ + "70d5434e-5504-4968-b956-f8d027c07083_132736855405793073,70d5434e-5504-4968-b956-f8d027c07083_132736855405793073" ], "x-ms-request-id": [ - "acddfe5c-0f13-4563-a92d-5585894c0325" + "a796d8f7-299a-418d-b7f1-61fac062aa20" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" ], "x-ms-correlation-request-id": [ - "acddfe5c-0f13-4563-a92d-5585894c0325" + "b26d30ea-bc5d-4074-b0a4-24838ed6f80e" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20210712T212426Z:acddfe5c-0f13-4563-a92d-5585894c0325" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "SOUTHCENTRALUS:20220311T024823Z:b26d30ea-bc5d-4074-b0a4-24838ed6f80e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 12 Jul 2021 21:24:25 GMT" + "Fri, 11 Mar 2022 02:48:22 GMT" ], "Expires": [ "-1" @@ -2069,19 +1835,25 @@ ] }, "ResponseBody": "", - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTURFNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourcegroups/crptestps8253?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczgyNTM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f2d7e054-2c26-49d4-b166-e96c42109e38" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.39" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" ] }, "ResponseHeaders": { @@ -2092,22 +1864,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MjUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-request-id": [ - "a74c8e12-097d-4397-a04b-afa59097bf86" + "7d48a26c-5078-46a5-a99a-4bd03d398262" ], "x-ms-correlation-request-id": [ - "a74c8e12-097d-4397-a04b-afa59097bf86" + "7d48a26c-5078-46a5-a99a-4bd03d398262" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20210712T212441Z:a74c8e12-097d-4397-a04b-afa59097bf86" + "SOUTHCENTRALUS:20220311T024825Z:7d48a26c-5078-46a5-a99a-4bd03d398262" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2116,7 +1888,7 @@ "nosniff" ], "Date": [ - "Mon, 12 Jul 2021 21:24:40 GMT" + "Fri, 11 Mar 2022 02:48:25 GMT" ], "Expires": [ "-1" @@ -2129,16 +1901,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTURFNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MjUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TWpVekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.39" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" ] }, "ResponseHeaders": { @@ -2149,22 +1921,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MjUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11999" ], "x-ms-request-id": [ - "72772fb2-057c-46eb-adbd-18d027780369" + "3e57c140-f4a5-417f-847a-81f6e48440d3" ], "x-ms-correlation-request-id": [ - "72772fb2-057c-46eb-adbd-18d027780369" + "3e57c140-f4a5-417f-847a-81f6e48440d3" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20210712T212457Z:72772fb2-057c-46eb-adbd-18d027780369" + "SOUTHCENTRALUS:20220311T024840Z:3e57c140-f4a5-417f-847a-81f6e48440d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2173,7 +1945,7 @@ "nosniff" ], "Date": [ - "Mon, 12 Jul 2021 21:24:57 GMT" + "Fri, 11 Mar 2022 02:48:40 GMT" ], "Expires": [ "-1" @@ -2186,16 +1958,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTURFNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MjUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TWpVekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.39" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" ] }, "ResponseHeaders": { @@ -2206,22 +1978,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MjUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11998" ], "x-ms-request-id": [ - "2ed13fcd-741d-4115-a372-7b44f1d5aef9" + "75e8e80f-e3a6-4704-9df8-3f800ec8aa1e" ], "x-ms-correlation-request-id": [ - "2ed13fcd-741d-4115-a372-7b44f1d5aef9" + "75e8e80f-e3a6-4704-9df8-3f800ec8aa1e" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20210712T212512Z:2ed13fcd-741d-4115-a372-7b44f1d5aef9" + "SOUTHCENTRALUS:20220311T024856Z:75e8e80f-e3a6-4704-9df8-3f800ec8aa1e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2230,7 +2002,7 @@ "nosniff" ], "Date": [ - "Mon, 12 Jul 2021 21:25:12 GMT" + "Fri, 11 Mar 2022 02:48:56 GMT" ], "Expires": [ "-1" @@ -2243,16 +2015,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTURFNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MjUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TWpVekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.39" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" ] }, "ResponseHeaders": { @@ -2263,22 +2035,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MjUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11997" ], "x-ms-request-id": [ - "4a614dac-b6ee-446f-9c29-4bb3e6ba1079" + "8bac0d9c-b946-4471-a8aa-63b73ff26da7" ], "x-ms-correlation-request-id": [ - "4a614dac-b6ee-446f-9c29-4bb3e6ba1079" + "8bac0d9c-b946-4471-a8aa-63b73ff26da7" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20210712T212527Z:4a614dac-b6ee-446f-9c29-4bb3e6ba1079" + "SOUTHCENTRALUS:20220311T024911Z:8bac0d9c-b946-4471-a8aa-63b73ff26da7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2287,7 +2059,7 @@ "nosniff" ], "Date": [ - "Mon, 12 Jul 2021 21:25:26 GMT" + "Fri, 11 Mar 2022 02:49:10 GMT" ], "Expires": [ "-1" @@ -2300,16 +2072,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTURFNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MjUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TWpVekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.39" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" ] }, "ResponseHeaders": { @@ -2320,22 +2092,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MjUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11996" ], "x-ms-request-id": [ - "9e6070ed-1ec7-4dd7-833b-1cb8dc07f298" + "b64ac387-4ae4-41af-ab29-cec8cb8ac394" ], "x-ms-correlation-request-id": [ - "9e6070ed-1ec7-4dd7-833b-1cb8dc07f298" + "b64ac387-4ae4-41af-ab29-cec8cb8ac394" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20210712T212542Z:9e6070ed-1ec7-4dd7-833b-1cb8dc07f298" + "SOUTHCENTRALUS:20220311T024926Z:b64ac387-4ae4-41af-ab29-cec8cb8ac394" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2344,7 +2116,7 @@ "nosniff" ], "Date": [ - "Mon, 12 Jul 2021 21:25:41 GMT" + "Fri, 11 Mar 2022 02:49:26 GMT" ], "Expires": [ "-1" @@ -2357,16 +2129,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTURFNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MjUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TWpVekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.39" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" ] }, "ResponseHeaders": { @@ -2376,23 +2148,17 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11995" ], "x-ms-request-id": [ - "66e30867-b305-4061-aa5b-eb1599571d1d" + "febac3c0-250e-44e5-9eaf-f11e66ed8e55" ], "x-ms-correlation-request-id": [ - "66e30867-b305-4061-aa5b-eb1599571d1d" + "febac3c0-250e-44e5-9eaf-f11e66ed8e55" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20210712T212557Z:66e30867-b305-4061-aa5b-eb1599571d1d" + "SOUTHCENTRALUS:20220311T024941Z:febac3c0-250e-44e5-9eaf-f11e66ed8e55" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2401,7 +2167,7 @@ "nosniff" ], "Date": [ - "Mon, 12 Jul 2021 21:25:57 GMT" + "Fri, 11 Mar 2022 02:49:41 GMT" ], "Expires": [ "-1" @@ -2411,19 +2177,19 @@ ] }, "ResponseBody": "", - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM3MDE4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0zTURFNExVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM4MjUzLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTM3NTEwZDctMzNiNi00Njc2LTg4NmYtZWU3NWJjYzAxODcxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk00TWpVekxVVkJVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pWldGemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30015.01", + "FxVersion/4.700.22.11601", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.39" + "OSVersion/Microsoft.Windows.10.0.22000", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.56" ] }, "ResponseHeaders": { @@ -2434,16 +2200,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11994" ], "x-ms-request-id": [ - "99fd5641-9063-48d3-a9df-982d2d95d803" + "7f109ec9-c68c-45f4-b193-b60d8fef7d37" ], "x-ms-correlation-request-id": [ - "99fd5641-9063-48d3-a9df-982d2d95d803" + "7f109ec9-c68c-45f4-b193-b60d8fef7d37" ], "x-ms-routing-request-id": [ - "SOUTHCENTRALUS:20210712T212612Z:99fd5641-9063-48d3-a9df-982d2d95d803" + "SOUTHCENTRALUS:20220311T024941Z:7f109ec9-c68c-45f4-b193-b60d8fef7d37" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2452,25 +2218,22 @@ "nosniff" ], "Date": [ - "Mon, 12 Jul 2021 21:26:12 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Fri, 11 Mar 2022 02:49:41 GMT" ], "Expires": [ "-1" ], "Content-Length": [ - "805" + "0" ] }, - "ResponseBody": "{\r\n \"Error\": {\r\n \"Code\": \"ResourceGroupDeletionBlocked\",\r\n \"Target\": null,\r\n \"Message\": \"Deletion of resource group 'crptestps7018' failed as resources with identifiers 'Microsoft.Compute/galleries/gallerycrptestps7018' could not be deleted. The provisioning state of the resource group will be rolled back. The tracking Id is 'cd62d255-de16-45f6-9e37-91d68eeadc6e'. Please check audit logs for more details.\",\r\n \"Details\": [\r\n {\r\n \"Code\": null,\r\n \"Target\": \"/subscriptions/e37510d7-33b6-4676-886f-ee75bcc01871/resourceGroups/crptestps7018/providers/Microsoft.Compute/galleries/gallerycrptestps7018\",\r\n \"Message\": \"{\\\"error\\\":{\\\"code\\\":\\\"OperationNotAllowed\\\",\\\"message\\\":\\\"Gallery is still shared to 'Groups'. Please unshare the gallery first before deleting the gallery.\\\"}}\",\r\n \"Details\": null,\r\n \"AdditionalInfo\": null\r\n }\r\n ],\r\n \"AdditionalInfo\": null\r\n }\r\n}", - "StatusCode": 409 + "ResponseBody": "", + "StatusCode": 200 } ], "Names": { "Test-GalleryDirectSharing": [ - "crptestps7018" + "crptestps8253" ] }, "Variables": { From 1d067bb40c35b4fccf3dfb9e9598d744c7fcf6f5 Mon Sep 17 00:00:00 2001 From: Theodore Chang Date: Fri, 25 Mar 2022 12:52:08 -0600 Subject: [PATCH 13/16] add --- src/Compute/Compute/Generated/Gallery/GalleryGetMethod.cs | 4 ++++ .../GalleryImageVersionCreateOrUpdateMethod.cs | 2 ++ .../GalleryImageVersion/GalleryImageVersionDeleteMethod.cs | 1 + .../GalleryImageVersion/GalleryImageVersionGetMethod.cs | 1 + 4 files changed, 8 insertions(+) diff --git a/src/Compute/Compute/Generated/Gallery/GalleryGetMethod.cs b/src/Compute/Compute/Generated/Gallery/GalleryGetMethod.cs index ed372003ca19..5bbe4dae72c7 100644 --- a/src/Compute/Compute/Generated/Gallery/GalleryGetMethod.cs +++ b/src/Compute/Compute/Generated/Gallery/GalleryGetMethod.cs @@ -89,6 +89,10 @@ public override void ExecuteCmdlet() } else { + if(this.IsParameterBound(c => c.Name)) + { + WriteWarning("To retrieve a specific Gallery resource, please provide '-ResourceGroupName'.\nUsing '-Name' parameter without '-ResourceGroupName' will default to listing all gallery resources in your current subscription."); + } var result = GalleriesClient.List(); var resultList = result.ToList(); var nextPageLink = result.NextPageLink; diff --git a/src/Compute/Compute/Generated/GalleryImageVersion/GalleryImageVersionCreateOrUpdateMethod.cs b/src/Compute/Compute/Generated/GalleryImageVersion/GalleryImageVersionCreateOrUpdateMethod.cs index 58758bba8862..d508afc675bc 100644 --- a/src/Compute/Compute/Generated/GalleryImageVersion/GalleryImageVersionCreateOrUpdateMethod.cs +++ b/src/Compute/Compute/Generated/GalleryImageVersion/GalleryImageVersionCreateOrUpdateMethod.cs @@ -191,6 +191,7 @@ public override void ExecuteCmdlet() Position = 2, Mandatory = true, ValueFromPipelineByPropertyName = true)] + [Alias("GalleryImageName")] public string GalleryImageDefinitionName { get; set; } [Alias("GalleryImageVersionName")] @@ -413,6 +414,7 @@ public override void ExecuteCmdlet() Position = 2, Mandatory = true, ValueFromPipelineByPropertyName = true)] + [Alias("GalleryImageName")] public string GalleryImageDefinitionName { get; set; } [Alias("GalleryImageVersionName")] diff --git a/src/Compute/Compute/Generated/GalleryImageVersion/GalleryImageVersionDeleteMethod.cs b/src/Compute/Compute/Generated/GalleryImageVersion/GalleryImageVersionDeleteMethod.cs index fa753e9e30b9..d675735dd94d 100644 --- a/src/Compute/Compute/Generated/GalleryImageVersion/GalleryImageVersionDeleteMethod.cs +++ b/src/Compute/Compute/Generated/GalleryImageVersion/GalleryImageVersionDeleteMethod.cs @@ -109,6 +109,7 @@ public override void ExecuteCmdlet() Position = 2, Mandatory = true, ValueFromPipelineByPropertyName = true)] + [Alias("GalleryImageName")] public string GalleryImageDefinitionName { get; set; } [Alias("GalleryImageVersionName")] diff --git a/src/Compute/Compute/Generated/GalleryImageVersion/GalleryImageVersionGetMethod.cs b/src/Compute/Compute/Generated/GalleryImageVersion/GalleryImageVersionGetMethod.cs index 7bd4004572fa..1b6ee5b4be19 100644 --- a/src/Compute/Compute/Generated/GalleryImageVersion/GalleryImageVersionGetMethod.cs +++ b/src/Compute/Compute/Generated/GalleryImageVersion/GalleryImageVersionGetMethod.cs @@ -163,6 +163,7 @@ public void SharedGalleryGet() ParameterSetName = "SharedGalleryParameterSet", Mandatory = true, ValueFromPipelineByPropertyName = true)] + [Alias("GalleryImageName")] public string GalleryImageDefinitionName { get; set; } [Alias("GalleryImageVersionName")] From bf3ed1a809034e5655f6c2e929a1ad5dc7242e83 Mon Sep 17 00:00:00 2001 From: Theodore Chang Date: Mon, 28 Mar 2022 18:09:25 -0600 Subject: [PATCH 14/16] update changelog --- src/Compute/Compute/ChangeLog.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Compute/Compute/ChangeLog.md b/src/Compute/Compute/ChangeLog.md index 0eef9c28a766..fcb72e61ed92 100644 --- a/src/Compute/Compute/ChangeLog.md +++ b/src/Compute/Compute/ChangeLog.md @@ -25,6 +25,12 @@ * Upgraded Compute .NET SDK package reference to version 52.0.0 * Updated `New-AzSshKey` cmdlet to write file paths to generated keys to the Warning stream instead of the console. * Added `vCPUsAvailable` and `vCPUsPerCore` integer parameters to the `New-AzVm`, `New-AzVmConfig`, and `Update-AzVm` cmdlets. +* `New-AzGallery` can take in `-Permission` parameter to set its sharingProfile property. +* `Update-AzGallery` can update sharingProfile. +* New parameter set for the following cmdlets to support Shared Image Gallery Direct Sharing + - Get-AzGallery + - Get-AzGalleryImageDefinition + - Get-AzGalleryImageVersion ## Version 4.23.0 * Remove ProvisioningDetails property from PSRestorePoint object. @@ -146,12 +152,6 @@ - New-AzDiskUpdateConfig - New-AzDiskEncryptionSetConfig - Update-AzDiskEncryptionSet -* `New-AzGallery` can take in `-Permission` parameter to set its sharingProfile property. -* `Update-AzGallery` can update sharingProfile. -* New parameter set for the following cmdlets to support Shared Image Gallery Direct Sharing - - Get-AzGallery - - Get-AzGalleryImageDefinition - - Get-AzGalleryImageVersion ## Version 4.14.0 * Updated Compute module to use the latest .Net SDK version 47.0.0. From 6d07e2a30becf884dd59e383c549ca2c073ad7fe Mon Sep 17 00:00:00 2001 From: Theodore Chang Date: Mon, 28 Mar 2022 18:12:11 -0600 Subject: [PATCH 15/16] update changelog --- src/Compute/Compute/ChangeLog.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/Compute/Compute/ChangeLog.md b/src/Compute/Compute/ChangeLog.md index fcb72e61ed92..74a82ef2ab1b 100644 --- a/src/Compute/Compute/ChangeLog.md +++ b/src/Compute/Compute/ChangeLog.md @@ -20,18 +20,19 @@ --> ## Upcoming Release - -## Version 4.24.0 -* Upgraded Compute .NET SDK package reference to version 52.0.0 -* Updated `New-AzSshKey` cmdlet to write file paths to generated keys to the Warning stream instead of the console. -* Added `vCPUsAvailable` and `vCPUsPerCore` integer parameters to the `New-AzVm`, `New-AzVmConfig`, and `Update-AzVm` cmdlets. * `New-AzGallery` can take in `-Permission` parameter to set its sharingProfile property. * `Update-AzGallery` can update sharingProfile. +* `Get-AzGallery` can take in `-Expand` parameter for expanded resource view. * New parameter set for the following cmdlets to support Shared Image Gallery Direct Sharing - Get-AzGallery - Get-AzGalleryImageDefinition - Get-AzGalleryImageVersion +## Version 4.24.0 +* Upgraded Compute .NET SDK package reference to version 52.0.0 +* Updated `New-AzSshKey` cmdlet to write file paths to generated keys to the Warning stream instead of the console. +* Added `vCPUsAvailable` and `vCPUsPerCore` integer parameters to the `New-AzVm`, `New-AzVmConfig`, and `Update-AzVm` cmdlets. + ## Version 4.23.0 * Remove ProvisioningDetails property from PSRestorePoint object. * Updated `Set-AzVmExtension` cmdlet to properly display `-Name` and `-Location` parameters as mandatory. From 8e6d7e66da0e81ab7bbade291b0a1e9fc6fc4129 Mon Sep 17 00:00:00 2001 From: Theodore Chang Date: Mon, 4 Apr 2022 10:40:54 -0500 Subject: [PATCH 16/16] Update RecoveryServices.Backup.Test.csproj --- .../RecoveryServices.Backup.Test.csproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/RecoveryServices.Backup.Test.csproj b/src/RecoveryServices/RecoveryServices.Backup.Test/RecoveryServices.Backup.Test.csproj index 99b549c4d818..f4f938c3545c 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/RecoveryServices.Backup.Test.csproj +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/RecoveryServices.Backup.Test.csproj @@ -14,7 +14,7 @@ - + @@ -26,4 +26,4 @@ - \ No newline at end of file +