-
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #167 from lipkau/release/v2.5
- Loading branch information
Showing
49 changed files
with
752 additions
and
350 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
function Copy-CommonParameter { | ||
<# | ||
.SYNOPSIS | ||
This is a helper function to assist in creating a hashtable for splatting parameters to inner function calls. | ||
.DESCRIPTION | ||
This command copies all of the keys of a hashtable to a new hashtable if the key name matches the DefaultParameter | ||
or the AdditionalParameter values. This function is designed to help select only function parameters that have been | ||
set, so they can be passed to inner functions if and only if they have been set. | ||
.EXAMPLE | ||
PS C:\> Copy-CommonParameter -InputObject $PSBoundParameters | ||
Returns a hashtable that contains all of the bound default parameters. | ||
.EXAMPLE | ||
PS C:\> Copy-CommonParameter -InputObject $PSBoundParameters -AdditionalParameter "ApiUri" | ||
Returns a hashtable that contains all of the bound default parameters and the "ApiUri" parameter. | ||
#> | ||
[CmdletBinding( SupportsShouldProcess = $false )] | ||
[OutputType( | ||
[hashtable] | ||
)] | ||
param | ||
( | ||
[Parameter(Mandatory = $true)] | ||
[hashtable]$InputObject, | ||
|
||
[Parameter(Mandatory = $false)] | ||
[string[]]$AdditionalParameter, | ||
|
||
[Parameter(Mandatory = $false)] | ||
[string[]]$DefaultParameter = @("Credential", "Certificate") | ||
) | ||
|
||
[hashtable]$ht = @{} | ||
foreach ($key in $InputObject.Keys) { | ||
if ($key -in ($DefaultParameter + $AdditionalParameter)) { | ||
$ht[$key] = $InputObject[$key] | ||
} | ||
} | ||
|
||
return $ht | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.