Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
5baca89
Initial plan
Copilot Mar 12, 2026
90fef0c
Add managed identity support to New-AzGallery and Update-AzGallery cm…
Copilot Mar 12, 2026
022079f
Merge branch 'copilot/az-compute-gallery-managed-identity' of https:/…
D1v38om83r Apr 8, 2026
d110540
added tet file for Test-GalleryWithSystemAssignedIdentity
D1v38om83r Apr 8, 2026
7dcdc7d
added test recording for Test-UpdateGalleryWithSystemAssignedIdentity
D1v38om83r Apr 8, 2026
c5d854f
added TestGalleryWithUserAssignedIdentity with recording
D1v38om83r Apr 8, 2026
8fc776b
fixed Update-AzGallery -UserAssignedIdentity behavior
D1v38om83r Apr 8, 2026
00456ac
added test for Update-AzGallery -EnableSystemAssignedIdentity -UserAs…
D1v38om83r Apr 8, 2026
af20c04
added Test-GalleryWithSystemAndUserAssignedIdentity and recording
D1v38om83r Apr 8, 2026
4c9c3f0
Intriduced parameters -DisableSystemAssignedIdentity -RemoveAllUserAs…
D1v38om83r Apr 8, 2026
10a144b
updated changelog.md
D1v38om83r Apr 8, 2026
3e08d35
re-recorded test files
D1v38om83r Apr 8, 2026
3bdb0da
addressed PR comment
D1v38om83r Apr 9, 2026
855d4a5
Addressed PR comments
D1v38om83r Apr 9, 2026
6e8d333
Update src/Compute/Compute/Generated/Gallery/GalleryCreateOrUpdateMet…
D1v38om83r Apr 9, 2026
2a1d1d2
Update src/Compute/Compute/Generated/Gallery/GalleryCreateOrUpdateMet…
D1v38om83r Apr 9, 2026
a338cf2
Update src/Compute/Compute/Generated/Gallery/GalleryCreateOrUpdateMet…
D1v38om83r Apr 9, 2026
1d0372e
Update src/Compute/Compute/ChangeLog.md
D1v38om83r Apr 9, 2026
b82952e
Update src/Compute/Compute/Generated/Gallery/GalleryCreateOrUpdateMet…
D1v38om83r Apr 9, 2026
7f85b9c
added null or empty string validation against UserAssignedIdentity pa…
D1v38om83r Apr 9, 2026
ed6a697
Re-recorded failed tests
D1v38om83r Apr 15, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions src/Compute/Compute.Test/ScenarioTests/GalleryTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -93,5 +93,53 @@ public void TestInVMAccessControlProfileVersion()
TestRunner.RunTestScript("Test-InVMAccessControlProfileVersion");
}

[Fact]
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void TestGalleryWithSystemAssignedIdentity()
{
TestRunner.RunTestScript("Test-GalleryWithSystemAssignedIdentity");
}

[Fact]
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void TestGalleryWithUserAssignedIdentity()
{
TestRunner.RunTestScript("Test-GalleryWithUserAssignedIdentity");
}

[Fact]
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void TestGalleryWithSystemAndUserAssignedIdentity()
{
TestRunner.RunTestScript("Test-GalleryWithSystemAndUserAssignedIdentity");
}

[Fact]
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void TestUpdateGalleryWithSystemAssignedIdentity()
{
TestRunner.RunTestScript("Test-UpdateGalleryWithSystemAssignedIdentity");
}

[Fact]
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void TestUpdateGalleryWithUserAssignedIdentity()
{
TestRunner.RunTestScript("Test-UpdateGalleryWithUserAssignedIdentity");
}

[Fact]
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void TestUpdateGalleryWithSystemAndUserAssignedIdentity()
{
TestRunner.RunTestScript("Test-UpdateGalleryWithSystemAndUserAssignedIdentity");
}
Comment thread
D1v38om83r marked this conversation as resolved.

[Fact]
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void TestDisableGalleryIdentities()
{
TestRunner.RunTestScript("Test-DisableGalleryIdentities");
}
}
}
Loading
Loading