Skip to content

Commit 88e6b44

Browse files
committed
address feedback comments
1 parent 1e6507f commit 88e6b44

File tree

4 files changed

+3
-6
lines changed

4 files changed

+3
-6
lines changed

src/GuestConfiguration/GuestConfiguration/Az.GuestConfiguration.psd1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ DotNetFrameworkVersion = '4.7.2'
5151
# ProcessorArchitecture = ''
5252

5353
# Modules that must be imported into the global environment prior to importing this module
54-
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.1.0'; })
54+
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '1.2.0'; })
5555

5656
# Assemblies that must be loaded prior to importing this module
5757
RequiredAssemblies = '.\Microsoft.Azure.Management.GuestConfiguration.dll'
@@ -104,7 +104,7 @@ PrivateData = @{
104104
# IconUri = ''
105105

106106
# ReleaseNotes of this module
107-
ReleaseNotes = 'Initial Release'
107+
ReleaseNotes = 'General bug fixes and Cmdlet Get-AzVMGuestPolicyReport renamed to Get-AzVMGuestPolicyStatus to keep it consistent with the Azure portal and to avoid user confusion.'
108108

109109
# Prerelease string of this module
110110
#Prerelease = 'preview'

src/GuestConfiguration/GuestConfiguration/ChangeLog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
## Version 0.10.2
2323
- General bug fixes.
24-
- Rename cmdlet Get-AzVMGuestPolicyStatus to Get-AzVMGuestPolicyStatus to keep it consistent with the Azure portal and to avoid user confusion.
24+
- Rename cmdlet Get-AzVMGuestPolicyReport to Get-AzVMGuestPolicyStatus to keep it consistent with the Azure portal and to avoid user confusion.
2525

2626
## Version 0.10.1
2727
* Initial release of Az.GuestConfiguration module. Provides these two cmdlets.

src/GuestConfiguration/GuestConfiguration/Cmdlets/GetAzVMGuestPolicyStatus.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,12 @@ namespace Microsoft.Azure.Commands.GuestConfiguration.Cmdlets
2020
using Microsoft.Azure.Commands.GuestConfiguration.Common;
2121
using Microsoft.Azure.Commands.GuestConfiguration.Models;
2222
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
23-
using Microsoft.Azure.Commands.GuestConfiguration.Helpers;
2423

2524
/// <summary>
2625
/// Gets Vm Guest Policy reports (GuestConfiguration policy reports)
2726
/// </summary>
2827
[Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzurePrefix + "VMGuestPolicyStatus", DefaultParameterSetName = ParameterSetNames.VmNameScope)]
2928
[OutputType(typeof(PolicyStatusDetailed))]
30-
[OutputType(typeof(PolicyStatusDetailed[]))]
3129
public class GetAzVMGuestPolicyStatus : GuestConfigurationCmdletBase
3230
{
3331
[Parameter(ParameterSetName = ParameterSetNames.VmNameScope, Mandatory = true, Position = 0, HelpMessage = ParameterHelpMessages.ResourceGroupName)]

src/GuestConfiguration/GuestConfiguration/Cmdlets/GetAzVMGuestPolicyStatusHistory.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ namespace Microsoft.Azure.Commands.GuestConfiguration.Cmdlets
2626
/// </summary>
2727
[Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzurePrefix + "VMGuestPolicyStatusHistory", DefaultParameterSetName = ParameterSetNames.VmNameScope)]
2828
[OutputType(typeof(PolicyStatus))]
29-
[OutputType(typeof(PolicyStatus[]))]
3029
public class GetAzVMGuestPolicyStatusHistory : GuestConfigurationCmdletBase
3130
{
3231
[Parameter(ParameterSetName = ParameterSetNames.VmNameScope, Mandatory = true, Position = 0, HelpMessage = ParameterHelpMessages.ResourceGroupName)]

0 commit comments

Comments
 (0)