We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e991238 commit 5af6ca5Copy full SHA for 5af6ca5
src/Compute/Compute/ChangeLog.md
@@ -20,6 +20,7 @@
20
21
-->
22
## Upcoming Release
23
+* For `Get-AzVmRunCommand`, a bug is fixed to work when returning a list of RunCommands [#22403]
24
* Updated Azure.Core to 1.34.0.
25
26
## Version 6.2.0
src/Compute/Compute/VirtualMachine/RunCommand/GetAzVmRunCommand.cs
@@ -86,7 +86,7 @@ public override void ExecuteCmdlet()
86
}
87
nextPageLink = pageResult.NextPageLink;
88
89
- var psObject = new List<PSVirtualMachineRunCommand>();
+ var psObject = new List<PSVirtualMachineRunCommandList>();
90
foreach (var r in resultList)
91
{
92
psObject.Add(ComputeAutomationAutoMapperProfile.Mapper.Map<VirtualMachineRunCommand, PSVirtualMachineRunCommandList>(r));
0 commit comments