Skip to content

Compute OOB Release #28131

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 2 additions & 0 deletions NuGet.Config
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@








4 changes: 2 additions & 2 deletions src/Compute/Compute.Helpers/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@
[assembly: CLSCompliant(false)]
[assembly: Guid("ba0d06e0-118c-4f34-b01c-7f6335577747")]

[assembly: AssemblyVersion("10.0.1")]
[assembly: AssemblyFileVersion("10.0.1")]
[assembly: AssemblyVersion("10.1.0")]
[assembly: AssemblyFileVersion("10.1.0")]
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@
[assembly: CLSCompliant(false)]
[assembly: Guid("9d9ad6c2-c449-4f97-95d1-252f737c4e96")]

[assembly: AssemblyVersion("10.0.1")]
[assembly: AssemblyFileVersion("10.0.1")]
[assembly: AssemblyVersion("10.1.0")]
[assembly: AssemblyFileVersion("10.1.0")]
44 changes: 31 additions & 13 deletions src/Compute/Compute/Az.Compute.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
# Generated on: 5/28/2025
# Generated on: 7/4/2025
#

@{
Expand All @@ -12,7 +12,7 @@
# RootModule = ''

# Version number of this module.
ModuleVersion = '10.0.1'
ModuleVersion = '10.1.0'

# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'
Expand Down Expand Up @@ -54,7 +54,7 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''

# Modules that must be imported into the global environment prior to importing this module
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.0.2'; })
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.1.1'; })

# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'Compute.Autorest/bin/Az.Compute.private.dll',
Expand Down Expand Up @@ -200,15 +200,23 @@ CmdletsToExport = 'Add-AzImageDataDisk', 'Add-AzVhd',
'Update-AzHost', 'Update-AzImage', 'Update-AzRestorePointCollection',
'Update-AzSnapshot', 'Update-AzSshKey', 'Update-AzVM', 'Update-AzVmss',
'Update-AzVmssInstance', 'Update-AzVmssVM',
'New-AzGalleryInVMAccessControlProfile', 'Remove-AzGalleryInVMAccessControlProfile',
'Get-AzGalleryInVMAccessControlProfile',
'New-AzGalleryInVMAccessControlProfileVersion', 'New-AzGalleryInVMAccessControlProfileVersionConfig',
'Remove-AzGalleryInVMAccessControlProfileVersion', 'Get-AzGalleryInVMAccessControlProfileVersion',
'Add-AzGalleryInVMAccessControlProfileVersionRulesPrivilege', 'Remove-AzGalleryInVMAccessControlProfileVersionRulesPrivilege',
'Add-AzGalleryInVMAccessControlProfileVersionRulesRole', 'Remove-AzGalleryInVmAccessControlProfileVersionRulesRole',
'Add-AzGalleryInVMAccessControlProfileVersionRulesIdentity', 'Remove-AzGalleryInVMAccessControlProfileVersionRulesIdentity',
'Add-AzGalleryInVMAccessControlProfileVersionRulesRoleAssignment', 'Remove-AzGalleryInVMAccessControlProfileVersionRulesRoleAssignment',
'Update-AzGalleryInVMAccessControlProfileVersion', 'Update-AzGalleryInVMAccessControlProfile',
'New-AzGalleryInVMAccessControlProfile',
'Remove-AzGalleryInVMAccessControlProfile',
'Get-AzGalleryInVMAccessControlProfile',
'New-AzGalleryInVMAccessControlProfileVersion',
'New-AzGalleryInVMAccessControlProfileVersionConfig',
'Remove-AzGalleryInVMAccessControlProfileVersion',
'Get-AzGalleryInVMAccessControlProfileVersion',
'Add-AzGalleryInVMAccessControlProfileVersionRulesPrivilege',
'Remove-AzGalleryInVMAccessControlProfileVersionRulesPrivilege',
'Add-AzGalleryInVMAccessControlProfileVersionRulesRole',
'Remove-AzGalleryInVmAccessControlProfileVersionRulesRole',
'Add-AzGalleryInVMAccessControlProfileVersionRulesIdentity',
'Remove-AzGalleryInVMAccessControlProfileVersionRulesIdentity',
'Add-AzGalleryInVMAccessControlProfileVersionRulesRoleAssignment',
'Remove-AzGalleryInVMAccessControlProfileVersionRulesRoleAssignment',
'Update-AzGalleryInVMAccessControlProfileVersion',
'Update-AzGalleryInVMAccessControlProfile',
'Set-AzVMProxyAgentSetting', 'Set-AzVmssProxyAgentSetting'

# Variables to export from this module
Expand Down Expand Up @@ -247,7 +255,17 @@ PrivateData = @{
# IconUri = ''

# ReleaseNotes of this module
ReleaseNotes = '* Added breaking change message for ''New-AzVM'' and ''New-AzVmss'' cmdlets.'
ReleaseNotes = '* Support for Metadata Security Protocol (MSP) support for Gallery
- Added new cmdlets ''New-AzGalleryInVmAccessControlProfile'', ''Get-AzGalleryInVmAccessControlProfile'', ''Update-AzGalleryInVmAccessControlProfile'', and ''Remove-AzGalleryInVmAccessControlProfile'' to manage In-VM Access Control Profiles in Azure Compute Gallery.
- Added new cmdlets ''New-AzGalleryInVmAccessControlProfileVersion'', ''Get-AzGalleryInVmAccessControlProfileVersion'', ''Update-AzGalleryInVmAccessControlProfileVersion'', and ''Remove-AzGalleryInVmAccessControlProfileVersion'' to manage In-VM Access Control Profile Versions in Azure Compute Gallery.
- Added new cmdlet ''New0AzGalleryInVmAccessControlProfileVersionConfig'' to create a local configuration object for In-VM Access Control Profile Version.
Copy link
Preview

Copilot AI Jul 7, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Typo in ReleaseNotes: 'New0AzGalleryInVmAccessControlProfileVersionConfig' should be 'New-AzGalleryInVMAccessControlProfileVersionConfig'.

Suggested change
- Added new cmdlet ''New0AzGalleryInVmAccessControlProfileVersionConfig'' to create a local configuration object for In-VM Access Control Profile Version.
- Added new cmdlet ''New-AzGalleryInVMAccessControlProfileVersionConfig'' to create a local configuration object for In-VM Access Control Profile Version.

Copilot uses AI. Check for mistakes.

- Added new cmdlets ''Add-AzGalleryInVmAccessControlProfileVersionRulesPrivilege'' and ''Remove-AzGalleryInVmAccessControlProfileVersionRulesPrivilege'' to manage privileges in In-VM Access Control Profile Version.
- Added new cmdlets ''Add-AzGalleryInVmAccessControlProfileVersionRulesRole'' and ''Remove-AzGalleryInVmAccessControlProfileVersionRulesRole'' to manage roles in In-VM Access Control Profile Version.
- Added new cmdlets ''Add-AzGalleryInVmAccessControlProfileVersionRulesIdentity'' and ''Remove-AzGalleryInVmAccessControlProfileVersionRulesIdentity'' to manage identities in In-VM Access Control Profile Version.
- Added new cmdlets ''Add-AzGalleryInVmAccessControlProfileVersionRulesRoleAssignment'' and ''Remove-AzGalleryInVmAccessControlProfileVersionRulesRoleAssignment'' to manage role assignments in In-VM Access Control Profile Version.
* Added ''-EnableProxyAgent'' parameter to ''New-AzVM'' and ''New-AzVmss'' simple parameter sets.
* Added ''-ProxyAgentKeyIncarnationId''parameter to ''Update-AzVmssVM'' cmdlet.
* Added new cmdlets ''Set-AzVmssProxyAgent'' and ''Set-AzVMProxyAgent'' to set the proxy agent settings for VM and VMSS.'''

# Prerelease string of this module
# Prerelease = ''
Expand Down
2 changes: 2 additions & 0 deletions src/Compute/Compute/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@

-->
## Upcoming Release

## Version 10.1.0
* Support for Metadata Security Protocol (MSP) support for Gallery
- Added new cmdlets `New-AzGalleryInVmAccessControlProfile`, `Get-AzGalleryInVmAccessControlProfile`, `Update-AzGalleryInVmAccessControlProfile`, and `Remove-AzGalleryInVmAccessControlProfile` to manage In-VM Access Control Profiles in Azure Compute Gallery.
- Added new cmdlets `New-AzGalleryInVmAccessControlProfileVersion`, `Get-AzGalleryInVmAccessControlProfileVersion`, `Update-AzGalleryInVmAccessControlProfileVersion`, and `Remove-AzGalleryInVmAccessControlProfileVersion` to manage In-VM Access Control Profile Versions in Azure Compute Gallery.
Expand Down
4 changes: 2 additions & 2 deletions src/Compute/Compute/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
[assembly: ComVisible(false)]
[assembly: CLSCompliant(false)]
[assembly: Guid("91792853-487B-4DC2-BE6C-DD09A0A1BC10")]
[assembly: AssemblyVersion("10.0.1")]
[assembly: AssemblyFileVersion("10.0.1")]
[assembly: AssemblyVersion("10.1.0")]
[assembly: AssemblyFileVersion("10.1.0")]
#if !SIGN
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Compute.Test")]
#endif
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.Compute.dll-Help.xml
Module Name: Az.Compute
online version:
online version: https://learn.microsoft.com/powershell/module/az.compute/add-azgalleryinvmaccesscontrolprofileversionrulesidentity
schema: 2.0.0
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.Compute.dll-Help.xml
Module Name: Az.Compute
online version:
online version: https://learn.microsoft.com/powershell/module/az.compute/add-azgalleryinvmaccesscontrolprofileversionrulesprivilege
schema: 2.0.0
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.Compute.dll-Help.xml
Module Name: Az.Compute
online version:
online version: https://learn.microsoft.com/powershell/module/az.compute/add-azgalleryinvmaccesscontrolprofileversionrulesrole
schema: 2.0.0
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.Compute.dll-Help.xml
Module Name: Az.Compute
online version:
online version: https://learn.microsoft.com/powershell/module/az.compute/add-azgalleryinvmaccesscontrolprofileversionrulesroleassignment
schema: 2.0.0
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.Compute.dll-Help.xml
Module Name: Az.Compute
online version:
online version: https://learn.microsoft.com/powershell/module/az.compute/get-azgalleryinvmaccesscontrolprofile
schema: 2.0.0
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.Compute.dll-Help.xml
Module Name: Az.Compute
online version:
online version: https://learn.microsoft.com/powershell/module/az.compute/get-azgalleryinvmaccesscontrolprofileversion
schema: 2.0.0
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.Compute.dll-Help.xml
Module Name: Az.Compute
online version:
online version: https://learn.microsoft.com/powershell/module/az.compute/new-azgalleryinvmaccesscontrolprofile
schema: 2.0.0
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.Compute.dll-Help.xml
Module Name: Az.Compute
online version:
online version: https://learn.microsoft.com/powershell/module/az.compute/new-azgalleryinvmaccesscontrolprofileversion
schema: 2.0.0
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.Compute.dll-Help.xml
Module Name: Az.Compute
online version:
online version: https://learn.microsoft.com/powershell/module/az.compute/new-azgalleryinvmaccesscontrolprofileversionconfig
schema: 2.0.0
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.Compute.dll-Help.xml
Module Name: Az.Compute
online version:
online version: https://learn.microsoft.com/powershell/module/az.compute/remove-azgalleryinvmaccesscontrolprofile
schema: 2.0.0
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.Compute.dll-Help.xml
Module Name: Az.Compute
online version:
online version: https://learn.microsoft.com/powershell/module/az.compute/remove-azgalleryinvmaccesscontrolprofileversion
schema: 2.0.0
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.Compute.dll-Help.xml
Module Name: Az.Compute
online version:
online version: https://learn.microsoft.com/powershell/module/az.compute/remove-azgalleryinvmaccesscontrolprofileversionrulesidentity
schema: 2.0.0
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.Compute.dll-Help.xml
Module Name: Az.Compute
online version:
online version: https://learn.microsoft.com/powershell/module/az.compute/remove-azgalleryinvmaccesscontrolprofileversionrulesprivilege
schema: 2.0.0
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.Compute.dll-Help.xml
Module Name: Az.Compute
online version:
online version: https://learn.microsoft.com/powershell/module/az.compute/remove-azgalleryinvmaccesscontrolprofileversionrulesrole
schema: 2.0.0
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.Compute.dll-Help.xml
Module Name: Az.Compute
online version:
online version: https://learn.microsoft.com/powershell/module/az.compute/remove-azgalleryinvmaccesscontrolprofileversionrulesroleassignment
schema: 2.0.0
---

Expand Down
2 changes: 1 addition & 1 deletion src/Compute/Compute/help/Set-AzVMProxyAgentSetting.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.Compute.dll-Help.xml
Module Name: Az.Compute
online version:
online version: https://learn.microsoft.com/powershell/module/az.compute/set-azvmproxyagentsetting
schema: 2.0.0
---

Expand Down
2 changes: 1 addition & 1 deletion src/Compute/Compute/help/Set-AzVmssProxyAgentSetting.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.Compute.dll-Help.xml
Module Name: Az.Compute
online version:
online version: https://learn.microsoft.com/powershell/module/az.compute/set-azvmssproxyagentsetting
schema: 2.0.0
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.Compute.dll-Help.xml
Module Name: Az.Compute
online version:
online version: https://learn.microsoft.com/powershell/module/az.compute/update-azgalleryinvmaccesscontrolprofile
schema: 2.0.0
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.Compute.dll-Help.xml
Module Name: Az.Compute
online version:
online version: https://learn.microsoft.com/powershell/module/az.compute/update-azgalleryinvmaccesscontrolprofileversion
schema: 2.0.0
---

Expand Down
2 changes: 1 addition & 1 deletion tools/Az/Az.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.1.1'; },
@{ModuleName = 'Az.Cdn'; RequiredVersion = '5.0.0'; },
@{ModuleName = 'Az.CloudService'; RequiredVersion = '2.1.0'; },
@{ModuleName = 'Az.CognitiveServices'; RequiredVersion = '1.16.0'; },
@{ModuleName = 'Az.Compute'; RequiredVersion = '10.0.1'; },
@{ModuleName = 'Az.Compute'; RequiredVersion = '10.1.0'; },
@{ModuleName = 'Az.ConfidentialLedger'; RequiredVersion = '1.1.0'; },
@{ModuleName = 'Az.ConnectedMachine'; RequiredVersion = '1.1.1'; },
@{ModuleName = 'Az.ContainerInstance'; RequiredVersion = '4.1.1'; },
Expand Down
2 changes: 1 addition & 1 deletion tools/AzPreview/AzPreview.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.1.1'; },
@{ModuleName = 'Az.CloudService'; RequiredVersion = '2.1.0'; },
@{ModuleName = 'Az.CognitiveServices'; RequiredVersion = '1.16.0'; },
@{ModuleName = 'Az.Communication'; RequiredVersion = '0.6.0'; },
@{ModuleName = 'Az.Compute'; RequiredVersion = '10.0.1'; },
@{ModuleName = 'Az.Compute'; RequiredVersion = '10.1.0'; },
@{ModuleName = 'Az.ComputeFleet'; RequiredVersion = '0.1.1'; },
@{ModuleName = 'Az.ComputeSchedule'; RequiredVersion = '0.1.1'; },
@{ModuleName = 'Az.ConfidentialLedger'; RequiredVersion = '1.1.0'; },
Expand Down
2 changes: 1 addition & 1 deletion tools/Docs/az-ps-latest-1.csv
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ pac30,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-relea
pac31,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.CloudService.2.1.0.zip;sourceType=sa]Az.CloudService,2.1.0
pac32,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.CognitiveServices.1.16.0.zip;sourceType=sa]Az.CognitiveServices,1.16.0
pac33,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Communication.0.6.0.zip;sourceType=sa]Az.Communication,0.6.0
pac34,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Compute.10.0.1.zip;sourceType=sa]Az.Compute,10.0.1
pac34,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Compute.10.1.0.zip;sourceType=sa]Az.Compute,10.1.0
pac35,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ComputeFleet.0.1.1.zip;sourceType=sa]Az.ComputeFleet,0.1.1
pac36,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ComputeSchedule.0.1.1.zip;sourceType=sa]Az.ComputeSchedule,0.1.1
pac37,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ConfidentialLedger.1.1.0.zip;sourceType=sa]Az.ConfidentialLedger,1.1.0
Expand Down
Loading
Loading