Skip to content
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
1 change: 1 addition & 0 deletions src/Compute/Compute/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@

-->
## Upcoming Release
* For `Get-AzVmRunCommand`, a bug is fixed to work when returning a list of RunCommands [#22403]
* Updated Azure.Core to 1.34.0.

## Version 6.2.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public override void ExecuteCmdlet()
}
nextPageLink = pageResult.NextPageLink;
}
var psObject = new List<PSVirtualMachineRunCommand>();
var psObject = new List<PSVirtualMachineRunCommandList>();
foreach (var r in resultList)
{
psObject.Add(ComputeAutomationAutoMapperProfile.Mapper.Map<VirtualMachineRunCommand, PSVirtualMachineRunCommandList>(r));
Expand Down