Continue writing help messages and comments.

This commit is contained in:
Wes Carroll
2019-02-23 23:15:47 -05:00
parent 22d7bc0de6
commit 80469aafa2
8 changed files with 204 additions and 54 deletions
@@ -1,9 +1,15 @@
function Get-ZertoServiceProfile {
[cmdletbinding( DefaultParameterSetName = "main" )]
param (
[Parameter( ParameterSetName = "siteIdentifier" )]
[Parameter(
ParameterSetName = "siteIdentifier",
HelpMessage = "The identifier of the site for which service profiles should be returned."
)]
[string]$siteIdentifier,
[Parameter( ParameterSetName = "serviceProfileId" )]
[Parameter(
ParameterSetName = "serviceProfileId",
HelpMessage = "The service profile ID for which information should be returned."
)]
[string[]]$serviceProfileId
)