Skip to content

Commit 1ac0309

Browse files
author
jasper-schneider
committed
Help for Batch update cmdlets
1 parent dba36ec commit 1ac0309

File tree

5 files changed

+847
-4
lines changed

5 files changed

+847
-4
lines changed

src/ResourceManager/AzureBatch/Commands.Batch/JobSchedules/SetBatchJobScheduleCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.Batch
2222
public class SetBatchJobScheduleCommand : BatchObjectModelCmdletBase
2323
{
2424
[Parameter(Position = 0, Mandatory = true, ValueFromPipeline = true,
25-
HelpMessage = "The PSCloudJobSchedule object representing the job schedule to update.")]
25+
HelpMessage = "The PSCloudJobSchedule object with changes to commit to the Batch Service.")]
2626
[ValidateNotNullOrEmpty]
2727
public PSCloudJobSchedule JobSchedule { get; set; }
2828

src/ResourceManager/AzureBatch/Commands.Batch/Jobs/SetBatchJobCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.Batch
2222
public class SetBatchJobCommand : BatchObjectModelCmdletBase
2323
{
2424
[Parameter(Position = 0, Mandatory = true, ValueFromPipeline = true,
25-
HelpMessage = "The PSCloudJob object representing the job to update.")]
25+
HelpMessage = "The PSCloudJob object with changes to commit to the Batch Service.")]
2626
[ValidateNotNullOrEmpty]
2727
public PSCloudJob Job { get; set; }
2828

0 commit comments

Comments
 (0)