Skip to content

Commit d970a8f

Browse files
2 parents 3e58292 + ff72043 commit d970a8f

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

src/ResourceManager/Automation/Commands.Automation/Cmdlet/ExportAzureAutomationDscConfiguration.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,13 @@ public class ExportAzureAutomationDscConfiguration : AzureAutomationBaseCmdlet
5353
/// <summary>
5454
/// Gets or sets the output folder for the configuration script.
5555
/// </summary>
56-
[Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The folder where configuration script to be placed.")]
56+
[Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The folder where configuration script should be placed.")]
5757
public string OutputFolder { get; set; }
5858

5959
/// <summary>
6060
/// Gets or sets switch parameter to confirm overwriting of existing configuration script.
6161
/// </summary>
62-
[Parameter(Mandatory = false, HelpMessage = "Forces the command to run without asking for user confirmation and overwrites an existing configuration with same name.")]
62+
[Parameter(Mandatory = false, HelpMessage = "Forces an overwrite of an existing local file with the same name.")]
6363
public SwitchParameter Force
6464
{
6565
get { return this.overwriteExistingFile; }

src/ResourceManager/Automation/Commands.Automation/Cmdlet/ExportAzureAutomationDscNodeReportContent.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,13 @@ public class ExportAzureAutomationDscNodeReportContent : AzureAutomationBaseCmdl
5252
/// <summary>
5353
/// Gets or sets the output folder for the configuration script.
5454
/// </summary>
55-
[Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The folder where node report to be placed.")]
55+
[Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The folder where node report should be placed.")]
5656
public string OutputFolder { get; set; }
5757

5858
/// <summary>
5959
/// Gets or sets switch parameter to confirm overwriting of existing node report.
6060
/// </summary>
61-
[Parameter(Mandatory = false, HelpMessage = "Forces the command to run without asking for user confirmation and overwrites an existing node report with same name.")]
61+
[Parameter(Mandatory = false, HelpMessage = "Forces an overwrite of an existing local file with the same name.")]
6262
public SwitchParameter Force
6363
{
6464
get { return this.overwriteExistingFile; }

src/ResourceManager/Automation/Commands.Automation/Cmdlet/GetAzureAutomationDscNode.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public class GetAzureAutomationDscNode : AzureAutomationBaseCmdlet
6262
/// <summary>
6363
/// Gets or sets the configuration name.
6464
/// </summary>
65-
[Parameter(ParameterSetName = AutomationCmdletParameterSets.ByConfiguration, Mandatory = true, HelpMessage = "Filter dsc nodes based on their configuration name.")]
65+
[Parameter(ParameterSetName = AutomationCmdletParameterSets.ByConfiguration, Mandatory = true, HelpMessage = "Filter dsc nodes based on the name of the configuration the node configuration they are mapped to was generated from")]
6666
[ValidateNotNullOrEmpty]
6767
public string ConfigurationName { get; set; }
6868

src/ResourceManager/Automation/Commands.Automation/Common/AutomationClientDSC.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@
3434

3535
namespace Microsoft.Azure.Commands.Automation.Common
3636
{
37-
using DscNode = Microsoft.Azure.Management.Automation.Models.DscNode;
38-
3937
public partial class AutomationClient : IAutomationClient
4038
{
4139
#region DscConfiguration Operations

0 commit comments

Comments
 (0)