Skip to content

Commit

Permalink
Add PR suggestion fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rajsing committed Mar 2, 2015
1 parent 282e87b commit 6c053fb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ public class GetAzureStorSimpleJob : StorSimpleCmdletBase
/// </summary>
[Parameter(Mandatory = true, Position = 0, ParameterSetName = StorSimpleCmdletParameterSet.IdentifyByDeviceName,
HelpMessage=StorSimpleCmdletHelpMessage.DeviceName)]
[ValidateNotNullOrEmpty]
public string DeviceName { get; set; }


Expand All @@ -46,6 +47,7 @@ public class GetAzureStorSimpleJob : StorSimpleCmdletBase
/// </summary>
[Parameter(Mandatory=true, Position = 0, ParameterSetName = StorSimpleCmdletParameterSet.IdentifyById,
HelpMessage = StorSimpleCmdletHelpMessage.DeviceJobId)]
[ValidateNotNullOrEmpty]
public string InstanceId { get; set; }

/// <summary>
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@
<value>More jobs are available for your query. To access the next page of your result use -First {0} -Skip {1} in your commandlet</value>
</data>
<data name="DeviceJobsNextPagewithNoFirstMessage" xml:space="preserve">
<value>More jobs are available in the subsequent pages for your query. To access the next page use \"-Skip {0}\" in your commandlet</value>
<value>More jobs are available in the subsequent pages for your query. To access the next page use -Skip {0} in your commandlet</value>
</data>
<data name="DeviceJobsNoMorePagesMessage" xml:space="preserve">
<value>No more jobs are present for your query!</value>
Expand Down Expand Up @@ -490,7 +490,7 @@
<value>Volume Container Group \"{0}\" is not eligible for failover due to the reason: {1}</value>
</data>
<data name="SuccessMessageSubmitDeviceJob" xml:space="preserve">
<value>The {0} job is triggered successfully. Please use the command Get-AzureStorSimpleJob -JobId {1} for tracking the job's status</value>
<value>The {0} job is triggered successfully. Please use the command Get-AzureStorSimpleJob -InstanceId {1} for tracking the job's status</value>
</data>
<data name="StartASSBackupCloneJobMessage" xml:space="preserve">
<value>Cloning backup with backupId {0}...</value>
Expand Down

0 comments on commit 6c053fb

Please sign in to comment.