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
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -47,8 +47,8 @@ public class ImportAzureAutomationDscNodeConfiguration : AzureAutomationBaseCmdl
47
47
/// Gets or sets the configuration name for the node configuration.
48
48
/// </summary>
49
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
-
[Alias("NodeConfigurationName")]
51
-
publicstringName{get;set;}
50
+
[Alias("ConfigurationName")]
51
+
publicstringConfigName{get;set;}
52
52
53
53
54
54
/// <summary>
@@ -71,7 +71,7 @@ public override void ExecuteCmdlet()
0 commit comments