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/HDInsight/Commands.HDInsight/ManagementCommands/AddAzureHDInsightConfigValuesCommand.cs
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -82,16 +82,16 @@ public class AddAzureHDInsightConfigValuesCommand : HDInsightCmdletBase
82
82
[Parameter(HelpMessage="Gets the RServer configurations.")]
83
83
publicHashtableRServer{get;set;}
84
84
85
-
[Parameter(HelpMessage="Gets the Spark Defaults configurations of this HDInsight cluster.")]
85
+
[Parameter(HelpMessage="Gets the Spark Defaults configurations of this HDInsight cluster.",ParameterSetName="Spark1")]
86
86
publicHashtableSparkDefaults{get;set;}
87
87
88
-
[Parameter(HelpMessage="Gets the Spark Thrift SparkConf configurations of this HDInsight cluster.")]
88
+
[Parameter(HelpMessage="Gets the Spark Thrift SparkConf configurations of this HDInsight cluster.",ParameterSetName="Spark1")]
89
89
publicHashtableSparkThriftConf{get;set;}
90
90
91
-
[Parameter(HelpMessage="Gets the Spark2 Defaults configurations of this HDInsight cluster.")]
91
+
[Parameter(HelpMessage="Gets the Spark2 Defaults configurations of this HDInsight cluster.",ParameterSetName="Spark2")]
92
92
publicHashtableSpark2Defaults{get;set;}
93
93
94
-
[Parameter(HelpMessage="Gets the Spark2 Thrift SparkConf configurations of this HDInsight cluster.")]
94
+
[Parameter(HelpMessage="Gets the Spark2 Thrift SparkConf configurations of this HDInsight cluster.",ParameterSetName="Spark2")]
0 commit comments