Skip to content

Commit 5005f18

Browse files
author
jasper-schneider
committed
Help string updates
1 parent 5cc9db8 commit 5005f18

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

src/ResourceManager/Batch/Commands.Batch/Pools/NewBatchPoolCommand.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ public class NewBatchPoolCommand : BatchObjectModelCmdletBase
3535
[ValidateNotNullOrEmpty]
3636
public string VMSize { get; set; }
3737

38-
[Parameter(HelpMessage = "The OS family of the VMs in the Pool.")]
38+
[Parameter(HelpMessage = "The OS family of the VMs in the Pool. You can learn more about OS families and versions at http://azure.microsoft.com/en-us/documentation/articles/cloud-services-guestos-update-matrix/")]
3939
[ValidateNotNullOrEmpty]
4040
public string OSFamily { get; set; }
4141

42-
[Parameter(HelpMessage = "The target OS version of the VMs in the Pool.")]
42+
[Parameter(HelpMessage = "The target OS version of the VMs in the Pool. Use \"*\" for the latest OS version for the specified family. You can learn more about OS families and versions at http://azure.microsoft.com/en-us/documentation/articles/cloud-services-guestos-update-matrix/")]
4343
[ValidateNotNullOrEmpty]
4444
public string TargetOSVersion { get; set; }
4545

@@ -70,11 +70,11 @@ public class NewBatchPoolCommand : BatchObjectModelCmdletBase
7070
[Parameter(HelpMessage = "The VMs in the Pool need to communicate with each other.")]
7171
public SwitchParameter Communication { get; set; }
7272

73-
[Parameter(HelpMessage = "The Start Task the VMs in the Pool will run.")]
73+
[Parameter(HelpMessage = "The Task that will run on all VMs that belong to the pool. The Start Task runs when the VM is added to the pool or when it is restarted.")]
7474
[ValidateNotNullOrEmpty]
7575
public PSStartTask StartTask { get; set; }
7676

77-
[Parameter(HelpMessage = "Certificate References for the Pool.")]
77+
[Parameter(HelpMessage = "Certificate References associated with the Pool. The referenced certificates will be installed on each VM in the Pool")]
7878
[ValidateNotNullOrEmpty]
7979
public PSCertificateReference[] CertificateReferences { get; set; }
8080

src/ResourceManager/Batch/Commands.Batch/Properties/Resources.Designer.cs

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/ResourceManager/Batch/Commands.Batch/Properties/Resources.resx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -205,16 +205,16 @@
205205
<value>Performing name availability check for account {0}</value>
206206
</data>
207207
<data name="NBP_CreatingPool" xml:space="preserve">
208-
<value>Creating new Pool {0}</value>
208+
<value>Creating Pool {0}</value>
209209
</data>
210210
<data name="NBT_CreatingTask" xml:space="preserve">
211-
<value>Creating new Task {0}</value>
211+
<value>Creating Task {0}</value>
212212
</data>
213213
<data name="NBT_NoJobSpecified" xml:space="preserve">
214214
<value>No Job specified to create the new Task under. Supply a Job object or a WorkItem name and Job name.</value>
215215
</data>
216216
<data name="NBWI_CreatingWorkItem" xml:space="preserve">
217-
<value>Creating new WorkItem {0}</value>
217+
<value>Creating WorkItem {0}</value>
218218
</data>
219219
<data name="RBA_RemoveConfirm" xml:space="preserve">
220220
<value>Are you sure you want to remove batch account {0}?</value>

0 commit comments

Comments
 (0)