You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/ResourceManager/Automation/Commands.Automation/Cmdlet/ImportAzureAutomationDscNodeConfiguration.cs
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -46,15 +46,15 @@ public class ImportAzureAutomationDscNodeConfiguration : AzureAutomationBaseCmdl
46
46
/// <summary>
47
47
/// Gets or sets the configuration name for the node configuration.
48
48
/// </summary>
49
-
[Parameter(Mandatory=true,ValueFromPipelineByPropertyName=true,HelpMessage="The name of the DSC Configuration to import the node configuration under. All Node Configurations in Azure Automation must exist under a Configuration. The name of the Configuration will become the namespace of the imported Node Configuration, in the form of 'ConfigurationName.MofFileName'")]
49
+
[Parameter(Mandatory=true,ValueFromPipelineByPropertyName=true,HelpMessage="The name of the DSC Configuration to import the Node Configuration under. All Node Configurations in Azure Automation must exist under a Configuration. The name of the Configuration will become the namespace of the imported Node Configuration, in the form of 'ConfigurationName.MofFileName'")]
50
50
[Alias("NodeConfigurationName")]
51
-
publicstringConfigurationName{get;set;}
51
+
publicstringName{get;set;}
52
52
53
53
54
54
/// <summary>
55
55
/// Gets or sets switch parameter to confirm overwriting of existing configurations.
56
56
/// </summary>
57
-
[Parameter(Mandatory=false,HelpMessage="Forces the command to overwrite an existing configuration.")]
57
+
[Parameter(Mandatory=false,HelpMessage="Forces the command to overwrite an existing Node Configuration.")]
58
58
publicSwitchParameterForce
59
59
{
60
60
get{returnthis.overwriteExistingConfiguration;}
@@ -71,7 +71,7 @@ public override void ExecuteCmdlet()
0 commit comments